Mpycho_Jquery_Lightboxes - Version 1.0.3

Version Notes

- Fixing of title issue in Fancybox
- Fixing of offset issue in image size
- Fixing of IE issue due to extra ',' in initialization code
- Fixing of missing images/buttons in Lightbox clone
- Fixed the 404 error in 1.5.x
- Magento-Connect compatible with 1.5.x

Download this release

Release Info

Developer Magento Core Team
Extension Mpycho_Jquery_Lightboxes
Version 1.0.3
Comparing to
See all releases


Code changes from version 1.0.2 to 1.0.3

app/code/local/MagentoPycho/Lightboxes/Block/System/Config/Info.php CHANGED
@@ -19,14 +19,15 @@ class MagentoPycho_Lightboxes_Block_System_Config_Info
19
  */
20
  public function render(Varien_Data_Form_Element_Abstract $element)
21
  {
22
- $html = '<div style="background:url(\'http://www.guruwebsoft.com/magentopycho-logo.jpg\') no-repeat scroll 15px center #EAF0EE;border:1px solid #CCCCCC;margin-bottom:10px;padding:10px 5px 5px 90px;">
23
- <h4>About MagentoPycho</h4>
24
- <p>Professional Web Developer / Freelancer with specialization in CMS + E-Commerce Solutions.<br />
25
- View more extensions @ <a href="http://www.magentocommerce.com/magento-connect/developer/MagentoPycho" target="_blank">MagentoConnect</a><br />
26
- <a href="http://www.magentocommerce.com/boards/member/messages/pm/163318/" target="_blank">Request a Quote / Hire Me</a><br />
27
- skype me @ magentopycho</p>
28
- </div>';
29
-
 
30
  return $html;
31
  }
32
  }
19
  */
20
  public function render(Varien_Data_Form_Element_Abstract $element)
21
  {
22
+ $html = '<div style="background:url(\'http://www.magepsycho.com/_logo.png\') no-repeat scroll 15px center #EAF0EE;border:1px solid #CCCCCC;margin-bottom:10px;padding:10px 5px 5px 200px;">
23
+ <h4>About MagePsycho</h4>
24
+ <p>A Zend Certified Web Developer / Freelancer with specialization in CMS + E-Commerce Solutions.<br />
25
+ View more extensions @ <a href="http://www.magentocommerce.com/magento-connect/developer/MagePsycho" target="_blank">MagentoConnect</a><br />
26
+ <a href="http://www.magepsycho.com/contacts" target="_blank">Request a Quote / Contact Us</a><br />
27
+ Skype me @ magentopycho<br />
28
+ Visit my website: <a href="http://www.magepsycho.com" target="_blank">www.magespycho.com</a></p>
29
+ </div>';
30
+
31
  return $html;
32
  }
33
  }
app/code/local/MagentoPycho/Lightboxes/Helper/Data.php CHANGED
@@ -17,7 +17,7 @@ class MagentoPycho_Lightboxes_Helper_Data extends Mage_Core_Helper_Abstract
17
 
18
  public function getMainImageSize()
19
  {
20
- list($main_width, $main_height) = explode('x', $this->getConfig('mainimage_size'));
21
 
22
  $main_width = intval($main_width) > 0 ? intval($main_width) : 265;
23
  $main_height = intval($main_height) > 0 ? intval($main_height) : 265;
@@ -27,7 +27,7 @@ class MagentoPycho_Lightboxes_Helper_Data extends Mage_Core_Helper_Abstract
27
 
28
  public function getThumbnailImageSize()
29
  {
30
- list($thu_width, $thu_height) = explode('x', $this->getConfig('thumbnail_size'));
31
 
32
  $thu_width = intval($thu_width) > 0 ? intval($thu_width) : 57;
33
  $thu_height = intval($thu_height) > 0 ? intval($thu_height) : 57;
@@ -37,7 +37,7 @@ class MagentoPycho_Lightboxes_Helper_Data extends Mage_Core_Helper_Abstract
37
 
38
  public function getPopupImageSize()
39
  {
40
- list($big_width, $big_height) = explode('x', $this->getConfig('popupimage_size'));
41
 
42
  $big_width = intval($big_width) > 0 ? intval($big_width) : '';
43
  $big_height = intval($big_height) > 0 ? intval($big_height) : '';
@@ -86,10 +86,11 @@ class MagentoPycho_Lightboxes_Helper_Data extends Mage_Core_Helper_Abstract
86
  if($this->getConfig('overlayColor', 'fancybox')){
87
  $js_string .= "'overlayColor' : '" . $this->getConfig('overlayColor', 'fancybox') . "'," . PHP_EOL;
88
  }
89
- if($this->getConfig('titleShow', 'fancybox')){
90
- $js_string .= "'titleShow' : " . $this->getConfig('titleShow', 'fancybox') . "," . PHP_EOL;
 
91
  }
92
- if($this->getConfig('titlePosition', 'fancybox')){
93
  $js_string .= "'titlePosition' : '" . $this->getConfig('titlePosition', 'fancybox') . "'," . PHP_EOL;
94
  }
95
  if($this->getConfig('transitionIn', 'fancybox')){
@@ -122,6 +123,7 @@ class MagentoPycho_Lightboxes_Helper_Data extends Mage_Core_Helper_Abstract
122
  if($this->getConfig('enableEscapeButton', 'fancybox')){
123
  $js_string .= "'enableEscapeButton' : " . $this->getConfig('enableEscapeButton', 'fancybox') . "," . PHP_EOL;
124
  }
 
125
  return $js_string;
126
  }
127
 
@@ -146,12 +148,12 @@ class MagentoPycho_Lightboxes_Helper_Data extends Mage_Core_Helper_Abstract
146
  $js_string .= "'containerResizeSpeed' : " . $this->getConfig('containerResizeSpeed', 'lightboxclone') . "," . PHP_EOL;
147
  }
148
 
149
- $js_string .= "'imageBlank' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "magentopycho/jquery-lightbox-0.5/images/lightbox-blank.gif'," . PHP_EOL;
150
- $js_string .= "'imageLoading' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "magentopycho/jquery-lightbox-0.5/images/lightbox-ico-loading.gif'," . PHP_EOL;
151
- $js_string .= "'imageBtnClose' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "magentopycho/jquery-lightbox-0.5/images/lightbox-btn-close.gif'," . PHP_EOL;
152
- $js_string .= "'imageBtnPrev' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "magentopycho/jquery-lightbox-0.5/images/lightbox-btn-prev.gif'," . PHP_EOL;
153
- $js_string .= "'imageBtnNext' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "magentopycho/jquery-lightbox-0.5/images/lightbox-btn-next.gif'" . PHP_EOL;
154
-
155
  return $js_string;
156
  }
157
 
@@ -171,6 +173,7 @@ class MagentoPycho_Lightboxes_Helper_Data extends Mage_Core_Helper_Abstract
171
  }
