Codnitive_Defaultrtl - Version 1.6.01

Version Notes

Please note: first test all modules in a test store then install them on your production. Always create a backup of your store, before any extension installation.

Download this release

Release Info

Developer Hassan Barza
Extension Codnitive_Defaultrtl
Version 1.6.01
Comparing to
See all releases


Code changes from version 1.5.10 to 1.6.01

app/code/community/Codnitive/Defaultrtl/etc/config.xml CHANGED
@@ -21,7 +21,7 @@
21
  <config>
22
  <modules>
23
  <Codnitive_Defaultrtl>
24
- <version>1.5.10</version>
25
  <title>RtL Default Theme</title>
26
  <link><![CDATA[http://www.codnitive.com/]]>
27
  </link>
21
  <config>
22
  <modules>
23
  <Codnitive_Defaultrtl>
24
+ <version>1.6.01</version>
25
  <title>RtL Default Theme</title>
26
  <link><![CDATA[http://www.codnitive.com/]]>
27
  </link>
app/design/frontend/default/default_rtl/template/catalog/product/view/tierprices.phtml CHANGED
@@ -20,7 +20,7 @@
20
  *
21
  * @category design
22
  * @package base_default
23
- * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
@@ -33,6 +33,9 @@ $_product = $this->getProduct();
33
  $_tierPrices = $this->getTierPrices();
34
  $_finalPriceInclTax = $this->helper('tax')->getPrice($_product, $_product->getFinalPrice(), true);
35
 
 
 
 
36
  $_weeeTaxAmount = Mage::helper('weee')->getAmountForDisplay($_product);
37
  if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
38
  $_weeeTaxAttributes = Mage::helper('weee')->getProductWeeeAttributesForDisplay($_product);
@@ -45,13 +48,21 @@ if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
45
  <?php $_tierPrices = $this->getTierPrices($_product); ?>
46
  <?php endif; ?>
47
  <?php Mage::helper('weee')->processTierPrices($_product, $_tierPrices); ?>
48
-
49
  <?php foreach ($_tierPrices as $_price): ?>
 
 
 
 
 
 
 
 
 
50
  <?php if ($this->helper('tax')->displayBothPrices()): ?>
51
  <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
52
- <li><?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price_incl_weee_only'], $_price['formated_price_incl_weee']) ?>
53
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
54
- <li><?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
55
  <?php if ($_weeeTaxAttributes): ?>
56
  (<small>
57
  <?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
@@ -63,7 +74,7 @@ if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
63
  <?php endif; ?>
64
  <?php echo $this->__('each') ?>
65
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
66
- <li><?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
67
  <?php if ($_weeeTaxAttributes): ?>
68
  (<small>
69
  <?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
@@ -75,7 +86,7 @@ if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
75
  <?php endif; ?>
76
  <?php echo $this->__('each') ?>
77
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
78
- <li><?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
79
  <?php if ($_weeeTaxAttributes): ?>
80
  (<small>
81
  <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
@@ -86,36 +97,36 @@ if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
86
  <?php endif; ?>
87
  <?php echo $this->__('each') ?>
88
  <?php else: ?>
89
- <li><?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price'], $_price['formated_price_incl_tax']) ?>
90
  <?php endif; ?>
91
  <?php else: ?>
92
  <?php if ($this->helper('tax')->displayPriceIncludingTax()): ?>
93
  <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
94
- <li><?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee']) ?>
95
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
96
- <li><?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
97
  <?php if ($_weeeTaxAttributes): ?>
98
- (</small>
99
  <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
100
  <?php echo $separator; ?>
101
  <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
102
  <?php $separator = ' + '; endforeach; ?>
103
- <small>)
104
  <?php endif; ?>
105
  <?php echo $this->__('each') ?>
106
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
107
- <li><?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
108
  <?php if ($_weeeTaxAttributes): ?>
109
- (</small>
110
  <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
111
  <?php echo $separator; ?>
112
  <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
113
  <?php $separator = ' + '; endforeach; ?>
114
- <small>)
115
  <?php endif; ?>
116
  <?php echo $this->__('each') ?>
117
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
118
- <li><?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_tax']); ?>
119
  <?php if ($_weeeTaxAttributes): ?>
120
  (<small>
121
  <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
@@ -126,13 +137,13 @@ if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
126
  <?php endif; ?>
127
  <?php echo $this->__('each') ?>
128
  <?php else: ?>
129
- <li><?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_tax']) ?>
130
  <?php endif; ?>
131
  <?php else: ?>
132
  <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
133
- <li><?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee_only']) ?>
134
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
135
- <li><?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
136
  <?php if ($_weeeTaxAttributes): ?>
137
  (<small>
138
  <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
@@ -143,7 +154,7 @@ if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
143
  <?php endif; ?>
144
  <?php echo $this->__('each') ?>
145
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
146
- <li><?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
147
  <?php if ($_weeeTaxAttributes): ?>
148
  (<small>
149
  <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
@@ -154,7 +165,7 @@ if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
154
  <?php endif; ?>
155
  <?php echo $this->__('each') ?>
156
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
157
- <li><?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
158
  <?php if ($_weeeTaxAttributes): ?>
159
  (<small>
160
  <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
@@ -165,17 +176,52 @@ if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
165
  <?php endif; ?>
166
  <?php echo $this->__('each') ?>
167
  <?php else: ?>
168
- <li><?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price']) ?>
169
  <?php endif; ?>
170
  <?php endif; ?>
171
  <?php endif; ?>
 
 
 
172
  <?php if (!$this->getInGrouped()): ?>
173
  <?php if(($_product->getPrice() == $_product->getFinalPrice() && $_product->getPrice() > $_price['price'])
174
  || ($_product->getPrice() != $_product->getFinalPrice() && $_product->getFinalPrice() > $_price['price'])): ?>
175
  <?php echo $this->__('and') ?>&nbsp;<strong class="benefit"><?php echo $_price['savePercent']?>%&nbsp;<?php echo $this->__("'save'")?>
176
  <?php endif ?></strong>
177
  <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  </li>
 
179
  <?php endforeach ?>
180
  </ul>
181
  <?php endif;?>
20
  *
21
  * @category design
22
  * @package base_default
23
+ * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
33
  $_tierPrices = $this->getTierPrices();
34
  $_finalPriceInclTax = $this->helper('tax')->getPrice($_product, $_product->getFinalPrice(), true);
35
 
36
+ /** @var $_catalogHelper Mage_Catalog_Helper_Data */
37
+ $_catalogHelper = Mage::helper('catalog');
38
+
39
  $_weeeTaxAmount = Mage::helper('weee')->getAmountForDisplay($_product);
40
  if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
41
  $_weeeTaxAttributes = Mage::helper('weee')->getProductWeeeAttributesForDisplay($_product);
48
  <?php $_tierPrices = $this->getTierPrices($_product); ?>
49
  <?php endif; ?>
50
  <?php Mage::helper('weee')->processTierPrices($_product, $_tierPrices); ?>
 
51
  <?php foreach ($_tierPrices as $_price): ?>
52
+ <li>
53
+ <?php if ($_catalogHelper->canApplyMsrp($_product)): ?>
54
+ <?php if ($this->getInGrouped()): ?>
55
+ <?php echo $this->__('Buy %1$s for', $_price['price_qty']) ?>:
56
+ <?php else: ?>
57
+ <?php echo $this->__('Buy %1$s', $_price['price_qty']) ?>
58
+ <?php endif; ?>
59
+ <?php else: ?>
60
+
61
  <?php if ($this->helper('tax')->displayBothPrices()): ?>
62
  <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
63
+ <?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price_incl_weee_only'], $_price['formated_price_incl_weee']) ?>
64
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
65
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
66
  <?php if ($_weeeTaxAttributes): ?>
67
  (<small>
68
  <?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
74
  <?php endif; ?>
75
  <?php echo $this->__('each') ?>
76
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
77
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
78
  <?php if ($_weeeTaxAttributes): ?>
79
  (<small>
80
  <?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
86
  <?php endif; ?>
87
  <?php echo $this->__('each') ?>
88
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
89
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
90
  <?php if ($_weeeTaxAttributes): ?>
91
  (<small>
92
  <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
97
  <?php endif; ?>
98
  <?php echo $this->__('each') ?>
99
  <?php else: ?>
100
+ <?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price'], $_price['formated_price_incl_tax']) ?>
101
  <?php endif; ?>
102
  <?php else: ?>
103
  <?php if ($this->helper('tax')->displayPriceIncludingTax()): ?>
104
  <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
105
+ <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee']) ?>
106
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
107
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
108
  <?php if ($_weeeTaxAttributes): ?>
109
+ (<small>
110
  <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
111
  <?php echo $separator; ?>
112
  <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
113
  <?php $separator = ' + '; endforeach; ?>
114
+ </small>)
115
  <?php endif; ?>
116
  <?php echo $this->__('each') ?>
117
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
118
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
119
  <?php if ($_weeeTaxAttributes): ?>
120
+ (<small>
121
  <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
122
  <?php echo $separator; ?>
123
  <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
124
  <?php $separator = ' + '; endforeach; ?>
125
+ </small>)
126
  <?php endif; ?>
127
  <?php echo $this->__('each') ?>
128
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
129
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_tax']); ?>
130
  <?php if ($_weeeTaxAttributes): ?>
131
  (<small>
132
  <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
137
  <?php endif; ?>
138
  <?php echo $this->__('each') ?>
139
  <?php else: ?>
140
+ <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_tax']) ?>
141
  <?php endif; ?>
142
  <?php else: ?>
143
  <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
144
+ <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee_only']) ?>
145
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
146
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
147
  <?php if ($_weeeTaxAttributes): ?>
148
  (<small>
149
  <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
154
  <?php endif; ?>
155
  <?php echo $this->__('each') ?>
156
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
157
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
158
  <?php if ($_weeeTaxAttributes): ?>
159
  (<small>
160
  <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
165
  <?php endif; ?>
166
  <?php echo $this->__('each') ?>
167
  <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
168
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
169
  <?php if ($_weeeTaxAttributes): ?>
170
  (<small>
171
  <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
176
  <?php endif; ?>
177
  <?php echo $this->__('each') ?>
178
  <?php else: ?>
179
+ <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price']) ?>
180
  <?php endif; ?>
181
  <?php endif; ?>
182
  <?php endif; ?>
183
+
184
+ <?php endif; // Can apply MSRP ?>
185
+
186
  <?php if (!$this->getInGrouped()): ?>
187
  <?php if(($_product->getPrice() == $_product->getFinalPrice() && $_product->getPrice() > $_price['price'])
188
  || ($_product->getPrice() != $_product->getFinalPrice() && $_product->getFinalPrice() > $_price['price'])): ?>
189
  <?php echo $this->__('and') ?>&nbsp;<strong class="benefit"><?php echo $_price['savePercent']?>%&nbsp;<?php echo $this->__("'save'")?>
190
  <?php endif ?></strong>
191
  <?php endif; ?>
192
+
193
+ <?php if ($_catalogHelper->isShowPriceOnGesture($_product)):?>
194
+ <?php $popupId = 'msrp-popup-' . $_product->getId() . $this->helper('core')->getRandomString(20); ?>
195
+ <a href="#" id="<?php echo($popupId);?>"><?php echo $this->__('Click for price'); ?></a>
196
+ <script type="text/javascript">
197
+ <?php if (!$this->getInGrouped()): ?>
198
+ var newLink = {
199
+ url: "<?php echo $this->getAddToCartUrl($_product, array('qty' => $_price['price_qty'])); ?>",
200
+ qty: "<?php echo $_price['price_qty']?>"
201
+ };
202
+ <?php else: ?>
203
+ var newLink = {
204
+ url: "<?php echo $this->getAddToCartUrl($_product, array('qty' => $_price['price_qty'])); ?>",
205
+ notUseForm: true
206
+ };
207
+ <?php endif ?>
208
+ Catalog.Map.addHelpLink(
209
+ $('<?php echo $popupId ?>'),
210
+ "<?php echo $_product->getName() ?>",
211
+ <?php echo json_encode($_price['real_price_html']) ?>,
212
+ "<?php echo $this->helper('core')->currency($_product->getMsrp(),true,false) ?>",
213
+ newLink
214
+ );
215
+ </script>
216
+ <?php else: ?>
217
+ <span class="msrp-price-hide-message">
218
+ <?php echo $_catalogHelper->getMsrpPriceMessage($_product) ?>
219
+ </span>
220
+ <?php endif; ?>
221
+
222
+
223
  </li>
224
+
225
  <?php endforeach ?>
226
  </ul>
227
  <?php endif;?>
app/design/frontend/default/default_rtl/template/checkout/cart/sidebar/default.phtml CHANGED
@@ -20,13 +20,14 @@
20
  *
21
  * @category design
22
  * @package base_default
23
- * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
27
  <?php
28
  $_item = $this->getItem();
29
  $isVisibleProduct = $_item->getProduct()->isVisibleInSiteVisibility();
 
30
  ?>
31
  <li class="item">
32
  <?php if ($this->hasProductUrl()): ?>
@@ -42,6 +43,12 @@
42
  <p class="product-name"><?php if ($this->hasProductUrl()): ?><a href="<?php echo $this->getProductUrl() ?>"><?php endif; ?><?php echo $this->htmlEscape($this->getProductName()) ?><?php if ($this->hasProductUrl()): ?></a><?php endif; ?></p>
43
  <span class="codnitive-sidebar-cart-qty"><strong><?php echo $this->getQty() ?></strong>&nbsp;x&nbsp;</span>
44
 
 
 
 
 
 
 
45
  <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
46
  <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
47
  <?php echo $this->__('Excl. Tax'); ?>:
@@ -112,6 +119,9 @@
112
  <?php endif; ?>
113
  <?php endif; ?>
114
  <?php endif; ?>
 
 
 
115
  <?php if ($_options = $this->getOptionList()):?>
116
  <div class="truncated">
117
  <div class="truncated_full_value">
20
  *
21
  * @category design
22
  * @package base_default
23
+ * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
27
  <?php
28
  $_item = $this->getItem();
29
  $isVisibleProduct = $_item->getProduct()->isVisibleInSiteVisibility();
30
+ $canApplyMsrp = Mage::helper('catalog')->canApplyMsrp($_item->getProduct(), Mage_Catalog_Model_Product_Attribute_Source_Msrp_Type::TYPE_BEFORE_ORDER_CONFIRM);
31
  ?>
32
  <li class="item">
33
  <?php if ($this->hasProductUrl()): ?>
43
  <p class="product-name"><?php if ($this->hasProductUrl()): ?><a href="<?php echo $this->getProductUrl() ?>"><?php endif; ?><?php echo $this->htmlEscape($this->getProductName()) ?><?php if ($this->hasProductUrl()): ?></a><?php endif; ?></p>
44
  <span class="codnitive-sidebar-cart-qty"><strong><?php echo $this->getQty() ?></strong>&nbsp;x&nbsp;</span>
45
 
46
+ <?php if ($canApplyMsrp): ?>
47
+
48
+ <span class="map-cart-sidebar-item"><?php echo $this->__('See price before order confirmation.'); ?></span>
49
+
50
+ <?php else: ?>
51
+
52
  <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
53
  <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
54
  <?php echo $this->__('Excl. Tax'); ?>:
119
  <?php endif; ?>
120
  <?php endif; ?>
121
  <?php endif; ?>
122
+
123
+ <?php endif; //Can apply MSRP ?>
124
+
125
  <?php if ($_options = $this->getOptionList()):?>
126
  <div class="truncated">
127
  <div class="truncated_full_value">
app/design/frontend/default/default_rtl/template/page/html/footer.phtml CHANGED
@@ -20,7 +20,7 @@
20
  *
21
  * @category design
22
  * @package base_default
23
- * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
20
  *
21
  * @category design
22
  * @package base_default
23
+ * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
app/design/frontend/default/default_rtl/template/sales/order/shipment/items.phtml CHANGED
@@ -20,7 +20,7 @@
20
  *
21
  * @category design
22
  * @package base_default
23
- * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
@@ -50,9 +50,9 @@
50
  $_size = $tracks->count();
51
  foreach($tracks as $track): ?>
52
  <?php if($track->isCustom()): ?>
53
- <?php echo $track->getNumber() ?>
54
  <?php else: ?>
55
- <a href="#" onclick="popWin('<?php echo $this->helper('shipping')->getTrackingPopupUrlBySalesModel($track) ?>','trackorder','width=800,height=600,left=0,top=0,resizable=yes,scrollbars=yes')" ><?php echo $track->getNumber() ?></a>
56
  <?php endif; ?>
57
  <?php if($i!=$_size): ?>, <?php endif; ?>
58
  <?php $i++;
20
  *
21
  * @category design
22
  * @package base_default
23
+ * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
50
  $_size = $tracks->count();
51
  foreach($tracks as $track): ?>
52
  <?php if($track->isCustom()): ?>
53
+ <?php echo $this->escapeHtml($track->getNumber()) ?>
54
  <?php else: ?>
55
+ <a href="#" onclick="popWin('<?php echo $this->helper('shipping')->getTrackingPopupUrlBySalesModel($track) ?>','trackorder','width=800,height=600,left=0,top=0,resizable=yes,scrollbars=yes')" ><?php echo $this->escapeHtml($track->getNumber()) ?></a>
56
  <?php endif; ?>
57
  <?php if($i!=$_size): ?>, <?php endif; ?>
58
  <?php $i++;
app/etc/modules/Codnitive_Defaultrtl.xml CHANGED
@@ -26,7 +26,7 @@
26
  <depends>
27
  <Mage_Core />
28
  </depends>
29
- <version>1.5.10</version>
30
  </Codnitive_Defaultrtl>
31
  </modules>
32
  </config>
26
  <depends>
27
  <Mage_Core />
28
  </depends>
29
+ <version>1.6.01</version>
30
  </Codnitive_Defaultrtl>
31
  </modules>
32
  </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Codnitive_Defaultrtl</name>
4
- <version>1.5.10</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-3.0.html">GNU General Public License, version 3 (GPLv3)</license>
7
  <channel>community</channel>
@@ -11,8 +11,8 @@
11
  <notes>Please note: first test all modules in a test store then install them on your production. Always create a backup of your store, before any extension installation.</notes>
12
  <authors><author><name>Hassan Barza</name><user>hbarza</user><email>support@codnitive.com</email></author></authors>
13
  <date>2012-05-04</date>
14
- <time>12:55:58</time>
15
- <contents><target name="mageetc"><dir name="modules"><file name="Codnitive_Codall.xml" hash="6e18a95e6783cbdfc9d51c5853265eaa"/><file name="Codnitive_Defaultrtl.xml" hash="5946f77936b59516cfb252f6cddb248a"/></dir></target><target name="magelocal"><dir name="Codnitive"><dir name="Codall"><dir><dir name="Block"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Contact.php" hash="62e20a1f93c1b0394a5b1f1fefe09447"/><file name="ECD.php" hash="b0a8c85e5c2d20f513ca17fc5b58ab35"/><dir name="Extensions"><file name="List.php" hash="b06731682a2f24f6b50f01166c4dc4f2"/></dir><file name="PCD.php" hash="b821a4ed3d705567a9d82fb3910d4b50"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="db05202ae83bf9e4cc4454acb5fd8615"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0bed954bf2a459b1f5d6a25050d770d7"/><file name="config.xml" hash="2b54846594d6ca90381a3b5937bd3443"/><file name="system.xml" hash="287da42ea1c5bdf169365f1b54529cd4"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Codnitive_Codall.csv" hash="bea852e5e3c3f17c54d3c21e96115c68"/></dir><dir name="fa_IR"><file name="Codnitive_Codall.csv" hash="3691ccfe6c605575aace69417351e0f7"/></dir></target><target name="magecommunity"><dir name="Codnitive"><dir name="Defaultrtl"><dir><dir name="Block"><dir name="Bundle"><dir name="Catalog"><dir name="Product"><dir name="View"><dir name="Type"><dir name="Bundle"><dir name="Option"><file name="Checkbox.php" hash="55903f97dca5c5229cda735e0b879cb9"/><file name="Radio.php" hash="06d8964bbbf92dc68b82314041d1ac13"/></dir></dir></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="View"><dir name="Options"><dir name="Type"><file name="Date.php" hash="371ecc3c7bf17185a01dd87aa75315f4"/><file name="Select.php" hash="60306afc74307f54eb7bd95abe13ac84"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="7eb98924316509a59599dd2a65153051"/></dir><dir name="Model"><file name="Config.php" hash="f1a4e443e4f2b93e6900c5cd178f9d23"/></dir><dir name="etc"><file name="config.xml" hash="6ad70ea805f0d583bd712ed02b25e513"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default_rtl"><dir><dir name="layout"><file name="defaultrtl.xml" hash="70f77e28218ab11e28a2708d6438d2c8"/></dir><dir name="template"><dir name="bundle"><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><file name="renderer.phtml" hash="8cf45d039f9778c95095e24fd0fc1e4a"/></dir></dir><dir name="invoice"><dir name="items"><file name="renderer.phtml" hash="320ca015a5260502eb0836f5683a4ce2"/></dir></dir><dir name="items"><file name="renderer.phtml" hash="c8e696e7382ab067d40ea995d10f730e"/></dir><dir name="shipment"><dir name="items"><file name="renderer.phtml" hash="4f5fd34604a754daaf72038de86ac062"/></dir></dir></dir></dir></dir><dir name="catalog"><dir name="layer"><file name="filter.phtml" hash="158864615e71581f5020ac36fd1fea0a"/></dir><dir name="product"><dir name="view"><file name="addtocart.phtml" hash="ded802f7b78c62ee29b1ec3627f0d897"/><dir name="options"><dir name="type"><file name="date.phtml" hash="95ee98cd7de078c0ce6d0596ba0f0836"/></dir></dir><file name="tierprices.phtml" hash="6086057e2da1831f65964eb26f990b57"/></dir></dir></dir><dir name="checkout"><dir name="cart"><dir name="sidebar"><file name="default.phtml" hash="8944e23758a74a95725f321c9a67c1d4"/></dir></dir></dir><dir name="downloadable"><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="756000be240b092d7977172619dbea36"/></dir></dir></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="4a303ce536b6d165f6199e616b46f0b4"/></dir></dir></dir><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="a511a1df287d72443a9d8d947199ff0b"/></dir></dir></dir></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="98fceb7c47be962fd313eb6134d0a035"/></dir><dir name="page"><dir name="html"><file name="footer.phtml" hash="076296d36afadfc5342653c7f6835661"/><file name="pager.phtml" hash="44113ae4a8fc2462fd148ab9b8159270"/></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="c2b2a3056233cdeb2b4967b486183562"/></dir></dir><file name="items.phtml" hash="a7c6de72279bf4d4621d7a9825225763"/></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="e9cc95c0a497ff2e0172eea87995deeb"/></dir></dir><file name="items.phtml" hash="77e6cc4cde2bf0dd3a970d74e7997774"/></dir><dir name="items"><dir name="renderer"><file name="default.phtml" hash="b6fd2dd4a4561367c7fc58b68119931c"/></dir></dir><file name="items.phtml" hash="dc58441069e5e1edb553d6792f9f4738"/><dir name="print"><file name="creditmemo.phtml" hash="f12e5efb13bb186c8db96b65b49bcf86"/><file name="invoice.phtml" hash="a43586df667656fa055227f262eb4e4d"/><file name="shipment.phtml" hash="1d4dc304ed71a4b6b0573be5ab2f8c47"/></dir><file name="print.phtml" hash="fc7e8a9a92301e61ef20c8c7d72f7a8f"/><dir name="shipment"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="a0c9368eb290e120356c73724e9e31c9"/></dir></dir><file name="items.phtml" hash="8b4bc774fc8c97177900a4180d2c6fea"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default_rtl"><dir><dir name="css"><file name="print.css" hash="cfe716fe3e5c43f0d5ecf52589bce3a2"/><file name="styles-aie.css" hash="593ab756fab5a102f83468ab738838c0"/><file name="styles-ie.css" hash="20ca826772ef26a973d1d0bf271c7d22"/><file name="styles-ie9.css" hash="fc99f08db99d828a2548260db800d770"/><file name="styles.css" hash="2f8dd29630696dd91142eab8cbd84ea4"/><file name="widgets.css" hash="0ec634c7ae72e141072e39ca716d3304"/></dir><dir name="images"><file name="best_selling_tr_even_bg.gif" hash="5022d648379090e306f00cd64738b146"/><file name="best_selling_tr_odd_bg.gif" hash="926622704f53796801bb5d097e116c8e"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ffc29b2be33228b3d4c9163814e09949"/><file name="bkg_block-layered-label.gif" hash="73ce547103a2f069e99551a5b640dd2d"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="753ca43e9a8ed8f5bcb864f60451b3a6"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="f1b8c5e87fee0b0979d1c91e56d109b6"/><file name="bkg_grand-total.gif" hash="10f1c3d82d78170706fa3e9c4baa7e04"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_header.jpg" hash="ba6ab0d686a476cf532e59150c019d8f"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main1.gif" hash="8be40631bdd605b2a3950a567c0a5455"/><file name="bkg_main2.gif" hash="7882b3de185093d54a537ac002c39819"/><file name="bkg_nav0.jpg" hash="ff4534ed647ab48b0adfd1c6dee547c4"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="faf60c0233800ec55b1c51b617a4a413"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="4a6da285c2d5ead1ddd89bf7ea56a00c"/><file name="bkg_product_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="5867f3089792611dc686a1b4477e5bef"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="d318990175de7c67cd64e3485e1e6f35"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="9b466894aa775b7ec4cd3c511bdd5b52"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="footer_copyright_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="cb6937c8fd93ddcddaddc4bfda4e76fe"/><file name="i_msg-note.gif" hash="6d423252861fd85cce33ec4978d5a2a9"/><file name="i_msg-success.gif" hash="04c7436e0153672ca96abcce6b4c9e75"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="d8f472ac5551f059ec6038c5cb7bbc77"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="ea6d885144ead41b13c7084ab7fd91a6"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="logo_email.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="logo_print.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="6a531c50c1533c38c419eb1518f5f575"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="e0945b7da374d8271081de3b3373b583"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Codnitive_Defaultrtl</name>
4
+ <version>1.6.01</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-3.0.html">GNU General Public License, version 3 (GPLv3)</license>
7
  <channel>community</channel>
11
  <notes>Please note: first test all modules in a test store then install them on your production. Always create a backup of your store, before any extension installation.</notes>
12
  <authors><author><name>Hassan Barza</name><user>hbarza</user><email>support@codnitive.com</email></author></authors>
13
  <date>2012-05-04</date>
14
+ <time>13:09:58</time>
15
+ <contents><target name="mageetc"><dir name="modules"><file name="Codnitive_Codall.xml" hash="6e18a95e6783cbdfc9d51c5853265eaa"/><file name="Codnitive_Defaultrtl.xml" hash="0f1af8f49f8c9c3274973b10143cbef7"/></dir></target><target name="magelocal"><dir name="Codnitive"><dir name="Codall"><dir><dir name="Block"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Contact.php" hash="62e20a1f93c1b0394a5b1f1fefe09447"/><file name="ECD.php" hash="b0a8c85e5c2d20f513ca17fc5b58ab35"/><dir name="Extensions"><file name="List.php" hash="b06731682a2f24f6b50f01166c4dc4f2"/></dir><file name="PCD.php" hash="b821a4ed3d705567a9d82fb3910d4b50"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="db05202ae83bf9e4cc4454acb5fd8615"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0bed954bf2a459b1f5d6a25050d770d7"/><file name="config.xml" hash="2b54846594d6ca90381a3b5937bd3443"/><file name="system.xml" hash="287da42ea1c5bdf169365f1b54529cd4"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Codnitive_Codall.csv" hash="bea852e5e3c3f17c54d3c21e96115c68"/></dir><dir name="fa_IR"><file name="Codnitive_Codall.csv" hash="3691ccfe6c605575aace69417351e0f7"/></dir></target><target name="magecommunity"><dir name="Codnitive"><dir name="Defaultrtl"><dir><dir name="Block"><dir name="Bundle"><dir name="Catalog"><dir name="Product"><dir name="View"><dir name="Type"><dir name="Bundle"><dir name="Option"><file name="Checkbox.php" hash="55903f97dca5c5229cda735e0b879cb9"/><file name="Radio.php" hash="06d8964bbbf92dc68b82314041d1ac13"/></dir></dir></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="View"><dir name="Options"><dir name="Type"><file name="Date.php" hash="371ecc3c7bf17185a01dd87aa75315f4"/><file name="Select.php" hash="60306afc74307f54eb7bd95abe13ac84"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="7eb98924316509a59599dd2a65153051"/></dir><dir name="Model"><file name="Config.php" hash="f1a4e443e4f2b93e6900c5cd178f9d23"/></dir><dir name="etc"><file name="config.xml" hash="a0545d72f65715b2477cfb8f4128fd72"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default_rtl"><dir><dir name="layout"><file name="defaultrtl.xml" hash="70f77e28218ab11e28a2708d6438d2c8"/></dir><dir name="template"><dir name="bundle"><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><file name="renderer.phtml" hash="8cf45d039f9778c95095e24fd0fc1e4a"/></dir></dir><dir name="invoice"><dir name="items"><file name="renderer.phtml" hash="320ca015a5260502eb0836f5683a4ce2"/></dir></dir><dir name="items"><file name="renderer.phtml" hash="c8e696e7382ab067d40ea995d10f730e"/></dir><dir name="shipment"><dir name="items"><file name="renderer.phtml" hash="4f5fd34604a754daaf72038de86ac062"/></dir></dir></dir></dir></dir><dir name="catalog"><dir name="layer"><file name="filter.phtml" hash="158864615e71581f5020ac36fd1fea0a"/></dir><dir name="product"><dir name="view"><file name="addtocart.phtml" hash="ded802f7b78c62ee29b1ec3627f0d897"/><dir name="options"><dir name="type"><file name="date.phtml" hash="95ee98cd7de078c0ce6d0596ba0f0836"/></dir></dir><file name="tierprices.phtml" hash="137bfa5d1619d2b50336dc011990870e"/></dir></dir></dir><dir name="checkout"><dir name="cart"><dir name="sidebar"><file name="default.phtml" hash="7aaf641266a173325907ddafe3cbb73f"/></dir></dir></dir><dir name="downloadable"><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="756000be240b092d7977172619dbea36"/></dir></dir></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="4a303ce536b6d165f6199e616b46f0b4"/></dir></dir></dir><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="a511a1df287d72443a9d8d947199ff0b"/></dir></dir></dir></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="98fceb7c47be962fd313eb6134d0a035"/></dir><dir name="page"><dir name="html"><file name="footer.phtml" hash="a4eae1e86850f296cc0191456a97ad6c"/><file name="pager.phtml" hash="44113ae4a8fc2462fd148ab9b8159270"/></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="c2b2a3056233cdeb2b4967b486183562"/></dir></dir><file name="items.phtml" hash="a7c6de72279bf4d4621d7a9825225763"/></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="e9cc95c0a497ff2e0172eea87995deeb"/></dir></dir><file name="items.phtml" hash="77e6cc4cde2bf0dd3a970d74e7997774"/></dir><dir name="items"><dir name="renderer"><file name="default.phtml" hash="b6fd2dd4a4561367c7fc58b68119931c"/></dir></dir><file name="items.phtml" hash="dc58441069e5e1edb553d6792f9f4738"/><dir name="print"><file name="creditmemo.phtml" hash="f12e5efb13bb186c8db96b65b49bcf86"/><file name="invoice.phtml" hash="a43586df667656fa055227f262eb4e4d"/><file name="shipment.phtml" hash="1d4dc304ed71a4b6b0573be5ab2f8c47"/></dir><file name="print.phtml" hash="fc7e8a9a92301e61ef20c8c7d72f7a8f"/><dir name="shipment"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="a0c9368eb290e120356c73724e9e31c9"/></dir></dir><file name="items.phtml" hash="78f97489110373fa2ca7ffb640b0faf1"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default_rtl"><dir><dir name="css"><file name="print.css" hash="cfe716fe3e5c43f0d5ecf52589bce3a2"/><file name="styles-aie.css" hash="593ab756fab5a102f83468ab738838c0"/><file name="styles-ie.css" hash="6d350333969b1230ae90e27638529506"/><file name="styles-ie9.css" hash="fc99f08db99d828a2548260db800d770"/><file name="styles.css" hash="625b61e121b03f74728f4b1183439b90"/><file name="widgets.css" hash="0ec634c7ae72e141072e39ca716d3304"/></dir><dir name="images"><file name="best_selling_tr_even_bg.gif" hash="5022d648379090e306f00cd64738b146"/><file name="best_selling_tr_odd_bg.gif" hash="926622704f53796801bb5d097e116c8e"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ffc29b2be33228b3d4c9163814e09949"/><file name="bkg_block-layered-label.gif" hash="73ce547103a2f069e99551a5b640dd2d"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="753ca43e9a8ed8f5bcb864f60451b3a6"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="f1b8c5e87fee0b0979d1c91e56d109b6"/><file name="bkg_grand-total.gif" hash="10f1c3d82d78170706fa3e9c4baa7e04"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_header.jpg" hash="ba6ab0d686a476cf532e59150c019d8f"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main1.gif" hash="8be40631bdd605b2a3950a567c0a5455"/><file name="bkg_main2.gif" hash="7882b3de185093d54a537ac002c39819"/><file name="bkg_nav0.jpg" hash="ff4534ed647ab48b0adfd1c6dee547c4"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="faf60c0233800ec55b1c51b617a4a413"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="4a6da285c2d5ead1ddd89bf7ea56a00c"/><file name="bkg_product_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="5867f3089792611dc686a1b4477e5bef"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="d318990175de7c67cd64e3485e1e6f35"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="9b466894aa775b7ec4cd3c511bdd5b52"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="footer_copyright_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="cb6937c8fd93ddcddaddc4bfda4e76fe"/><file name="i_msg-note.gif" hash="6d423252861fd85cce33ec4978d5a2a9"/><file name="i_msg-success.gif" hash="04c7436e0153672ca96abcce6b4c9e75"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="d8f472ac5551f059ec6038c5cb7bbc77"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="ea6d885144ead41b13c7084ab7fd91a6"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="logo_email.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="logo_print.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="6a531c50c1533c38c419eb1518f5f575"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="e0945b7da374d8271081de3b3373b583"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
skin/frontend/default/default_rtl/css/styles-ie.css CHANGED
@@ -27,6 +27,7 @@
27
  .block li.item,
28
  .block-poll li,
29
  .opc li.section { vertical-align:top; }
 
30
 
31
  /* Doubled Margin Fixes */
32
  .product-view .product-img-box .more-views li,
27
  .block li.item,
28
  .block-poll li,
29
  .opc li.section { vertical-align:top; }
30
+ * html .window-overlay { background:#ccc; filter:alpha(opacity=50); }
31
 
32
  /* Doubled Margin Fixes */
33
  .product-view .product-img-box .more-views li,
skin/frontend/default/default_rtl/css/styles.css CHANGED
@@ -491,6 +491,7 @@ tr.summary-details-excluded { font-style:italic; }
491
  .header h1.logo { margin:0; }
492
  .header .quick-access { float:/*right*/left; width:600px; padding:/*28px 10px 0 0*/28px 0 0 10px; }
493
  .header .welcome-msg { margin:0; color:#fff; text-align:/*right*/left; }
 
494
  .header .form-search { position:absolute; top:0; /*right*/left:29px; width:315px; height:30px; background:url(../images/bkg_form-search.gif) 0 0 no-repeat; padding:/*1px 0 0 16px*/1px 16px 0 0; }
495
  .header .form-search label { float:/*left*/right; width:24px; height:21px; text-align:/*left*/right; text-indent:-999em; overflow:hidden; }
496
  .header .form-search input.input-text { float:/*left*/right; border-color:#5c7989; width:209px; /*margin-right*/margin-left:4px; }
@@ -1211,10 +1212,11 @@ tr.summary-details-excluded { font-style:italic; }
1211
  .truncated a.dots { cursor:help; }
1212
  .truncated a.details { cursor:help; }
1213
  .truncated .truncated_full_value { position:relative; z-index:999; }
1214
- .truncated .truncated_full_value dl { position:absolute; top:-99999em; /*left:-99999em;*/ z-index:999; width:250px; padding:8px; border:1px solid #ddd; background-color:#f6f6f6; }
1215
- .truncated .show dl { top:-20px; /*left*/right:50%; }
1216
- .col-left .truncated .show dl { /*left*/right:15px; top:7px; }
1217
- .col-right .truncated .show dl { /*left*/right:-240px; top:7px; }
 
1218
  /* ======================================================================================= */
1219
 
1220
 
@@ -1443,6 +1445,19 @@ tr.summary-details-excluded { font-style:italic; }
1443
  /* Account Login/Create Pages ============================================================ */
1444
 
1445
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1446
  /* My Account ============================================================================= */
1447
  .my-account .title-buttons .link-rss { float:none; margin:0; }
1448
 
@@ -1597,6 +1612,27 @@ tr.summary-details-excluded { font-style:italic; }
1597
  /* ======================================================================================= */
1598
 
1599
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1600
  /* Footer ================================================================================ */
1601
  .footer-container { border-top:15px solid #b6d1e2; }
1602
  .footer { width:930px; margin:0 auto; padding:10px 10px 50px; }
@@ -1692,6 +1728,7 @@ tr.summary-details-excluded { font-style:italic; }
1692
  .send-friend .form-list li p:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
1693
  /* ======================================================================================= */
1694
 
 
1695
 
1696
 
1697
  /* RTL Edition =========================================================================== */
491
  .header h1.logo { margin:0; }
492
  .header .quick-access { float:/*right*/left; width:600px; padding:/*28px 10px 0 0*/28px 0 0 10px; }
493
  .header .welcome-msg { margin:0; color:#fff; text-align:/*right*/left; }
494
+ .header .welcome-msg a { color:#ebbc58; }
495
  .header .form-search { position:absolute; top:0; /*right*/left:29px; width:315px; height:30px; background:url(../images/bkg_form-search.gif) 0 0 no-repeat; padding:/*1px 0 0 16px*/1px 16px 0 0; }
496
  .header .form-search label { float:/*left*/right; width:24px; height:21px; text-align:/*left*/right; text-indent:-999em; overflow:hidden; }
497
  .header .form-search input.input-text { float:/*left*/right; border-color:#5c7989; width:209px; /*margin-right*/margin-left:4px; }
1212
  .truncated a.dots { cursor:help; }
1213
  .truncated a.details { cursor:help; }
1214
  .truncated .truncated_full_value { position:relative; z-index:999; }
1215
+ .truncated .truncated_full_value .item-options { position:absolute; top:-99999em; /*left:-99999em;*/ z-index:999; width:250px; padding:8px; border:1px solid #ddd; background-color:#f6f6f6; }
1216
+ .truncated .truncated_full_value .item-options > p { font-weight:bold; text-transform:uppercase; }
1217
+ .truncated .show .item-options { top:-20px; /*left*/right:50%; }
1218
+ .col-left .truncated .show .item-options { /*left*/right:15px; top:7px; }
1219
+ .col-right .truncated .show .item-options { /*left*/right:-240px; top:7px; }
1220
  /* ======================================================================================= */
1221
 
1222
 
1445
  /* Account Login/Create Pages ============================================================ */
1446
 
1447
 
1448
+ /* Remember Me Popup ===================================================================== */
1449
+ .window-overlay { background:url(../images/window_overlay.png) repeat; background:rgba(0, 0, 0, 0.35); position:absolute; top:0; left:0; height:100%; width:100%; z-index:990; }
1450
+
1451
+ .remember-me label { float:none; margin:0 6px; }
1452
+ .remember-me-popup { background:#fff; border:1px solid #ccc; left:50%; top:50%; position:absolute; margin:-85px 0 0 -200px; width:400px; text-align:/*left*/right; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; -box-shadow:0 0 6px #ccc; z-index:1000; }
1453
+ .remember-me-popup h3 { background:#d9e5ee; border-bottom:1px solid #ccc; font-size:/*14px*/13px; padding:5px 10px; }
1454
+ .remember-me-popup .remember-me-popup-head { position:relative; }
1455
+ .remember-me-popup .remember-me-popup-head .remember-me-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:7px; /*right*/left:7px; height:15px; width:15px; text-indent:-9999em; }
1456
+ .remember-me-popup .remember-me-popup-body { padding:10px; }
1457
+ .remember-me-popup .remember-me-popup-body a { display:inline-block; height:19px; border:1px solid #de5400; background:#f18200; padding:0 8px; font:bold /*12px*/11px//*19px*/17px Tahoma, Arial, Helvetica, sans-serif; text-align:center; text-decoration:none; white-space:nowrap; color:#fff; }
1458
+ /* Remember Me Popup ===================================================================== */
1459
+
1460
+
1461
  /* My Account ============================================================================= */
1462
  .my-account .title-buttons .link-rss { float:none; margin:0; }
1463
 
1612
  /* ======================================================================================= */
1613
 
1614
 
1615
+ /* MAP Popup============================================================================== */
1616
+ .cart-msrp-totals { color:red; font-size:/*12px*/11px !important; font-weight:bold; margin:10px 10px 0; padding:10px; text-align:/*right*/left; text-transform:uppercase;}
1617
+ .map-cart-sidebar-total { color:red; display:block; font-size:/*10px*/9px; font-weight:bold; text-align:/*left*/right; padding:2px 5px; text-shadow:0 1px 0 #fff; }
1618
+
1619
+ .map-popup { background:#fff; border:1px solid #aaa; margin:12px 0 0; position:absolute; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; box-shadow:0 0 6px #ccc; text-align:/*left*/right; width:300px; z-index:100; }
1620
+ .map-popup-heading { background:#d9e5ee; border-bottom:1px solid #ccc; padding:/*5px 30px 5px 10px*/5px 10px 5px 30px; width:260px; }
1621
+ .map-popup-heading h2 { font-size:/*16px*/15px; margin:0; text-shadow:0 1px 0 #f6f6f6; overflow:hidden; white-space:nowrap; word-wrap:break-word; text-align:/*left*/right; text-overflow:ellipsis; }
1622
+ .map-popup-arrow { background:url(../images/map_popup_arrow.gif) no-repeat; position:absolute; /*left*/right:50%; top:-10px; height:10px; width:19px; }
1623
+ .map-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:8px; /*right*/left:10px; height:15px; width:15px; text-indent:-9999em; -moz-box-shadow:0 0 3px #999; -webkit-box-shadow:0 0 3px #999; box-shadow:0 0 3px #999; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; }
1624
+ .map-popup-content { border-top:1px solid #eee; padding:10px; overflow:hidden; text-align:/*left*/right; width:280px; }
1625
+ .map-popup-checkout { display:inline; float:/*right*/left; text-align:/*right*/left; }
1626
+ .map-popup-checkout span { display:block; padding-right:30px; }
1627
+ .map-popup-checkout .paypal-logo { margin:0 0 5px; }
1628
+ .map-popup-price .price-box,
1629
+ .map-popup-price .price-box .special-price { margin:0; padding:0; }
1630
+ .map-popup-price { margin:5px 0 0; }
1631
+ .map-popup-text { clear:right; margin:0 10px; padding:10px 0; text-align:/*left*/right; word-wrap:break-word; }
1632
+ .map-popup-only-text { border-top:1px solid #ddd; }
1633
+ /* ======================================================================================= */
1634
+
1635
+
1636
  /* Footer ================================================================================ */
1637
  .footer-container { border-top:15px solid #b6d1e2; }
1638
  .footer { width:930px; margin:0 auto; padding:10px 10px 50px; }
1728
  .send-friend .form-list li p:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
1729
  /* ======================================================================================= */
1730
 
1731
+ .guest-select {width:305px !important;}
1732
 
1733
 
1734
  /* RTL Edition =========================================================================== */
skin/frontend/default/default_rtl/images/map_popup_arrow.gif ADDED
Binary file