Version Notes
1.9.3.0
Download this release
Release Info
Developer | Magento Core Team |
Extension | Lib_Varien |
Version | 1.9.3.0 |
Comparing to | |
See all releases |
Code changes from version 1.9.2.4 to 1.9.3.0
- lib/Varien/Autoload.php +1 -1
- lib/Varien/Db/Ddl/Table.php +3 -2
- lib/Varien/File/Uploader.php +1 -1
- lib/Varien/Io/Abstract.php +16 -0
- lib/Varien/Io/File.php +5 -5
- package.xml +6 -6
lib/Varien/Autoload.php
CHANGED
@@ -105,7 +105,7 @@ class Varien_Autoload
|
|
105 |
{
|
106 |
self::$_scope = $code;
|
107 |
if (defined('COMPILER_INCLUDE_PATH')) {
|
108 |
-
@
|
109 |
}
|
110 |
}
|
111 |
|
105 |
{
|
106 |
self::$_scope = $code;
|
107 |
if (defined('COMPILER_INCLUDE_PATH')) {
|
108 |
+
@include_once COMPILER_INCLUDE_PATH . DIRECTORY_SEPARATOR . self::SCOPE_FILE_PREFIX.$code.'.php';
|
109 |
}
|
110 |
}
|
111 |
|
lib/Varien/Db/Ddl/Table.php
CHANGED
@@ -342,8 +342,9 @@ class Varien_Db_Ddl_Table
|
|
342 |
case self::TYPE_DECIMAL:
|
343 |
case self::TYPE_NUMERIC:
|
344 |
$match = array();
|
345 |
-
|
346 |
-
$precision =
|
|
|
347 |
// parse size value
|
348 |
if (is_array($size)) {
|
349 |
if (count($size) == 2) {
|
342 |
case self::TYPE_DECIMAL:
|
343 |
case self::TYPE_NUMERIC:
|
344 |
$match = array();
|
345 |
+
//For decimal(M,D), M must be >= D
|
346 |
+
$precision = 10;
|
347 |
+
$scale = 0;
|
348 |
// parse size value
|
349 |
if (is_array($size)) {
|
350 |
if (count($size) == 2) {
|
lib/Varien/File/Uploader.php
CHANGED
@@ -271,7 +271,7 @@ class Varien_File_Uploader
|
|
271 |
//run validate callbacks
|
272 |
foreach ($this->_validateCallbacks as $params) {
|
273 |
if (is_object($params['object']) && method_exists($params['object'], $params['method'])) {
|
274 |
-
$params['object']
|
275 |
}
|
276 |
}
|
277 |
}
|
271 |
//run validate callbacks
|
272 |
foreach ($this->_validateCallbacks as $params) {
|
273 |
if (is_object($params['object']) && method_exists($params['object'], $params['method'])) {
|
274 |
+
$params['object']->{$params['method']}($this->_file['tmp_name']);
|
275 |
}
|
276 |
}
|
277 |
}
|
lib/Varien/Io/Abstract.php
CHANGED
@@ -115,4 +115,20 @@ abstract class Varien_Io_Abstract implements Varien_Io_Interface
|
|
115 |
{
|
116 |
return strpos($this->getCleanPath($haystackPath), $this->getCleanPath($needlePath)) === 0;
|
117 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
}
|
115 |
{
|
116 |
return strpos($this->getCleanPath($haystackPath), $this->getCleanPath($needlePath)) === 0;
|
117 |
}
|
118 |
+
|
119 |
+
/**
|
120 |
+
* Replace full path to relative
|
121 |
+
*
|
122 |
+
* @param $path
|
123 |
+
* @return string
|
124 |
+
*/
|
125 |
+
public function getFilteredPath($path)
|
126 |
+
{
|
127 |
+
$dir = pathinfo($_SERVER['SCRIPT_FILENAME'], PATHINFO_DIRNAME);
|
128 |
+
$position = strpos($path, $dir);
|
129 |
+
if ($position !== false && $position < 1) {
|
130 |
+
$path = substr_replace($path, '.', 0, strlen($dir));
|
131 |
+
}
|
132 |
+
return $path;
|
133 |
+
}
|
134 |
}
|
lib/Varien/Io/File.php
CHANGED
@@ -127,7 +127,7 @@ class Varien_Io_File extends Varien_Io_Abstract
|
|
127 |
{
|
128 |
$writeableMode = preg_match('#^[wax]#i', $mode);
|
129 |
if ($writeableMode && !is_writeable($this->_cwd)) {
|
130 |
-
throw new Exception('Permission denied for write to ' . $this->_cwd);
|
131 |
}
|
132 |
|
133 |
if (!ini_get('auto_detect_line_endings')) {
|
@@ -138,7 +138,7 @@ class Varien_Io_File extends Varien_Io_Abstract
|
|
138 |
$this->_streamHandler = @fopen($fileName, $mode);
|
139 |
@chdir($this->_iwd);
|
140 |
if ($this->_streamHandler === false) {
|
141 |
-
throw new Exception('Error write to file ' . $fileName);
|
142 |
}
|
143 |
|
144 |
$this->_streamFileName = $fileName;
|
@@ -507,12 +507,12 @@ class Varien_Io_File extends Varien_Io_Abstract
|
|
507 |
@chdir($this->_cwd);
|
508 |
if (file_exists($filename)) {
|
509 |
if (!is_writeable($filename)) {
|
510 |
-
$error = "File '{$filename}' isn't writeable";
|
511 |
}
|
512 |
} else {
|
513 |
$folder = dirname($filename);
|
514 |
if (!is_writable($folder)) {
|
515 |
-
$error = "Folder '{$folder}' isn't writeable";
|
516 |
}
|
517 |
}
|
518 |
@chdir($this->_iwd);
|
@@ -615,7 +615,7 @@ class Varien_Io_File extends Varien_Io_Abstract
|
|
615 |
$this->checkAndCreateFolder(dirname($folder), $mode);
|
616 |
}
|
617 |
if (!is_dir($folder) && !$this->mkdir($folder, $mode)) {
|
618 |
-
throw new Exception("Unable to create directory '{$folder}'. Access forbidden.");
|
619 |
}
|
620 |
return true;
|
621 |
}
|
127 |
{
|
128 |
$writeableMode = preg_match('#^[wax]#i', $mode);
|
129 |
if ($writeableMode && !is_writeable($this->_cwd)) {
|
130 |
+
throw new Exception('Permission denied for write to ' . $this->getFilteredPath($this->_cwd));
|
131 |
}
|
132 |
|
133 |
if (!ini_get('auto_detect_line_endings')) {
|
138 |
$this->_streamHandler = @fopen($fileName, $mode);
|
139 |
@chdir($this->_iwd);
|
140 |
if ($this->_streamHandler === false) {
|
141 |
+
throw new Exception('Error write to file ' . $this->getFilteredPath($fileName));
|
142 |
}
|
143 |
|
144 |
$this->_streamFileName = $fileName;
|
507 |
@chdir($this->_cwd);
|
508 |
if (file_exists($filename)) {
|
509 |
if (!is_writeable($filename)) {
|
510 |
+
$error = "File '{$this->getFilteredPath($filename)}' isn't writeable";
|
511 |
}
|
512 |
} else {
|
513 |
$folder = dirname($filename);
|
514 |
if (!is_writable($folder)) {
|
515 |
+
$error = "Folder '{$this->getFilteredPath($folder)}' isn't writeable";
|
516 |
}
|
517 |
}
|
518 |
@chdir($this->_iwd);
|
615 |
$this->checkAndCreateFolder(dirname($folder), $mode);
|
616 |
}
|
617 |
if (!is_dir($folder) && !$this->mkdir($folder, $mode)) {
|
618 |
+
throw new Exception("Unable to create directory '{$this->getFilteredPath($folder)}'. Access forbidden.");
|
619 |
}
|
620 |
return true;
|
621 |
}
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Lib_Varien</name>
|
4 |
-
<version>1.9.
|
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>Varien Library</summary>
|
10 |
<description>Varien Library</description>
|
11 |
-
<notes>1.9.
|
12 |
<authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
|
13 |
-
<date>2016-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelib"><dir name="Varien"><file name="Autoload.php" hash="c7f5f9b8ddddde150f90e4b2834140e8"/><dir name="Cache"><dir name="Backend"><file name="Database.php" hash="339b3e61d3cb820d78092ecee6877d84"/><file name="Eaccelerator.php" hash="1bff11b52bd226600d3ddb468d71952b"/><file name="Memcached.php" hash="b05845533f0772456b43388861acfdcc"/></dir><file name="Core.php" hash="8299daa89aa8e5d420aca12dc3c90d92"/></dir><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="17b58a65a08f7262c2b3c19b714443f8"/><file name="Interface.php" hash="a47e473c9e527c38745146daba0045f3"/></dir><file name="Action.php" hash="d9d2033f81d5b12fc28668499f930414"/><dir name="Adapter"><file name="Abstract.php" hash="024b5bd817718721bc16dc80b22c9ec3"/><dir name="Db"><file name="Table.php" hash="577d1bb64df9bd4184ed7384153ed633"/></dir><dir name="Http"><file name="Curl.php" hash="a234beffd5f46d10098b4cd15026d5cd"/></dir><file name="Http.php" hash="ab48b2afa666ec336ba52ac2070da07a"/><file name="Interface.php" hash="c4841187e37ff5ca4d7e9063278633b7"/><file name="Io.php" hash="71e135658d05304c9fc010db751ce386"/><file name="Soap.php" hash="157abe7d07f32613bb702f3c7e731bf5"/><file name="Std.php" hash="0d1510cb36ecd0092c9dae1fdbe8ba76"/><dir name="Zend"><file name="Cache.php" hash="e9f054166d792e97da9eff47f99f571d"/><file name="Db.php" hash="fc0118c9f6acf5c9b7b8266282f4ec89"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="4267051aa48259251edda29218401f68"/><file name="Collection.php" hash="989a5cc71649df618f8ebfae712b358a"/><file name="Generic.php" hash="acd9cab8310a7d51a88e7591db0bdffe"/><file name="Interface.php" hash="00a8284b8a025da330bef4f0172895e0"/></dir><file name="Exception.php" hash="4b397e06b2f636746338fefbb83f426b"/><dir name="Mapper"><file name="Abstract.php" hash="ae455a996cf2684e792bcdf7569ef542"/><file name="Column.php" hash="765cd59e6a214928f5307402dcaada81"/><file name="Interface.php" hash="107005decc7b7bc4922a2d1b9c288ed3"/></dir><dir name="Parser"><file name="Abstract.php" hash="c58faf2e6551721aad044ccb5eecfaf0"/><file name="Csv.php" hash="89c29a2300c8ac53df4f6e5e0dbda1f4"/><file name="Interface.php" hash="464d9342c4a3303ed3fcc9c39fa54939"/><file name="Serialize.php" hash="66963259ce453d1bc7c096bf13cc5250"/><dir name="Xml"><file name="Excel.php" hash="5d433a9ae03ee7fa7dcf8576f2782434"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="a859ec926daeb77020ea3aa5d1c322d1"/><file name="Collection.php" hash="aea4c6c50f4800646fdfeb506e66f426"/></dir><file name="Profile.php" hash="9c4e7f813c3223c410dfcc9baf1a1471"/><dir name="Validator"><file name="Abstract.php" hash="7d4567452b36f1cccf0b9baddf89dffb"/><file name="Column.php" hash="c82b2113ab381da722852d8734c1c29c"/><file name="Dryrun.php" hash="a52f2b76da7474b8e6d89c01769e9f57"/><file name="Interface.php" hash="5ed70425a88f8c08822546743fe8d1cd"/></dir></dir><file name="Convert.php" hash="5d73e3e7ff156c39b39c4e0c80e1c083"/><dir name="Crypt"><file name="Abstract.php" hash="e687297778346a1214af312316d2a450"/><file name="Mcrypt.php" hash="bcc0c8db127bf6c0ccbf6b05a1ebc7af"/></dir><file name="Crypt.php" hash="08fbe071ec9ea0f7ea1e7f7d0a085497"/><dir name="Data"><dir name="Collection"><file name="Db.php" hash="57e1ea9fc24136b1d2ba4b5aef50f520"/><file name="Filesystem.php" hash="22e2872c9ead1c7229a40d173f24fd62"/></dir><file name="Collection.php" hash="e4c28185592c13f69e2d56205923884f"/><dir name="Form"><file name="Abstract.php" hash="98b9fa8a880c9611e60e772798ab01c9"/><dir name="Element"><file name="Abstract.php" hash="ebcf3d7ad4fa41066bb579e6eed4efc3"/><file name="Button.php" hash="1ac6ebee7f02ee2c2f2147befbf72020"/><file name="Checkbox.php" hash="065e612ce32e8dc656734166e42d11b0"/><file name="Checkboxes.php" hash="3b7f5f554a8463f37d1dfaed08d6d38b"/><file name="Collection.php" hash="d70b13b12cd603109e42e4a1e76ed99e"/><file name="Column.php" hash="b5acc47bfb1a7f8cc194450f8f7007d9"/><file name="Date.php" hash="3b1df26c27c3437ae659fa2e79df01f1"/><file name="Datetime.php" hash="b2ec621aadd253f724dabe187438fa9a"/><file name="Editor.php" hash="c68d3cb074511f7268ea7a2f76314c31"/><file name="Fieldset.php" hash="6e9918ab463a9c1d094b1294dd37d068"/><file name="File.php" hash="fa610905c3101af88c90f4d6e7f15690"/><file name="Gallery.php" hash="3a288d30c28a28a8c739ba173692b40c"/><file name="Hidden.php" hash="13b097914028ce4b675ecf4a8478e183"/><file name="Image.php" hash="0bb125179d32d5e4b72d42a702f78e82"/><file name="Imagefile.php" hash="16d0a8ea9b5aeefd3800d98b0f2a050f"/><file name="Label.php" hash="25bccc8da2050c3bb3fd77e154f49ee7"/><file name="Link.php" hash="d51989687bf01445a2c290a9ad9cfe4d"/><file name="Multiline.php" hash="030b3dabe178eb893b087229ea5cb28b"/><file name="Multiselect.php" hash="e3777d40af7bd458b2fdc2936e43d159"/><file name="Note.php" hash="6533afa27275fc26378a5af4d4f01d0a"/><file name="Obscure.php" hash="166bc77e429e1b55d878aa57e201f9b7"/><file name="Password.php" hash="76c9bce6f655ee88397fec7921890da8"/><file name="Radio.php" hash="83fe50f55e16a7c6a517893a7a4c76e4"/><file name="Radios.php" hash="8d8b15b0afdbe3ce0da82de4005571f6"/><dir name="Renderer"><file name="Interface.php" hash="822ab830f5fc71ac3696cccd297e1782"/></dir><file name="Reset.php" hash="60ff7e40e14b9f54f1844dbfb7143eb1"/><file name="Select.php" hash="40ec839bdd86e27f8410ec49f3847b55"/><file name="Submit.php" hash="0b5ec554c06a1e31b30337cb344f87ab"/><file name="Text.php" hash="5fb3165ae1581d6600e88d50e98dbe26"/><file name="Textarea.php" hash="2401fa2361befb095a0d594c7406ad11"/><file name="Time.php" hash="039b841fb0908719f9e314ceae99c8b9"/></dir><dir name="Filter"><file name="Date.php" hash="c21098c5d610e432f8f2e62e463a70b5"/><file name="Datetime.php" hash="ec3e07bf6ee1e4ed2158d2902685757d"/><file name="Escapehtml.php" hash="5df850df1f0a188041300b60d197c3da"/><file name="Interface.php" hash="71c82da5599e80487d24c534dac07260"/><file name="Striptags.php" hash="525641ac83a75f10ed9f5621713899d4"/></dir></dir><file name="Form.php" hash="ff7f5059cb386df05f1d01676c990e08"/><dir name="Tree"><file name="Db.php" hash="1048a11bc7efb24b17fdd7acb7ae7185"/><file name="Dbp.php" hash="97f856c2d9a3bf66873cd1f937d6c53d"/><dir name="Node"><file name="Collection.php" hash="d4d2e9fd2951367ca156290d50fd5e79"/></dir><file name="Node.php" hash="f1563d91887f98e780f9fa68bc3ab58a"/></dir><file name="Tree.php" hash="bcd021d0cbabf38fc2418b2406b9736e"/></dir><file name="Date.php" hash="3129a6658d2506b53e6a916bfbdbe740"/><dir name="Db"><dir name="Adapter"><file name="Interface.php" hash="e38d8a368b401be5a83d42faa08122d2"/><file name="Mysqli.php" hash="92d75b660e62c3499788092b76e6e3da"/><dir name="Pdo"><file name="Mysql.php" hash="454ba18cccf4f349833ed4aa7c4692a1"/></dir></dir><dir name="Ddl"><file name="Table.php" hash="6e4623cab03c59893b4291fcf0360f1e"/></dir><file name="Exception.php" hash="cac07fa5f5942a35621ecafa5b478740"/><file name="Helper.php" hash="419ba9bae77f83f3ec16c6ed030429c6"/><file name="Select.php" hash="2825d6fe0f266fb8b224978d089ba5a9"/><dir name="Statement"><file name="Parameter.php" hash="e4d24c4d36257468fc65f6496ae68696"/><dir name="Pdo"><file name="Mysql.php" hash="55a3324ee346772f3049f5642fa12aab"/></dir></dir><dir name="Tree"><file name="Exception.php" hash="615870d23d7acf93d95e58f93a4b5e5a"/><dir name="Node"><file name="Exception.php" hash="370eeda683dd51772ff410cce3870912"/></dir><file name="Node.php" hash="f4a0f790a858758eb744d5e489180620"/><dir name="NodeSet"><file name="Exception.php" hash="a2217206d748ebbfbfff95a61ece4d03"/></dir><file name="NodeSet.php" hash="560ae179275f5e5508e23a9f2981bfcd"/></dir><file name="Tree.php" hash="4bcbde7f5187acfb30237a085e0c671c"/></dir><file name="Debug.php" hash="5e30a0e05bfbd2a41b0ade3d076702ff"/><dir name="Directory"><file name="Collection.php" hash="3a14ec5c5c53e3f3b533ae690fc32ce5"/><file name="Factory.php" hash="50311c3bcd43a44520d1eb05accae004"/><file name="IFactory.php" hash="d74f483a5bf25b5709648fb85bf0145b"/><file name="a.txt" hash="026e450c46ac92ea375302955a4f42fb"/></dir><dir name="Event"><file name="Collection.php" hash="7d488d1f5442ebe944b6c9dace32b573"/><dir name="Observer"><file name="Collection.php" hash="6d4895842c61b62561fc22a76259086a"/><file name="Cron.php" hash="a35a51db9db462eda37144a0f29a8e0b"/><file name="Regex.php" hash="cf0ac2b8d8e0f09aeda016ee5a337e26"/></dir><file name="Observer.php" hash="78a0ef0dadf71b812f70806113ea14c5"/></dir><file name="Event.php" hash="a155d32ce52040fd0f9aecbbda0ea9ef"/><file name="Exception.php" hash="d764dbe0c6a78b4bea2e12aecce28b9a"/><dir name="File"><file name="Csv.php" hash="c9cf4bb12f626ca6df92ea1d5794e71d"/><file name="CsvMulty.php" hash="b1ce53d79c92f880892f6bc6118700d4"/><file name="Object.php" hash="c16eac461e4131a8effe4ef27fdd6bee"/><dir name="Transfer"><dir name="Adapter"><file name="Http.php" hash="77add7c751a97cf64cff91e7e59441dc"/></dir></dir><dir name="Uploader"><file name="Image.php" hash="e706d756a6a2a01e932711c1cccc93c6"/></dir><file name="Uploader.php" hash="4563bb45ffca9642c536798bffcc6db7"/></dir><dir name="Filter"><dir name="Array"><file name="Grid.php" hash="f335fcefe5fdb4c9df56dd02bdb0a9a1"/></dir><file name="Array.php" hash="bfaba982f2bf36c1ed20f00be965815b"/><file name="Email.php" hash="ae9158b6faf535c74be16f15f67189e2"/><file name="Money.php" hash="503f60d4390c4d4c12d315fc67fea532"/><dir name="Object"><file name="Grid.php" hash="410da6590fca1d728b2ef77521409369"/></dir><file name="Object.php" hash="f810a76d15fa0cec240a4d550b1f4a57"/><file name="Sprintf.php" hash="7275dd4301186c43360e6c4738785e69"/><dir name="Template"><file name="Simple.php" hash="db26bf9a9336322532ad46e851046973"/><dir name="Tokenizer"><file name="Abstract.php" hash="1c44ba80e79ab56033f3a6743f4b915f"/><file name="Parameter.php" hash="489dbb4266a1a9ff00e0c2ec4870692b"/><file name="Variable.php" hash="75e12cfe8390e363406ead1017f18dc5"/></dir></dir><file name="Template.php" hash="9410f87fc57bf17ac774763ff9bf9582"/></dir><dir name="Http"><dir name="Adapter"><file name="Curl.php" hash="70042c15326adf5e6c03af4cdae4e070"/></dir><file name="Client.php" hash="f7192232c74f90e508fa8037b63d9b17"/></dir><dir name="Image"><dir name="Adapter"><file name="Abstract.php" hash="53ee322e240193c2d794e0305a58784b"/><file name="Gd2.php" hash="d58aa8baf7894bb2bedca706a153d6f7"/></dir><file name="Adapter.php" hash="010aa03b7eed2180f755c32b57feaa50"/></dir><file name="Image.php" hash="75ffa375129b3e868f1abfa264e3aed4"/><dir name="Io"><file name="Abstract.php" hash="36e48d7063905b547ea7276f5e929370"/><file name="Exception.php" hash="f448af56de8a6576232c3b8abe811a24"/><file name="File.php" hash="227634058a28a75a336fe7c667b21a61"/><file name="Ftp.php" hash="1b338d1b00ae8bcca46b35dd4ae9947d"/><file name="Interface.php" hash="2282a739801134ef4fc1c317fd71fe0f"/><file name="Sftp.php" hash="b112c3a081b966b7bf3de798ae784306"/></dir><dir name="Object"><file name="Cache.php" hash="5a20030d3146616195283cb164e12f83"/><file name="Mapper.php" hash="8fe3dbd45a33244e28e467655a2be96b"/></dir><file name="Object.php" hash="61cf06fddeaae15fdc8fe19d8f3e3326"/><dir name="Pear"><file name="Frontend.php" hash="8bbd4fceaf73c5cc1992e7bd5581e04f"/><file name="Package.php" hash="b1908245201e0ea86e1df171d21d491c"/><file name="Registry.php" hash="146311fdb9de26c19db4405135244509"/></dir><file name="Pear.php" hash="d2aa295eb2b960fa3ab9a031a1e24c7b"/><file name="Profiler.php" hash="89905cd056b8926b8dcab134785ae5e6"/><dir name="Simplexml"><dir name="Config"><dir name="Cache"><file name="Abstract.php" hash="a0bf74f4e8ca80a8360d3a9046193a85"/><file name="File.php" hash="7a9d610ee02458e3a9158f4884fffda6"/></dir></dir><file name="Config.php" hash="e3e1c3cd7044b488dacc314b2fd20e1b"/><file name="Element.php" hash="e9de0071cbe5df249b847d9d22473519"/></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_ZF</name><channel>community</channel><min>1.12.10.
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Lib_Varien</name>
|
4 |
+
<version>1.9.3.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>Varien Library</summary>
|
10 |
<description>Varien Library</description>
|
11 |
+
<notes>1.9.3.0</notes>
|
12 |
<authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
|
13 |
+
<date>2016-10-04</date>
|
14 |
+
<time>13:04:32</time>
|
15 |
+
<contents><target name="magelib"><dir name="Varien"><file name="Autoload.php" hash="9f50f4359dcb3174e923ec90c4f8ce4d"/><dir name="Cache"><dir name="Backend"><file name="Database.php" hash="339b3e61d3cb820d78092ecee6877d84"/><file name="Eaccelerator.php" hash="1bff11b52bd226600d3ddb468d71952b"/><file name="Memcached.php" hash="b05845533f0772456b43388861acfdcc"/></dir><file name="Core.php" hash="8299daa89aa8e5d420aca12dc3c90d92"/></dir><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="17b58a65a08f7262c2b3c19b714443f8"/><file name="Interface.php" hash="a47e473c9e527c38745146daba0045f3"/></dir><file name="Action.php" hash="d9d2033f81d5b12fc28668499f930414"/><dir name="Adapter"><file name="Abstract.php" hash="024b5bd817718721bc16dc80b22c9ec3"/><dir name="Db"><file name="Table.php" hash="577d1bb64df9bd4184ed7384153ed633"/></dir><dir name="Http"><file name="Curl.php" hash="a234beffd5f46d10098b4cd15026d5cd"/></dir><file name="Http.php" hash="ab48b2afa666ec336ba52ac2070da07a"/><file name="Interface.php" hash="c4841187e37ff5ca4d7e9063278633b7"/><file name="Io.php" hash="71e135658d05304c9fc010db751ce386"/><file name="Soap.php" hash="157abe7d07f32613bb702f3c7e731bf5"/><file name="Std.php" hash="0d1510cb36ecd0092c9dae1fdbe8ba76"/><dir name="Zend"><file name="Cache.php" hash="e9f054166d792e97da9eff47f99f571d"/><file name="Db.php" hash="fc0118c9f6acf5c9b7b8266282f4ec89"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="4267051aa48259251edda29218401f68"/><file name="Collection.php" hash="989a5cc71649df618f8ebfae712b358a"/><file name="Generic.php" hash="acd9cab8310a7d51a88e7591db0bdffe"/><file name="Interface.php" hash="00a8284b8a025da330bef4f0172895e0"/></dir><file name="Exception.php" hash="4b397e06b2f636746338fefbb83f426b"/><dir name="Mapper"><file name="Abstract.php" hash="ae455a996cf2684e792bcdf7569ef542"/><file name="Column.php" hash="765cd59e6a214928f5307402dcaada81"/><file name="Interface.php" hash="107005decc7b7bc4922a2d1b9c288ed3"/></dir><dir name="Parser"><file name="Abstract.php" hash="c58faf2e6551721aad044ccb5eecfaf0"/><file name="Csv.php" hash="89c29a2300c8ac53df4f6e5e0dbda1f4"/><file name="Interface.php" hash="464d9342c4a3303ed3fcc9c39fa54939"/><file name="Serialize.php" hash="66963259ce453d1bc7c096bf13cc5250"/><dir name="Xml"><file name="Excel.php" hash="5d433a9ae03ee7fa7dcf8576f2782434"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="a859ec926daeb77020ea3aa5d1c322d1"/><file name="Collection.php" hash="aea4c6c50f4800646fdfeb506e66f426"/></dir><file name="Profile.php" hash="9c4e7f813c3223c410dfcc9baf1a1471"/><dir name="Validator"><file name="Abstract.php" hash="7d4567452b36f1cccf0b9baddf89dffb"/><file name="Column.php" hash="c82b2113ab381da722852d8734c1c29c"/><file name="Dryrun.php" hash="a52f2b76da7474b8e6d89c01769e9f57"/><file name="Interface.php" hash="5ed70425a88f8c08822546743fe8d1cd"/></dir></dir><file name="Convert.php" hash="5d73e3e7ff156c39b39c4e0c80e1c083"/><dir name="Crypt"><file name="Abstract.php" hash="e687297778346a1214af312316d2a450"/><file name="Mcrypt.php" hash="bcc0c8db127bf6c0ccbf6b05a1ebc7af"/></dir><file name="Crypt.php" hash="08fbe071ec9ea0f7ea1e7f7d0a085497"/><dir name="Data"><dir name="Collection"><file name="Db.php" hash="57e1ea9fc24136b1d2ba4b5aef50f520"/><file name="Filesystem.php" hash="22e2872c9ead1c7229a40d173f24fd62"/></dir><file name="Collection.php" hash="e4c28185592c13f69e2d56205923884f"/><dir name="Form"><file name="Abstract.php" hash="98b9fa8a880c9611e60e772798ab01c9"/><dir name="Element"><file name="Abstract.php" hash="ebcf3d7ad4fa41066bb579e6eed4efc3"/><file name="Button.php" hash="1ac6ebee7f02ee2c2f2147befbf72020"/><file name="Checkbox.php" hash="065e612ce32e8dc656734166e42d11b0"/><file name="Checkboxes.php" hash="3b7f5f554a8463f37d1dfaed08d6d38b"/><file name="Collection.php" hash="d70b13b12cd603109e42e4a1e76ed99e"/><file name="Column.php" hash="b5acc47bfb1a7f8cc194450f8f7007d9"/><file name="Date.php" hash="3b1df26c27c3437ae659fa2e79df01f1"/><file name="Datetime.php" hash="b2ec621aadd253f724dabe187438fa9a"/><file name="Editor.php" hash="c68d3cb074511f7268ea7a2f76314c31"/><file name="Fieldset.php" hash="6e9918ab463a9c1d094b1294dd37d068"/><file name="File.php" hash="fa610905c3101af88c90f4d6e7f15690"/><file name="Gallery.php" hash="3a288d30c28a28a8c739ba173692b40c"/><file name="Hidden.php" hash="13b097914028ce4b675ecf4a8478e183"/><file name="Image.php" hash="0bb125179d32d5e4b72d42a702f78e82"/><file name="Imagefile.php" hash="16d0a8ea9b5aeefd3800d98b0f2a050f"/><file name="Label.php" hash="25bccc8da2050c3bb3fd77e154f49ee7"/><file name="Link.php" hash="d51989687bf01445a2c290a9ad9cfe4d"/><file name="Multiline.php" hash="030b3dabe178eb893b087229ea5cb28b"/><file name="Multiselect.php" hash="e3777d40af7bd458b2fdc2936e43d159"/><file name="Note.php" hash="6533afa27275fc26378a5af4d4f01d0a"/><file name="Obscure.php" hash="166bc77e429e1b55d878aa57e201f9b7"/><file name="Password.php" hash="76c9bce6f655ee88397fec7921890da8"/><file name="Radio.php" hash="83fe50f55e16a7c6a517893a7a4c76e4"/><file name="Radios.php" hash="8d8b15b0afdbe3ce0da82de4005571f6"/><dir name="Renderer"><file name="Interface.php" hash="822ab830f5fc71ac3696cccd297e1782"/></dir><file name="Reset.php" hash="60ff7e40e14b9f54f1844dbfb7143eb1"/><file name="Select.php" hash="40ec839bdd86e27f8410ec49f3847b55"/><file name="Submit.php" hash="0b5ec554c06a1e31b30337cb344f87ab"/><file name="Text.php" hash="5fb3165ae1581d6600e88d50e98dbe26"/><file name="Textarea.php" hash="2401fa2361befb095a0d594c7406ad11"/><file name="Time.php" hash="039b841fb0908719f9e314ceae99c8b9"/></dir><dir name="Filter"><file name="Date.php" hash="c21098c5d610e432f8f2e62e463a70b5"/><file name="Datetime.php" hash="ec3e07bf6ee1e4ed2158d2902685757d"/><file name="Escapehtml.php" hash="5df850df1f0a188041300b60d197c3da"/><file name="Interface.php" hash="71c82da5599e80487d24c534dac07260"/><file name="Striptags.php" hash="525641ac83a75f10ed9f5621713899d4"/></dir></dir><file name="Form.php" hash="ff7f5059cb386df05f1d01676c990e08"/><dir name="Tree"><file name="Db.php" hash="1048a11bc7efb24b17fdd7acb7ae7185"/><file name="Dbp.php" hash="97f856c2d9a3bf66873cd1f937d6c53d"/><dir name="Node"><file name="Collection.php" hash="d4d2e9fd2951367ca156290d50fd5e79"/></dir><file name="Node.php" hash="f1563d91887f98e780f9fa68bc3ab58a"/></dir><file name="Tree.php" hash="bcd021d0cbabf38fc2418b2406b9736e"/></dir><file name="Date.php" hash="3129a6658d2506b53e6a916bfbdbe740"/><dir name="Db"><dir name="Adapter"><file name="Interface.php" hash="e38d8a368b401be5a83d42faa08122d2"/><file name="Mysqli.php" hash="92d75b660e62c3499788092b76e6e3da"/><dir name="Pdo"><file name="Mysql.php" hash="454ba18cccf4f349833ed4aa7c4692a1"/></dir></dir><dir name="Ddl"><file name="Table.php" hash="0e153112e51882c708aaef04cbf5a035"/></dir><file name="Exception.php" hash="cac07fa5f5942a35621ecafa5b478740"/><file name="Helper.php" hash="419ba9bae77f83f3ec16c6ed030429c6"/><file name="Select.php" hash="2825d6fe0f266fb8b224978d089ba5a9"/><dir name="Statement"><file name="Parameter.php" hash="e4d24c4d36257468fc65f6496ae68696"/><dir name="Pdo"><file name="Mysql.php" hash="55a3324ee346772f3049f5642fa12aab"/></dir></dir><dir name="Tree"><file name="Exception.php" hash="615870d23d7acf93d95e58f93a4b5e5a"/><dir name="Node"><file name="Exception.php" hash="370eeda683dd51772ff410cce3870912"/></dir><file name="Node.php" hash="f4a0f790a858758eb744d5e489180620"/><dir name="NodeSet"><file name="Exception.php" hash="a2217206d748ebbfbfff95a61ece4d03"/></dir><file name="NodeSet.php" hash="560ae179275f5e5508e23a9f2981bfcd"/></dir><file name="Tree.php" hash="4bcbde7f5187acfb30237a085e0c671c"/></dir><file name="Debug.php" hash="5e30a0e05bfbd2a41b0ade3d076702ff"/><dir name="Directory"><file name="Collection.php" hash="3a14ec5c5c53e3f3b533ae690fc32ce5"/><file name="Factory.php" hash="50311c3bcd43a44520d1eb05accae004"/><file name="IFactory.php" hash="d74f483a5bf25b5709648fb85bf0145b"/><file name="a.txt" hash="026e450c46ac92ea375302955a4f42fb"/></dir><dir name="Event"><file name="Collection.php" hash="7d488d1f5442ebe944b6c9dace32b573"/><dir name="Observer"><file name="Collection.php" hash="6d4895842c61b62561fc22a76259086a"/><file name="Cron.php" hash="a35a51db9db462eda37144a0f29a8e0b"/><file name="Regex.php" hash="cf0ac2b8d8e0f09aeda016ee5a337e26"/></dir><file name="Observer.php" hash="78a0ef0dadf71b812f70806113ea14c5"/></dir><file name="Event.php" hash="a155d32ce52040fd0f9aecbbda0ea9ef"/><file name="Exception.php" hash="d764dbe0c6a78b4bea2e12aecce28b9a"/><dir name="File"><file name="Csv.php" hash="c9cf4bb12f626ca6df92ea1d5794e71d"/><file name="CsvMulty.php" hash="b1ce53d79c92f880892f6bc6118700d4"/><file name="Object.php" hash="c16eac461e4131a8effe4ef27fdd6bee"/><dir name="Transfer"><dir name="Adapter"><file name="Http.php" hash="77add7c751a97cf64cff91e7e59441dc"/></dir></dir><dir name="Uploader"><file name="Image.php" hash="e706d756a6a2a01e932711c1cccc93c6"/></dir><file name="Uploader.php" hash="475000bb6960ddab28998b66986eb341"/></dir><dir name="Filter"><dir name="Array"><file name="Grid.php" hash="f335fcefe5fdb4c9df56dd02bdb0a9a1"/></dir><file name="Array.php" hash="bfaba982f2bf36c1ed20f00be965815b"/><file name="Email.php" hash="ae9158b6faf535c74be16f15f67189e2"/><file name="Money.php" hash="503f60d4390c4d4c12d315fc67fea532"/><dir name="Object"><file name="Grid.php" hash="410da6590fca1d728b2ef77521409369"/></dir><file name="Object.php" hash="f810a76d15fa0cec240a4d550b1f4a57"/><file name="Sprintf.php" hash="7275dd4301186c43360e6c4738785e69"/><dir name="Template"><file name="Simple.php" hash="db26bf9a9336322532ad46e851046973"/><dir name="Tokenizer"><file name="Abstract.php" hash="1c44ba80e79ab56033f3a6743f4b915f"/><file name="Parameter.php" hash="489dbb4266a1a9ff00e0c2ec4870692b"/><file name="Variable.php" hash="75e12cfe8390e363406ead1017f18dc5"/></dir></dir><file name="Template.php" hash="9410f87fc57bf17ac774763ff9bf9582"/></dir><dir name="Http"><dir name="Adapter"><file name="Curl.php" hash="70042c15326adf5e6c03af4cdae4e070"/></dir><file name="Client.php" hash="f7192232c74f90e508fa8037b63d9b17"/></dir><dir name="Image"><dir name="Adapter"><file name="Abstract.php" hash="53ee322e240193c2d794e0305a58784b"/><file name="Gd2.php" hash="d58aa8baf7894bb2bedca706a153d6f7"/></dir><file name="Adapter.php" hash="010aa03b7eed2180f755c32b57feaa50"/></dir><file name="Image.php" hash="75ffa375129b3e868f1abfa264e3aed4"/><dir name="Io"><file name="Abstract.php" hash="e3d13956905908e538033cdce35017d0"/><file name="Exception.php" hash="f448af56de8a6576232c3b8abe811a24"/><file name="File.php" hash="d8a35453677120806bd504a376d883ae"/><file name="Ftp.php" hash="1b338d1b00ae8bcca46b35dd4ae9947d"/><file name="Interface.php" hash="2282a739801134ef4fc1c317fd71fe0f"/><file name="Sftp.php" hash="b112c3a081b966b7bf3de798ae784306"/></dir><dir name="Object"><file name="Cache.php" hash="5a20030d3146616195283cb164e12f83"/><file name="Mapper.php" hash="8fe3dbd45a33244e28e467655a2be96b"/></dir><file name="Object.php" hash="61cf06fddeaae15fdc8fe19d8f3e3326"/><dir name="Pear"><file name="Frontend.php" hash="8bbd4fceaf73c5cc1992e7bd5581e04f"/><file name="Package.php" hash="b1908245201e0ea86e1df171d21d491c"/><file name="Registry.php" hash="146311fdb9de26c19db4405135244509"/></dir><file name="Pear.php" hash="d2aa295eb2b960fa3ab9a031a1e24c7b"/><file name="Profiler.php" hash="89905cd056b8926b8dcab134785ae5e6"/><dir name="Simplexml"><dir name="Config"><dir name="Cache"><file name="Abstract.php" hash="a0bf74f4e8ca80a8360d3a9046193a85"/><file name="File.php" hash="7a9d610ee02458e3a9158f4884fffda6"/></dir></dir><file name="Config.php" hash="e3e1c3cd7044b488dacc314b2fd20e1b"/><file name="Element.php" hash="e9de0071cbe5df249b847d9d22473519"/></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_ZF</name><channel>community</channel><min>1.12.10.5</min><max>1.12.10.5</max></package><extension><name>PDO</name><min/><max/></extension><extension><name>SPL</name><min/><max/></extension><extension><name>curl</name><min/><max/></extension><extension><name>SimpleXML</name><min/><max/></extension><extension><name>dom</name><min/><max/></extension><extension><name>gd</name><min/><max/></extension><extension><name>iconv</name><min/><max/></extension><extension><name>pdo_mysql</name><min/><max/></extension><extension><name>mcrypt</name><min/><max/></extension><extension><name>pcre</name><min/><max/></extension><extension><name>Reflection</name><min/><max/></extension><extension><name>session</name><min/><max/></extension></required></dependencies>
|
18 |
</package>
|