172
 
173
  $js_string .= "close_all : '.piro_close,.piro_overlay'" . PHP_EOL;
 
174
 
175
  return $js_string;
176
  }
17
 
18
  public function getMainImageSize()
19
  {
20
+ list($main_width, $main_height) = explode('x', $this->getConfig('mainimage_size', 'option', '265x265'));
21
 
22
  $main_width = intval($main_width) > 0 ? intval($main_width) : 265;
23
  $main_height = intval($main_height) > 0 ? intval($main_height) : 265;
27
 
28
  public function getThumbnailImageSize()
29
  {
30
+ list($thu_width, $thu_height) = explode('x', $this->getConfig('thumbnail_size', 'option', '57x57'));
31
 
32
  $thu_width = intval($thu_width) > 0 ? intval($thu_width) : 57;
33
  $thu_height = intval($thu_height) > 0 ? intval($thu_height) : 57;
37
 
38
  public function getPopupImageSize()
39
  {
40
+ list($big_width, $big_height) = explode('x', $this->getConfig('popupimage_size', 'option', '800x600'));
41
 
42
  $big_width = intval($big_width) > 0 ? intval($big_width) : '';
43
  $big_height = intval($big_height) > 0 ? intval($big_height) : '';
86
  if($this->getConfig('overlayColor', 'fancybox')){
87
  $js_string .= "'overlayColor' : '" . $this->getConfig('overlayColor', 'fancybox') . "'," . PHP_EOL;
88
  }
89
+ if($this->getConfig('titleShow', 'fancybox') != ''){
90
+ $titleShow = $this->getConfig('titleShow', 'fancybox') == 0 ? 'false' : true;
91
+ $js_string .= "'titleShow' : " . $titleShow . "," . PHP_EOL;
92
  }
93
+ if($this->getConfig('titlePosition', 'fancybox') != 'outside'){
94
  $js_string .= "'titlePosition' : '" . $this->getConfig('titlePosition', 'fancybox') . "'," . PHP_EOL;
95
  }
96
  if($this->getConfig('transitionIn', 'fancybox')){
123
  if($this->getConfig('enableEscapeButton', 'fancybox')){
124
  $js_string .= "'enableEscapeButton' : " . $this->getConfig('enableEscapeButton', 'fancybox') . "," . PHP_EOL;
125
  }
126
+ $js_string = rtrim($js_string, ",".PHP_EOL).PHP_EOL;
127
  return $js_string;
128
  }
129
 
148
  $js_string .= "'containerResizeSpeed' : " . $this->getConfig('containerResizeSpeed', 'lightboxclone') . "," . PHP_EOL;
149
  }
150
 
151
+ $js_string .= "'imageBlank' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "lightboxes/jquery-lightbox-0.5/images/lightbox-blank.gif'," . PHP_EOL;
152
+ $js_string .= "'imageLoading' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "lightboxes/jquery-lightbox-0.5/images/lightbox-ico-loading.gif'," . PHP_EOL;
153
+ $js_string .= "'imageBtnClose' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "lightboxes/jquery-lightbox-0.5/images/lightbox-btn-close.gif'," . PHP_EOL;
154
+ $js_string .= "'imageBtnPrev' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "lightboxes/jquery-lightbox-0.5/images/lightbox-btn-prev.gif'," . PHP_EOL;
155
+ $js_string .= "'imageBtnNext' : '" . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS) . "lightboxes/jquery-lightbox-0.5/images/lightbox-btn-next.gif'" . PHP_EOL;
156
+ $js_string = rtrim($js_string, ",".PHP_EOL).PHP_EOL;
157
  return $js_string;
158
  }
