VS_Ajax - Version 1.0.2

Version Notes

Extensin will help to add products to shopping cart directly from category and product page using ajax operations. User would be able to add all product types simple,configurable,bundled,grouped, virtual and downloadable from the category page itself. For the products which require options to be selected before adding to cart e.g configurable,bundled etc , a lightbox iframe window will show up showing the options to be selected by user with a ‘Add to Cart’ button.

Download this release

Release Info

Developer Magento Core Team
Extension VS_Ajax
Version 1.0.2
Comparing to
See all releases


Code changes from version 1.0.1 to 1.0.2

app/code/community/VS/Ajax/Model/Observer.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php class VS_Ajax_Model_Observer{
2
+
3
+ // Get all event control dispatch
4
+ public function getListproduct(Varien_Event_Observer $event){
5
+ $controller = $event->getControllerAction();
6
+ $param = array();
7
+ $ajaxtoolbar = Mage::app()->getRequest()->getParam('ajaxtoolbar');
8
+ $layout = Mage::app()->getLayout();
9
+ $blocks = array();
10
+ if($ajaxtoolbar==1){
11
+ $templ = $layout->getBlock('product_list');
12
+ if($templ){
13
+ @header('Content-type: application/json');
14
+ $blocks['toolbarlistproduct'] = $templ->toHtml();
15
+ echo json_encode($blocks);
16
+ }
17
+ $templ = $layout->getBlock('search_result_list');
18
+ if($templ){
19
+ @header('Content-type: application/json');
20
+ $blocks['toolbarlistproduct'] = $templ->toHtml();
21
+ echo json_encode($blocks);
22
+ }
23
+ exit;
24
+ }
25
+
26
+ }
27
+
28
+ }
29
+
app/code/community/VS/Ajax/etc/config.xml CHANGED
@@ -76,6 +76,17 @@
76
  <class>VS_Ajax_Helper</class>
77
  </ajax>
78
  </helpers>
 
 
 
 
 
 
 
 
 
 
 
79
  </global>
80
  <adminhtml>
81
  <acl>
76
  <class>VS_Ajax_Helper</class>
77
  </ajax>
78
  </helpers>
79
+ <events>
80
+ <controller_action_postdispatch>
81
+ <observers>
82
+ <vs_ajax_observer>
83
+ <type>singleton</type>
84
+ <class>VS_Ajax_Model_Observer</class>
85
+ <method>getListproduct</method>
86
+ </vs_ajax_observer>
87
+ </observers>
88
+ </controller_action_postdispatch>
89
+ </events>
90
  </global>
91
  <adminhtml>
92
  <acl>
app/code/community/VS/Ajax/etc/system.xml CHANGED
@@ -18,7 +18,7 @@
18
  <show_in_store>1</show_in_store>
19
  <groups>
20
  <general translate="label">
21
- <label>Ajax settings for add to cart button</label>
22
  <frontend_type>text</frontend_type>
23
  <sort_order>1</sort_order>
24
  <show_in_default>1</show_in_default>
@@ -46,7 +46,7 @@
46
  </fields>
47
  </general>
48
  <wishlistcompare translate="label">
49
- <label>Ajax settings for add to wishlist/compare button</label>
50
  <frontend_type>text</frontend_type>
51
  <sort_order>1</sort_order>
52
  <show_in_default>1</show_in_default>
@@ -72,8 +72,25 @@
72
  <show_in_store>1</show_in_store>
73
  </enabledpro>
74
  </fields>
75
- </wishlistcompare>
76
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  </groups>
78
 
79
  </ajax>
18
  <show_in_store>1</show_in_store>
19
  <groups>
20
  <general translate="label">
21
+ <label>Ajax for add to cart button</label>
22
  <frontend_type>text</frontend_type>
23
  <sort_order>1</sort_order>
24
  <show_in_default>1</show_in_default>
46
  </fields>
47
  </general>
48
  <wishlistcompare translate="label">
49
+ <label>Ajax for add to wishlist/compare button</label>
50
  <frontend_type>text</frontend_type>
51
  <sort_order>1</sort_order>
52
  <show_in_default>1</show_in_default>
72
  <show_in_store>1</show_in_store>
73
  </enabledpro>
74
  </fields>
