Lib_Magento - Version 1.9.0.0

Version Notes

1.9.0.0

Download this release

Release Info

Developer Magento Core Team
Extension Lib_Magento
Version 1.9.0.0
Comparing to
See all releases


Code changes from version 1.8.0.0 to 1.9.0.0

lib/Magento/Autoload/ClassMap.php ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+ namespace Magento\Autoload;
27
+
28
+ class ClassMap
29
+ {
30
+ /**
31
+ * Absolute path to base directory that will be prepended as prefix to the included files
32
+ *
33
+ * @var string
34
+ */
35
+ protected $_baseDir;
36
+
37
+ /**
38
+ * Map of class name to file (relative to the base directory)
39
+ *
40
+ * array(
41
+ * 'Class_Name' => 'relative/path/to/Class/Name.php',
42
+ * )
43
+ *
44
+ * @var array
45
+ */
46
+ protected $_map = array();
47
+
48
+ /**
49
+ * Set base directory absolute path
50
+ *
51
+ * @param string $baseDir
52
+ * @throws \InvalidArgumentException
53
+ */
54
+ public function __construct($baseDir)
55
+ {
56
+ $this->_baseDir = realpath($baseDir);
57
+ if (!$this->_baseDir || !is_dir($this->_baseDir)) {
58
+ throw new \InvalidArgumentException("Specified path is not a valid directory: '{$baseDir}'");
59
+ }
60
+ }
61
+
62
+ /**
63
+ * Find an absolute path to a file to be included
64
+ *
65
+ * @param string $class
66
+ * @return string|bool
67
+ */
68
+ public function getFile($class)
69
+ {
70
+ if (isset($this->_map[$class])) {
71
+ return $this->_baseDir . DIRECTORY_SEPARATOR . $this->_map[$class];
72
+ }
73
+ return false;
74
+ }
75
+
76
+ /**
77
+ * Add classes files declaration to the map. New map will override existing values if such was defined before.
78
+ *
79
+ * @param array $map
80
+ * @return \Magento\Autoload\ClassMap
81
+ */
82
+ public function addMap(array $map)
83
+ {
84
+ $this->_map = array_merge($this->_map, $map);
85
+ return $this;
86
+ }
87
+
88
+ /**
89
+ * Resolve a class file and include it
90
+ *
91
+ * @param string $class
92
+ */
93
+ public function load($class)
94
+ {
95
+ $file = $this->getFile($class);
96
+ if (file_exists($file)) {
97
+ include $file;
98
+ }
99
+ }
100
+ }
lib/Magento/Autoload/IncludePath.php ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+ namespace Magento\Autoload;
27
+
28
+ class IncludePath
29
+ {
30
+ /**
31
+ * Namespaces separator
32
+ */
33
+ const NS_SEPARATOR = '\\';
34
+
35
+ /**
36
+ * Find a file in include path
37
+ *
38
+ * @param string $class
39
+ * @return string|bool
40
+ */
41
+ public static function getFile($class)
42
+ {
43
+ $relativePath = self::getFilePath($class);
44
+ return stream_resolve_include_path($relativePath);
45
+ }
46
+
47
+ /**
48
+ * Get relative file path for specified class
49
+ *
50
+ * @static
51
+ * @param string $class
52
+ * @return string
53
+ */
54
+ public static function getFilePath($class)
55
+ {
56
+ if (strpos($class, self::NS_SEPARATOR) !== false) {
57
+ $class = ltrim(str_replace(self::NS_SEPARATOR, '_', $class), '_');
58
+ }
59
+ return str_replace('_', DIRECTORY_SEPARATOR, $class) . '.php';
60
+ }
61
+
62
+ /**
63
+ * Add specified path(s) to the current include_path
64
+ *
65
+ * @param string|array $path
66
+ * @param bool $prepend Whether to prepend paths or to append them
67
+ */
68
+ public static function addIncludePath($path, $prepend = true)
69
+ {
70
+ $includePathExtra = implode(PATH_SEPARATOR, (array)$path);
71
+ $includePath = get_include_path();
72
+ $pathSeparator = $includePath && $includePathExtra ? PATH_SEPARATOR : '';
73
+ if ($prepend) {
74
+ $includePath = $includePathExtra . $pathSeparator . $includePath;
75
+ } else {
76
+ $includePath = $includePath . $pathSeparator . $includePathExtra;
77
+ }
78
+ set_include_path($includePath);
79
+ }
80
+
81
+ /**
82
+ * Resolve a class file and include it
83
+ *
84
+ * @param $class
85
+ */
86
+ public static function load($class)
87
+ {
88
+ $file = self::getFile($class);
89
+ if ($file) {
90
+ include $file;
91
+ }
92
+ }
93
+ }
lib/Magento/Autoload/Simple.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ namespace Magento\Autoload;
28
+
29
+ class Simple
30
+ {
31
+ private static $_instance;
32
+
33
+ public static function instance()
34
+ {
35
+ if (!self::$_instance) {
36
+ $class = __CLASS__;
37
+ self::$_instance = new $class();
38
+ }
39
+ return self::$_instance;
40
+ }
41
+
42
+ public static function register()
43
+ {
44
+ spl_autoload_register(array(self::instance(), 'autoload'));
45
+ }
46
+
47
+ public function autoload($class)
48
+ {
49
+ $classFile = str_replace(' ', DIRECTORY_SEPARATOR, ucwords(str_replace('_', ' ', $class)));
50
+ $classFile.= '.php';
51
+ @include $classFile;
52
+ }
53
+
54
+ }
lib/Magento/Crypt.php CHANGED
@@ -1,11 +1,27 @@
1
  <?php