159
 
173
  }
174
 
175
  $js_string .= "close_all : '.piro_close,.piro_overlay'" . PHP_EOL;
176
+ $js_string = rtrim($js_string, ",".PHP_EOL).PHP_EOL;
177
 
178
  return $js_string;
179
  }
app/code/local/MagentoPycho/Lightboxes/etc/adminhtml.xml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * @category MagePsycho
5
+ * @package MagePsycho_Lightboxes
6
+ * @author info@magepsycho.com
7
+ * @website http://www.magepsycho.com
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
9
+ */
10
+ -->
11
+ <config>
12
+ <acl>
13
+ <resources>
14
+ <admin>
15
+ <children>
16
+ <system>
17
+ <children>
18
+ <config>
19
+ <children>
20
+ <magepychoinfo>
21
+ <title>MagentoPycho - All</title>
22
+ </magepychoinfo>
23
+ <lightboxes>
24
+ <title>jQuery Lightboxes</title>
25
+ </lightboxes>
26
+ </children>
27
+ </config>
28
+ </children>
29
+ </system>
30
+ </children>
31
+ </admin>
32
+ </resources>
33
+ </acl>
34
+ </config>
app/code/local/MagentoPycho/Lightboxes/etc/config.xml CHANGED
@@ -1,16 +1,17 @@
1
  <?xml version="1.0"?>
2
- <!--
3
  /**
4
- * @category MagentoPycho
5
- * @package MagentoPycho_Lightboxes
6
- * @author Rajendra K Bhatta <rajen_k_bhtt@hotmail.com>
 
7
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
8
  */
9
  -->
10
  <config>
11
  <modules>
12
  <MagentoPycho_Lightboxes>
13
- <version>0.8.0</version>
14
  </MagentoPycho_Lightboxes>
15
  </modules>
16
  <global>
@@ -24,10 +25,10 @@
24
  <class>MagentoPycho_Lightboxes_Block</class>
25
  </lightboxes>
26
  <catalog>
27
- <rewrite>
28
- <product_view_media>MagentoPycho_Lightboxes_Block_Media</product_view_media>
29
- </rewrite>
30
- </catalog>
31
  </blocks>
32
  <helpers>
33
  <lightboxes>
@@ -66,7 +67,7 @@
66
  <title>MagentoPycho - All</title>
67
  </magepychoinfo>
68
  <lightboxes>
69
- <title>MagentoPycho Area</title>
70
  </lightboxes>
71
  </children>
72
  </config>
1
  <?xml version="1.0"?>
2
+ <!--
3
  /**
4
+ * @category MagePsycho
5
+ * @package MagePsycho_Lightboxes
6
+ * @author info@magepsycho.com
7
+ * @website http://www.magepsycho.com
8
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
9
  */
10
  -->
11
  <config>
12
  <modules>
13
  <MagentoPycho_Lightboxes>
14
+ <version>1.0.3</version>
15
  </MagentoPycho_Lightboxes>
16
  </modules>
17
  <global>
25
  <class>MagentoPycho_Lightboxes_Block</class>
26
  </lightboxes>
27
  <catalog>
28
+ <rewrite>
29
+ <product_view_media>MagentoPycho_Lightboxes_Block_Media</product_view_media>
30
+ </rewrite>
31
+ </catalog>
32
  </blocks>
33
  <helpers>
34
  <lightboxes>
67
  <title>MagentoPycho - All</title>
68
  </magepychoinfo>
69
  <lightboxes>
70
+ <title>jQuery Lightboxes</title>
71
  </lightboxes>
72
  </children>
73
  </config>
app/code/local/MagentoPycho/Lightboxes/etc/system.xml CHANGED
@@ -1,21 +1,30 @@
1
  <?xml version="1.0"?>
 
 
 
 
 
 
 
 
 
2
  <config>
3
  <tabs>
4
  <magepychoall translate="label" module="lightboxes">
5
- <label>MagentoPycho Extensions</label>
6
  <sort_order>400</sort_order>
7
  </magepychoall>
8
  </tabs>
9
  <sections>
10
  <magepychoinfo translate="label" module="lightboxes">
11
- <label>Info</label>
12
- <tab>magepychoall</tab>
13
- <frontend_type>text</frontend_type>
14
- <sort_order>99999999999</sort_order>
15
- <show_in_default>1</show_in_default>
16
- <show_in_website>1</show_in_website>
17
- <show_in_store>1</show_in_store>
18
- <groups>
19
  <info>
20
  <frontend_model>lightboxes/system_config_info</frontend_model>
21
  <sort_order>10</sort_order>
@@ -29,13 +38,13 @@
29
  <label>jQuery LightBoxes</label>
30
  <tab>magepychoall</tab>
31
  <frontend_type>text</frontend_type>
32
- <sort_order>111</sort_order>
33
  <show_in_default>1</show_in_default>
34
  <show_in_website>1</show_in_website>
35
  <show_in_store>1</show_in_store>
36
  <groups>
37
  <option translate="label">