75
+ </wishlistcompare>
76
+ <ajaxtoolbar translate="label" module="ajax">
77
+ <label>Ajax for toolbar/paging</label>
78
+ <sort_order>600</sort_order>
79
+ <show_in_default>1</show_in_default>
80
+ <show_in_website>1</show_in_website>
81
+ <show_in_store>1</show_in_store>
82
+ <fields>
83
+ <enabled translate="label">
84
+ <label>Enable</label>
85
+ <frontend_type>select</frontend_type>
86
+ <source_model>adminhtml/system_config_source_yesno</source_model>
87
+ <sort_order>10</sort_order>
88
+ <show_in_default>1</show_in_default>
89
+ <show_in_website>1</show_in_website>
90
+ <show_in_store>1</show_in_store>
91
+ </enabled>
92
+ </fields>
93
+ </ajaxtoolbar>
94
  </groups>
95
 
96
  </ajax>
app/design/frontend/default/default/layout/ajax.xml CHANGED
@@ -1,5 +1,6 @@
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
 
3
  <catalog_product_view>
4
  <reference name="head">
5
  <action method="addJs" ifconfig="ajax/general/enabled"><script>VS/jquery-1.6.4.min.js</script></action>
@@ -16,12 +17,14 @@
16
  <action method="setTemplate" ifconfig="ajax/general/enabled"><template>ajax/catalog/product/view/addtocart.phtml</template></action>
17
  </reference>
18
  </catalog_product_view>
19
-
20
  <catalog_category_default>
21
- <reference name="head">
22
  <action method="addJs" ifconfig="ajax/general/enabledpro"><script>VS/jquery-1.6.4.min.js</script></action>
23
  <action method="addJs" ifconfig="ajax/general/enabledpro"><script>VS/noconflict.js</script></action>
24
- <action method="addJs" ifconfig="ajax/wishlistcompare/enabledpro"><script>VS/ajaxwishlist.js</script></action>
 
 
25
  <action method="addItem" ifconfig="ajax/general/enabledpro">
26
  <type>skin_js</type>
27
  <name>VS/js/fancybox/jquery.fancybox-1.3.4.js</name>
@@ -42,12 +45,14 @@
42
  <action method="setTemplate"><template>ajax/catalog/product/view/list.phtml</template></action>
43
  </reference>
44
  </catalog_category_default>
45
-
46
  <catalog_category_layered>
47
  <reference name="head">
48
  <action method="addJs" ifconfig="ajax/general/enabledpro"><script>VS/jquery-1.6.4.min.js</script></action>
49
  <action method="addJs" ifconfig="ajax/general/enabledpro"><script>VS/noconflict.js</script></action>
50
  <action method="addJs" ifconfig="ajax/wishlistcompare/enabledpro"><script>VS/ajaxwishlist.js</script></action>
 
 
51
  <action method="addItem" ifconfig="ajax/general/enabledpro">
52
  <type>skin_js</type>
53
  <name>VS/js/fancybox/jquery.fancybox-1.3.4.js</name>
@@ -69,7 +74,7 @@
69
  <action method="setTemplate"><template>ajax/catalog/product/view/list.phtml</template></action>
70
  </reference>
71
  </catalog_category_layered>
72
-
73
  <ajax_index_options>
74
  <reference name="root">
75
  <action method="setTemplate"><template>page/empty.phtml</template></action>
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
3
+ <!--produt detail page-->
4
  <catalog_product_view>
5
  <reference name="head">
6
  <action method="addJs" ifconfig="ajax/general/enabled"><script>VS/jquery-1.6.4.min.js</script></action>
17
  <action method="setTemplate" ifconfig="ajax/general/enabled"><template>ajax/catalog/product/view/addtocart.phtml</template></action>
18
  </reference>
19
  </catalog_product_view>
20
+ <!-- Category listing page-->
21
  <catalog_category_default>
22
+ <reference name="head">
23
  <action method="addJs" ifconfig="ajax/general/enabledpro"><script>VS/jquery-1.6.4.min.js</script></action>
24
  <action method="addJs" ifconfig="ajax/general/enabledpro"><script>VS/noconflict.js</script></action>
25
+ <action method="addJs" ifconfig="ajax/wishlistcompare/enabledpro"><script>VS/ajaxwishlist.js</script></action>
26
+ <block type="core/template" name="ajaxtoolbar" template="ajax/ajaxtoolbar.phtml" output="toHtml"></block>
27
+ <action method="addJs" ifconfig="ajax/ajaxtoolbar/enabled"><script>VS/ajaxtoolbar.js</script></action>
28
  <action method="addItem" ifconfig="ajax/general/enabledpro">
29
  <type>skin_js</type>
30
  <name>VS/js/fancybox/jquery.fancybox-1.3.4.js</name>
45
  <action method="setTemplate"><template>ajax/catalog/product/view/list.phtml</template></action>