2
  /**
3
- * {license_notice}
4
  *
5
- * @category Magento
6
- * @package Magento_Crypt
7
- * @copyright {copyright}
8
- * @license {license_link}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  */
10
 
11
  /**
1
  <?php
2
  /**
3
+ * Magento
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Db/Adapter/Pdo/Mysql.php CHANGED
@@ -18,9 +18,9 @@
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
- * @category Magento
22
- * @package Magento_Db
23
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
lib/Magento/Db/Object.php CHANGED
@@ -18,10 +18,10 @@
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
- * @category Magento
22
- * @package Magento_Db
23
- * @copyright Copyright (c) 2012 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Db/Object/Interface.php CHANGED
@@ -18,10 +18,10 @@
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
- * @category Magento
22
- * @package Magento_Db
23
- * @copyright Copyright (c) 2012 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Db/Object/Table.php CHANGED
@@ -18,10 +18,10 @@
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
- * @category Magento
22
- * @package Magento_Db
23
- * @copyright Copyright (c) 2012 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Db/Object/Trigger.php CHANGED
@@ -18,10 +18,10 @@
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
- * @category Magento
22
- * @package Magento_Db
23
- * @copyright Copyright (c) 2012 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Db/Object/View.php CHANGED
@@ -18,10 +18,10 @@
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
- * @category Magento
22
- * @package Magento_Db
23
- * @copyright Copyright (c) 2012 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Db/Sql/Select.php CHANGED
@@ -1,37 +1,37 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category Magento
22
- * @package Magento_Db
23
- * @copyright Copyright (c) 2012 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
- */
26
-
27
- /**
28
- * Magento_Db_Sql_Select
29
- *
30
- * @category Magento
31
- * @package Magento_Db
32
- * @author Magento Core Team <core@magentocommerce.com>
33
- */
34
- class Magento_Db_Sql_Select extends Varien_Db_Select
35
- {
36
-
37
- }
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Magento_Db_Sql_Select
29
+ *
30
+ * @category Magento
31
+ * @package Magento_Db
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Magento_Db_Sql_Select extends Varien_Db_Select
35
+ {
36
+
37
+ }
lib/Magento/Db/Sql/Trigger.php CHANGED
@@ -18,10 +18,10 @@
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
- * @category Magento
22
- * @package Magento_Db
23
- * @copyright Copyright (c) 2012 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
18
  * versions in the future. If you wish to customize Magento for your
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Exception.php CHANGED
@@ -1,11 +1,27 @@
1
  <?php
2
  /**
3
- * {license_notice}
4
  *
5
- * @category Magento
6
- * @package Magento_Exception
7
- * @copyright {copyright}
8
- * @license {license_link}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  */
10
 
11
  class Magento_Exception extends Exception
1
  <?php
2
  /**
3
+ * Magento
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  class Magento_Exception extends Exception
lib/Magento/Profiler.php CHANGED
@@ -1,11 +1,27 @@
1
  <?php
2
  /**
3
- * {license_notice}
4
  *
5
- * @category Magento
6
- * @package Magento_Profiler
7
- * @copyright {copyright}
8
- * @license {license_link}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  */
10
 
11
  /**
1
  <?php
2
  /**
3
+ * Magento
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Profiler/Output/Csvfile.php CHANGED
@@ -1,11 +1,27 @@
1
  <?php
2
  /**
3
- * {license_notice}
4
  *
5
- * @category Magento
6
- * @package Magento_Profiler
7
- * @copyright {copyright}
8
- * @license {license_link}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  */
10
 
11
  /**
1
  <?php
2
  /**
3
+ * Magento
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Profiler/Output/Firebug.php CHANGED
@@ -1,11 +1,27 @@
1
  <?php
2
  /**
3
- * {license_notice}
4
  *
5
- * @category Magento
6
- * @package Magento_Profiler
7
- * @copyright {copyright}
8
- * @license {license_link}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  */
10
 