38
- <label>jQuery LightBoxes - Configuration Options</label>
39
  <frontend_type>text</frontend_type>
40
  <sort_order>10</sort_order>
41
  <show_in_default>1</show_in_default>
1
  <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * @category MagePsycho
5
+ * @package MagePsycho_Lightboxes
6
+ * @author info@magepsycho.com
7
+ * @website http://www.magepsycho.com
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
9
+ */
10
+ -->
11
  <config>
12
  <tabs>
13
  <magepychoall translate="label" module="lightboxes">
14
+ <label>MagePsycho Extensions</label>
15
  <sort_order>400</sort_order>
16
  </magepychoall>
17
  </tabs>
18
  <sections>
19
  <magepychoinfo translate="label" module="lightboxes">
20
+ <label>Info</label>
21
+ <tab>magepychoall</tab>
22
+ <frontend_type>text</frontend_type>
23
+ <sort_order>99999999999</sort_order>
24
+ <show_in_default>1</show_in_default>
25
+ <show_in_website>1</show_in_website>
26
+ <show_in_store>1</show_in_store>
27
+ <groups>
28
  <info>
29
  <frontend_model>lightboxes/system_config_info</frontend_model>
30
  <sort_order>10</sort_order>
38
  <label>jQuery LightBoxes</label>
39
  <tab>magepychoall</tab>
40
  <frontend_type>text</frontend_type>
41
+ <sort_order>400</sort_order>
42
  <show_in_default>1</show_in_default>
43
  <show_in_website>1</show_in_website>
44
  <show_in_store>1</show_in_store>
45
  <groups>
46
  <option translate="label">
47
+ <label>General Settings</label>
48
  <frontend_type>text</frontend_type>
49
  <sort_order>10</sort_order>
50
  <show_in_default>1</show_in_default>
app/etc/modules/MagentoPycho_Lightboxes.xml CHANGED
@@ -1,11 +1,11 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * @company GuruWebSoft-Guru In Web Solutions <www.guruwebsoft.com>
5
- * @author Rajendra K Bhatta <rajen_k_bhtt@hotmail.com>
6
- *
7
- * @category MagentoPycho
8
- * @package MagentoPycho_Lightboxes
9
  */
10
  -->
11
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * @category MagePsycho
5
+ * @package MagePsycho_Lightboxes
6
+ * @author info@magepsycho.com
7
+ * @website http://www.magepsycho.com
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
9
  */
10
  -->
11
  <config>
package.xml CHANGED
@@ -1,18 +1,23 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mpycho_Jquery_Lightboxes</name>
4
- <version>1.0.2</version>
5
  <stability>stable</stability>