46
  </reference>
47
  </catalog_category_default>
48
+ <!-- Category listing page layered-->
49
  <catalog_category_layered>
50
  <reference name="head">
51
  <action method="addJs" ifconfig="ajax/general/enabledpro"><script>VS/jquery-1.6.4.min.js</script></action>
52
  <action method="addJs" ifconfig="ajax/general/enabledpro"><script>VS/noconflict.js</script></action>
53
  <action method="addJs" ifconfig="ajax/wishlistcompare/enabledpro"><script>VS/ajaxwishlist.js</script></action>
54
+ <block type="core/template" name="ajaxtoolbar" template="ajax/ajaxtoolbar.phtml" output="toHtml"></block>
55
+ <action method="addJs" ifconfig="ajax/ajaxtoolbar/enabled"><script>VS/ajaxtoolbar.js</script></action>
56
  <action method="addItem" ifconfig="ajax/general/enabledpro">
57
  <type>skin_js</type>
58
  <name>VS/js/fancybox/jquery.fancybox-1.3.4.js</name>
74
  <action method="setTemplate"><template>ajax/catalog/product/view/list.phtml</template></action>
75
  </reference>
76
  </catalog_category_layered>
77
+ <!-- optins page in lightbox-->
78
  <ajax_index_options>
79
  <reference name="root">
80
  <action method="setTemplate"><template>page/empty.phtml</template></action>
app/design/frontend/default/default/template/ajax/ajaxtoolbar.phtml ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <script type="text/javascript" >
2
+ toolbarBaseurl = '<?php echo Mage::getBaseUrl('skin'); ?>';
3
+ </script>
js/VS/ajaxtoolbar.js ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ $jq=jQuery.noConflict();
2
+ // Check setLocation is add product to cart
3
+ // issend Variable check request on send
4
+ var toolbarsend = false;
5
+ var toolbarBaseurl ='';
6
+ var ajaxtoolbar = function(){
7
+ function lockshowloading(){
8
+ $jq(".category-products").css("position","relative");
9
+ $jq(".category-products").append("<div style='position:absolute;top:0px;left:0px;right:0px;bottom:0px;height:100%;width:100%;background:white;margin:0px;-moz-opacity:.80;filter:alpha(opacity=80);opacity:0.8;z-index:888'></div>");
10
+ img = "<div style='position:absolute;top:40%;left:50%;margin-left:-33px;z-index:889'><img src='"+toolbarBaseurl+"frontend/default/default/VS/images/ajaxloading.gif'/></div>";
11
+ $jq(".category-products").append(img);
12
+ }
13
+ return {
14
+ onReady:function(){
15
+ setLocation=function(link){
16
+ if(link.search("limit=")!=-1||link.search("mode=")!=-1||link.search("dir=")!=-1||link.search("order=")!=-1){
17
+ if(toolbarsend==false){
18
+ ajaxtoolbar.onSend(link,'get');
19
+
20
+ }
21
+ }else{
22
+ window.location.href=link;
23
+ }
24
+
25
+ };
26
+ $jq('a').click(function(event) {
27
+ link = $jq(this).attr('href');
28
+ if((link.search("mode=")!=-1||link.search("dir=")!=-1||link.search("p=")!=-1)&&(toolbarsend==false)){
29
+ event.preventDefault();
30
+ ajaxtoolbar.onSend(link,'get');
31
+ }
32
+
33
+ });
34
+
35
+ },//End onReady
36
+ onSend:function(url,typemethod){
37
+ new Ajax.Request(url,
38
+ {parameters:{ajaxtoolbar:1},
39
+ method:typemethod,
40
+ onLoading:function(cp){
41
+ toolbarsend=true;
42
+ lockshowloading();
43
+ },
44
+ onComplete:function(cp){
45
+ toolbarsend=false;
46
+ if(200!=cp.status){
47
+ return false;
48
+ }else{
49
+ // Get success
50
+ var list = cp.responseJSON;
51
+ $$(".category-products").invoke("replace",list.toolbarlistproduct);
52
+ ajaxtoolbar.onReady();
53
+
54
+ }
55
+
56
+ }
57
+
58
+ });
59
+ }//End onSend
60
+ }
61
+ }();
62
+ Prototype.Browser.IE?Event.observe(window,"load",function(){ajaxtoolbar.onReady()}):document.observe("dom:loaded",function(){ajaxtoolbar.onReady()});
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>VS_Ajax</name>
4
- <version>1.0.1</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>
@@ -10,9 +10,9 @@
10
  <description>Extensin will help to add products to shopping cart directly from category and product page using ajax operations. User would be able to add all product types simple,configurable,bundled,grouped, virtual and downloadable from the category page itself. For the products which require options to be selected before adding to cart e.g configurable,bundled etc , a lightbox iframe window will show up showing the options to be selected by user with a &#x2018;Add to Cart&#x2019; button.</description>
