Version Notes
1.9.2.0
Download this release
Release Info
Developer | Magento Core Team |
Extension | Lib_Js_Mage |
Version | 1.9.2.0 |
Comparing to | |
See all releases |
Code changes from version 1.9.1.1 to 1.9.2.0
- js/mage/adminhtml/form.js +29 -8
- js/mage/translate_inline.css +1 -1
- js/mage/translate_inline.js +7 -7
- js/varien/form.js +29 -8
- package.xml +6 -6
js/mage/adminhtml/form.js
CHANGED
@@ -275,7 +275,7 @@ RegionUpdater.prototype = {
|
|
275 |
// Element.insert(this.regionTextEl, {after : this.tpl.evaluate(this._regionSelectEl)});
|
276 |
// this.regionSelectEl = $(this._regionSelectEl.id);
|
277 |
// }
|
278 |
-
if (this.lastCountryId!=this.countryEl.value) {
|
279 |
var i, option, region, def;
|
280 |
|
281 |
def = this.regionSelectEl.getAttribute('defaultValue');
|
@@ -301,20 +301,20 @@ RegionUpdater.prototype = {
|
|
301 |
this.regionSelectEl.appendChild(option);
|
302 |
}
|
303 |
|
304 |
-
if (regionId==def || region.name.toLowerCase()==def || region.code.toLowerCase()==def) {
|
305 |
this.regionSelectEl.value = regionId;
|
306 |
}
|
307 |
}
|
308 |
}
|
309 |
-
|
310 |
-
if (this.disableAction=='hide') {
|
311 |
if (this.regionTextEl) {
|
312 |
this.regionTextEl.style.display = 'none';
|
313 |
this.regionTextEl.style.disabled = true;
|
314 |
}
|
315 |
this.regionSelectEl.style.display = '';
|
316 |
this.regionSelectEl.disabled = false;
|
317 |
-
} else if (this.disableAction=='disable') {
|
318 |
if (this.regionTextEl) {
|
319 |
this.regionTextEl.disabled = true;
|
320 |
}
|
@@ -324,14 +324,15 @@ RegionUpdater.prototype = {
|
|
324 |
|
325 |
this.lastCountryId = this.countryEl.value;
|
326 |
} else {
|
327 |
-
|
|
|
328 |
if (this.regionTextEl) {
|
329 |
this.regionTextEl.style.display = '';
|
330 |
this.regionTextEl.style.disabled = false;
|
331 |
}
|
332 |
this.regionSelectEl.style.display = 'none';
|
333 |
this.regionSelectEl.disabled = true;
|
334 |
-
} else if (this.disableAction=='disable') {
|
335 |
if (this.regionTextEl) {
|
336 |
this.regionTextEl.disabled = false;
|
337 |
}
|
@@ -339,7 +340,7 @@ RegionUpdater.prototype = {
|
|
339 |
if (this.clearRegionValueOnDisable) {
|
340 |
this.regionSelectEl.value = '';
|
341 |
}
|
342 |
-
} else if (this.disableAction=='nullify') {
|
343 |
this.regionSelectEl.options.length = 1;
|
344 |
this.regionSelectEl.value = '';
|
345 |
this.regionSelectEl.selectedIndex = 0;
|
@@ -366,6 +367,26 @@ RegionUpdater.prototype = {
|
|
366 |
display ? marks[0].show() : marks[0].hide();
|
367 |
}
|
368 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
}
|
370 |
}
|
371 |
|
275 |
// Element.insert(this.regionTextEl, {after : this.tpl.evaluate(this._regionSelectEl)});
|
276 |
// this.regionSelectEl = $(this._regionSelectEl.id);
|
277 |
// }
|
278 |
+
if (this.lastCountryId != this.countryEl.value) {
|
279 |
var i, option, region, def;
|
280 |
|
281 |
def = this.regionSelectEl.getAttribute('defaultValue');
|
301 |
this.regionSelectEl.appendChild(option);
|
302 |
}
|
303 |
|
304 |
+
if (regionId == def || region.name.toLowerCase() == def || region.code.toLowerCase() == def) {
|
305 |
this.regionSelectEl.value = regionId;
|
306 |
}
|
307 |
}
|
308 |
}
|
309 |
+
this.sortSelect();
|
310 |
+
if (this.disableAction == 'hide') {
|
311 |
if (this.regionTextEl) {
|
312 |
this.regionTextEl.style.display = 'none';
|
313 |
this.regionTextEl.style.disabled = true;
|
314 |
}
|
315 |
this.regionSelectEl.style.display = '';
|
316 |
this.regionSelectEl.disabled = false;
|
317 |
+
} else if (this.disableAction == 'disable') {
|
318 |
if (this.regionTextEl) {
|
319 |
this.regionTextEl.disabled = true;
|
320 |
}
|
324 |
|
325 |
this.lastCountryId = this.countryEl.value;
|
326 |
} else {
|
327 |
+
this.sortSelect();
|
328 |
+
if (this.disableAction == 'hide') {
|
329 |
if (this.regionTextEl) {
|
330 |
this.regionTextEl.style.display = '';
|
331 |
this.regionTextEl.style.disabled = false;
|
332 |
}
|
333 |
this.regionSelectEl.style.display = 'none';
|
334 |
this.regionSelectEl.disabled = true;
|
335 |
+
} else if (this.disableAction == 'disable') {
|
336 |
if (this.regionTextEl) {
|
337 |
this.regionTextEl.disabled = false;
|
338 |
}
|
340 |
if (this.clearRegionValueOnDisable) {
|
341 |
this.regionSelectEl.value = '';
|
342 |
}
|
343 |
+
} else if (this.disableAction == 'nullify') {
|
344 |
this.regionSelectEl.options.length = 1;
|
345 |
this.regionSelectEl.value = '';
|
346 |
this.regionSelectEl.selectedIndex = 0;
|
367 |
display ? marks[0].show() : marks[0].hide();
|
368 |
}
|
369 |
}
|
370 |
+
},
|
371 |
+
sortSelect : function () {
|
372 |
+
var elem = this.regionSelectEl;
|
373 |
+
var tmpArray = new Array();
|
374 |
+
var currentVal = $(elem).value;
|
375 |
+
for (var i = 0; i < $(elem).options.length; i++) {
|
376 |
+
if (i == 0) {
|
377 |
+
continue;
|
378 |
+
}
|
379 |
+
tmpArray[i-1] = new Array();
|
380 |
+
tmpArray[i-1][0] = $(elem).options[i].text;
|
381 |
+
tmpArray[i-1][1] = $(elem).options[i].value;
|
382 |
+
}
|
383 |
+
tmpArray.sort();
|
384 |
+
for (var i = 1; i <= tmpArray.length; i++) {
|
385 |
+
var op = new Option(tmpArray[i-1][0], tmpArray[i-1][1]);
|
386 |
+
$(elem).options[i] = op;
|
387 |
+
}
|
388 |
+
$(elem).value = currentVal;
|
389 |
+
return;
|
390 |
}
|
391 |
}
|
392 |
|
js/mage/translate_inline.css
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
24 |
*/
|
25 |
|
26 |
-
[translate], .translate-inline { /* background:black; font-weight:bold; color:red; */ outline: dotted 1px red!important;}
|
27 |
* html .translate-inline,
|
28 |
*+html .translate-inline{ border: dotted 1px red !important;}
|
29 |
.translate-inline-script, .translate-inline-title { background:yellow; color:black; font-weight:bold; }
|
23 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
24 |
*/
|
25 |
|
26 |
+
[data-translate], .translate-inline { /* background:black; font-weight:bold; color:red; */ outline: dotted 1px red!important;}
|
27 |
* html .translate-inline,
|
28 |
*+html .translate-inline{ border: dotted 1px red !important;}
|
29 |
.translate-inline-script, .translate-inline-title { background:yellow; color:black; font-weight:bold; }
|
js/mage/translate_inline.js
CHANGED
@@ -32,7 +32,7 @@ TranslateInline.prototype = {
|
|
32 |
this.trigTimer = null;
|
33 |
this.trigContentEl = null;
|
34 |
if (Prototype.Browser.IE) {
|
35 |
-
$$('*[translate]').each(this.initializeElement.bind(this));
|
36 |
var scope = this;
|
37 |
Ajax.Responders.register({ onComplete: function() {
|
38 |
window.setTimeout(scope.reinitElements.bind(scope), 50)
|
@@ -42,7 +42,7 @@ TranslateInline.prototype = {
|
|
42 |
var ElementUpdate = ElementNode.prototype.update;
|
43 |
ElementNode.prototype.update = function() {
|
44 |
ElementUpdate.apply(this, arguments);
|
45 |
-
$(this).select('*[translate]').each(scope.initializeElement.bind(scope));
|
46 |
}
|
47 |
}
|
48 |
this.trigEl = $(trigEl);
|
@@ -50,11 +50,11 @@ TranslateInline.prototype = {
|
|
50 |
|
51 |
Event.observe(document.body, 'mousemove', function(e) {
|
52 |
var target = Event.element(e);
|
53 |
-
if (!$(target).match('*[translate]')) {
|
54 |
-
target = target.up('*[translate]');
|
55 |
}
|
56 |
|
57 |
-
if (target && $(target).match('*[translate]')) {
|
58 |
this.trigShow(target, e);
|
59 |
} else {
|
60 |
if (Event.element(e).match('#' + trigEl)) {
|
@@ -76,7 +76,7 @@ TranslateInline.prototype = {
|
|
76 |
},
|
77 |
|
78 |
reinitElements: function(el) {
|
79 |
-
$$('*[translate]').each(this.initializeElement.bind(this));
|
80 |
},
|
81 |
|
82 |
trigShow: function(el, event) {
|
@@ -120,7 +120,7 @@ TranslateInline.prototype = {
|
|
120 |
return;
|
121 |
}
|
122 |
this.trigHideClear();
|
123 |
-
eval('var data = ' + el.getAttribute('translate'));
|
124 |
|
125 |
var content = '<form id="translate-inline-form">';
|
126 |
var t = new Template(
|
32 |
this.trigTimer = null;
|
33 |
this.trigContentEl = null;
|
34 |
if (Prototype.Browser.IE) {
|
35 |
+
$$('*[data-translate]').each(this.initializeElement.bind(this));
|
36 |
var scope = this;
|
37 |
Ajax.Responders.register({ onComplete: function() {
|
38 |
window.setTimeout(scope.reinitElements.bind(scope), 50)
|
42 |
var ElementUpdate = ElementNode.prototype.update;
|
43 |
ElementNode.prototype.update = function() {
|
44 |
ElementUpdate.apply(this, arguments);
|
45 |
+
$(this).select('*[data-translate]').each(scope.initializeElement.bind(scope));
|
46 |
}
|
47 |
}
|
48 |
this.trigEl = $(trigEl);
|
50 |
|
51 |
Event.observe(document.body, 'mousemove', function(e) {
|
52 |
var target = Event.element(e);
|
53 |
+
if (!$(target).match('*[data-translate]')) {
|
54 |
+
target = target.up('*[data-translate]');
|
55 |
}
|
56 |
|
57 |
+
if (target && $(target).match('*[data-translate]')) {
|
58 |
this.trigShow(target, e);
|
59 |
} else {
|
60 |
if (Event.element(e).match('#' + trigEl)) {
|
76 |
},
|
77 |
|
78 |
reinitElements: function(el) {
|
79 |
+
$$('*[data-translate]').each(this.initializeElement.bind(this));
|
80 |
},
|
81 |
|
82 |
trigShow: function(el, event) {
|
120 |
return;
|
121 |
}
|
122 |
this.trigHideClear();
|
123 |
+
eval('var data = ' + el.getAttribute('data-translate'));
|
124 |
|
125 |
var content = '<form id="translate-inline-form">';
|
126 |
var t = new Template(
|
js/varien/form.js
CHANGED
@@ -268,20 +268,20 @@ RegionUpdater.prototype = {
|
|
268 |
this.regionSelectEl.appendChild(option);
|
269 |
}
|
270 |
|
271 |
-
if (regionId==def || (region.name && region.name.toLowerCase()==def)
|
272 |
-
(region.name && region.code.toLowerCase()==def)
|
273 |
) {
|
274 |
this.regionSelectEl.value = regionId;
|
275 |
}
|
276 |
}
|
277 |
-
|
278 |
-
if (this.disableAction=='hide') {
|
279 |
if (this.regionTextEl) {
|
280 |
this.regionTextEl.style.display = 'none';
|
281 |
}
|
282 |
|
283 |
this.regionSelectEl.style.display = '';
|
284 |
-
} else if (this.disableAction=='disable') {
|
285 |
if (this.regionTextEl) {
|
286 |
this.regionTextEl.disabled = true;
|
287 |
}
|
@@ -290,18 +290,19 @@ RegionUpdater.prototype = {
|
|
290 |
this.setMarkDisplay(this.regionSelectEl, true);
|
291 |
} else {
|
292 |
this.regionSelectEl.options.length = 1;
|
293 |
-
|
|
|
294 |
if (this.regionTextEl) {
|
295 |
this.regionTextEl.style.display = '';
|
296 |
}
|
297 |
this.regionSelectEl.style.display = 'none';
|
298 |
Validation.reset(this.regionSelectEl);
|
299 |
-
} else if (this.disableAction=='disable') {
|
300 |
if (this.regionTextEl) {
|
301 |
this.regionTextEl.disabled = false;
|
302 |
}
|
303 |
this.regionSelectEl.disabled = true;
|
304 |
-
} else if (this.disableAction=='nullify') {
|
305 |
this.regionSelectEl.options.length = 1;
|
306 |
this.regionSelectEl.value = '';
|
307 |
this.regionSelectEl.selectedIndex = 0;
|
@@ -336,6 +337,26 @@ RegionUpdater.prototype = {
|
|
336 |
}
|
337 |
}
|
338 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
}
|
340 |
}
|
341 |
|
268 |
this.regionSelectEl.appendChild(option);
|
269 |
}
|
270 |
|
271 |
+
if (regionId == def || (region.name && region.name.toLowerCase() == def)
|
272 |
+
|| (region.name && region.code.toLowerCase() == def)
|
273 |
) {
|
274 |
this.regionSelectEl.value = regionId;
|
275 |
}
|
276 |
}
|
277 |
+
this.sortSelect();
|
278 |
+
if (this.disableAction == 'hide') {
|
279 |
if (this.regionTextEl) {
|
280 |
this.regionTextEl.style.display = 'none';
|
281 |
}
|
282 |
|
283 |
this.regionSelectEl.style.display = '';
|
284 |
+
} else if (this.disableAction == 'disable') {
|
285 |
if (this.regionTextEl) {
|
286 |
this.regionTextEl.disabled = true;
|
287 |
}
|
290 |
this.setMarkDisplay(this.regionSelectEl, true);
|
291 |
} else {
|
292 |
this.regionSelectEl.options.length = 1;
|
293 |
+
this.sortSelect();
|
294 |
+
if (this.disableAction == 'hide') {
|
295 |
if (this.regionTextEl) {
|
296 |
this.regionTextEl.style.display = '';
|
297 |
}
|
298 |
this.regionSelectEl.style.display = 'none';
|
299 |
Validation.reset(this.regionSelectEl);
|
300 |
+
} else if (this.disableAction == 'disable') {
|
301 |
if (this.regionTextEl) {
|
302 |
this.regionTextEl.disabled = false;
|
303 |
}
|
304 |
this.regionSelectEl.disabled = true;
|
305 |
+
} else if (this.disableAction == 'nullify') {
|
306 |
this.regionSelectEl.options.length = 1;
|
307 |
this.regionSelectEl.value = '';
|
308 |
this.regionSelectEl.selectedIndex = 0;
|
337 |
}
|
338 |
}
|
339 |
}
|
340 |
+
},
|
341 |
+
sortSelect : function () {
|
342 |
+
var elem = this.regionSelectEl;
|
343 |
+
var tmpArray = new Array();
|
344 |
+
var currentVal = $(elem).value;
|
345 |
+
for (var i = 0; i < $(elem).options.length; i++) {
|
346 |
+
if (i == 0) {
|
347 |
+
continue;
|
348 |
+
}
|
349 |
+
tmpArray[i-1] = new Array();
|
350 |
+
tmpArray[i-1][0] = $(elem).options[i].text;
|
351 |
+
tmpArray[i-1][1] = $(elem).options[i].value;
|
352 |
+
}
|
353 |
+
tmpArray.sort();
|
354 |
+
for (var i = 1; i <= tmpArray.length; i++) {
|
355 |
+
var op = new Option(tmpArray[i-1][0], tmpArray[i-1][1]);
|
356 |
+
$(elem).options[i] = op;
|
357 |
+
}
|
358 |
+
$(elem).value = currentVal;
|
359 |
+
return;
|
360 |
}
|
361 |
}
|
362 |
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Lib_Js_Mage</name>
|
4 |
-
<version>1.9.
|
5 |
<stability>stable</stability>
|
6 |
<license>Mixed</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Javascript Libraries for Magento</summary>
|
10 |
<description>Javascript Libraries for Magento</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>2015-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageweb"><dir name="js"><dir name="lib"><file name="FABridge.js" hash="64244d8d58abd42bd71f0ee3309767ad"/><file name="boxover.js" hash="a5ade77452e8d5066cb84dcac3d34ed5"/><file name="ccard.js" hash="d3e849be0977d53de4af933b40293ff6"/><file name="dropdown.js" hash="2d9da17f15fc744e52ff612bf7a7c9f5"/><file name="ds-sleight.js" hash="85af457d444865d1587bfe4875bd4fc6"/><file name="flex.js" hash="d6b59c1d7c7cad9c6c91becc4b89ae32"/><dir name="jquery"><file name="jquery-1.10.2.js" hash="91515770ce8c55de23b306444d8ea998"/><file name="jquery-1.10.2.min.js" hash="841dc30647f93349b7d8ef61deebe411"/><file name="jquery-1.10.2.min.map" hash="6c3ccfc221d36777d383b6e04d0b8af9"/><file name="noconflict.js" hash="2de1eabae306cff4f08b9f5eb1c934df"/></dir></dir><dir name="mage"><dir name="adminhtml"><file name="accordion.js" hash="bcc4dc0055960cc580d9a07079951bb5"/><file name="backup.js" hash="d685e20206bbcf8596f1bb73296d0b18"/><file name="browser.js" hash="98b2143b3c7bdef5849cd92541beeec2"/><file name="events.js" hash="157028b6921ea86c8c1353ff2b4daf7c"/><file name="flexuploader.js" hash="786e37bdc8eea5caa7e078a4fe2d8f70"/><file name="form.js" hash="
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Js_Prototype</name><channel>community</channel><min>1.7.0.
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Lib_Js_Mage</name>
|
4 |
+
<version>1.9.2.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Mixed</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Javascript Libraries for Magento</summary>
|
10 |
<description>Javascript Libraries for Magento</description>
|
11 |
+
<notes>1.9.2.0</notes>
|
12 |
<authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
|
13 |
+
<date>2015-06-26</date>
|
14 |
+
<time>13:48:52</time>
|
15 |
+
<contents><target name="mageweb"><dir name="js"><dir name="lib"><file name="FABridge.js" hash="64244d8d58abd42bd71f0ee3309767ad"/><file name="boxover.js" hash="a5ade77452e8d5066cb84dcac3d34ed5"/><file name="ccard.js" hash="d3e849be0977d53de4af933b40293ff6"/><file name="dropdown.js" hash="2d9da17f15fc744e52ff612bf7a7c9f5"/><file name="ds-sleight.js" hash="85af457d444865d1587bfe4875bd4fc6"/><file name="flex.js" hash="d6b59c1d7c7cad9c6c91becc4b89ae32"/><dir name="jquery"><file name="jquery-1.10.2.js" hash="91515770ce8c55de23b306444d8ea998"/><file name="jquery-1.10.2.min.js" hash="841dc30647f93349b7d8ef61deebe411"/><file name="jquery-1.10.2.min.map" hash="6c3ccfc221d36777d383b6e04d0b8af9"/><file name="noconflict.js" hash="2de1eabae306cff4f08b9f5eb1c934df"/></dir></dir><dir name="mage"><dir name="adminhtml"><file name="accordion.js" hash="bcc4dc0055960cc580d9a07079951bb5"/><file name="backup.js" hash="d685e20206bbcf8596f1bb73296d0b18"/><file name="browser.js" hash="98b2143b3c7bdef5849cd92541beeec2"/><file name="events.js" hash="157028b6921ea86c8c1353ff2b4daf7c"/><file name="flexuploader.js" hash="786e37bdc8eea5caa7e078a4fe2d8f70"/><file name="form.js" hash="ffeeeb0c75d2461b192bcb605402e96e"/><file name="giftmessage.js" hash="d911c86f33828e2d991cf464ca3437eb"/><dir name="giftoptions"><file name="tooltip.js" hash="49562aaae14c77448f2e0903c159ad14"/></dir><file name="grid.js" hash="343a305ffea464dfd726fcecb7ce9dd6"/><file name="hash.js" hash="fd0baa433d58ae1b55d703f11b4f42a4"/><file name="image.js" hash="f75339fdc409f7bff22120ace908d851"/><file name="loader.js" hash="a52e5c7df531fab3133ab82b356d91f9"/><file name="magento-all.js" hash="759e5b8ed9d051cdb97b7547469020d3"/><dir name="product"><dir name="composite"><file name="configure.js" hash="7f55e5d593d09ba8d309190386aaec7d"/></dir></dir><file name="product.js" hash="0253c591cd4beabc703a88dec162e031"/><file name="rules.js" hash="219f397e72098ae0e220d8d17c46a806"/><dir name="sales"><file name="packaging.js" hash="743b60a18adc5e04ed0e28b8c549f2f6"/></dir><file name="sales.js" hash="c8dd0fd8fa3faa9b9f0dd767b5a2c995"/><file name="scrollbar.js" hash="95dd0c4396e1752b36762e736faac6d5"/><file name="tabs.js" hash="0343832c21b3e6d46dc3b32c8b861833"/><file name="tools.js" hash="b987b91011982d00f249cc6621834b8d"/><file name="uploader.js" hash="66cdef337c2a486a41452a2bd12783ac"/><file name="variables.js" hash="63424664960a3af8479c043f4948e830"/><dir name="wysiwyg"><dir name="tiny_mce"><dir name="plugins"><dir name="magentovariable"><file name="editor_plugin.js" hash="3e34d521a7fd22652003b8fadc599d01"/><dir name="img"><file name="icon.gif" hash="682b29a0e734f952cb2edabede6a25d1"/></dir></dir><dir name="magentowidget"><file name="editor_plugin.js" hash="09a5b017cb06d94bafd5f0c19cf38b08"/><dir name="img"><file name="icon.gif" hash="532c141286373f098f1f4362e001c7f8"/></dir></dir></dir><file name="setup.js" hash="98e0479ebf2c34820566446ad8410c40"/><dir name="themes"><dir name="advanced"><dir name="skins"><dir name="default"><file name="content.css" hash="6a2b56fed3a8ad187534eb722a340437"/><file name="dialog.css" hash="38150d67c013645b983aba2bdc3554be"/></dir></dir></dir></dir></dir><file name="widget.js" hash="524c92d81a465b081855166c64e8b2cc"/></dir></dir><file name="captcha.js" hash="8043c1e72d2b5b8430a5324f480ffd01"/><file name="centinel.js" hash="27fafa1bbb2a8b611dce033351750fce"/><file name="cookies.js" hash="6c67304dccf84efdeb3fddb664001592"/><file name="directpost.js" hash="5a8ad96767167b7421c7617fccac1330"/><file name="translate.js" hash="cfe92d6afd0a4d6fcca5b65d6e192c4b"/><file name="translate_inline.css" hash="8805e9759faa2b30f33104c5df325d36"/><file name="translate_inline.js" hash="915d0cf14ee7f6b3e29339ea46620908"/></dir><dir name="varien"><file name="accordion.js" hash="d650d3a7ec68f269159fd8070c5dea33"/><file name="configurable.js" hash="d8561f310d57929c00cb517c26beed0f"/><file name="form.js" hash="5606fb8736f217baf8468600ac0ca458"/><file name="iehover-fix.js" hash="39983c11a80cce683ebfe1c8d2e5b1b9"/><file name="js.js" hash="15d54a6422758acb33ebbc415689d53d"/><file name="menu.js" hash="7f1bccad8b682880da85acf5f7aaef0d"/><file name="payment.js" hash="d6e2ca07bc9b15147faa555e71f08bc3"/><file name="product.js" hash="78881d8a1e4a87126cc87741177e1250"/><file name="telephone.js" hash="714770a989902f842853d0749a0a4dee"/><file name="weee.js" hash="9854e626c7d27fbb2f0b3c824c506e24"/></dir><file name="blank.html" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="index.php" hash="e8bd607e8a1aac21d508d4bc070f19d3"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><dir name="flash"><file name="AC_RunActiveContent.js" hash="3e038cea960c1b650442b85cea237053"/></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Js_Prototype</name><channel>community</channel><min>1.7.0.1</min><max>1.7.0.1</max></package></required></dependencies>
|
18 |
</package>
|