6
- <license>OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>jQuery lightboxes is the collection of jQuery Lightbox for Magento Media Gallery. Moreover consider it as an one stop search for jQuery Lightbox for magento. Currently it includes the FancyBox, PiroBox, Lightbox Clone etc. Still more to come in newer versions.</summary>
10
- <description>jQuery lightboxes is the collection of jQuery Lightbox for Magento Media Gallery. Moreover consider it as an one stop search for jQuery Lightbox for magento. Currently it includes the FancyBox, PiroBox, Lightbox Clone etc. Still more to come in newer versions.</description>
11
- <notes>- Fixed the Access Denied Issue</notes>
12
- <authors><author><name>PHPycho</name><user>auto-converted</user><email>rajen_k_bhtt@hotmail.com</email></author></authors>
13
- <date>2010-11-29</date>
14
- <time>12:32:17</time>
15
- <contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="lightboxes.xml" hash="19458cfbaa06a68bc2d25d2ecc0918f8"/></dir><dir name="template"><dir name="lightboxes"><file name="head.phtml" hash="cf64c7cd39557ffdc085f7bb61b2149c"/><file name="media.phtml" hash="2df43dff2d18996ac4ef7b766aa7bc59"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="lightboxes"><file name="jquery.min.js" hash="e4958bd2e32d9fcd6115a585ed17a9cc"/><file name="no-conflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><dir name="fancybox"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="11e57e492ee0311540967cc7a1e6e3e2"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="jquery.easing-1.3.pack.js" hash="def257dbb0ab805c4996fd8abb1a6b49"/><file name="jquery.fancybox-1.3.2.css" hash="62b6a82e326429e9576c34b81c57c1c9"/><file name="jquery.fancybox-1.3.2.js" hash="9781051f683af9738fb200df1eb376f6"/><file name="jquery.fancybox-1.3.2.pack.js" hash="e495aaf910d87698081e0e2db53fca87"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="3b0a821567b463e70bcc1e90ed2bc9b6"/><file name="Thumbs.db" hash="5dd66d89b9e7a196d476c3ac8f9081cf"/></dir><dir name="jquery-lightbox-0.5"><dir name="css"><file name="jquery.lightbox-0.5.css" hash="79ec543bbe42f8852aac14381b9ffff8"/></dir><dir name="images"><file name="lightbox-blank.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><file name="lightbox-btn-close.gif" hash="2c38ae5be85141bf8867c9523f4bc357"/><file name="lightbox-btn-next.gif" hash="23414965ebe526012e473c1d4d65d4e7"/><file name="lightbox-btn-prev.gif" hash="5a9118de4ef6226473190d6e82f6d80d"/><file name="lightbox-ico-loading.gif" hash="b5fe8df97005341f898e2cf84e68de01"/></dir><dir name="js"><file name="jquery.js" hash="bb122b33d64d02a106bf2230b2d41af0"/><file name="jquery.lightbox-0.5.js" hash="2f6bedebc6fde0a3f34626cc8815b344"/><file name="jquery.lightbox-0.5.min.js" hash="21c9812998af15acf69da2f91bb02363"/><file name="jquery.lightbox-0.5.pack.js" hash="f5360c03d8a989499f3e161672747dfe"/></dir></dir><dir name="pirobox"><dir name="css_pirobox"><file name="css.css" hash="dd10f3849827f49e3cde3c1e12194e56"/><dir name="demo1"><file name="ajax-loader.gif" hash="4b3afb84b2b71ef56df09997a350bd04"/><file name="b_c.png" hash="75fffb4a12279cd88466b1edb1418e4b"/><file name="b_l.png" hash="9518ae468feb7eed08c954b5d117127b"/><file name="b_r.png" hash="2672ab4e75f3d109a2d478a7545caa87"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="c_l.png" hash="47e9b270c4fa90d0f230162483a78ff9"/><file name="c_r.png" hash="c859f115cde4306a39b4a8f6cee2f627"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="8b4150f440aff866d29bdec6bfe4258a"/><file name="t_c.png" hash="3bea2d7b1c8160fbab212860eb219692"/><file name="t_l.png" hash="7143f9b78fa8f6328661bd519f4769b3"/><file name="t_r.png" hash="417e9123fb088a6eb3cb207a7c443095"/></dir><dir name="demo2"><file name="ajax-loader.gif" hash="af774cf54767cacc9acc77db73484e34"/><file name="b_c.png" hash="a100f7ca0c8b76491f892b83cc7b9676"/><file name="b_l.png" hash="b0dffe5a74c2a6b94140f3b51504a1df"/><file name="b_r.png" hash="fadeb0442e51de7d5ec3bd787924bd91"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="c_l.png" hash="41c77a81ecf1df77eddb9f83d7f6ea83"/><file name="c_r.png" hash="882771577ec629f4aaaf9fa30a332b74"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="1d55524a537a29b99e34a952a2b49053"/><file name="t_c.png" hash="e02ae5a542eb15e1b5a1e02133ee1ff2"/><file name="t_l.png" hash="ddf448039c434026d1d695072228bdd1"/><file name="t_r.png" hash="9c6fa0da64a9c33d36d440dbf452038b"/></dir><dir name="demo3"><file name="ajax-loader.gif" hash="4b3afb84b2b71ef56df09997a350bd04"/><file name="b_c.png" hash="7a4ff9b52f473cbcf5745c8c5e3f8f75"/><file name="b_l.png" hash="72460dd7277d197cc84d70d73fa51340"/><file name="b_r.png" hash="f67db5dc36cdc55580cae2b4c4e17e2a"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="c_l.png" hash="d303eaa0cf6efa163c3e11089f7a1dfa"/><file name="c_r.png" hash="87d1bdc4346f93c62a89162971f35451"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="8b4150f440aff866d29bdec6bfe4258a"/><file name="t_c.png" hash="aa60fb983774de76695adaec30baf512"/><file name="t_l.png" hash="1c25f414977f0e15707734455f72f7f9"/><file name="t_r.png" hash="a8b83ef6aa89eb16066b57c56af36718"/></dir><dir name="demo4"><file name="ajax-loader.gif" hash="4b3afb84b2b71ef56df09997a350bd04"/><file name="b_c.png" hash="f263d200d69176a0daf9491bbf0880b0"/><file name="b_l.png" hash="073e0d4113b9d0d6ea87f89f2917f37b"/><file name="b_r.png" hash="01daf2ada396f0b9c3194fa2eadb0812"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="c_l.png" hash="dfbb93a992ade9d582cc11bd3b1ca524"/><file name="c_r.png" hash="1ea958d53920f49c077b6257b7d6d32c"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="80bda63c8e2974ffcc0ac491109b08c4"/><file name="t_c.png" hash="844528ba3b95ebcc9338f2e1e526e2c4"/><file name="t_l.png" hash="306cae75bb51ae4832230abb909af9e1"/><file name="t_r.png" hash="84b88cc2fbe66c14db818486a4a0b214"/></dir><dir name="demo5"><file name="ajax-loader.gif" hash="af774cf54767cacc9acc77db73484e34"/><file name="b_c.png" hash="cd8cceedf279afbfb18047a93d41f01e"/><file name="b_l.png" hash="22fa6a4e821a4eec6bd69bf5aeee86bf"/><file name="b_r.png" hash="66a431c64512a5f97af8e4518c25652e"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="c_l.png" hash="d87b25d657460807de2496133c265c1b"/><file name="c_r.png" hash="3d5eb49f2f508f103dd5d28980104bc0"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="0c9432e34442a9e3fc88710684c5b119"/><file name="t_c.png" hash="2f05b3634e8c9a9039505867303ddb17"/><file name="t_l.png" hash="d5bd1e97e4a0e6880fccc9445da0a502"/><file name="t_r.png" hash="50a453d9c0e05fadb13e01034e7d3394"/></dir></dir><dir name="js"><file name="jquery.min.js" hash="65b352e1ba79f0e2a3b1e014bc2571af"/><file name="pirobox.js" hash="3828d78e783ea55198766e07a17f9b4c"/><file name="pirobox.min.js" hash="4564fa27b424a05b7dc6ae0be5f68b60"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="MagentoPycho"><dir name="Lightboxes"><dir name="Block"><file name="Lightboxes.php" hash="68cab0cd56d8e2e789bfc22ea1933d60"/><file name="Media.php" hash="6f7f5aeef2800ff469208259bf2cfe4a"/><dir name="Config"><dir name="Fancybox"><file name="Info.php" hash="af22b11a1b7f57ec61e943f3088df827"/></dir><dir name="Lightboxclone"><file name="Info.php" hash="e4d024cb32e90f7eac21d9f37f921d54"/></dir><dir name="Pirobox"><file name="Info.php" hash="c10051a6b55f83a36d907033c2a0a335"/></dir></dir><dir name="System"><dir name="Config"><file name="Info.php" hash="a55cb7d8b6e33e6b6c8692929c35acd5"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="9db82c6d3f848a8dc4e87016878deb35"/></dir><dir name="etc"><file name="config.xml" hash="aba3369d155c8c210a5c34a24f5402bc"/><file name="system.xml" hash="74c47ac5f4c95c15dc5890623ee82ced"/></dir><dir name="Helper"><file name="Data.php" hash="9d6d8ce4fe284164cdd0e44f9cb68170"/></dir><dir name="Model"><file name="Lightboxes.php" hash="c92ca82b6ec33c33b5802751260c28da"/><dir name="Config"><file name="Lightboxtypes.php" hash="b3f3222ac6a0fadf0c909c361ada7824"/><dir name="Fancybox"><file name="Easings.php" hash="33e4b5570250063ad4ff5c344cccb995"/><file name="Opacities.php" hash="f62c0bdbf452cd11f41b91653814a24a"/><file name="Scrollings.php" hash="5ec0e8c86faf64ab2694a039e289f4aa"/><file name="Speeds.php" hash="5565683f25290e8c52642a0a5a2ad9e7"/><file name="Titlepositions.php" hash="241cc96f69e00c88f49003996bd47c8d"/><file name="Transitions.php" hash="f784353fe4bd85c9d3ffd15e6b902f0a"/></dir><dir name="Lightboxclone"><file name="Opacities.php" hash="c3797d2a68b7338e50d1499e6b498fd8"/></dir><dir name="Pirobox"><file name="Bgalphas.php" hash="7204b69e57dfe38145e66c1f6d675a8b"/><file name="Themes.php" hash="0f73cfb2646e30c3c3893e729461cf34"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MagentoPycho_Lightboxes.xml" hash="9f1f3f5fcec3b99c1ed8c1da285b333d"/></dir></target></contents>
 
 
 
 
 
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mpycho_Jquery_Lightboxes</name>
4
+ <version>1.0.3</version>
5
  <stability>stable</stability>