11
  <notes>Extensin will help to add products to shopping cart directly from category and product page using ajax operations. User would be able to add all product types simple,configurable,bundled,grouped, virtual and downloadable from the category page itself. For the products which require options to be selected before adding to cart e.g configurable,bundled etc , a lightbox iframe window will show up showing the options to be selected by user with a &#x2018;Add to Cart&#x2019; button.</notes>
12
  <authors><author><name>virendra kumar sharma</name><user>auto-converted</user><email>bhardwajveerendra@gmail.com</email></author></authors>
13
- <date>2012-05-08</date>
14
- <time>06:14:29</time>
15
- <contents><target name="magecommunity"><dir name="VS"><dir name="Ajax"><dir name="Block"><dir name="Cart"><file name="Sidebar.php" hash="864bb88bd32fd7173e0c93ab38f1a95e"/></dir><file name="Ajax.php" hash="086593f100cc5f39908670c87e4d7e34"/></dir><dir name="Helper"><file name="Data.php" hash="10b3d25f90cb15f98564f2b5acda6ed5"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Ajax"><file name="Collection.php" hash="c1adf1b37d155cd86392731425a6adae"/></dir><file name="Ajax.php" hash="73ac136326d2a74ba5b2dfc27ee809ec"/></dir><file name="Ajax.php" hash="50ab19e34a1e77f7453f8c9b4267b4a8"/><file name="Status.php" hash="c0b40c775f4ae79ddfe1ba73ad1c1498"/></dir><dir name="controllers"><file name="IndexController.php" hash="d315aa326c338fc9a8eb9c016e41611b"/><file name="whishlistController.php" hash="7d28b3cb333333b2c3e79537f683ad39"/></dir><dir name="etc"><file name="config.xml" hash="65a03a47e9ac642929377a3989bc45cf"/><file name="system.xml" hash="d6bbc0bf610fe2b1f4e6255c6746bc77"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="ajax"><dir name="catalog"><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="6e548cb3c613132cd052ce9cec52648c"/></dir><dir name="view"><file name="addto.phtml" hash="5b925dc6f57ca14d0dce3fdf72ca90c5"/><file name="addtocart.phtml" hash="067f96d19d8e2e3fb0dc8f10e8e0727f"/><file name="list.phtml" hash="df83748b6551bd2681161e1ee5d18152"/></dir><file name="options.phtml" hash="726ff1f880ce50d91131d799a6bf6f67"/><file name="view.phtml" hash="d9da8bfcbc27f206ff99e35d0d845e6a"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="sidebar"><file name="default.phtml" hash="23bfd9fd53fc836a633a5d2efb92479b"/><file name="default1.6.phtml" hash="55096a02fb9f5f945672036858d64268"/></dir></dir></dir></dir></dir><dir name="layout"><file name="ajax.xml" hash="953b2bc17e57f7f01c7688affbf77429"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="VS"><file name="ajaxwishlist.js" hash="0a8a1c06b2d3801f9ae27c5e54510485"/><file name="jquery-1.6.4.min.js" hash="9118381924c51c89d9414a311ec9c97f"/><file name="noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VS_Ajax.xml" hash="89f4110e36be169d3ea567a5fadb73b5"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="VS"><dir name="js"><dir name="fancybox"><file name="Thumbs.db" hash="e21601a53f0ef3c31048713a03ba13c5"/><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.4.css" hash="4fbb2e045b3bc26aaf4b16d06a7580bf"/><file name="jquery.fancybox-1.3.4.js" hash="e7fc2f8a70f0a9f966207c3f71130721"/><file name="jquery.fancybox-1.3.4.pack.js" hash="8bc36a08c46719377528d962966ce37c"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="3b0a821567b463e70bcc1e90ed2bc9b6"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>VS_Ajax</name>
4
+ <version>1.0.2</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>
10
  <description>Extensin will help to add products to shopping cart directly from category and product page using ajax operations. User would be able to add all product types simple,configurable,bundled,grouped, virtual and downloadable from the category page itself. For the products which require options to be selected before adding to cart e.g configurable,bundled etc , a lightbox iframe window will show up showing the options to be selected by user with a &#x2018;Add to Cart&#x2019; button.</description>