11
  /**
1
  <?php
2
  /**
3
+ * Magento
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Profiler/Output/Html.php CHANGED
@@ -1,11 +1,27 @@
1
  <?php
2
  /**
3
- * {license_notice}
4
  *
5
- * @category Magento
6
- * @package Magento_Profiler
7
- * @copyright {copyright}
8
- * @license {license_link}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  */
10
 
11
  /**
1
  <?php
2
  /**
3
+ * Magento
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
lib/Magento/Profiler/OutputAbstract.php CHANGED
@@ -1,11 +1,27 @@
1
  <?php
2
  /**
3
- * {license_notice}
4
  *
5
- * @category Magento
6
- * @package Magento_Profiler
7
- * @copyright {copyright}
8
- * @license {license_link}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  */
10
 
11
  /**
1
  <?php
2
  /**
3
+ * Magento
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category
22
+ * @package _var
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
 
27
  /**
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lib_Magento</name>
4
- <version>1.8.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Magento Library</summary>
10
  <description>Magento Library</description>
11
- <notes>1.8.0.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2013-09-24</date>
14
- <time>09:09:43</time>
15
- <contents><target name="magelib"><dir name="Magento"><file name="Crypt.php" hash="0375279e6d5f6fe5c355e55ed567d50c"/><dir name="Db"><dir name="Adapter"><dir name="Pdo"><file name="Mysql.php" hash="4c72a737a41d548d816b9b23846d6d55"/></dir></dir><dir name="Object"><file name="Interface.php" hash="75538d642ffbd217e6b4f0d6c47ee41d"/><file name="Table.php" hash="4782020387d53b62131ccedaa84a1c07"/><file name="Trigger.php" hash="33e76ea340956805d2951e2d7b166323"/><file name="View.php" hash="e813377fd04712667ad00d6c2cc295cf"/></dir><file name="Object.php" hash="b61d21392c22ed7c035d7232b05997b7"/><dir name="Sql"><file name="Select.php" hash="666a857be35c4cfa3fb153ef757e19b6"/><file name="Trigger.php" hash="2364b625b934404de9965c120d84ca0f"/></dir></dir><file name="Exception.php" hash="d6af7ed137881f7bb5b1687ab0c71626"/><dir name="Profiler"><dir name="Output"><file name="Csvfile.php" hash="4d26324422704578a6f0f10f24b206b1"/><file name="Firebug.php" hash="188662da429ea2f349adeb5dbd30736d"/><file name="Html.php" hash="eb0b933bdd9061385aafdded108db6a0"/></dir><file name="OutputAbstract.php" hash="3a16286d897eae373dc0f8bf5f28d4d3"/></dir><file name="Profiler.php" hash="00b200d890f107c748794e2e31dad910"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lib_Magento</name>
4
+ <version>1.9.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Magento Library</summary>
10
  <description>Magento Library</description>
11
+ <notes>1.9.0.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2014-05-07</date>
14
+ <time>14:07:16</time>
15
+ <contents><target name="magelib"><dir name="Magento"><dir name="Autoload"><file name="ClassMap.php" hash="43b76c0cb3d1f6d0b6af42619b477859"/><file name="IncludePath.php" hash="53b684ef8efc2fb3fcde42b007483a20"/><file name="Simple.php" hash="64b6b46890f438b14421a376ebba6b35"/></dir><file name="Crypt.php" hash="686f467400553f9e85fffc40e0b382b5"/><dir name="Db"><dir name="Adapter"><dir name="Pdo"><file name="Mysql.php" hash="7743e63b863f7ec4b8435d0b81bd5d36"/></dir></dir><dir name="Object"><file name="Interface.php" hash="4744aaa9e6658202b4ed583d497360b3"/><file name="Table.php" hash="066061a7831e96c4f52fc45979a285a3"/><file name="Trigger.php" hash="a6e8fb71036d457c10ecd5a5262aab52"/><file name="View.php" hash="1307f0f9440be3e5d324d23aad51dd09"/></dir><file name="Object.php" hash="f32b66a9bb8ad59ead05a53991238760"/><dir name="Sql"><file name="Select.php" hash="93aa3129c9490053e699aa1ac8738e34"/><file name="Trigger.php" hash="9dda722773e317e0baf6f2cd1f3b24bf"/></dir></dir><file name="Exception.php" hash="e1eca1f2328cac7721f66e2fcf046ad5"/><dir name="Profiler"><dir name="Output"><file name="Csvfile.php" hash="63bdcb0d949b0dd45b9812578f3d1bde"/><file name="Firebug.php" hash="9e9da1d00170b8fcdad6f6f370cd4bbc"/><file name="Html.php" hash="b6f3eeb3bd790cccb68a5b7405792e43"/></dir><file name="OutputAbstract.php" hash="8ec53d1c727280713bc24652a52a2ba7"/></dir><file name="Profiler.php" hash="fabf13093bbc9c7ef847363a61ebe74d"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>