6
+ <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>jQuery Lightboxes is the collection of jQuery Lightbox (FancyBox, PiroBox etc.) for Magento Media Gallery</summary>
10
+ <description>jQuery Lightboxes is the collection of jQuery Lightbox (FancyBox, PiroBox etc.) for Magento Media Gallery</description>
11
+ <notes>- Fixing of title issue in Fancybox&#xD;
12
+ - Fixing of offset issue in image size&#xD;
13
+ - Fixing of IE issue due to extra ',' in initialization code&#xD;
14
+ - Fixing of missing images/buttons in Lightbox clone&#xD;
15
+ - Fixed the 404 error in 1.5.x&#xD;
16
+ - Magento-Connect compatible with 1.5.x</notes>
17
+ <authors><author><name>MagePsycho</name><user>auto-converted</user><email>rajen_k_bhtt@hotmail.com</email></author></authors>
18
+ <date>2011-06-30</date>
19
+ <time>12:06:57</time>
20
+ <contents><target name="mageetc"><dir name="modules"><file name="MagentoPycho_Lightboxes.xml" hash="1ea1a489ee796cc7e899934fb0f35b27"/></dir></target><target name="magelocal"><dir name="MagentoPycho"><dir name="Lightboxes"><dir name="Block"><dir name="Config"><dir name="Fancybox"><file name="Info.php" hash="af22b11a1b7f57ec61e943f3088df827"/></dir><dir name="Lightboxclone"><file name="Info.php" hash="e4d024cb32e90f7eac21d9f37f921d54"/></dir><dir name="Pirobox"><file name="Info.php" hash="c10051a6b55f83a36d907033c2a0a335"/></dir></dir><dir name="System"><dir name="Config"><file name="Info.php" hash="c8fdd1ef7b95ac588c89e1705853e40f"/></dir></dir><file name="Lightboxes.php" hash="68cab0cd56d8e2e789bfc22ea1933d60"/><file name="Media.php" hash="6f7f5aeef2800ff469208259bf2cfe4a"/></dir><dir name="Helper"><file name="Data.php" hash="c47d75e6789c42b7dddae37424cdcb4c"/></dir><dir name="Model"><dir name="Config"><dir name="Fancybox"><file name="Easings.php" hash="33e4b5570250063ad4ff5c344cccb995"/><file name="Opacities.php" hash="f62c0bdbf452cd11f41b91653814a24a"/><file name="Scrollings.php" hash="5ec0e8c86faf64ab2694a039e289f4aa"/><file name="Speeds.php" hash="5565683f25290e8c52642a0a5a2ad9e7"/><file name="Titlepositions.php" hash="241cc96f69e00c88f49003996bd47c8d"/><file name="Transitions.php" hash="f784353fe4bd85c9d3ffd15e6b902f0a"/></dir><dir name="Lightboxclone"><file name="Opacities.php" hash="c3797d2a68b7338e50d1499e6b498fd8"/></dir><dir name="Pirobox"><file name="Bgalphas.php" hash="7204b69e57dfe38145e66c1f6d675a8b"/><file name="Themes.php" hash="0f73cfb2646e30c3c3893e729461cf34"/></dir><file name="Lightboxtypes.php" hash="b3f3222ac6a0fadf0c909c361ada7824"/></dir><file name="Lightboxes.php" hash="c92ca82b6ec33c33b5802751260c28da"/></dir><dir name="controllers"><file name="IndexController.php" hash="9db82c6d3f848a8dc4e87016878deb35"/></dir><dir name="etc"><file name="adminhtml.xml" hash="83fb352a705cd9a89584966131772f68"/><file name="config.xml" hash="905f2301ecfd48d8d3059898d86b65ce"/><file name="system.xml" hash="78709b761dd1e1fffcfb902ad38743fb"/></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="lightboxes"><dir name="fancybox"><file name="Thumbs.db" hash="5dd66d89b9e7a196d476c3ac8f9081cf"/><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="11e57e492ee0311540967cc7a1e6e3e2"/><file name="jquery.easing-1.3.pack.js" hash="def257dbb0ab805c4996fd8abb1a6b49"/><file name="jquery.fancybox-1.3.2.css" hash="62b6a82e326429e9576c34b81c57c1c9"/><file name="jquery.fancybox-1.3.2.js" hash="9781051f683af9738fb200df1eb376f6"/><file name="jquery.fancybox-1.3.2.pack.js" hash="e495aaf910d87698081e0e2db53fca87"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="3b0a821567b463e70bcc1e90ed2bc9b6"/></dir><dir name="jquery-lightbox-0.5"><dir name="css"><file name="jquery.lightbox-0.5.css" hash="79ec543bbe42f8852aac14381b9ffff8"/></dir><dir name="images"><file name="lightbox-blank.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><file name="lightbox-btn-close.gif" hash="2c38ae5be85141bf8867c9523f4bc357"/><file name="lightbox-btn-next.gif" hash="23414965ebe526012e473c1d4d65d4e7"/><file name="lightbox-btn-prev.gif" hash="5a9118de4ef6226473190d6e82f6d80d"/><file name="lightbox-ico-loading.gif" hash="b5fe8df97005341f898e2cf84e68de01"/></dir><dir name="js"><file name="jquery.js" hash="bb122b33d64d02a106bf2230b2d41af0"/><file name="jquery.lightbox-0.5.js" hash="2f6bedebc6fde0a3f34626cc8815b344"/><file name="jquery.lightbox-0.5.min.js" hash="21c9812998af15acf69da2f91bb02363"/><file name="jquery.lightbox-0.5.pack.js" hash="f5360c03d8a989499f3e161672747dfe"/></dir></dir><dir name="pirobox"><dir name="css_pirobox"><dir name="demo1"><file name="ajax-loader.gif" hash="4b3afb84b2b71ef56df09997a350bd04"/><file name="b_c.png" hash="75fffb4a12279cd88466b1edb1418e4b"/><file name="b_l.png" hash="9518ae468feb7eed08c954b5d117127b"/><file name="b_r.png" hash="2672ab4e75f3d109a2d478a7545caa87"/><file name="c_l.png" hash="47e9b270c4fa90d0f230162483a78ff9"/><file name="c_r.png" hash="c859f115cde4306a39b4a8f6cee2f627"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="8b4150f440aff866d29bdec6bfe4258a"/><file name="t_c.png" hash="3bea2d7b1c8160fbab212860eb219692"/><file name="t_l.png" hash="7143f9b78fa8f6328661bd519f4769b3"/><file name="t_r.png" hash="417e9123fb088a6eb3cb207a7c443095"/></dir><dir name="demo2"><file name="ajax-loader.gif" hash="af774cf54767cacc9acc77db73484e34"/><file name="b_c.png" hash="a100f7ca0c8b76491f892b83cc7b9676"/><file name="b_l.png" hash="b0dffe5a74c2a6b94140f3b51504a1df"/><file name="b_r.png" hash="fadeb0442e51de7d5ec3bd787924bd91"/><file name="c_l.png" hash="41c77a81ecf1df77eddb9f83d7f6ea83"/><file name="c_r.png" hash="882771577ec629f4aaaf9fa30a332b74"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="1d55524a537a29b99e34a952a2b49053"/><file name="t_c.png" hash="e02ae5a542eb15e1b5a1e02133ee1ff2"/><file name="t_l.png" hash="ddf448039c434026d1d695072228bdd1"/><file name="t_r.png" hash="9c6fa0da64a9c33d36d440dbf452038b"/></dir><dir name="demo3"><file name="ajax-loader.gif" hash="4b3afb84b2b71ef56df09997a350bd04"/><file name="b_c.png" hash="7a4ff9b52f473cbcf5745c8c5e3f8f75"/><file name="b_l.png" hash="72460dd7277d197cc84d70d73fa51340"/><file name="b_r.png" hash="f67db5dc36cdc55580cae2b4c4e17e2a"/><file name="c_l.png" hash="d303eaa0cf6efa163c3e11089f7a1dfa"/><file name="c_r.png" hash="87d1bdc4346f93c62a89162971f35451"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="8b4150f440aff866d29bdec6bfe4258a"/><file name="t_c.png" hash="aa60fb983774de76695adaec30baf512"/><file name="t_l.png" hash="1c25f414977f0e15707734455f72f7f9"/><file name="t_r.png" hash="a8b83ef6aa89eb16066b57c56af36718"/></dir><dir name="demo4"><file name="ajax-loader.gif" hash="4b3afb84b2b71ef56df09997a350bd04"/><file name="b_c.png" hash="f263d200d69176a0daf9491bbf0880b0"/><file name="b_l.png" hash="073e0d4113b9d0d6ea87f89f2917f37b"/><file name="b_r.png" hash="01daf2ada396f0b9c3194fa2eadb0812"/><file name="c_l.png" hash="dfbb93a992ade9d582cc11bd3b1ca524"/><file name="c_r.png" hash="1ea958d53920f49c077b6257b7d6d32c"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="80bda63c8e2974ffcc0ac491109b08c4"/><file name="t_c.png" hash="844528ba3b95ebcc9338f2e1e526e2c4"/><file name="t_l.png" hash="306cae75bb51ae4832230abb909af9e1"/><file name="t_r.png" hash="84b88cc2fbe66c14db818486a4a0b214"/></dir><dir name="demo5"><file name="ajax-loader.gif" hash="af774cf54767cacc9acc77db73484e34"/><file name="b_c.png" hash="cd8cceedf279afbfb18047a93d41f01e"/><file name="b_l.png" hash="22fa6a4e821a4eec6bd69bf5aeee86bf"/><file name="b_r.png" hash="66a431c64512a5f97af8e4518c25652e"/><file name="c_l.png" hash="d87b25d657460807de2496133c265c1b"/><file name="c_r.png" hash="3d5eb49f2f508f103dd5d28980104bc0"/><file name="close_btn.png" hash="92b5b87de803f837f0b87abbc903fb87"/><file name="close_btn_h.png" hash="183ddc1e93f12ad62a81db361905e5b0"/><file name="link_out.png" hash="5cce437fb7ccb4145fce1d495862e3f3"/><file name="link_out_h.png" hash="b98ee6456aced423b5ad266d8501a05e"/><file name="next.png" hash="6dca0c5b7774178a861e8908f2dad537"/><file name="next_h.png" hash="159b2561e2f8465562f416bd580e6573"/><file name="pause.png" hash="50f67f2adb72c7f225cc689980c836dd"/><file name="pause_h.png" hash="88e0f004cc98f725e0609d46113d0665"/><file name="play.png" hash="ddc4c1038e3199b5dba07d26611f9b91"/><file name="play_h.png" hash="b19fd09b6be349ab794fddb6df53bbdf"/><file name="prev.png" hash="4d08111967598b1b7742c579238b4316"/><file name="prev_h.png" hash="81858baaa2bba9d35ad1bb4d14031965"/><file name="style.css" hash="0c9432e34442a9e3fc88710684c5b119"/><file name="t_c.png" hash="2f05b3634e8c9a9039505867303ddb17"/><file name="t_l.png" hash="d5bd1e97e4a0e6880fccc9445da0a502"/><file name="t_r.png" hash="50a453d9c0e05fadb13e01034e7d3394"/></dir><file name="css.css" hash="dd10f3849827f49e3cde3c1e12194e56"/></dir><dir name="js"><file name="jquery.min.js" hash="65b352e1ba79f0e2a3b1e014bc2571af"/><file name="pirobox.js" hash="3828d78e783ea55198766e07a17f9b4c"/><file name="pirobox.min.js" hash="4564fa27b424a05b7dc6ae0be5f68b60"/></dir></dir><file name="jquery.min.js" hash="e4958bd2e32d9fcd6115a585ed17a9cc"/><file name="no-conflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="lightboxes.xml" hash="19458cfbaa06a68bc2d25d2ecc0918f8"/></dir><dir name="template"><dir name="lightboxes"><file name="head.phtml" hash="cf64c7cd39557ffdc085f7bb61b2149c"/><file name="media.phtml" hash="2df43dff2d18996ac4ef7b766aa7bc59"/></dir></dir></dir></dir></dir></target></contents>
21
  <compatible/>
22
  <dependencies/>
23
  </package>