11
  <notes>Extensin will help to add products to shopping cart directly from category and product page using ajax operations. User would be able to add all product types simple,configurable,bundled,grouped, virtual and downloadable from the category page itself. For the products which require options to be selected before adding to cart e.g configurable,bundled etc , a lightbox iframe window will show up showing the options to be selected by user with a &#x2018;Add to Cart&#x2019; button.</notes>
12
  <authors><author><name>virendra kumar sharma</name><user>auto-converted</user><email>bhardwajveerendra@gmail.com</email></author></authors>
13
+ <date>2012-05-09</date>
14
+ <time>08:30:08</time>
15
+ <contents><target name="magecommunity"><dir name="VS"><dir name="Ajax"><dir name="Block"><dir name="Cart"><file name="Sidebar.php" hash="864bb88bd32fd7173e0c93ab38f1a95e"/></dir><file name="Ajax.php" hash="086593f100cc5f39908670c87e4d7e34"/></dir><dir name="Helper"><file name="Data.php" hash="10b3d25f90cb15f98564f2b5acda6ed5"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Ajax"><file name="Collection.php" hash="c1adf1b37d155cd86392731425a6adae"/></dir><file name="Ajax.php" hash="73ac136326d2a74ba5b2dfc27ee809ec"/></dir><file name="Ajax.php" hash="50ab19e34a1e77f7453f8c9b4267b4a8"/><file name="Observer.php" hash="a7883a896fbd0c4a56441904ad45aba4"/><file name="Status.php" hash="c0b40c775f4ae79ddfe1ba73ad1c1498"/></dir><dir name="controllers"><file name="IndexController.php" hash="d315aa326c338fc9a8eb9c016e41611b"/><file name="whishlistController.php" hash="7d28b3cb333333b2c3e79537f683ad39"/></dir><dir name="etc"><file name="config.xml" hash="5f21c19dd3ea3e12e4633a36d8a2ccaa"/><file name="system.xml" hash="7cb3d97f89bc5230740f080351fa01b2"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="ajax"><dir name="catalog"><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="6e548cb3c613132cd052ce9cec52648c"/></dir><dir name="view"><file name="addto.phtml" hash="5b925dc6f57ca14d0dce3fdf72ca90c5"/><file name="addtocart.phtml" hash="067f96d19d8e2e3fb0dc8f10e8e0727f"/><file name="list.phtml" hash="df83748b6551bd2681161e1ee5d18152"/></dir><file name="options.phtml" hash="726ff1f880ce50d91131d799a6bf6f67"/><file name="view.phtml" hash="d9da8bfcbc27f206ff99e35d0d845e6a"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="sidebar"><file name="default.phtml" hash="23bfd9fd53fc836a633a5d2efb92479b"/><file name="default1.6.phtml" hash="55096a02fb9f5f945672036858d64268"/></dir></dir></dir><file name="ajaxtoolbar.phtml" hash="947111ca799ab23f6fa3a86662b7ea50"/></dir></dir><dir name="layout"><file name="ajax.xml" hash="8ed7469f6490cb499e7ac60dce0a8ffc"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="VS"><file name="ajaxtoolbar.js" hash="c987c9ffe9742bcd83a844e1218dc233"/><file name="ajaxwishlist.js" hash="0a8a1c06b2d3801f9ae27c5e54510485"/><file name="jquery-1.6.4.min.js" hash="9118381924c51c89d9414a311ec9c97f"/><file name="noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VS_Ajax.xml" hash="89f4110e36be169d3ea567a5fadb73b5"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="VS"><dir name="images"><file name="ajaxloading.gif" hash="ee668d6e130b785c53e6a227e0b90dd2"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/></dir><dir name="js"><dir name="fancybox"><file name="Thumbs.db" hash="c2bbd1bacff98c3855521df4b9d5babb"/><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.4.css" hash="4fbb2e045b3bc26aaf4b16d06a7580bf"/><file name="jquery.fancybox-1.3.4.js" hash="e7fc2f8a70f0a9f966207c3f71130721"/><file name="jquery.fancybox-1.3.4.pack.js" hash="8bc36a08c46719377528d962966ce37c"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="3b0a821567b463e70bcc1e90ed2bc9b6"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
skin/frontend/default/default/VS/images/ajaxloading.gif ADDED
Binary file
skin/frontend/default/default/VS/images/opc-ajax-loader.gif ADDED
Binary file
skin/frontend/default/default/VS/js/fancybox/Thumbs.db CHANGED
Binary file