Print_Science_Designer_Web_to_Print - Version 1.0.12

Version Notes

Print_Science_Designer_Web_to_Print

Download this release

Release Info

Developer John Weissberg
Extension Print_Science_Designer_Web_to_Print
Version 1.0.12
Comparing to
See all releases


Code changes from version 1.0.11 to 1.0.12

Files changed (19) hide show
  1. app/code/local/PrintScience/Personalization/Block/Checkout/Cart/Item/Renderer.php +98 -98
  2. app/code/local/PrintScience/Personalization/Helper/Data.php +22 -7
  3. app/code/local/PrintScience/Personalization/Helper/Output.php +34 -29
  4. app/code/local/PrintScience/Personalization/Model/Observer.php +319 -304
  5. app/code/local/PrintScience/Personalization/Model/System/Config/Source/WindowType.php +16 -0
  6. app/code/local/PrintScience/Personalization/controllers/IndexController.php +341 -319
  7. app/code/local/PrintScience/Personalization/etc/config.xml +186 -172
  8. app/code/local/PrintScience/Personalization/etc/system.xml +98 -61
  9. app/design/adminhtml/default/default/layout/printscience_personalization.xml +14 -9
  10. app/design/frontend/base/default/layout/printscience_personalization.xml +55 -28
  11. app/design/frontend/base/default/template/printscience_personalization/catalog/product/list.phtml +100 -5
  12. app/design/frontend/base/default/template/printscience_personalization/catalog/product/view.phtml +178 -0
  13. app/design/frontend/base/default/template/printscience_personalization/catalog/product/view/addtocart.phtml +80 -19
  14. app/design/frontend/base/default/template/printscience_personalization/checkout/cart.phtml +235 -0
  15. app/design/frontend/base/default/template/printscience_personalization/checkout/cart/item/default.phtml +270 -258
  16. package.xml +4 -4
  17. skin/frontend/base/default/printscience_personalization/jquery-1.7.2.min.js +4 -0
  18. skin/frontend/base/default/printscience_personalization/modalPopLite.css +135 -0
  19. skin/frontend/base/default/printscience_personalization/modalPopLite.min.js +2 -0
app/code/local/PrintScience/Personalization/Block/Checkout/Cart/Item/Renderer.php CHANGED
@@ -1,99 +1,99 @@
1
- <?php
2
- /**
3
- * Custom shopping cart item render block
4
- *
5
- */
6
- class PrintScience_Personalization_Block_Checkout_Cart_Item_Renderer extends Mage_Checkout_Block_Cart_Item_Renderer
7
- {
8
- /**
9
- * Get personalization api session key of the cart item
10
- *
11
- * @return unknown
12
- */
13
- public function getPersonalizationApiSessionKey()
14
- {
15
- $data = Mage::helper('printscience_personalization/quote')
16
- ->getItemData($this->getItem());
17
- if (!$data) {
18
- return false;
19
- }
20
- return $data['apiSessionKey'];
21
- }
22
-
23
- /**
24
- * Get personalization URL for cart item
25
- *
26
- * @return string | false
27
- */
28
- public function getPersonalizationUrl()
29
- {
30
- $apiSessionKey = $this->getPersonalizationApiSessionKey();
31
- if (!$apiSessionKey) {
32
- return false;
33
- }
34
- $url = Mage::getUrl('personalization/index/startShoppingCart', array(
35
- 'api_session_key' => $apiSessionKey
36
- ));
37
- return $url;
38
- }
39
-
40
- /**
41
- * Get resume personalization URL for cart item in checkout page
42
- *
43
- * @return string | false
44
- */
45
- public function getResumePersonalizationUrl($productId)
46
- {
47
- $apiSessionKey = $this->getPersonalizationApiSessionKey();
48
- if (!$apiSessionKey) {
49
- return false;
50
- }
51
- $item = $this->getItem();
52
- // get simple product of configurable
53
- if($item->getProductType() == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE){
54
- $quoteItemId = $this->getItem()->getId();
55
- $mQuote = $this->getItem()->getQuote();
56
- $aChildQuoteItem = Mage::getModel("sales/quote_item")
57
- ->getCollection()
58
- ->setQuote($mQuote)
59
- ->addFieldToFilter("parent_item_id", $quoteItemId)->getFirstItem();
60
- if($aChildQuoteItem){
61
- if($aChildQuoteItem->getId()){
62
- $productId = $aChildQuoteItem->getProductId();
63
- }
64
- }
65
- }
66
-
67
- $url = Mage::getUrl('personalization/index/resumeShoppingCart', array(
68
- 'api_session_key' => $apiSessionKey,
69
- 'product' => $productId
70
- ));
71
- return $url;
72
- }
73
-
74
- /**
75
- * Get URLs of personalization preview images
76
- *
77
- * @return array | false
78
- */
79
- public function getPersonalizationPreviews()
80
- {
81
- $default = array();
82
- $apiSessionKey = $this->getPersonalizationApiSessionKey();
83
-
84
- $apiResponse = Mage::getModel('printscience_personalization/apiGateway')
85
- ->getPreview($apiSessionKey);
86
- if ((!$apiResponse) || ($apiResponse->getFaultCode())) {
87
- $item = $this->getItem();
88
-
89
- if($personalizationInfo = $item->getData('personalization_info')){
90
- $personalizationInfo = unserialize($personalizationInfo);
91
- if(!empty($personalizationInfo['product_images'])){
92
- $default = $personalizationInfo['product_images'];
93
- }
94
- }
95
- return $default;
96
- }
97
- return $apiResponse->getPeviewUrls();
98
- }
99
  }
1
+ <?php
2
+ /**
3
+ * Custom shopping cart item render block
4
+ *
5
+ */
6
+ class PrintScience_Personalization_Block_Checkout_Cart_Item_Renderer extends Mage_Checkout_Block_Cart_Item_Renderer
7
+ {
8
+ /**
9
+ * Get personalization api session key of the cart item
10
+ *
11
+ * @return unknown
12
+ */
13
+ public function getPersonalizationApiSessionKey()
14
+ {
15
+ $data = Mage::helper('printscience_personalization/quote')
16
+ ->getItemData($this->getItem());
17
+ if (!$data) {
18
+ return false;
19
+ }
20
+ return $data['apiSessionKey'];
21
+ }
22
+
23
+ /**
24
+ * Get personalization URL for cart item
25
+ *
26
+ * @return string | false
27
+ */
28
+ public function getPersonalizationUrl()
29
+ {
30
+ $apiSessionKey = $this->getPersonalizationApiSessionKey();
31
+ if (!$apiSessionKey) {
32
+ return false;
33
+ }
34
+ $url = Mage::getUrl('personalization/index/startShoppingCart', array(
35
+ 'api_session_key' => $apiSessionKey
36
+ ));
37
+ return $url;
38
+ }
39
+
40
+ /**
41
+ * Get resume personalization URL for cart item in checkout page
42
+ *
43
+ * @return string | false
44
+ */
45
+ public function getResumePersonalizationUrl($productId)
46
+ {
47
+ $apiSessionKey = $this->getPersonalizationApiSessionKey();
48
+ if (!$apiSessionKey) {
49
+ return false;
50
+ }
51
+ $item = $this->getItem();
52
+ // get simple product of configurable
53
+ if($item->getProductType() == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE){
54
+ $quoteItemId = $this->getItem()->getId();
55
+ $mQuote = $this->getItem()->getQuote();
56
+ $aChildQuoteItem = Mage::getModel("sales/quote_item")
57
+ ->getCollection()
58
+ ->setQuote($mQuote)
59
+ ->addFieldToFilter("parent_item_id", $quoteItemId)->getFirstItem();
60
+ if($aChildQuoteItem){
61
+ if($aChildQuoteItem->getId()){
62
+ $productId = $aChildQuoteItem->getProductId();
63
+ }
64
+ }
65
+ }
66
+
67
+ $url = Mage::getUrl('personalization/index/resumeShoppingCart', array(
68
+ 'api_session_key' => $apiSessionKey,
69
+ 'product' => $productId
70
+ ));
71
+ return $url;
72
+ }
73
+
74
+ /**
75
+ * Get URLs of personalization preview images
76
+ *
77
+ * @return array | false
78
+ */
79
+ public function getPersonalizationPreviews()
80
+ {
81
+ $default = array();
82
+ $apiSessionKey = $this->getPersonalizationApiSessionKey();
83
+
84
+ $apiResponse = Mage::getModel('printscience_personalization/apiGateway')
85
+ ->getPreview($apiSessionKey);
86
+ if ((!$apiResponse) || ($apiResponse->getFaultCode())) {
87
+ $item = $this->getItem();
88
+
89
+ if($personalizationInfo = $item->getData('personalization_info')){
90
+ $personalizationInfo = unserialize($personalizationInfo);
91
+ if(!empty($personalizationInfo['product_images'])){
92
+ $default = $personalizationInfo['product_images'];
93
+ }
94
+ }
95
+ return $default;
96
+ }
97
+ return $apiResponse->getPeviewUrls();
98
+ }
99
  }
app/code/local/PrintScience/Personalization/Helper/Data.php CHANGED
@@ -1,8 +1,23 @@
1
- <?php
2
- /**
3
- * Print Science personalization data helper
4
- *
5
- */
6
- class PrintScience_Personalization_Helper_Data extends Mage_Core_Helper_Abstract
7
- {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  }
1
+ <?php
2
+ /**
3
+ * Print Science personalization data helper
4
+ *
5
+ */
6
+ class PrintScience_Personalization_Helper_Data extends Mage_Core_Helper_Abstract
7
+ {
8
+ /**
9
+ * Personalization redirect action handler.
10
+ *
11
+ * @return boolean
12
+ */
13
+ public function _redirectToUrl($url, $params='0') {
14
+ $str="";
15
+ if($params=='1') {
16
+ $str = "?added=1";
17
+ //echo "ininini";
18
+ //exit;
19
+ }
20
+ echo '<html><head><script type="text/javascript">window.parent.location.href = "'.$url.$str.'";</script></head><body></body></html';
21
+ return false;
22
+ }
23
  }
app/code/local/PrintScience/Personalization/Helper/Output.php CHANGED
@@ -1,29 +1,34 @@
1
- <?php
2
- /**
3
- * Print Science personalization quote helper
4
- *
5
- */
6
- class PrintScience_Personalization_Helper_Output extends Mage_Core_Helper_Abstract
7
- {
8
- /**
9
- * Check if personalization is enabled for this product
10
- *
11
- * @param Mage_Catalog_Model_Product $product
12
- * @return boolean
13
- */
14
- public function isPersonalizationEnabled($product)
15
- {
16
- $productTypeId = $product->getTypeId();
17
- if ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_SIMPLE) {
18
- return $product->getPersonalizationEnabled();
19
- } elseif ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE) {
20
- $subproducts = $product->getTypeInstance()->getUsedProducts();
21
- foreach ($subproducts as $product) {
22
- if (!$product->getPersonalizationEnabled()) {
23
- return false;
24
- }
25
- }
26
- return true;
27
- }
28
- }
29
- }
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Print Science personalization quote helper
4
+ *
5
+ */
6
+ class PrintScience_Personalization_Helper_Output extends Mage_Core_Helper_Abstract
7
+ {
8
+ /**
9
+ * Check if personalization is enabled for this product
10
+ *
11
+ * @param Mage_Catalog_Model_Product $product
12
+ * @return boolean
13
+ */
14
+ public function isPersonalizationEnabled($product)
15
+ {
16
+ $productTypeId = $product->getTypeId();
17
+ if ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_SIMPLE) {
18
+ return $product->getPersonalizationEnabled();
19
+ } elseif ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE) {
20
+ $subproducts = $product->getTypeInstance()->getUsedProducts();
21
+ foreach ($subproducts as $product) {
22
+ if (!$product->getPersonalizationEnabled()) {
23
+ return false;
24
+ }
25
+ }
26
+ return true;
27
+ }
28
+ }
29
+
30
+ public function getFrontendParams() {
31
+ $addedtoCart = (int) $_REQUEST['added'];
32
+ return $addedtoCart;
33
+ }
34
+ }
app/code/local/PrintScience/Personalization/Model/Observer.php CHANGED
@@ -1,305 +1,320 @@
1
- <?php
2
- /**
3
- * Print Science personalization observer
4
- *
5
- */
6
- class PrintScience_Personalization_Model_Observer
7
- {
8
- /**
9
- * Event observer
10
- *
11
- * @var Varien_Event_Observer
12
- */
13
- private $_observer;
14
-
15
- /**
16
- * Check if current action is 'checkout_cart_add' and start personalization process
17
- *
18
- * @param Varien_Event_Observer $observer
19
- */
20
- public function checkForCheckoutCartAddAction($observer)
21
- {
22
- $this->_observer = $observer;
23
-
24
- $controller = $observer->getControllerAction();
25
- $sessionHelper = Mage::helper('printscience_personalization/session');
26
- $request = Mage::app()->getRequest();
27
-
28
- $sessionKey = $request->getParam('api_session_key');
29
-
30
- if (($controller->getFullActionName() == 'checkout_cart_add')
31
- && (!Mage::registry('PrintScience_Personalization_calledFromSuccessAction'))) {
32
- $this->startPersonalization();
33
- }elseif($sessionKey !='' && strcasecmp($controller->getFullActionName(), 'printscience_personalization_index_resumeShoppingCart') === 0){
34
- //$this->startPersonalization();
35
- }
36
- }
37
-
38
- /**
39
- * Start personalization process
40
- *
41
- * @param Mage_Core_Controller_Request_Http $product
42
- */
43
- private function startPersonalization()
44
- {
45
- $controller = $this->_observer->getControllerAction();
46
- $request = Mage::app()->getRequest();
47
- $response = Mage::app()->getResponse();
48
- $session = Mage::getSingleton('core/session');
49
-
50
- $productId = intval($request->getParam('product'));
51
- $product = Mage::getModel('catalog/product')
52
- ->setStoreId(Mage::app()->getStore()->getId())
53
- ->load($productId);
54
- if (!$product->getId()) {
55
- return false;
56
- }
57
-
58
- $errorUrl = $product->getProductUrl();
59
-
60
- /**
61
- * Check if personalization is enabled for this product.
62
- * If this is simple product then we need to check its 'personalization_enabled' attribute.
63
- * If this is configurable product then we need to check 'personalization_enabled' attribute of its subproduct.
64
- * No other product types are supported.
65
- */
66
- $productTypeId = $product->getTypeId();
67
- if ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_SIMPLE) {
68
- if (!$product->getPersonalizationEnabled()) {
69
- return false;
70
- }
71
- } elseif ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE) {
72
- $attributes = $request->getParam('super_attribute');
73
- $product = $product->getTypeInstance()->getProductByAttributes($attributes);
74
- $product = Mage::getModel('catalog/product')->load($product->getId());
75
- if ((!$product) || (!$product->getPersonalizationEnabled())) {
76
- return false;
77
- }
78
- } else {
79
- return false;
80
- }
81
-
82
- // check if template ID is valid
83
- $templateId = $product->getPersonalizationTemplateId();
84
- if (!$templateId) {
85
- $session->addError($controller->__('Unable to start personalization: template ID is empty.'));
86
- $response->setRedirect($errorUrl)->sendHeaders();
87
- exit();
88
- }
89
-
90
- $sessionHelper = Mage::helper('printscience_personalization/session');
91
- $sessionKey = $sessionHelper->generateKey();
92
-
93
- $buyRequestParams = $request->getParams();
94
- if (isset($buyRequestParams['uenc'])) {
95
- unset($buyRequestParams['uenc']);
96
- }
97
- $returnUrlParams['_query'] = $buyRequestParams;
98
- if (isset($returnUrlParams['uenc'])) {
99
- unset($returnUrlParams['uenc']);
100
- }
101
- $returnUrlParams['personalization_session_key'] = $sessionKey;
102
-
103
- $successUrl = Mage::getUrl('personalization/index/success', $returnUrlParams);
104
- $failUrl = Mage::getUrl('personalization/index/fail', $returnUrlParams);
105
- $cancelUrl = Mage::getUrl('personalization/index/cancel', $returnUrlParams);
106
- // begin personalization
107
- $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
108
- $apiResponse = $apiGateway->beginPersonalization($templateId, $successUrl, $failUrl, $cancelUrl);
109
- if (!$apiResponse) {
110
- $session->addError($controller->__('Unable to start personalization: API response was empty.'));
111
- $response->setRedirect($errorUrl)->sendHeaders();
112
- exit();
113
- }
114
- if ($apiResponse->getFaultCode()) {
115
- $session->addError($controller->__('Unable to start personalization: ' . $apiResponse->getFaultString()));
116
- $response->setRedirect($errorUrl)->sendHeaders();
117
- exit();
118
- }
119
- $apiSessionKey = $apiResponse->getSessionKey();
120
- $appUrl = $apiResponse->getAppUrl();
121
-
122
- $sessionHelper->addData($sessionKey, array(
123
- 'apiSessionKey' => $apiSessionKey,
124
- 'appUrl' => $appUrl,
125
- 'buyRequest' => serialize($buyRequestParams)
126
- ));
127
-
128
- $response->setRedirect($appUrl)->sendHeaders();
129
- exit();
130
- }
131
-
132
- /**
133
- * End personalization process when item is deleted from shopping cart
134
- *
135
- * @param Varien_Event_Observer $observer
136
- */
137
- public function endPersonalization($observer)
138
- {
139
- $this->_observer = $observer;
140
-
141
- $quoteHelper = Mage::helper('printscience_personalization/quote');
142
- $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
143
-
144
- $quoteItem = $observer->getEvent()->getData('quote_item');
145
- $data = $quoteHelper->getItemData($quoteItem);
146
- if ($data) {
147
- $apiGateway->endPersonalization($data['apiSessionKey']);
148
- }
149
- }
150
-
151
- /**
152
- * Add personalization options to cart item
153
- *
154
- * @param Varien_Event_Observer $observer
155
- */
156
- public function addOptionsToCartItem($observer)
157
- {
158
- $this->_observer = $observer;
159
-
160
- $request = Mage::app()->getRequest();
161
-
162
- $sessionKey = $request->getParam('personalization_session_key');
163
-
164
- $quoteItem = $observer->getEvent()->getData('quote_item');
165
- $productItem = Mage::getModel('catalog/product')->load($quoteItem->getProduct()->getId());
166
- if ((!$productItem->getPersonalizationEnabled()) || (!$sessionKey)) {
167
- return false;
168
- }
169
-
170
- $sessionHelper = Mage::helper('printscience_personalization/session');
171
- $sessionData = $sessionHelper->getData($sessionKey);
172
- if (!$sessionData) {
173
- return false;
174
- }
175
- unset($sessionData['buyRequest']);
176
- $sessionData['sessionKey'] = $sessionKey;
177
-
178
- $parentItem = $quoteItem->getParentItem();
179
- if ($parentItem) {
180
- $quoteItem = $parentItem;
181
- }
182
- $quoteHelper = Mage::helper('printscience_personalization/quote');
183
-
184
-
185
- $quoteHelper->addItemData($quoteItem, $sessionData);
186
- }
187
-
188
- /**
189
- * Add personalization options to order items
190
- *
191
- * @param Varien_Event_Observer $observer
192
- */
193
- public function addOptionsToOrderItems($observer)
194
- {
195
- $this->_observer = $observer;
196
-
197
- $quoteHelper = Mage::helper('printscience_personalization/quote');
198
- $orderHelper = Mage::helper('printscience_personalization/order');
199
- $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
200
-
201
- $order = $observer->getEvent()->getData('order');
202
- $orderItems = $order->getItemsCollection();
203
- foreach ($orderItems as $orderItem) {
204
- $quoteItemOptions = Mage::getModel('sales/quote_item_option')
205
- ->getCollection()
206
- ->addItemFilter($orderItem->getQuoteItemId());
207
- if (!count($quoteItemOptions)) {
208
- return false;
209
- }
210
- $quoteItem = Mage::getModel('sales/quote_item')
211
- ->load($orderItem->getQuoteItemId())
212
- ->setOptions($quoteItemOptions);
213
- if (!$quoteItem->getId()) {
214
- continue;
215
- }
216
-
217
- if($personalizationInfo = $quoteItem->getData('personalization_info')){
218
- $personalizationInfo = unserialize($personalizationInfo);
219
- if(!empty($personalizationInfo)){
220
- $orderHelper->addItemData($orderItem,$personalizationInfo);
221
- }
222
- continue;
223
- }
224
-
225
-
226
- $quoteItemData = $quoteHelper->getItemData($quoteItem);
227
- if (!$quoteItemData) {
228
- continue;
229
- }
230
-
231
- $apiResponse = $apiGateway->getPreview($quoteItemData['apiSessionKey']);
232
- if ((!$apiResponse) || ($apiResponse->getFaultCode())) {
233
- continue;
234
- }
235
-
236
- $orderHelper->addItemData($orderItem, array(
237
- 'preview_pdf_url' => $apiResponse->getPdfUrl(),
238
- 'product_images' =>$apiResponse->getPeviewUrls()
239
- ));
240
-
241
- $apiGateway->endPersonalization($quoteItemData['apiSessionKey']);
242
- }
243
- }
244
-
245
- /**
246
- * Intialize personalization gallery on shopping cart
247
- *
248
- * @param Varien_Event_Observer $observer
249
- * @return boolean
250
- */
251
- public function initGallery($observer)
252
- {
253
- $this->_observer = $observer;
254
-
255
- $layout = Mage::app()->getLayout();
256
- $quoteHelper = Mage::helper('printscience_personalization/quote');
257
-
258
- $cartItems = Mage::getModel('checkout/cart')->getItems();
259
- if (!$cartItems) {
260
- return false;
261
- }
262
- $containsPersonalizedItems = false;
263
- foreach ($cartItems as $item) {
264
- if ($quoteHelper->getItemData($item)) {
265
- $containsPersonalizedItems = true;
266
- break;
267
- }
268
- }
269
- //if ($containsPersonalizedItems) {
270
- $layout->getBlock('head')
271
- ->addJs('printscience_personalization/jquery/jquery-1.4.2.min.js')
272
- ->addJs('printscience_personalization/jquery/jquery.cycle/jquery.cycle.lite.min.js')
273
- ->addJs('printscience_personalization/jquery/fancybox/jquery.fancybox-1.3.4.pack.js')
274
- ->addItem('js_css', 'printscience_personalization/jquery/fancybox/jquery.fancybox-1.3.4.css')
275
- ->addJs('printscience_personalization/gallery.js')
276
- ->addItem('js_css', 'printscience_personalization/gallery.css');
277
- //}
278
- }
279
-
280
- /**
281
- * Ensure that all personalized items in shopping cart have proper API session key
282
- *
283
- * @param Varien_Event_Observer $observer
284
- */
285
- public function checkCartItems($observer)
286
- {
287
- $this->_observer = $observer;
288
-
289
- $quoteHelper = Mage::helper('printscience_personalization/quote');
290
- $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
291
-
292
- $quote = $observer->getEvent()->getData('data_object');
293
- $quoteItems = $quote->getItemsCollection();
294
- foreach ($quoteItems as $item) {
295
- $data = $quoteHelper->getItemData($item);
296
- if (($data) && (isset($data['apiSessionKey']))) {
297
- $apiResponse = $apiGateway->getPreview($data['apiSessionKey']);
298
- if ((!$apiResponse) || ($apiResponse->getFaultCode())) {
299
- // remove by hieptq
300
- //$quote->removeItem($item->getItemId());
301
- }
302
- }
303
- }
304
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  }
1
+ <?php
2
+ /**
3
+ * Print Science personalization observer
4
+ *
5
+ */
6
+ class PrintScience_Personalization_Model_Observer
7
+ {
8
+ /**
9
+ * Event observer
10
+ *
11
+ * @var Varien_Event_Observer
12
+ */
13
+ private $_observer;
14
+
15
+ /**
16
+ * Check if current action is 'checkout_cart_add' and start personalization process
17
+ *
18
+ * @param Varien_Event_Observer $observer
19
+ */
20
+ public function checkForCheckoutCartAddAction($observer)
21
+ {
22
+ $this->_observer = $observer;
23
+
24
+ $controller = $observer->getControllerAction();
25
+ $sessionHelper = Mage::helper('printscience_personalization/session');
26
+ $request = Mage::app()->getRequest();
27
+
28
+ $sessionKey = $request->getParam('api_session_key');
29
+
30
+ if (($controller->getFullActionName() == 'checkout_cart_add')
31
+ && (!Mage::registry('PrintScience_Personalization_calledFromSuccessAction'))) {
32
+ $this->startPersonalization();
33
+ }elseif($sessionKey !='' && strcasecmp($controller->getFullActionName(), 'printscience_personalization_index_resumeShoppingCart') === 0){
34
+ //$this->startPersonalization();
35
+ }
36
+ }
37
+
38
+ /**
39
+ * Start personalization process
40
+ *
41
+ * @param Mage_Core_Controller_Request_Http $product
42
+ */
43
+ private function startPersonalization()
44
+ {
45
+ $controller = $this->_observer->getControllerAction();
46
+ $request = Mage::app()->getRequest();
47
+ $response = Mage::app()->getResponse();
48
+ $session = Mage::getSingleton('core/session');
49
+ $datasHelper = Mage::helper('printscience_personalization/data');
50
+
51
+ $productId = intval($request->getParam('product'));
52
+ $product = Mage::getModel('catalog/product')
53
+ ->setStoreId(Mage::app()->getStore()->getId())
54
+ ->load($productId);
55
+ if (!$product->getId()) {
56
+ return false;
57
+ }
58
+
59
+ $errorUrl = $product->getProductUrl();
60
+
61
+ /**
62
+ * Check if personalization is enabled for this product.
63
+ * If this is simple product then we need to check its 'personalization_enabled' attribute.
64
+ * If this is configurable product then we need to check 'personalization_enabled' attribute of its subproduct.
65
+ * No other product types are supported.
66
+ */
67
+ $productTypeId = $product->getTypeId();
68
+ if ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_SIMPLE) {
69
+ if (!$product->getPersonalizationEnabled()) {
70
+ return false;
71
+ }
72
+ } elseif ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE) {
73
+ $attributes = $request->getParam('super_attribute');
74
+ $product = $product->getTypeInstance()->getProductByAttributes($attributes);
75
+ $product = Mage::getModel('catalog/product')->load($product->getId());
76
+ if ((!$product) || (!$product->getPersonalizationEnabled())) {
77
+ return false;
78
+ }
79
+ } else {
80
+ return false;
81
+ }
82
+
83
+ // check if template ID is valid
84
+ $templateId = $product->getPersonalizationTemplateId();
85
+ if (!$templateId) {
86
+ $session->addError($controller->__('Unable to start personalization: template ID is empty.'));
87
+ $response->setRedirect($errorUrl)->sendHeaders();
88
+ //$datasHelper->_redirectToUrl($errorUrl);
89
+ exit();
90
+ }
91
+
92
+ $sessionHelper = Mage::helper('printscience_personalization/session');
93
+ $sessionKey = $sessionHelper->generateKey();
94
+
95
+ $buyRequestParams = $request->getParams();
96
+ if (isset($buyRequestParams['uenc'])) {
97
+ unset($buyRequestParams['uenc']);
98
+ }
99
+ $returnUrlParams['_query'] = $buyRequestParams;
100
+ if (isset($returnUrlParams['uenc'])) {
101
+ unset($returnUrlParams['uenc']);
102
+ }
103
+ $returnUrlParams['personalization_session_key'] = $sessionKey;
104
+
105
+ $successUrl = Mage::getUrl('personalization/index/success', $returnUrlParams);
106
+ $failUrl = Mage::getUrl('personalization/index/fail', $returnUrlParams);
107
+ $cancelUrl = Mage::getUrl('personalization/index/cancel', $returnUrlParams);
108
+ // begin personalization
109
+ $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
110
+ $apiResponse = $apiGateway->beginPersonalization($templateId, $successUrl, $failUrl, $cancelUrl);
111
+ if (!$apiResponse) {
112
+ $session->addError($controller->__('Unable to start personalization: API response was empty.'));
113
+ $response->setRedirect($errorUrl)->sendHeaders();
114
+ //$datasHelper->_redirectToUrl($errorUrl);
115
+ exit();
116
+ }
117
+ if ($apiResponse->getFaultCode()) {
118
+ $session->addError($controller->__('Unable to start personalization: ' . $apiResponse->getFaultString()));
119
+ $response->setRedirect($errorUrl)->sendHeaders();
120
+ //$datasHelper->_redirectToUrl($errorUrl);
121
+ exit();
122
+ }
123
+ $apiSessionKey = $apiResponse->getSessionKey();
124
+ $appUrl = $apiResponse->getAppUrl();
125
+
126
+ $sessionHelper->addData($sessionKey, array(
127
+ 'apiSessionKey' => $apiSessionKey,
128
+ 'appUrl' => $appUrl,
129
+ 'buyRequest' => serialize($buyRequestParams)
130
+ ));
131
+
132
+ $response->setRedirect($appUrl)->sendHeaders();
133
+
134
+ //$datasHelper->_redirectToUrl($appUrl);
135
+ exit();
136
+ }
137
+
138
+ /**
139
+ * End personalization process when item is deleted from shopping cart
140
+ *
141
+ * @param Varien_Event_Observer $observer
142
+ */
143
+ public function endPersonalization($observer)
144
+ {
145
+ $this->_observer = $observer;
146
+
147
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
148
+ $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
149
+
150
+ $quoteItem = $observer->getEvent()->getData('quote_item');
151
+ $data = $quoteHelper->getItemData($quoteItem);
152
+ if ($data) {
153
+ $apiGateway->endPersonalization($data['apiSessionKey']);
154
+ }
155
+ }
156
+
157
+ /**
158
+ * Add personalization options to cart item
159
+ *
160
+ * @param Varien_Event_Observer $observer
161
+ */
162
+ public function addOptionsToCartItem($observer)
163
+ {
164
+ $this->_observer = $observer;
165
+
166
+ $request = Mage::app()->getRequest();
167
+
168
+ $sessionKey = $request->getParam('personalization_session_key');
169
+
170
+ $quoteItem = $observer->getEvent()->getData('quote_item');
171
+ $productItem = Mage::getModel('catalog/product')->load($quoteItem->getProduct()->getId());
172
+ if ((!$productItem->getPersonalizationEnabled()) || (!$sessionKey)) {
173
+ return false;
174
+ }
175
+
176
+ $sessionHelper = Mage::helper('printscience_personalization/session');
177
+ $sessionData = $sessionHelper->getData($sessionKey);
178
+ if (!$sessionData) {
179
+ return false;
180
+ }
181
+ unset($sessionData['buyRequest']);
182
+ $sessionData['sessionKey'] = $sessionKey;
183
+
184
+ $parentItem = $quoteItem->getParentItem();
185
+ if ($parentItem) {
186
+ $quoteItem = $parentItem;
187
+ }
188
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
189
+
190
+
191
+ $quoteHelper->addItemData($quoteItem, $sessionData);
192
+ }
193
+
194
+ /**
195
+ * Add personalization options to order items
196
+ *
197
+ * @param Varien_Event_Observer $observer
198
+ */
199
+ public function addOptionsToOrderItems($observer)
200
+ {
201
+ $this->_observer = $observer;
202
+
203
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
204
+ $orderHelper = Mage::helper('printscience_personalization/order');
205
+ $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
206
+
207
+ $order = $observer->getEvent()->getData('order');
208
+ $orderItems = $order->getItemsCollection();
209
+ foreach ($orderItems as $orderItem) {
210
+ $quoteItemOptions = Mage::getModel('sales/quote_item_option')
211
+ ->getCollection()
212
+ ->addItemFilter($orderItem->getQuoteItemId());
213
+ if (!count($quoteItemOptions)) {
214
+ return false;
215
+ }
216
+ $quoteItem = Mage::getModel('sales/quote_item')
217
+ ->load($orderItem->getQuoteItemId())
218
+ ->setOptions($quoteItemOptions);
219
+ if (!$quoteItem->getId()) {
220
+ continue;
221
+ }
222
+
223
+ if($personalizationInfo = $quoteItem->getData('personalization_info')){
224
+ $personalizationInfo = unserialize($personalizationInfo);
225
+ if(!empty($personalizationInfo)){
226
+ $orderHelper->addItemData($orderItem,$personalizationInfo);
227
+ }
228
+ continue;
229
+ }
230
+
231
+
232
+ $quoteItemData = $quoteHelper->getItemData($quoteItem);
233
+ if (!$quoteItemData) {
234
+ continue;
235
+ }
236
+
237
+ $apiResponse = $apiGateway->getPreview($quoteItemData['apiSessionKey']);
238
+ if ((!$apiResponse) || ($apiResponse->getFaultCode())) {
239
+ continue;
240
+ }
241
+
242
+ $orderHelper->addItemData($orderItem, array(
243
+ 'preview_pdf_url' => $apiResponse->getPdfUrl(),
244
+ 'product_images' =>$apiResponse->getPeviewUrls()
245
+ ));
246
+
247
+ $apiGateway->endPersonalization($quoteItemData['apiSessionKey']);
248
+ }
249
+ }
250
+
251
+ /**
252
+ * Intialize personalization gallery on shopping cart
253
+ *
254
+ * @param Varien_Event_Observer $observer
255
+ * @return boolean
256
+ */
257
+ public function initGallery($observer)
258
+ {
259
+ $this->_observer = $observer;
260
+
261
+ $layout = Mage::app()->getLayout();
262
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
263
+
264
+ $cartItems = Mage::getModel('checkout/cart')->getItems();
265
+ if (!$cartItems) {
266
+ return false;
267
+ }
268
+ $containsPersonalizedItems = false;
269
+ foreach ($cartItems as $item) {
270
+ if ($quoteHelper->getItemData($item)) {
271
+ $containsPersonalizedItems = true;
272
+ break;
273
+ }
274
+ }
275
+ //if ($containsPersonalizedItems) {
276
+ $layout->getBlock('head')
277
+ ->addJs('printscience_personalization/jquery/jquery-1.4.2.min.js')
278
+ ->addJs('printscience_personalization/jquery/jquery.cycle/jquery.cycle.lite.min.js')
279
+ ->addJs('printscience_personalization/jquery/fancybox/jquery.fancybox-1.3.4.pack.js')
280
+ ->addItem('js_css', 'printscience_personalization/jquery/fancybox/jquery.fancybox-1.3.4.css')
281
+ ->addJs('printscience_personalization/gallery.js')
282
+ ->addItem('js_css', 'printscience_personalization/gallery.css');
283
+ //}
284
+ }
285
+
286
+ /**
287
+ * Ensure that all personalized items in shopping cart have proper API session key
288
+ *
289
+ * @param Varien_Event_Observer $observer
290
+ */
291
+ public function checkCartItems($observer)
292
+ {
293
+ $this->_observer = $observer;
294
+
295
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
296
+ $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
297
+
298
+ $quote = $observer->getEvent()->getData('data_object');
299
+ $quoteItems = $quote->getItemsCollection();
300
+ foreach ($quoteItems as $item) {
301
+ $data = $quoteHelper->getItemData($item);
302
+ if (($data) && (isset($data['apiSessionKey']))) {
303
+ $apiResponse = $apiGateway->getPreview($data['apiSessionKey']);
304
+ if ((!$apiResponse) || ($apiResponse->getFaultCode())) {
305
+ // remove by hieptq
306
+ //$quote->removeItem($item->getItemId());
307
+ }
308
+ }
309
+ }
310
+ }
311
+ public function addToCartComplete(Varien_Event_Observer $observer) {
312
+ // Send the user to the Item added page
313
+ $response = $observer->getResponse();
314
+ $request = $observer->getRequest();
315
+ $datasHelper = Mage::helper('printscience_personalization/data');
316
+ $checkOutUrl = Mage::getUrl('checkout/cart');
317
+ $datasHelper->_redirectToUrl($checkOutUrl, "1");
318
+ exit;
319
+ }
320
  }
app/code/local/PrintScience/Personalization/Model/System/Config/Source/WindowType.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Personalization API URL backend
4
+ *
5
+ */
6
+ class PrintScience_Personalization_Model_System_Config_Source_WindowType
7
+ {
8
+ public function toOptionArray()
9
+ {
10
+ return array(
11
+ array('value'=>'1', 'label'=>Mage::helper('printscience_personalization')->__('New Window')),
12
+ array('value'=>'2', 'label'=>Mage::helper('printscience_personalization')->__('Modal Pop-up window')),
13
+ );
14
+ }
15
+ }
16
+ ?>
app/code/local/PrintScience/Personalization/controllers/IndexController.php CHANGED
@@ -1,320 +1,342 @@
1
- <?php
2
- /**
3
- * Personalization controller
4
- *
5
- */
6
- class PrintScience_Personalization_IndexController extends Mage_Core_Controller_Front_Action
7
- {
8
- /**
9
- * Personalization startShoppingCart action handler
10
- *
11
- * @return boolean
12
- */
13
- public function startShoppingCartAction()
14
- {
15
- $session = Mage::getSingleton('core/session');
16
- $sessionHelper = Mage::helper('printscience_personalization/session');
17
- $quoteHelper = Mage::helper('printscience_personalization/quote');
18
- $request = $this->getRequest();
19
-
20
- $apiSessionKey = $request->getParam('api_session_key');
21
- $isValidRequest = false;
22
- if ($apiSessionKey) {
23
- $cartItem = $quoteHelper->getCartItemByApiSessionKey($apiSessionKey);
24
- if ($cartItem) {
25
- $isValidRequest = true;
26
- }
27
- }
28
- if (!$isValidRequest) {
29
- $session->addError($this->__('Invalid request.'));
30
- $this->_redirect('home');
31
- return false;
32
- }
33
-
34
- $cartItemData = $quoteHelper->getItemData($cartItem);
35
-
36
- $sessionHelper->addData($cartItemData['sessionKey'], array(
37
- 'apiSessionKey' => $cartItemData['apiSessionKey'],
38
- ));
39
-
40
- $this->_redirectUrl($cartItemData['appUrl']);
41
- }
42
-
43
- /**
44
- * Personalization startShoppingCart action handler
45
- *
46
- * @return boolean
47
- */
48
- public function resumeShoppingCartAction()
49
- {
50
- $session = Mage::getSingleton('core/session');
51
- $sessionHelper = Mage::helper('printscience_personalization/session');
52
- $quoteHelper = Mage::helper('printscience_personalization/quote');
53
- $request = $this->getRequest();
54
- $errorUrl = 'checkout/cart';
55
-
56
- $apiSessionKey = $request->getParam('api_session_key');
57
- $productId = intval($request->getParam('product'));
58
- $product = Mage::getModel('catalog/product')
59
- ->setStoreId(Mage::app()->getStore()->getId())
60
- ->load($productId);
61
- if (!$product->getId()) {
62
- $session->addError($this->__('Invalid request.'));
63
- $this->_redirect($errorUrl);
64
- return false;
65
- }
66
-
67
- /**
68
- * Check if personalization is enabled for this product.
69
- * If this is simple product then we need to check its 'personalization_enabled' attribute.
70
- * If this is configurable product then we need to check 'personalization_enabled' attribute of its subproduct.
71
- * No other product types are supported.
72
- */
73
- $isValidProduct = true;
74
-
75
- $productTypeId = $product->getTypeId();
76
- if ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_SIMPLE) {
77
- if (!$product->getPersonalizationEnabled()) {
78
- $isValidProduct = false;
79
- }
80
- } elseif ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE) {
81
- $attributes = $request->getParam('super_attribute');
82
- $product = $product->getTypeInstance()->getProductByAttributes($attributes);
83
- if ((!$product) || (!$product->getPersonalizationEnabled())) {
84
- $isValidProduct = false;
85
- }
86
- } else {
87
- $isValidProduct = false;
88
- }
89
-
90
- if (!$isValidProduct) {
91
- $session->addError($this->__('Invalid Product.'));
92
- $this->_redirect($errorUrl);
93
- return false;
94
- }
95
- // check if template ID is valid
96
- $templateId = $product->getPersonalizationTemplateId();
97
- if (!$templateId) {
98
- $session->addError($controller->__('Unable to start personalization: template ID is empty.'));
99
- $this->_redirect($errorUrl);
100
- return false;
101
- }
102
-
103
- $isValidRequest = false;
104
- if ($apiSessionKey) {
105
- $cartItem = $quoteHelper->getCartItemByApiSessionKey($apiSessionKey);
106
- if ($cartItem) {
107
- $isValidRequest = true;
108
- }
109
- }
110
- if (!$isValidRequest) {
111
- $session->addError($this->__('Invalid request.'));
112
- $this->_redirect($errorUrl);
113
- return false;
114
- }
115
-
116
- $cartItemData = $quoteHelper->getItemData($cartItem);
117
-
118
- $sessionHelper->addData($cartItemData['sessionKey'], array(
119
- 'apiSessionKey' => $cartItemData['apiSessionKey'],
120
- ));
121
- $sessionKey = $cartItemData['sessionKey'];
122
- $sessionKey = $sessionHelper->generateKey();
123
-
124
- $buyRequestParams = $request->getParams();
125
- if (isset($buyRequestParams['uenc'])) {
126
- unset($buyRequestParams['uenc']);
127
- }
128
- $returnUrlParams['_query'] = $buyRequestParams;
129
- $returnUrlParams['personalization_session_key'] = $apiSessionKey;
130
-
131
- $successUrl = Mage::getUrl('personalization/index/success', $returnUrlParams);
132
- $failUrl = Mage::getUrl('personalization/index/fail', $returnUrlParams);
133
- $cancelUrl = Mage::getUrl('personalization/index/cancel', $returnUrlParams);
134
-
135
- // begin personalization
136
- $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
137
- $apiResponse = $apiGateway->resumePersonalization($apiSessionKey, $templateId, $successUrl, $failUrl, $cancelUrl);
138
- if (!$apiResponse) {
139
- $session->addError($this->__('Unable to start personalization: API response was empty.'));
140
- $this->_redirect($errorUrl);
141
- return false;
142
- }
143
- if ($apiResponse->getFaultCode()) {
144
- $session->addError($this->__('Unable to start personalization: ' . $apiResponse->getFaultString()));
145
- $this->_redirect($errorUrl);
146
- return false;
147
- }
148
- $apiSessionKey = $apiResponse->getSessionKey();
149
- $appUrl = $apiResponse->getAppUrl();
150
-
151
- $sessionHelper->addData($apiSessionKey, array(
152
- 'apiSessionKey' => $apiSessionKey,
153
- 'appUrl' => $appUrl,
154
- 'buyRequest' => serialize($buyRequestParams)
155
- ));
156
-
157
- $this->_redirectUrl($appUrl);
158
- return false;
159
- }
160
-
161
- /**
162
- * Personalization success action handler.
163
- *
164
- * @return boolean
165
- */
166
- public function successAction()
167
- {
168
- $session = Mage::getSingleton('core/session');
169
- $request = $this->getRequest();
170
-
171
- if (!$this->_isValidRequest()) {
172
- $session->addError($this->__('Invalid request.'));
173
- $this->_redirect('home');
174
- return false;
175
- }
176
-
177
- $product = $this->_initProduct();
178
- if (!$product) {
179
- $session->addError($this->__('Personalization error: product not found.'));
180
- $this->_redirect('home');
181
- return false;
182
- }
183
-
184
- $sessionHelper = Mage::helper('printscience_personalization/session');
185
- $quoteHelper = Mage::helper('printscience_personalization/quote');
186
- $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
187
-
188
- $sessionKey = $request->getParam('personalization_session_key');
189
- $sessionData = $sessionHelper->getData($sessionKey);
190
- $apiSessionKey = $sessionData['apiSessionKey'];
191
-
192
- // is item with this API session key already in cart?
193
- $cartItem = $quoteHelper->getCartItemByApiSessionKey($apiSessionKey);
194
-
195
- if (!$cartItem) {
196
- $errorUrl = $product->getProductUrl();
197
- } else {
198
- $errorUrl = Mage::getUrl('checkout/cart');
199
- }
200
-
201
- $apiResponse = $apiGateway->getPreview($apiSessionKey);
202
- if ($apiResponse->getFaultCode()) {
203
- $session->addError($this->__('Personalization was not completed.'));
204
- $this->_redirectUrl($errorUrl);
205
- return false;
206
- }
207
-
208
- if (!$cartItem) {
209
- Mage::register('PrintScience_Personalization_calledFromSuccessAction', true);
210
- $this->_forward('add', 'cart', 'checkout');
211
- } else {
212
- $this->_redirect('checkout/cart');
213
- }
214
- }
215
-
216
- /**
217
- * Personalization cancel action handler
218
- *
219
- * @return boolean
220
- */
221
- public function cancelAction()
222
- {
223
- $session = Mage::getSingleton('core/session');
224
- $request = $this->getRequest();
225
-
226
- if (!$this->_isValidRequest()) {
227
- $session->addError($this->__('Invalid request.'));
228
- $this->_redirect('home');
229
- return false;
230
- }
231
-
232
- $product = $this->_initProduct();
233
- if (!$product) {
234
- $session->addError($this->__('Personalization error: product not found.'));
235
- $this->_redirect('home');
236
- return false;
237
- }
238
-
239
- $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
240
- $sessionHelper = Mage::helper('printscience_personalization/session');
241
- $quoteHelper = Mage::helper('printscience_personalization/quote');
242
-
243
- $sessionKey = $request->getParam('personalization_session_key');
244
- $sessionData = $sessionHelper->getData($sessionKey);
245
- $apiSessionKey = $sessionData['apiSessionKey'];
246
-
247
- // is item with this API session key already in cart?
248
- $cartItem = $quoteHelper->getCartItemByApiSessionKey($apiSessionKey);
249
-
250
- if (!$cartItem) {
251
- $apiGateway->endPersonalization($apiSessionKey);
252
- $sessionHelper->unsetData($sessionKey);
253
- $redirectUrl = $product->getProductUrl();
254
- } else {
255
- $redirectUrl = Mage::getUrl('checkout/cart');
256
- }
257
-
258
- $this->_redirectUrl($redirectUrl);
259
- }
260
-
261
- /**
262
- * Personalization fail action handler
263
- *
264
- */
265
- public function failAction()
266
- {
267
- $this->_forward('cancel');
268
- }
269
-
270
- /**
271
- * Initialize product instance from request data
272
- *
273
- * @return Mage_Catalog_Model_Product | false
274
- */
275
- private function _initProduct()
276
- {
277
- $productId = (int) $this->getRequest()->getParam('product');
278
- if ($productId) {
279
- $product = Mage::getModel('catalog/product')
280
- ->setStoreId(Mage::app()->getStore()->getId())
281
- ->load($productId);
282
- if ($product->getId()) {
283
- return $product;
284
- }
285
- }
286
- return false;
287
- }
288
-
289
- /**
290
- * Check if current request to Success, Cancel or Fail action is valid
291
- *
292
- * @return boolean
293
- */
294
- private function _isValidRequest()
295
- {
296
- $request = $this->getRequest();
297
- $sessionHelper = Mage::helper('printscience_personalization/session');
298
- $quoteHelper = Mage::helper('printscience_personalization/quote');
299
-
300
- $sessionKey = $request->getParam('personalization_session_key');
301
-
302
- if ($sessionKey) {
303
- $sessionData = $sessionHelper->getData($sessionKey);
304
- if ($sessionData) {
305
- // no need to validate buyRequest params if item is already in cart
306
- $cartItem = $quoteHelper->getCartItemByApiSessionKey($sessionData['apiSessionKey']);
307
- if ($cartItem) {
308
- return true;
309
- } else {
310
- $buyRequestParams = $request->getParams();
311
- unset($buyRequestParams['personalization_session_key']);
312
- if (unserialize($sessionData['buyRequest']) == $buyRequestParams) {
313
- return true;
314
- }
315
- }
316
- }
317
- }
318
- return false;
319
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  }
1
+ <?php
2
+ /**
3
+ * Personalization controller
4
+ *
5
+ */
6
+ class PrintScience_Personalization_IndexController extends Mage_Core_Controller_Front_Action
7
+ {
8
+ /**
9
+ * Personalization startShoppingCart action handler
10
+ *
11
+ * @return boolean
12
+ */
13
+ public function startShoppingCartAction()
14
+ {
15
+ $session = Mage::getSingleton('core/session');
16
+ $sessionHelper = Mage::helper('printscience_personalization/session');
17
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
18
+ $datasHelper = Mage::helper('printscience_personalization/data');
19
+ $homeUrl = Mage::getUrl('home');
20
+ $request = $this->getRequest();
21
+
22
+ $apiSessionKey = $request->getParam('api_session_key');
23
+ $isValidRequest = false;
24
+ if ($apiSessionKey) {
25
+ $cartItem = $quoteHelper->getCartItemByApiSessionKey($apiSessionKey);
26
+ if ($cartItem) {
27
+ $isValidRequest = true;
28
+ }
29
+ }
30
+ if (!$isValidRequest) {
31
+ $session->addError($this->__('Invalid request.'));
32
+ //$this->_redirect('home');
33
+ $datasHelper->_redirectToUrl($homeUrl);
34
+ return false;
35
+ }
36
+
37
+ $cartItemData = $quoteHelper->getItemData($cartItem);
38
+
39
+ $sessionHelper->addData($cartItemData['sessionKey'], array(
40
+ 'apiSessionKey' => $cartItemData['apiSessionKey'],
41
+ ));
42
+
43
+ //$this->_redirectUrl($cartItemData['appUrl']);
44
+ $datasHelper->_redirectToUrl($cartItemData['appUrl']);
45
+ }
46
+
47
+ /**
48
+ * Personalization startShoppingCart action handler
49
+ *
50
+ * @return boolean
51
+ */
52
+ public function resumeShoppingCartAction()
53
+ {
54
+ $session = Mage::getSingleton('core/session');
55
+ $sessionHelper = Mage::helper('printscience_personalization/session');
56
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
57
+ $datasHelper = Mage::helper('printscience_personalization/data');
58
+ $request = $this->getRequest();
59
+ $errorUrl = Mage::getUrl('checkout/cart');
60
+
61
+ $apiSessionKey = $request->getParam('api_session_key');
62
+ $productId = intval($request->getParam('product'));
63
+ $product = Mage::getModel('catalog/product')
64
+ ->setStoreId(Mage::app()->getStore()->getId())
65
+ ->load($productId);
66
+ if (!$product->getId()) {
67
+ $session->addError($this->__('Invalid request.'));
68
+ //$this->_redirect($errorUrl);
69
+ $datasHelper->_redirectToUrl($errorUrl);
70
+ return false;
71
+ }
72
+
73
+ /**
74
+ * Check if personalization is enabled for this product.
75
+ * If this is simple product then we need to check its 'personalization_enabled' attribute.
76
+ * If this is configurable product then we need to check 'personalization_enabled' attribute of its subproduct.
77
+ * No other product types are supported.
78
+ */
79
+ $isValidProduct = true;
80
+
81
+ $productTypeId = $product->getTypeId();
82
+ if ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_SIMPLE) {
83
+ if (!$product->getPersonalizationEnabled()) {
84
+ $isValidProduct = false;
85
+ }
86
+ } elseif ($productTypeId == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE) {
87
+ $attributes = $request->getParam('super_attribute');
88
+ $product = $product->getTypeInstance()->getProductByAttributes($attributes);
89
+ if ((!$product) || (!$product->getPersonalizationEnabled())) {
90
+ $isValidProduct = false;
91
+ }
92
+ } else {
93
+ $isValidProduct = false;
94
+ }
95
+
96
+ if (!$isValidProduct) {
97
+ $session->addError($this->__('Invalid Product.'));
98
+ //$this->_redirect($errorUrl);
99
+ $datasHelper->_redirectToUrl($errorUrl);
100
+ return false;
101
+ }
102
+ // check if template ID is valid
103
+ $templateId = $product->getPersonalizationTemplateId();
104
+ if (!$templateId) {
105
+ $session->addError($controller->__('Unable to start personalization: template ID is empty.'));
106
+ //$this->_redirect($errorUrl);
107
+ $datasHelper->_redirectToUrl($errorUrl);
108
+ return false;
109
+ }
110
+
111
+ $isValidRequest = false;
112
+ if ($apiSessionKey) {
113
+ $cartItem = $quoteHelper->getCartItemByApiSessionKey($apiSessionKey);
114
+ if ($cartItem) {
115
+ $isValidRequest = true;
116
+ }
117
+ }
118
+ if (!$isValidRequest) {
119
+ $session->addError($this->__('Invalid request.'));
120
+ //$this->_redirect($errorUrl);
121
+ $datasHelper->_redirectToUrl($errorUrl);
122
+ return false;
123
+ }
124
+
125
+ $cartItemData = $quoteHelper->getItemData($cartItem);
126
+
127
+ $sessionHelper->addData($cartItemData['sessionKey'], array(
128
+ 'apiSessionKey' => $cartItemData['apiSessionKey'],
129
+ ));
130
+ $sessionKey = $cartItemData['sessionKey'];
131
+ $sessionKey = $sessionHelper->generateKey();
132
+
133
+ $buyRequestParams = $request->getParams();
134
+ if (isset($buyRequestParams['uenc'])) {
135
+ unset($buyRequestParams['uenc']);
136
+ }
137
+ $returnUrlParams['_query'] = $buyRequestParams;
138
+ $returnUrlParams['personalization_session_key'] = $apiSessionKey;
139
+
140
+ $successUrl = Mage::getUrl('personalization/index/success', $returnUrlParams);
141
+ $failUrl = Mage::getUrl('personalization/index/fail', $returnUrlParams);
142
+ $cancelUrl = Mage::getUrl('personalization/index/cancel', $returnUrlParams);
143
+
144
+ // begin personalization
145
+ $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
146
+ $apiResponse = $apiGateway->resumePersonalization($apiSessionKey, $templateId, $successUrl, $failUrl, $cancelUrl);
147
+ if (!$apiResponse) {
148
+ $session->addError($this->__('Unable to start personalization: API response was empty.'));
149
+ //$this->_redirect($errorUrl);
150
+ $datasHelper->_redirectToUrl($errorUrl);
151
+ return false;
152
+ }
153
+ if ($apiResponse->getFaultCode()) {
154
+ $session->addError($this->__('Unable to start personalization: ' . $apiResponse->getFaultString()));
155
+ //$this->_redirect($errorUrl);
156
+ $datasHelper->_redirectToUrl($errorUrl);
157
+ return false;
158
+ }
159
+ $apiSessionKey = $apiResponse->getSessionKey();
160
+ $appUrl = $apiResponse->getAppUrl();
161
+
162
+ $sessionHelper->addData($apiSessionKey, array(
163
+ 'apiSessionKey' => $apiSessionKey,
164
+ 'appUrl' => $appUrl,
165
+ 'buyRequest' => serialize($buyRequestParams)
166
+ ));
167
+
168
+ $this->_redirectUrl($appUrl);
169
+ //$datasHelper->_redirectToUrl($appUrl);
170
+ return false;
171
+ }
172
+
173
+ /**
174
+ * Personalization success action handler.
175
+ *
176
+ * @return boolean
177
+ */
178
+ public function successAction()
179
+ {
180
+ $session = Mage::getSingleton('core/session');
181
+ $request = $this->getRequest();
182
+ $datasHelper = Mage::helper('printscience_personalization/data');
183
+ $homeUrl = Mage::getUrl('home');
184
+
185
+ if (!$this->_isValidRequest()) {
186
+ $session->addError($this->__('Invalid request.'));
187
+ //$this->_redirect('home');
188
+ $datasHelper->_redirectToUrl($homeUrl);
189
+ return false;
190
+ }
191
+
192
+ $product = $this->_initProduct();
193
+ if (!$product) {
194
+ $session->addError($this->__('Personalization error: product not found.'));
195
+ //$this->_redirect('home');
196
+ $datasHelper->_redirectToUrl($homeUrl);
197
+ return false;
198
+ }
199
+
200
+ $sessionHelper = Mage::helper('printscience_personalization/session');
201
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
202
+ $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
203
+
204
+ $sessionKey = $request->getParam('personalization_session_key');
205
+ $sessionData = $sessionHelper->getData($sessionKey);
206
+ $apiSessionKey = $sessionData['apiSessionKey'];
207
+
208
+ // is item with this API session key already in cart?
209
+ $cartItem = $quoteHelper->getCartItemByApiSessionKey($apiSessionKey);
210
+
211
+ if (!$cartItem) {
212
+ $errorUrl = $product->getProductUrl();
213
+ } else {
214
+ $errorUrl = Mage::getUrl('checkout/cart');
215
+ }
216
+
217
+ $apiResponse = $apiGateway->getPreview($apiSessionKey);
218
+ if ($apiResponse->getFaultCode()) {
219
+ $session->addError($this->__('Personalization was not completed.'));
220
+ //$this->_redirectUrl($errorUrl);
221
+ $datasHelper->_redirectToUrl($errorUrl);
222
+ return false;
223
+ }
224
+ if (!$cartItem) {
225
+ Mage::register('PrintScience_Personalization_calledFromSuccessAction', true);
226
+ $this->_forward('add', 'cart', 'checkout');
227
+ } else {
228
+ $checkOutUrl = Mage::getUrl('checkout/cart');
229
+ $datasHelper->_redirectToUrl($checkOutUrl);
230
+ }
231
+ }
232
+
233
+ /**
234
+ * Personalization cancel action handler
235
+ *
236
+ * @return boolean
237
+ */
238
+ public function cancelAction()
239
+ {
240
+ $session = Mage::getSingleton('core/session');
241
+ $request = $this->getRequest();
242
+ $datasHelper = Mage::helper('printscience_personalization/data');
243
+ $homeUrl = Mage::getUrl('home');
244
+
245
+ if (!$this->_isValidRequest()) {
246
+ $session->addError($this->__('Invalid request.'));
247
+ //$this->_redirect('home');
248
+ $datasHelper->_redirectToUrl($homeUrl);
249
+ return false;
250
+ }
251
+
252
+ $product = $this->_initProduct();
253
+ if (!$product) {
254
+ $session->addError($this->__('Personalization error: product not found.'));
255
+ //$this->_redirect('home');
256
+ $datasHelper->_redirectToUrl($homeUrl);
257
+ return false;
258
+ }
259
+
260
+ $apiGateway = Mage::getModel('printscience_personalization/apiGateway');
261
+ $sessionHelper = Mage::helper('printscience_personalization/session');
262
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
263
+
264
+ $sessionKey = $request->getParam('personalization_session_key');
265
+ $sessionData = $sessionHelper->getData($sessionKey);
266
+ $apiSessionKey = $sessionData['apiSessionKey'];
267
+
268
+ // is item with this API session key already in cart?
269
+ $cartItem = $quoteHelper->getCartItemByApiSessionKey($apiSessionKey);
270
+
271
+ if (!$cartItem) {
272
+ $apiGateway->endPersonalization($apiSessionKey);
273
+ $sessionHelper->unsetData($sessionKey);
274
+ $redirectUrl = $product->getProductUrl();
275
+ } else {
276
+ $redirectUrl = Mage::getUrl('checkout/cart');
277
+ }
278
+
279
+ //$this->_redirectUrl($redirectUrl);
280
+ $datasHelper->_redirectToUrl($redirectUrl);
281
+ }
282
+
283
+ /**
284
+ * Personalization fail action handler
285
+ *
286
+ */
287
+ public function failAction()
288
+ {
289
+ $this->_forward('cancel');
290
+ }
291
+
292
+ /**
293
+ * Initialize product instance from request data
294
+ *
295
+ * @return Mage_Catalog_Model_Product | false
296
+ */
297
+ private function _initProduct()
298
+ {
299
+ $productId = (int) $this->getRequest()->getParam('product');
300
+ if ($productId) {
301
+ $product = Mage::getModel('catalog/product')
302
+ ->setStoreId(Mage::app()->getStore()->getId())
303
+ ->load($productId);
304
+ if ($product->getId()) {
305
+ return $product;
306
+ }
307
+ }
308
+ return false;
309
+ }
310
+
311
+ /**
312
+ * Check if current request to Success, Cancel or Fail action is valid
313
+ *
314
+ * @return boolean
315
+ */
316
+ private function _isValidRequest()
317
+ {
318
+ $request = $this->getRequest();
319
+ $sessionHelper = Mage::helper('printscience_personalization/session');
320
+ $quoteHelper = Mage::helper('printscience_personalization/quote');
321
+
322
+ $sessionKey = $request->getParam('personalization_session_key');
323
+
324
+ if ($sessionKey) {
325
+ $sessionData = $sessionHelper->getData($sessionKey);
326
+ if ($sessionData) {
327
+ // no need to validate buyRequest params if item is already in cart
328
+ $cartItem = $quoteHelper->getCartItemByApiSessionKey($sessionData['apiSessionKey']);
329
+ if ($cartItem) {
330
+ return true;
331
+ } else {
332
+ $buyRequestParams = $request->getParams();
333
+ unset($buyRequestParams['personalization_session_key']);
334
+ if (unserialize($sessionData['buyRequest']) == $buyRequestParams) {
335
+ return true;
336
+ }
337
+ }
338
+ }
339
+ }
340
+ return false;
341
+ }
342
  }
app/code/local/PrintScience/Personalization/etc/config.xml CHANGED
@@ -1,173 +1,187 @@
1
- <?xml version="1.0"?>
2
- <config>
3
- <modules>
4
- <PrintScience_Personalization>
5
- <version>1.0.11</version>
6
- </PrintScience_Personalization>
7
- </modules>
8
- <frontend>
9
- <routers>
10
- <printscience_personalization>
11
- <use>standard</use>
12
- <args>
13
- <module>PrintScience_Personalization</module>
14
- <frontName>personalization</frontName>
15
- </args>
16
- </printscience_personalization>
17
- </routers>
18
- <layout>
19
- <updates>
20
- <printscience_personalization>
21
- <file>printscience_personalization.xml</file>
22
- </printscience_personalization>
23
- </updates>
24
- </layout>
25
- <translate>
26
- <modules>
27
- <PrintScience_Personalization>
28
- <files>
29
- <default>PrintScience_Personalization.csv</default>
30
- </files>
31
- </PrintScience_Personalization>
32
- </modules>
33
- </translate>
34
- </frontend>
35
- <adminhtml>
36
- <layout>
37
- <updates>
38
- <printscience_personalization>
39
- <file>printscience_personalization.xml</file>
40
- </printscience_personalization>
41
- </updates>
42
- </layout>
43
- <translate>
44
- <modules>
45
- <PrintScience_Personalization>
46
- <files>
47
- <default>PrintScience_Personalization.csv</default>
48
- </files>
49
- </PrintScience_Personalization>
50
- </modules>
51
- </translate>
52
- </adminhtml>
53
- <global>
54
- <models>
55
- <printscience_personalization>
56
- <class>PrintScience_Personalization_Model</class>
57
- </printscience_personalization>
58
- <checkout>
59
- <rewrite>
60
- <cart>PrintScience_Personalization_Model_Override_Checkout_Cart</cart>
61
- </rewrite>
62
- </checkout>
63
- <sales>
64
- <rewrite>
65
- <quote>PrintScience_Personalization_Model_Override_Sales_Quote</quote>
66
- </rewrite>
67
- </sales>
68
- </models>
69
- <helpers>
70
- <printscience_personalization>
71
- <class>PrintScience_Personalization_Helper</class>
72
- </printscience_personalization>
73
- </helpers>
74
- <blocks>
75
- <printscience_personalization>
76
- <class>PrintScience_Personalization_Block</class>
77
- </printscience_personalization>
78
- </blocks>
79
- <events>
80
- <controller_action_predispatch>
81
- <observers>
82
- <printscience_personalization_model_observer>
83
- <type>singleton</type>
84
- <class>printscience_personalization/observer</class>
85
- <method>checkForCheckoutCartAddAction</method>
86
- </printscience_personalization_model_observer>
87
- </observers>
88
- </controller_action_predispatch>
89
- <checkout_cart_product_add_after>
90
- <observers>
91
- <printscience_personalization_model_observer>
92
- <type>singleton</type>
93
- <class>printscience_personalization/observer</class>
94
- <method>addOptionsToCartItem</method>
95
- </printscience_personalization_model_observer>
96
- </observers>
97
- </checkout_cart_product_add_after>
98
- <sales_order_place_before>
99
- <observers>
100
- <printscience_personalization_model_observer>
101
- <type>singleton</type>
102
- <class>printscience_personalization/observer</class>
103
- <method>addOptionsToOrderItems</method>
104
- </printscience_personalization_model_observer>
105
- </observers>
106
- </sales_order_place_before>
107
- <controller_action_layout_render_before_checkout_cart_index>
108
- <observers>
109
- <printscience_personalization_model_observer>
110
- <type>singleton</type>
111
- <class>printscience_personalization/observer</class>
112
- <method>initGallery</method>
113
- </printscience_personalization_model_observer>
114
- </observers>
115
- </controller_action_layout_render_before_checkout_cart_index>
116
- <controller_action_layout_render_before_checkout_cart_configure>
117
- <observers>
118
- <printscience_personalization_model_observer>
119
- <type>singleton</type>
120
- <class>printscience_personalization/observer</class>
121
- <method>initGallery</method>
122
- </printscience_personalization_model_observer>
123
- </observers>
124
- </controller_action_layout_render_before_checkout_cart_configure>
125
- <sales_quote_remove_item>
126
- <observers>
127
- <printscience_personalization_model_observer>
128
- <type>singleton</type>
129
- <class>printscience_personalization/observer</class>
130
- <method>endPersonalization</method>
131
- </printscience_personalization_model_observer>
132
- </observers>
133
- </sales_quote_remove_item>
134
- <sales_quote_load_after>
135
- <observers>
136
- <printscience_personalization_model_observer>
137
- <type>singleton</type>
138
- <class>printscience_personalization/observer</class>
139
- <method>checkCartItems</method>
140
- </printscience_personalization_model_observer>
141
- </observers>
142
- </sales_quote_load_after>
143
- </events>
144
- <resources>
145
- <printscience_personalization_setup>
146
- <setup>
147
- <module>PrintScience_Personalization</module>
148
- <class>PrintScience_Personalization_Model_Resource_Eav_Mysql4_Setup</class>
149
- </setup>
150
- <connection>
151
- <use>core_setup</use>
152
- </connection>
153
- </printscience_personalization_setup>
154
- <printscience_personalization_write>
155
- <connection>
156
- <use>core_write</use>
157
- </connection>
158
- </printscience_personalization_write>
159
- <printscience_personalization_read>
160
- <connection>
161
- <use>core_read</use>
162
- </connection>
163
- </printscience_personalization_read>
164
- </resources>
165
- </global>
166
- <default>
167
- <catalog>
168
- <personalization>
169
- <api_version>1.0.0</api_version>
170
- </personalization>
171
- </catalog>
172
- </default>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  </config>
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <PrintScience_Personalization>
5
+ <version>1.0.12</version>
6
+ </PrintScience_Personalization>
7
+ </modules>
8
+ <frontend>
9
+ <routers>
10
+ <printscience_personalization>
11
+ <use>standard</use>
12
+ <args>
13
+ <module>PrintScience_Personalization</module>
14
+ <frontName>personalization</frontName>
15
+ </args>
16
+ </printscience_personalization>
17
+ </routers>
18
+ <layout>
19
+ <updates>
20
+ <printscience_personalization>
21
+ <file>printscience_personalization.xml</file>
22
+ </printscience_personalization>
23
+ </updates>
24
+ </layout>
25
+ <translate>
26
+ <modules>
27
+ <PrintScience_Personalization>
28
+ <files>
29
+ <default>PrintScience_Personalization.csv</default>
30
+ </files>
31
+ </PrintScience_Personalization>
32
+ </modules>
33
+ </translate>
34
+ <events>
35
+ <checkout_cart_add_product_complete>
36
+ <observers>
37
+ <printscience_personalization_observer>
38
+ <type>singleton</type>
39
+ <class>printscience_personalization/observer</class>
40
+ <method>addToCartComplete</method>
41
+ </printscience_personalization_observer>
42
+ </observers>
43
+ </checkout_cart_add_product_complete>
44
+ </events>
45
+ </frontend>
46
+ <adminhtml>
47
+ <layout>
48
+ <updates>
49
+ <printscience_personalization>
50
+ <file>printscience_personalization.xml</file>
51
+ </printscience_personalization>
52
+ <basket>
53
+ <file>picker.xml</file>
54
+ </basket>
55
+ </updates>
56
+ </layout>
57
+ <translate>
58
+ <modules>
59
+ <PrintScience_Personalization>
60
+ <files>
61
+ <default>PrintScience_Personalization.csv</default>
62
+ </files>
63
+ </PrintScience_Personalization>
64
+ </modules>
65
+ </translate>
66
+ </adminhtml>
67
+ <global>
68
+ <models>
69
+ <printscience_personalization>
70
+ <class>PrintScience_Personalization_Model</class>
71
+ </printscience_personalization>
72
+ <checkout>
73
+ <rewrite>
74
+ <cart>PrintScience_Personalization_Model_Override_Checkout_Cart</cart>
75
+ </rewrite>
76
+ </checkout>
77
+ <sales>
78
+ <rewrite>
79
+ <quote>PrintScience_Personalization_Model_Override_Sales_Quote</quote>
80
+ </rewrite>
81
+ </sales>
82
+ </models>
83
+ <helpers>
84
+ <printscience_personalization>
85
+ <class>PrintScience_Personalization_Helper</class>
86
+ </printscience_personalization>
87
+ </helpers>
88
+ <blocks>
89
+ <printscience_personalization>
90
+ <class>PrintScience_Personalization_Block</class>
91
+ </printscience_personalization>
92
+ </blocks>
93
+ <events>
94
+ <controller_action_predispatch>
95
+ <observers>
96
+ <printscience_personalization_model_observer>
97
+ <type>singleton</type>
98
+ <class>printscience_personalization/observer</class>
99
+ <method>checkForCheckoutCartAddAction</method>
100
+ </printscience_personalization_model_observer>
101
+ </observers>
102
+ </controller_action_predispatch>
103
+ <checkout_cart_product_add_after>
104
+ <observers>
105
+ <printscience_personalization_model_observer>
106
+ <type>singleton</type>
107
+ <class>printscience_personalization/observer</class>
108
+ <method>addOptionsToCartItem</method>
109
+ </printscience_personalization_model_observer>
110
+ </observers>
111
+ </checkout_cart_product_add_after>
112
+ <sales_order_place_before>
113
+ <observers>
114
+ <printscience_personalization_model_observer>
115
+ <type>singleton</type>
116
+ <class>printscience_personalization/observer</class>
117
+ <method>addOptionsToOrderItems</method>
118
+ </printscience_personalization_model_observer>
119
+ </observers>
120
+ </sales_order_place_before>
121
+ <controller_action_layout_render_before_checkout_cart_index>
122
+ <observers>
123
+ <printscience_personalization_model_observer>
124
+ <type>singleton</type>
125
+ <class>printscience_personalization/observer</class>
126
+ <method>initGallery</method>
127
+ </printscience_personalization_model_observer>
128
+ </observers>
129
+ </controller_action_layout_render_before_checkout_cart_index>
130
+ <controller_action_layout_render_before_checkout_cart_configure>
131
+ <observers>
132
+ <printscience_personalization_model_observer>
133
+ <type>singleton</type>
134
+ <class>printscience_personalization/observer</class>
135
+ <method>initGallery</method>
136
+ </printscience_personalization_model_observer>
137
+ </observers>
138
+ </controller_action_layout_render_before_checkout_cart_configure>
139
+ <sales_quote_remove_item>
140
+ <observers>
141
+ <printscience_personalization_model_observer>
142
+ <type>singleton</type>
143
+ <class>printscience_personalization/observer</class>
144
+ <method>endPersonalization</method>
145
+ </printscience_personalization_model_observer>
146
+ </observers>
147
+ </sales_quote_remove_item>
148
+ <sales_quote_load_after>
149
+ <observers>
150
+ <printscience_personalization_model_observer>
151
+ <type>singleton</type>
152
+ <class>printscience_personalization/observer</class>
153
+ <method>checkCartItems</method>
154
+ </printscience_personalization_model_observer>
155
+ </observers>
156
+ </sales_quote_load_after>
157
+ </events>
158
+ <resources>
159
+ <printscience_personalization_setup>
160
+ <setup>
161
+ <module>PrintScience_Personalization</module>
162
+ <class>PrintScience_Personalization_Model_Resource_Eav_Mysql4_Setup</class>
163
+ </setup>
164
+ <connection>
165
+ <use>core_setup</use>
166
+ </connection>
167
+ </printscience_personalization_setup>
168
+ <printscience_personalization_write>
169
+ <connection>
170
+ <use>core_write</use>
171
+ </connection>
172
+ </printscience_personalization_write>
173
+ <printscience_personalization_read>
174
+ <connection>
175
+ <use>core_read</use>
176
+ </connection>
177
+ </printscience_personalization_read>
178
+ </resources>
179
+ </global>
180
+ <default>
181
+ <catalog>
182
+ <personalization>
183
+ <api_version>1.0.0</api_version>
184
+ </personalization>
185
+ </catalog>
186
+ </default>
187
  </config>
app/code/local/PrintScience/Personalization/etc/system.xml CHANGED
@@ -1,62 +1,99 @@
1
- <?xml version="1.0"?>
2
- <config>
3
- <sections>
4
- <catalog translate="label" module="catalog">
5
- <groups>
6
- <personalization translate="label">
7
- <label>Product Personalization</label>
8
- <frontend_type>text</frontend_type>
9
- <sort_order>310</sort_order>
10
- <show_in_default>1</show_in_default>
11
- <show_in_website>0</show_in_website>
12
- <show_in_store>0</show_in_store>
13
- <fields>
14
- <api_username transalte="label">
15
- <label>API Username</label>
16
- <frontend_type>text</frontend_type>
17
- <sort_order>1</sort_order>
18
- <show_in_default>1</show_in_default>
19
- <show_in_website>0</show_in_website>
20
- <show_in_store>0</show_in_store>
21
- </api_username>
22
- <api_password transalte="label">
23
- <label>API Key</label>
24
- <frontend_type>text</frontend_type>
25
- <sort_order>2</sort_order>
26
- <show_in_default>1</show_in_default>
27
- <show_in_website>0</show_in_website>
28
- <show_in_store>0</show_in_store>
29
- </api_password>
30
- <api_version translate="label">
31
- <label>Api Version</label>
32
- <frontend_type>select</frontend_type>
33
- <sort_order>3</sort_order>
34
- <show_in_default>1</show_in_default>
35
- <show_in_website>1</show_in_website>
36
- <show_in_store>1</show_in_store>
37
- <source_model>printscience_personalization/system_config_source_apiVersion</source_model>
38
- </api_version>
39
- <api_url transalte="label">
40
- <label>API URL</label>
41
- <frontend_type>text</frontend_type>
42
- <backend_model>printscience_personalization/system_config_backend_apiUrl</backend_model>
43
- <sort_order>4</sort_order>
44
- <show_in_default>1</show_in_default>
45
- <show_in_website>0</show_in_website>
46
- <show_in_store>0</show_in_store>
47
- </api_url>
48
- <api_image_url transalte="label">
49
- <label>API Image URL</label>
50
- <frontend_type>text</frontend_type>
51
- <backend_model>printscience_personalization/system_config_backend_apiUrl</backend_model>
52
- <sort_order>5</sort_order>
53
- <show_in_default>1</show_in_default>
54
- <show_in_website>0</show_in_website>
55
- <show_in_store>0</show_in_store>
56
- </api_image_url>
57
- </fields>
58
- </personalization>
59
- </groups>
60
- </catalog>
61
- </sections>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  </config>
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <sections>
4
+ <catalog translate="label" module="catalog">
5
+ <groups>
6
+ <personalization translate="label">
7
+ <label>Product Personalization</label>
8
+ <frontend_type>text</frontend_type>
9
+ <sort_order>310</sort_order>
10
+ <show_in_default>1</show_in_default>
11
+ <show_in_website>0</show_in_website>
12
+ <show_in_store>0</show_in_store>
13
+ <fields>
14
+ <api_username transalte="label">
15
+ <label>API Username</label>
16
+ <frontend_type>text</frontend_type>
17
+ <sort_order>1</sort_order>
18
+ <show_in_default>1</show_in_default>
19
+ <show_in_website>0</show_in_website>
20
+ <show_in_store>0</show_in_store>
21
+ </api_username>
22
+ <api_password transalte="label">
23
+ <label>API Key</label>
24
+ <frontend_type>text</frontend_type>
25
+ <sort_order>2</sort_order>
26
+ <show_in_default>1</show_in_default>
27
+ <show_in_website>0</show_in_website>
28
+ <show_in_store>0</show_in_store>
29
+ </api_password>
30
+ <api_version translate="label">
31
+ <label>Api Version</label>
32
+ <frontend_type>select</frontend_type>
33
+ <sort_order>3</sort_order>
34
+ <show_in_default>1</show_in_default>
35
+ <show_in_website>1</show_in_website>
36
+ <show_in_store>1</show_in_store>
37
+ <source_model>printscience_personalization/system_config_source_apiVersion</source_model>
38
+ </api_version>
39
+ <api_url transalte="label">
40
+ <label>API URL</label>
41
+ <frontend_type>text</frontend_type>
42
+ <backend_model>printscience_personalization/system_config_backend_apiUrl</backend_model>
43
+ <sort_order>4</sort_order>
44
+ <show_in_default>1</show_in_default>
45
+ <show_in_website>0</show_in_website>
46
+ <show_in_store>0</show_in_store>
47
+ </api_url>
48
+ <api_image_url transalte="label">
49
+ <label>API Image URL</label>
50
+ <frontend_type>text</frontend_type>
51
+ <backend_model>printscience_personalization/system_config_backend_apiUrl</backend_model>
52
+ <sort_order>5</sort_order>
53
+ <show_in_default>1</show_in_default>
54
+ <show_in_website>0</show_in_website>
55
+ <show_in_store>0</show_in_store>
56
+ </api_image_url>
57
+ <window_type transalte="label">
58
+ <label>Window type for Design Online applications</label>
59
+ <frontend_type>select</frontend_type>
60
+ <sort_order>6</sort_order>
61
+ <show_in_default>1</show_in_default>
62
+ <show_in_website>1</show_in_website>
63
+ <show_in_store>1</show_in_store>
64
+ <source_model>printscience_personalization/system_config_source_windowType</source_model>
65
+ </window_type>
66
+ <background_color transalte="label">
67
+ <label>Background color of Margin surround the modal window</label>
68
+ <frontend_type>text</frontend_type>
69
+ <sort_order>7</sort_order>
70
+ <validate>color</validate>
71
+ <show_in_default>1</show_in_default>
72
+ <show_in_website>0</show_in_website>
73
+ <show_in_store>0</show_in_store>
74
+ <comment>Specify the background color.</comment>
75
+ </background_color>
76
+ <margin_width transalte="label">
77
+ <label>Width of Margin surround the modal window</label>
78
+ <frontend_type>text</frontend_type>
79
+ <sort_order>8</sort_order>
80
+ <show_in_default>1</show_in_default>
81
+ <show_in_website>0</show_in_website>
82
+ <show_in_store>0</show_in_store>
83
+ <comment>(px)</comment>
84
+ </margin_width>
85
+ <window_opacity transalte="label">
86
+ <label>Modal window opacity</label>
87
+ <frontend_type>text</frontend_type>
88
+ <sort_order>8</sort_order>
89
+ <show_in_default>1</show_in_default>
90
+ <show_in_website>0</show_in_website>
91
+ <show_in_store>0</show_in_store>
92
+ <comment>Specify the modal window opacity.</comment>
93
+ </window_opacity>
94
+ </fields>
95
+ </personalization>
96
+ </groups>
97
+ </catalog>
98
+ </sections>
99
  </config>
app/design/adminhtml/default/default/layout/printscience_personalization.xml CHANGED
@@ -1,10 +1,15 @@
1
- <?xml version="1.0"?>
2
- <layout version="0.1.0">
3
- <adminhtml_sales_order_view>
4
- <reference name="order_items">
5
- <action method="addItemRender"><type>simple</type><block>printscience_personalization/adminhtml_sales_order_view_items_renderer</block><template>printscience_personalization/sales/order/view/items/renderer/default.phtml</template></action>
6
- <action method="addItemRender"><type>configurable</type><block>printscience_personalization/adminhtml_sales_order_view_items_renderer</block><template>printscience_personalization/sales/order/view/items/renderer/default.phtml</template></action>
7
- <action method="addItemRender"><type>default</type><block>printscience_personalization/adminhtml_sales_order_view_items_renderer</block><template>printscience_personalization/sales/order/view/items/renderer/default.phtml</template></action>
8
- </reference>
9
- </adminhtml_sales_order_view>
 
 
 
 
 
10
  </layout>
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <adminhtml_sales_order_view>
4
+ <reference name="order_items">
5
+ <action method="addItemRender"><type>simple</type><block>printscience_personalization/adminhtml_sales_order_view_items_renderer</block><template>printscience_personalization/sales/order/view/items/renderer/default.phtml</template></action>
6
+ <action method="addItemRender"><type>configurable</type><block>printscience_personalization/adminhtml_sales_order_view_items_renderer</block><template>printscience_personalization/sales/order/view/items/renderer/default.phtml</template></action>
7
+ <action method="addItemRender"><type>default</type><block>printscience_personalization/adminhtml_sales_order_view_items_renderer</block><template>printscience_personalization/sales/order/view/items/renderer/default.phtml</template></action>
8
+ </reference>
9
+ </adminhtml_sales_order_view>
10
+ <adminhtml_system_config_edit>
11
+ <reference name="head">
12
+ <action method="addJs"><file>jscolor/jscolor.js</file></action>
13
+ </reference>
14
+ </adminhtml_system_config_edit>
15
  </layout>
app/design/frontend/base/default/layout/printscience_personalization.xml CHANGED
@@ -1,29 +1,56 @@
1
- <?xml version="1.0"?>
2
- <layout version="0.1.0">
3
- <catalog_product_view>
4
- <reference name="product.info.addtocart">
5
- <action method="setTemplate"><template>printscience_personalization/catalog/product/view/addtocart.phtml</template></action>
6
- </reference>
7
- </catalog_product_view>
8
- <checkout_cart_index>
9
- <reference name="checkout.cart">
10
- <action method="addItemRender"><type>simple</type><block>printscience_personalization/checkout_cart_item_renderer</block><template>printscience_personalization/checkout/cart/item/default.phtml</template></action>
11
- <action method="addItemRender"><type>configurable</type><block>printscience_personalization/checkout_cart_item_renderer</block><template>printscience_personalization/checkout/cart/item/default.phtml</template></action>
12
- </reference>
13
- </checkout_cart_index>
14
- <catalog_category_layered>
15
- <reference name="product_list">
16
- <action method="setTemplate"><template>printscience_personalization/catalog/product/list.phtml</template></action>
17
- </reference>
18
- </catalog_category_layered>
19
- <catalog_category_default>
20
- <reference name="product_list">
21
- <action method="setTemplate"><template>printscience_personalization/catalog/product/list.phtml</template></action>
22
- </reference>
23
- </catalog_category_default>
24
- <checkout_cart_configure>
25
- <reference name="product.info.media">
26
- <action method="setTemplate"><template>printscience_personalization/catalog/product/view/media.phtml</template></action>
27
- </reference>
28
- </checkout_cart_configure>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  </layout>
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <catalog_product_view>
4
+ <reference name="head">
5
+ <action method="addItem"><type>skin_css</type><name>printscience_personalization/modalPopLite.css</name></action>
6
+ <action method="addItem"><type>skin_js</type><name>printscience_personalization/jquery-1.7.2.min.js</name></action>
7
+ <action method="addItem"><type>skin_js</type><name>printscience_personalization/modalPopLite.min.js</name></action>
8
+ </reference>
9
+ <reference name="product.info">
10
+ <action method="setTemplate"><template>printscience_personalization/catalog/product/view.phtml</template></action>
11
+ </reference>
12
+ <reference name="product.info.addtocart">
13
+ <action method="setTemplate"><template>printscience_personalization/catalog/product/view/addtocart.phtml</template></action>
14
+ </reference>
15
+ </catalog_product_view>
16
+ <checkout_cart_index>
17
+ <reference name="head">
18
+ <action method="addItem"><type>skin_css</type><name>printscience_personalization/modalPopLite.css</name></action>
19
+ <action method="addItem"><type>skin_js</type><name>printscience_personalization/modalPopLite.min.js</name></action>
20
+ </reference>
21
+ <reference name="checkout.cart">
22
+ <action method="addItemRender"><type>simple</type><block>printscience_personalization/checkout_cart_item_renderer</block><template>printscience_personalization/checkout/cart/item/default.phtml</template></action>
23
+ <action method="addItemRender"><type>configurable</type><block>printscience_personalization/checkout_cart_item_renderer</block><template>printscience_personalization/checkout/cart/item/default.phtml</template></action>
24
+ </reference>
25
+ <reference name="checkout.cart">
26
+ <action method="setTemplate"><template>printscience_personalization/checkout/cart.phtml</template></action>
27
+ <action method="setCartTemplate"><template>printscience_personalization/checkout/cart.phtml</template></action>
28
+ <action method="setEmptyTemplate"><value>checkout/cart/noItems.phtml</value></action>
29
+ </reference>
30
+ </checkout_cart_index>
31
+ <catalog_category_layered>
32
+ <reference name="head">
33
+ <action method="addItem"><type>skin_css</type><name>printscience_personalization/modalPopLite.css</name></action>
34
+ <action method="addItem"><type>skin_js</type><name>printscience_personalization/jquery-1.7.2.min.js</name></action>
35
+ <action method="addItem"><type>skin_js</type><name>printscience_personalization/modalPopLite.min.js</name></action>
36
+ </reference>
37
+ <reference name="product_list">
38
+ <action method="setTemplate"><template>printscience_personalization/catalog/product/list.phtml</template></action>
39
+ </reference>
40
+ </catalog_category_layered>
41
+ <catalog_category_default>
42
+ <reference name="head">
43
+ <action method="addItem"><type>skin_css</type><name>printscience_personalization/modalPopLite.css</name></action>
44
+ <action method="addItem"><type>skin_js</type><name>printscience_personalization/jquery-1.7.2.min.js</name></action>
45
+ <action method="addItem"><type>skin_js</type><name>printscience_personalization/modalPopLite.min.js</name></action>
46
+ </reference>
47
+ <reference name="product_list">
48
+ <action method="setTemplate"><template>printscience_personalization/catalog/product/list.phtml</template></action>
49
+ </reference>
50
+ </catalog_category_default>
51
+ <checkout_cart_configure>
52
+ <reference name="product.info.media">
53
+ <action method="setTemplate"><template>printscience_personalization/catalog/product/view/media.phtml</template></action>
54
+ </reference>
55
+ </checkout_cart_configure>
56
  </layout>
app/design/frontend/base/default/template/printscience_personalization/catalog/product/list.phtml CHANGED
@@ -35,7 +35,13 @@
35
  $_productCollection = $this->getLoadedProductCollection();
36
  $_helper = $this->helper('catalog/output');
37
  $_personalizationHelper = $this->helper('printscience_personalization/output');
 
 
 
 
 
38
  ?>
 
39
  <?php if(!$_productCollection->count()): ?>
40
  <p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
41
  <?php else: ?>
@@ -62,9 +68,23 @@
62
  <?php $buttonTitle = $this->__('Personalize'); ?>
63
  <?php else: ?>
64
  <?php $buttonTitle = $this->__('Add to Cart'); ?>
65
- <?php endif; ?>
66
  <?php if($_product->isSaleable()): ?>
67
- <p><button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $buttonTitle ?></span></span></button></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  <?php else: ?>
69
  <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
70
  <?php endif; ?>
@@ -109,9 +129,21 @@
109
  <?php $buttonTitle = $this->__('Personalize'); ?>
110
  <?php else: ?>
111
  <?php $buttonTitle = $this->__('Add to Cart'); ?>
112
- <?php endif; ?>
113
  <?php if($_product->isSaleable()): ?>
114
- <button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $buttonTitle ?></span></span></button>
 
 
 
 
 
 
 
 
 
 
 
 
115
  <?php else: ?>
116
  <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
117
  <?php endif; ?>
@@ -136,4 +168,67 @@
136
  <?php echo $this->getToolbarHtml() ?>
137
  </div>
138
  </div>
139
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  $_productCollection = $this->getLoadedProductCollection();
36
  $_helper = $this->helper('catalog/output');
37
  $_personalizationHelper = $this->helper('printscience_personalization/output');
38
+
39
+ $window_type = Mage::getStoreConfig('catalog/personalization/window_type');
40
+ $background_color = Mage::getStoreConfig('catalog/personalization/background_color');
41
+ $margin_width = Mage::getStoreConfig('catalog/personalization/margin_width');
42
+ $window_opacity = Mage::getStoreConfig('catalog/personalization/window_opacity');
43
  ?>
44
+ <form action="" method="post">
45
  <?php if(!$_productCollection->count()): ?>
46
  <p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
47
  <?php else: ?>
68
  <?php $buttonTitle = $this->__('Personalize'); ?>
69
  <?php else: ?>
70
  <?php $buttonTitle = $this->__('Add to Cart'); ?>
71
+ <?php endif; ?>
72
  <?php if($_product->isSaleable()): ?>
73
+
74
+ <?php if ($_personalizationHelper->isPersonalizationEnabled($_product)): ?>
75
+ <?php if ($window_type=='2'):?>
76
+ <?php if(strpos($this->getAddToCartUrl($_product), "uenc")!==false): ?>
77
+ <p><button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setPersonalizeLocation('<?php echo $this->getAddToCartUrl($_product) ?>', jQuery(this.form))"><span><span><?php echo $buttonTitle ?></span></span></button></p>
78
+ <?php else: ?>
79
+ <p><button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $buttonTitle ?></span></span></button></p>
80
+ <?php endif; ?>
81
+ <?php else: ?>
82
+ <p><button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>'"><span><span><?php echo $buttonTitle ?></span></span></button></p>
83
+ <?php endif; ?>
84
+ <?php else: ?>
85
+ <p><button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>'"><span><span><?php echo $buttonTitle ?></span></span></button></p>
86
+ <?php endif; ?>
87
+
88
  <?php else: ?>
89
  <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
90
  <?php endif; ?>
129
  <?php $buttonTitle = $this->__('Personalize'); ?>
130
  <?php else: ?>
131
  <?php $buttonTitle = $this->__('Add to Cart'); ?>
132
+ <?php endif; ?>
133
  <?php if($_product->isSaleable()): ?>
134
+ <?php if ($_personalizationHelper->isPersonalizationEnabled($_product)): ?>
135
+ <?php if ($window_type=='2'):?>
136
+ <?php if(strpos($this->getAddToCartUrl($_product), "uenc")!==false): ?>
137
+ <button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setPersonalizeLocation('<?php echo $this->getAddToCartUrl($_product) ?>', jQuery(this.form))"><span><span><?php echo $buttonTitle ?></span></span></button>
138
+ <?php else: ?>
139
+ <button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $buttonTitle ?></span></span></button>
140
+ <?php endif; ?>
141
+ <?php else: ?>
142
+ <button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $buttonTitle ?></span></span></button>
143
+ <?php endif; ?>
144
+ <?php else: ?>
145
+ <button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $buttonTitle ?></span></span></button>
146
+ <?php endif; ?>
147
  <?php else: ?>
148
  <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
149
  <?php endif; ?>
168
  <?php echo $this->getToolbarHtml() ?>
169
  </div>
170
  </div>
171
+ <?php endif; ?>
172
+ </form>
173
+ <?php
174
+ if($window_type=='2'):
175
+ ?>
176
+ <a id="openpoup"></a>
177
+ <a id="close-btn"></a>
178
+ <style>
179
+ .modalPopLite-mask {
180
+ background-color:#<?php echo (isset($background_color)?$background_color:"#000000") ?> !important;
181
+ }
182
+ #popup-wrapper
183
+ {
184
+ width:1150px;
185
+ height:600px;
186
+ left:0!important;top:0!important;
187
+ background-color: #<?php echo $background_color; ?> !important;
188
+ }
189
+ .modalPopLite-wrapper
190
+ {
191
+ border:none!important;
192
+ }
193
+ .modalPopLite-mask {
194
+ opacity:<?php echo ($window_opacity!=''?$window_opacity:"0.6") ?> !important;
195
+ }
196
+ #popup_frame{
197
+ border:0px;
198
+ }
199
+ </style>
200
+ <script type="text/javascript">
201
+ jQuery(function (){
202
+ var maskWidth = document.body.clientWidth;
203
+ var maskHeight = jQuery(window).height();
204
+ var margin = '<?php if(isset($margin_width) && $margin_width > 0) { echo $margin_width; } else { echo "0"; } ?>';
205
+ jQuery("#popup-wrapper").css("width",(maskWidth - (2*margin)));
206
+ jQuery("#popup-wrapper").css("height",(maskHeight - 2*margin));
207
+ jQuery("#popup_frame").css("width",(maskWidth - 2*margin));
208
+ jQuery("#popup_frame").css("height",(maskHeight - 2*margin));
209
+ jQuery("#header").css("z-index","10");
210
+ jQuery(".personalize_btn_link").attr("target","popup_frame");
211
+ jQuery('#popup-wrapper').modalPopLite({ openButton: '#openpoup', closeButton: '#close-btn', isModal: true });
212
+ //jQuery('#modalPopLite-mask1').attr("style","opacity: 0.9");
213
+ });
214
+ function closethepopup(){
215
+ jQuery('#popup_frame').attr("src", "");
216
+ jQuery('#close-btn').trigger('click');
217
+ }
218
+ function setPersonalizeLocation(url, formObj) {
219
+ jQuery("#header").css("z-index","1");
220
+ if (jQuery(formObj).length > 0)
221
+ {
222
+ jQuery(formObj).attr("action",url);
223
+ jQuery(formObj).attr("target","popup_frame");
224
+ jQuery(formObj).submit();
225
+ }
226
+ jQuery('#openpoup').trigger('click');
227
+ return false;
228
+ }
229
+ </script>
230
+ <div id="popup-wrapper"><iframe name="popup_frame" id="popup_frame"></iframe>
231
+ </div>
232
+ <?php
233
+ endif;
234
+ ?>
app/design/frontend/base/default/template/printscience_personalization/catalog/product/view.phtml ADDED
@@ -0,0 +1,178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2012 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
+ /**
28
+ * Product view template
29
+ *
30
+ * @see Mage_Catalog_Block_Product_View
31
+ * @see Mage_Review_Block_Product_View
32
+ */
33
+ $_personalizationHelper = $this->helper('printscience_personalization/output');
34
+ $window_type = Mage::getStoreConfig('catalog/personalization/window_type');
35
+ ?>
36
+ <?php $_helper = $this->helper('catalog/output'); ?>
37
+ <?php $_product = $this->getProduct(); ?>
38
+ <script type="text/javascript">
39
+ var optionsPrice = new Product.OptionsPrice(<?php echo $this->getJsonConfig() ?>);
40
+ </script>
41
+ <div id="messages_product_view"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
42
+ <div class="product-view">
43
+ <div class="product-essential">
44
+ <form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
45
+ <div class="no-display">
46
+ <input type="hidden" name="product" value="<?php echo $_product->getId() ?>" />
47
+ <input type="hidden" name="related_product" id="related-products-field" value="" />
48
+ </div>
49
+
50
+ <div class="product-shop">
51
+ <div class="product-name">
52
+ <h1><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1>
53
+ </div>
54
+
55
+ <?php if ($this->canEmailToFriend()): ?>
56
+ <p class="email-friend"><a href="<?php echo $this->helper('catalog/product')->getEmailToFriendUrl($_product) ?>"><?php echo $this->__('Email to a Friend') ?></a></p>
57
+ <?php endif; ?>
58
+
59
+ <?php echo $this->getReviewsSummaryHtml($_product, false, true)?>
60
+ <?php echo $this->getChildHtml('alert_urls') ?>
61
+ <?php echo $this->getChildHtml('product_type_data') ?>
62
+ <?php echo $this->getTierPriceHtml() ?>
63
+ <?php echo $this->getChildHtml('extrahint') ?>
64
+
65
+ <?php if (!$this->hasOptions()):?>
66
+ <div class="add-to-box">
67
+ <?php if($_product->isSaleable()): ?>
68
+ <?php echo $this->getChildHtml('addtocart') ?>
69
+ <?php if( $this->helper('wishlist')->isAllow() || $_compareUrl=$this->helper('catalog/product_compare')->getAddUrl($_product)): ?>
70
+ <span class="or"><?php echo $this->__('OR') ?></span>
71
+ <?php endif; ?>
72
+ <?php endif; ?>
73
+ <?php echo $this->getChildHtml('addto') ?>
74
+ </div>
75
+ <?php echo $this->getChildHtml('extra_buttons') ?>
76
+ <?php elseif (!$_product->isSaleable()): ?>
77
+ <div class="add-to-box">
78
+ <?php echo $this->getChildHtml('addto') ?>
79
+ </div>
80
+ <?php endif; ?>
81
+
82
+ <?php if ($_product->getShortDescription()):?>
83
+ <div class="short-description">
84
+ <h2><?php echo $this->__('Quick Overview') ?></h2>
85
+ <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
86
+ </div>
87
+ <?php endif;?>
88
+
89
+ <?php echo $this->getChildHtml('other');?>
90
+
91
+ <?php if ($_product->isSaleable() && $this->hasOptions()):?>
92
+ <?php echo $this->getChildChildHtml('container1', '', true, true) ?>
93
+ <?php endif;?>
94
+
95
+ </div>
96
+
97
+ <div class="product-img-box">
98
+ <?php echo $this->getChildHtml('media') ?>
99
+ </div>
100
+
101
+ <div class="clearer"></div>
102
+ <?php if ($_product->isSaleable() && $this->hasOptions()):?>
103
+ <?php echo $this->getChildChildHtml('container2', '', true, true) ?>
104
+ <?php endif;?>
105
+ </form>
106
+ <script type="text/javascript">
107
+ //<![CDATA[
108
+ var productAddToCartForm = new VarienForm('product_addtocart_form');
109
+ productAddToCartForm.submit = function(button, url) {
110
+ if (this.validator.validate()) {
111
+ var form = this.form;
112
+ var oldUrl = form.action;
113
+
114
+ if (url) {
115
+ form.action = url;
116
+ }
117
+ var e = null;
118
+ try {
119
+ <?php if ($window_type=='2' && $_personalizationHelper->isPersonalizationEnabled($_product)): ?>
120
+ jQuery("#header").css("z-index","1");
121
+ jQuery("#product_addtocart_form").attr("target","popup_frame");
122
+ this.form.submit();
123
+ jQuery('#openpoup').trigger('click');
124
+ <?php else: ?>
125
+ this.form.submit();
126
+ <?php endif; ?>
127
+ } catch (e) {
128
+ }
129
+ this.form.action = oldUrl;
130
+ if (e) {
131
+ throw e;
132
+ }
133
+
134
+ if (button && button != 'undefined') {
135
+ //button.disabled = true;
136
+ }
137
+ }
138
+ }.bind(productAddToCartForm);
139
+
140
+ productAddToCartForm.submitLight = function(button, url){
141
+ if(this.validator) {
142
+ var nv = Validation.methods;
143
+ delete Validation.methods['required-entry'];
144
+ delete Validation.methods['validate-one-required'];
145
+ delete Validation.methods['validate-one-required-by-name'];
146
+ // Remove custom datetime validators
147
+ for (var methodName in Validation.methods) {
148
+ if (methodName.match(/^validate-datetime-.*/i)) {
149
+ delete Validation.methods[methodName];
150
+ }
151
+ }
152
+
153
+ if (this.validator.validate()) {
154
+ if (url) {
155
+ this.form.action = url;
156
+ }
157
+ this.form.submit();
158
+ }
159
+ Object.extend(Validation.methods, nv);
160
+ }
161
+ }.bind(productAddToCartForm);
162
+ //]]>
163
+ </script>
164
+ </div>
165
+
166
+ <div class="product-collateral">
167
+ <?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
168
+ <div class="box-collateral <?php echo "box-{$alias}"?>">
169
+ <?php if ($title = $this->getChildData($alias, 'title')):?>
170
+ <h2><?php echo $this->escapeHtml($title); ?></h2>
171
+ <?php endif;?>
172
+ <?php echo $html; ?>
173
+ </div>
174
+ <?php endforeach;?>
175
+ <?php echo $this->getChildHtml('upsell_products') ?>
176
+ <?php echo $this->getChildHtml('product_additional_data') ?>
177
+ </div>
178
+ </div>
app/design/frontend/base/default/template/printscience_personalization/catalog/product/view/addtocart.phtml CHANGED
@@ -1,19 +1,80 @@
1
- <?php
2
- $_personalizationHelper = $this->helper('printscience_personalization/output');
3
- $_product = $this->getProduct();
4
- ?>
5
- <?php if ($_personalizationHelper->isPersonalizationEnabled($_product)): ?>
6
- <?php $buttonTitle = $this->__('Personalize'); ?>
7
- <?php else: ?>
8
- <?php $buttonTitle = $this->__('Add to Cart'); ?>
9
- <?php endif; ?>
10
- <?php if($_product->isSaleable()): ?>
11
- <div class="add-to-cart">
12
- <?php if(!$_product->isGrouped()): ?>
13
- <label for="qty"><?php echo $this->__('Qty:') ?></label>
14
- <input type="text" name="qty" id="qty" maxlength="12" value="<?php echo $this->getProductDefaultQty() * 1 ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />
15
- <?php endif; ?>
16
- <button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>
17
- <?php echo $this->getChildHtml('', true, true) ?>
18
- </div>
19
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $_personalizationHelper = $this->helper('printscience_personalization/output');
3
+ $_product = $this->getProduct();
4
+ $window_type = Mage::getStoreConfig('catalog/personalization/window_type');
5
+ $background_color = Mage::getStoreConfig('catalog/personalization/background_color');
6
+ $margin_width = Mage::getStoreConfig('catalog/personalization/margin_width');
7
+ $window_opacity = Mage::getStoreConfig('catalog/personalization/window_opacity');
8
+ ?>
9
+ <?php if ($_personalizationHelper->isPersonalizationEnabled($_product)): ?>
10
+ <?php $buttonTitle = $this->__('Personalize'); ?>
11
+ <?php else: ?>
12
+ <?php $buttonTitle = $this->__('Add to Cart'); ?>
13
+ <?php endif; ?>
14
+ <?php if($_product->isSaleable()): ?>
15
+ <div class="add-to-cart">
16
+ <?php if(!$_product->isGrouped()): ?>
17
+ <label for="qty"><?php echo $this->__('Qty:') ?></label>
18
+ <input type="text" name="qty" id="qty" maxlength="12" value="<?php echo $this->getProductDefaultQty() * 1 ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />
19
+ <?php endif; ?>
20
+ <?php if($window_type=='0'): ?>
21
+ <button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart exclusive personalize_btn"><span><span><?php echo $buttonTitle ?></span></span></button>
22
+ <?php else: ?>
23
+ <button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart exclusive personalize_btn" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>
24
+ <?php endif; ?>
25
+ <?php echo $this->getChildHtml('', true, true) ?>
26
+ </div>
27
+ <?php endif; ?>
28
+ <?php
29
+ if($window_type=='2'):
30
+ ?>
31
+ <a id="openpoup"></a>
32
+ <a id="close-btn"></a>
33
+ <style>
34
+ .modalPopLite-mask {
35
+ background-color:#<?php echo (isset($background_color)?$background_color:"#000000") ?> !important;
36
+ }
37
+ #popup-wrapper
38
+ {
39
+ width:1150px;
40
+ height:600px;
41
+ left:0!important;top:0!important;
42
+ background-color: #<?php echo $background_color; ?> !important;
43
+ }
44
+ .modalPopLite-wrapper
45
+ {
46
+ border:none!important;
47
+ }
48
+ .modalPopLite-mask {
49
+ opacity:<?php echo ($window_opacity!=''?$window_opacity:"0.6") ?> !important;
50
+ }
51
+ #popup_frame{
52
+ border:0px;
53
+ }
54
+ </style>
55
+ <script type="text/javascript">
56
+ jQuery(function (){
57
+ var maskWidth = document.body.clientWidth;
58
+ var maskHeight = jQuery(window).height();
59
+ var margin = '<?php if(isset($margin_width) && $margin_width > 0) { echo $margin_width; } else { echo "0"; } ?>';
60
+ jQuery("#popup-wrapper").css("width",(maskWidth - (2*margin)));
61
+ jQuery("#popup-wrapper").css("height",(maskHeight - 2*margin));
62
+ jQuery("#popup_frame").css("width",(maskWidth - 2*margin));
63
+ jQuery("#popup_frame").css("height",(maskHeight - 2*margin));
64
+
65
+ jQuery("#header").css("z-index","10");
66
+ jQuery(".anchoreditlink").attr("target","popup_frame");
67
+ jQuery(".personalize_btn_link").attr("target","popup_frame");
68
+ jQuery('#popup-wrapper').modalPopLite({ openButton: '#openpoup', closeButton: '#close-btn', isModal: true });
69
+ });
70
+ function closethepopup(){
71
+ jQuery('#popup_frame').attr("src", "");
72
+ jQuery('#close-btn').trigger('click');
73
+ }
74
+ </script>
75
+ <div id="popup-wrapper"><iframe name="popup_frame" id="popup_frame"></iframe>
76
+ </div>
77
+
78
+ <?php
79
+ endif;
80
+ ?>
app/design/frontend/base/default/template/printscience_personalization/checkout/cart.phtml ADDED
@@ -0,0 +1,235 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2012 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
+ /**
29
+ * Shopping cart template
30
+ *
31
+ * @see Mage_Checkout_Block_Cart
32
+ */
33
+ $_personalizationHelper = $this->helper('printscience_personalization/output');
34
+ ?>
35
+ <div class="cart">
36
+ <div class="page-title title-buttons">
37
+ <h1><?php echo $this->__('Shopping Cart') ?></h1>
38
+ <?php if(!$this->hasError()): ?>
39
+ <ul class="checkout-types">
40
+ <?php foreach ($this->getMethods('top_methods') as $method): ?>
41
+ <?php if ($methodHtml = $this->getMethodHtml($method)): ?>
42
+ <li><?php echo $methodHtml; ?></li>
43
+ <?php endif; ?>
44
+ <?php endforeach; ?>
45
+ </ul>
46
+ <?php endif; ?>
47
+ </div>
48
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
49
+ <?php echo $this->getChildHtml('form_before') ?>
50
+ <form action="<?php echo $this->getUrl('checkout/cart/updatePost') ?>" method="post">
51
+ <fieldset>
52
+ <table id="shopping-cart-table" class="data-table cart-table">
53
+ <col width="1" />
54
+ <col />
55
+ <col width="1" />
56
+ <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
57
+ <col width="1" />
58
+ <?php endif ?>
59
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
60
+ <col width="1" />
61
+ <?php endif; ?>
62
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
63
+ <col width="1" />
64
+ <?php endif; ?>
65
+ <col width="1" />
66
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
67
+ <col width="1" />
68
+ <?php endif; ?>
69
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
70
+ <col width="1" />
71
+ <?php endif; ?>
72
+ <col width="1" />
73
+
74
+ <?php $mergedCells = ($this->helper('tax')->displayCartBothPrices() ? 2 : 1); ?>
75
+ <thead>
76
+ <tr>
77
+ <th rowspan="<?php echo $mergedCells; ?>">&nbsp;</th>
78
+ <th rowspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Product Name') ?></span></th>
79
+ <th rowspan="<?php echo $mergedCells; ?>"></th>
80
+ <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
81
+ <th rowspan="<?php echo $mergedCells; ?>" class="a-center"><span class="nobr"><?php echo $this->__('Move to Wishlist') ?></span></th>
82
+ <?php endif ?>
83
+ <th class="a-center" colspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Unit Price') ?></span></th>
84
+ <th rowspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
85
+ <th class="a-center" colspan="<?php echo $mergedCells; ?>"><?php echo $this->__('Subtotal') ?></th>
86
+ <th rowspan="<?php echo $mergedCells; ?>" class="a-center">&nbsp;</th>
87
+ </tr>
88
+ <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
89
+ <tr>
90
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
91
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
92
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
93
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
94
+ </tr>
95
+ <?php endif; ?>
96
+ </thead>
97
+ <tfoot>
98
+ <tr>
99
+ <td colspan="50" class="a-right">
100
+ <?php if($this->getContinueShoppingUrl()): ?>
101
+ <button type="button" title="<?php echo $this->__('Continue Shopping') ?>" class="button btn-continue" onclick="setLocation('<?php echo $this->getContinueShoppingUrl() ?>')"><span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>
102
+ <?php endif; ?>
103
+ <button type="submit" name="update_cart_action" value="update_qty" title="<?php echo $this->__('Update Shopping Cart'); ?>" class="button btn-update"><span><span><?php echo $this->__('Update Shopping Cart'); ?></span></span></button>
104
+ <button type="submit" name="update_cart_action" value="empty_cart" title="<?php echo $this->__('Clear Shopping Cart'); ?>" class="button btn-empty" id="empty_cart_button"><span><span><?php echo $this->__('Clear Shopping Cart'); ?></span></span></button>
105
+ <!--[if lt IE 8]>
106
+ <input type="hidden" id="update_cart_action_container" />
107
+ <script type="text/javascript">
108
+ //<![CDATA[
109
+ Event.observe(window, 'load', function()
110
+ {
111
+ // Internet Explorer (lt 8) does not support value attribute in button elements
112
+ $emptyCartButton = $('empty_cart_button');
113
+ $cartActionContainer = $('update_cart_action_container');
114
+ if ($emptyCartButton && $cartActionContainer) {
115
+ Event.observe($emptyCartButton, 'click', function()
116
+ {
117
+ $emptyCartButton.setAttribute('name', 'update_cart_action_temp');
118
+ $cartActionContainer.setAttribute('name', 'update_cart_action');
119
+ $cartActionContainer.setValue('empty_cart');
120
+ });
121
+ }
122
+
123
+ });
124
+ //]]>
125
+ </script>
126
+ <![endif]-->
127
+ </td>
128
+ </tr>
129
+ </tfoot>
130
+ <tbody>
131
+ <?php foreach($this->getItems() as $_item): ?>
132
+ <?php echo $this->getItemHtml($_item) ?>
133
+ <?php endforeach ?>
134
+ </tbody>
135
+ </table>
136
+ <script type="text/javascript">decorateTable('shopping-cart-table')</script>
137
+ </fieldset>
138
+ </form>
139
+ <div class="cart-collaterals">
140
+ <div class="col2-set">
141
+ <div class="col-1">
142
+ <?php echo $this->getChildHtml('crosssell') ?>
143
+ </div>
144
+ <div class="col-2">
145
+ <?php /* Extensions placeholder */ ?>
146
+ <?php echo $this->getChildHtml('checkout.cart.extra') ?>
147
+ <?php echo $this->getChildHtml('coupon') ?>
148
+ <?php if (!$this->getIsVirtual()): echo $this->getChildHtml('shipping'); endif; ?>
149
+ </div>
150
+ </div>
151
+ <div class="totals">
152
+ <?php echo $this->getChildHtml('totals'); ?>
153
+ <?php if(!$this->hasError()): ?>
154
+ <ul class="checkout-types">
155
+ <?php foreach ($this->getMethods('methods') as $method): ?>
156
+ <?php if ($methodHtml = $this->getMethodHtml($method)): ?>
157
+ <li><?php echo $methodHtml; ?></li>
158
+ <?php endif; ?>
159
+ <?php endforeach; ?>
160
+ </ul>
161
+ <?php endif; ?>
162
+ </div>
163
+ </div>
164
+ </div>
165
+ <?php
166
+ $window_type = Mage::getStoreConfig('catalog/personalization/window_type');
167
+ $background_color = Mage::getStoreConfig('catalog/personalization/background_color');
168
+ $margin_width = Mage::getStoreConfig('catalog/personalization/margin_width');
169
+ $window_opacity = Mage::getStoreConfig('catalog/personalization/window_opacity');
170
+ if($window_type=='2'):
171
+ ?>
172
+ <a id="openpoup"></a>
173
+ <a id="close-btn"></a>
174
+ <style>
175
+ .modalPopLite-mask {
176
+ background-color:#<?php echo (isset($background_color)?$background_color:"#000000") ?> !important;
177
+ }
178
+ #popup-wrapper
179
+ {
180
+ width:1150px;
181
+ height:600px;
182
+ left:0!important;top:0!important;
183
+ background-color: #<?php echo $background_color; ?> !important;
184
+ }
185
+ .modalPopLite-wrapper
186
+ {
187
+ border:none!important;
188
+ }
189
+ .modalPopLite-mask {
190
+ opacity:<?php echo ($window_opacity!=''?$window_opacity:"0.6") ?> !important;
191
+ }
192
+ #popup_frame{
193
+ border:0px;
194
+ }
195
+ </style>
196
+ <script type="text/javascript">
197
+ jQuery(function (){
198
+ var maskWidth = document.body.clientWidth;
199
+ var maskHeight = jQuery(window).height();
200
+ var margin = '<?php if(isset($margin_width) && $margin_width > 0) { echo $margin_width; } else { echo "0"; } ?>';
201
+ jQuery("#popup-wrapper").css("width",(maskWidth - (2*margin)));
202
+ jQuery("#popup-wrapper").css("height",(maskHeight - 2*margin));
203
+ jQuery("#popup_frame").css("width",(maskWidth - 2*margin));
204
+ jQuery("#popup_frame").css("height",(maskHeight - 2*margin));
205
+ jQuery("#header").css("z-index","10");
206
+ jQuery(".personalize_btn_link").attr("target","popup_frame");
207
+ jQuery('#popup-wrapper').modalPopLite({ openButton: '#openpoup', closeButton: '#close-btn', isModal: true });
208
+ });
209
+ function closethepopup(){
210
+ jQuery('#popup_frame').attr("src", "");
211
+ jQuery('#close-btn').trigger('click');
212
+ }
213
+ function setPersonalizeLocation(url, formObj) {
214
+ jQuery("#header").css("z-index","1");
215
+ if (jQuery(formObj).length > 0)
216
+ {
217
+ jQuery(formObj).attr("action",url);
218
+ jQuery(formObj).attr("target","popup_frame");
219
+ jQuery(formObj).submit();
220
+ }
221
+ jQuery('#openpoup').trigger('click');
222
+ return false;
223
+ }
224
+ <?php
225
+ $checkValid = $_personalizationHelper->getFrontendParams();
226
+ if($checkValid=='1') : ?>
227
+ jQuery('.error-msg').css('display',"none");
228
+ <?php endif; ?>
229
+ </script>
230
+ <div id="popup-wrapper"><iframe name="popup_frame" id="popup_frame"></iframe>
231
+ </div>
232
+
233
+ <?php
234
+ endif;
235
+ ?>
app/design/frontend/base/default/template/printscience_personalization/checkout/cart/item/default.phtml CHANGED
@@ -1,259 +1,271 @@
1
- <?php
2
- $_item = $this->getItem();
3
- $isVisibleProduct = $_item->getProduct()->isVisibleInSiteVisibility();
4
- ?>
5
- <tr>
6
- <td>
7
- <?php $apiSessionKey = $this->getPersonalizationApiSessionKey() ?>
8
- <?php if ($apiSessionKey):?>
9
- <?php $personalizationPreviews = $this->getPersonalizationPreviews() ?>
10
- <div class="personalizationGallery" style="height:100px">
11
- <?php $class = '' ?>
12
- <?php foreach ($personalizationPreviews as $previewImage): ?>
13
- <?php if (!$class) { $class = 'class="first"'; } ?>
14
- <a href="<?php echo $previewImage ?>" rel="fancybox[<?php echo $apiSessionKey ?>]" class="pgImg" target="_blank"><img src="<?php echo $previewImage ?>" hight="100" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" <?php echo $class ?> /></a>
15
- <?php endforeach; ?>
16
-
17
- </div>
18
-
19
- <div>
20
- <button type="button" title="<?php echo $this->__('Re-edit') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getResumePersonalizationUrl($_item->getProduct()->getId()) ?>')"><span><span><?php echo $this->__('Re-edit') ?></span></span></button>
21
- </div>
22
- <?php else: ?>
23
- <?php $personalizationPreviews = $this->getPersonalizationPreviews() ?>
24
- <?php if(!empty($personalizationPreviews)):?>
25
-
26
- <div class="personalizationGallery">
27
- <?php $class = '' ?>
28
- <?php foreach ($personalizationPreviews as $previewImage): ?>
29
- <?php if (!$class) { $class = 'class="first"'; } ?>
30
- <a href="<?php echo $previewImage ?>" rel="fancybox[<?php echo 'product_image_'.$this->getItem()->getId() ?>]" class="pgImg" target="_blank"><img src="<?php echo $previewImage ?>" width="75" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" <?php echo $class ?> /></a>
31
- <?php endforeach; ?>
32
- </div>
33
- <?php else:?>
34
- <?php if ($this->hasProductUrl()):?><a href="<?php echo $this->getProductUrl() ?>" title="<?php echo $this->htmlEscape($this->getProductName()) ?>" class="product-image"><?php endif;?><img src="<?php echo $this->getProductThumbnail()->resize(75); ?>" width="75" height="75" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" /><?php if ($this->hasProductUrl()):?></a><?php endif;?>
35
- <?php endif; ?>
36
- <?php endif; ?>
37
- </td>
38
- <td>
39
- <h2 class="product-name">
40
- <?php if ($this->hasProductUrl()):?>
41
- <a href="<?php echo $this->getProductUrl() ?>"><?php echo $this->htmlEscape($this->getProductName()) ?></a>
42
- <?php else: ?>
43
- <?php echo $this->htmlEscape($this->getProductName()) ?>
44
- <?php endif; ?>
45
- </h2>
46
- <?php if ($_options = $this->getOptionList()):?>
47
- <dl class="item-options">
48
- <?php foreach ($_options as $_option) : ?>
49
- <?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
50
- <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
51
- <dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>><?php echo $_formatedOptionValue['value'] ?>
52
- <?php if (isset($_formatedOptionValue['full_view'])): ?>
53
- <div class="truncated_full_value">
54
- <dl class="item-options">
55
- <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
56
- <dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
57
- </dl>
58
- </div>
59
- <?php endif; ?>
60
- </dd>
61
- <?php endforeach; ?>
62
- </dl>
63
- <?php endif;?>
64
- <?php if ($messages = $this->getMessages()): ?>
65
- <?php foreach ($messages as $message): ?>
66
- <p class="item-msg <?php echo $message['type'] ?>">* <?php echo $message['text'] ?></p>
67
- <?php endforeach; ?>
68
- <?php endif; ?>
69
- <?php if ($addtInfoBlock = $this->getProductAdditionalInformationBlock()):?>
70
- <?php echo $addtInfoBlock->setItem($_item)->toHtml() ?>
71
- <?php endif;?>
72
- </td>
73
- <td class="a-center">
74
- <?php if ($isVisibleProduct): ?>
75
- <a href="<?php echo $this->getConfigureUrl() ?>" title="<?php echo $this->__('Edit item parameters') ?>"><?php echo $this->__('Edit') ?></a>
76
- <?php endif ?>
77
- </td>
78
- <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
79
- <td class="a-center">
80
- <?php if ($isVisibleProduct): ?>
81
- <input type="checkbox" value="1" name="cart[<?php echo $_item->getId() ?>][wishlist]" title="<?php echo $this->__('Move to Wishlist') ?>" class="checkbox" />
82
- <?php endif ?>
83
- </td>
84
- <?php endif ?>
85
- <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
86
- <td class="a-right">
87
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
88
- <span class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
89
- <?php else: ?>
90
- <span class="cart-price">
91
- <?php endif; ?>
92
-
93
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
94
- <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?>
95
- <?php else: ?>
96
- <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
97
- <?php endif; ?>
98
-
99
- </span>
100
-
101
-
102
- <?php if (Mage::helper('weee')->getApplied($_item)): ?>
103
-
104
- <div class="cart-tax-info" id="eunit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
105
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
106
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
107
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span>
108
- <?php endforeach; ?>
109
- <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
110
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
111
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
112
- <?php endforeach; ?>
113
- <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
114
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
115
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
116
- <?php endforeach; ?>
117
- <?php endif; ?>
118
- </div>
119
-
120
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
121
- <div class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
122
- <span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?></span>
123
- </div>
124
- <?php endif; ?>
125
- <?php endif; ?>
126
- </td>
127
- <?php endif; ?>
128
- <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
129
- <td>
130
- <?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?>
131
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
132
- <span class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
133
- <?php else: ?>
134
- <span class="cart-price">
135
- <?php endif; ?>
136
-
137
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
138
- <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?>
139
- <?php else: ?>
140
- <?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxDisposition()) ?>
141
- <?php endif; ?>
142
-
143
- </span>
144
- <?php if (Mage::helper('weee')->getApplied($_item)): ?>
145
-
146
- <div class="cart-tax-info" id="unit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
147
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
148
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
149
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span>
150
- <?php endforeach; ?>
151
- <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
152
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
153
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
154
- <?php endforeach; ?>
155
- <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
156
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
157
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
158
- <?php endforeach; ?>
159
- <?php endif; ?>
160
- </div>
161
-
162
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
163
- <div class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
164
- <span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>: <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?></span>
165
- </div>
166
- <?php endif; ?>
167
- <?php endif; ?>
168
- </td>
169
- <?php endif; ?>
170
- <td class="a-center">
171
- <input name="cart[<?php echo $_item->getId() ?>][qty]" value="<?php echo $this->getQty() ?>" size="4" title="<?php echo $this->__('Qty') ?>" class="input-text qty" maxlength="12" />
172
- </td>
173
- <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
174
- <td class="a-right">
175
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
176
- <span class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
177
- <?php else: ?>
178
- <span class="cart-price">
179
- <?php endif; ?>
180
-
181
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
182
- <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?>
183
- <?php else: ?>
184
- <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
185
- <?php endif; ?>
186
-
187
- </span>
188
- <?php if (Mage::helper('weee')->getApplied($_item)): ?>
189
-
190
- <div class="cart-tax-info" id="esubtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
191
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
192
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
193
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span>
194
- <?php endforeach; ?>
195
- <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
196
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
197
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
198
- <?php endforeach; ?>
199
- <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
200
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
201
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
202
- <?php endforeach; ?>
203
- <?php endif; ?>
204
- </div>
205
-
206
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
207
- <div class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
208
- <span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?></span>
209
- </div>
210
- <?php endif; ?>
211
- <?php endif; ?>
212
- </td>
213
- <?php endif; ?>
214
- <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
215
- <td>
216
- <?php $_incl = $this->helper('checkout')->getSubtotalInclTax($_item); ?>
217
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
218
- <span class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
219
- <?php else: ?>
220
- <span class="cart-price">
221
- <?php endif; ?>
222
-
223
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
224
- <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedRowAmount()); ?>
225
- <?php else: ?>
226
- <?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxRowDisposition()) ?>
227
- <?php endif; ?>
228
-
229
- </span>
230
-
231
-
232
- <?php if (Mage::helper('weee')->getApplied($_item)): ?>
233
-
234
- <div class="cart-tax-info" id="subtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
235
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
236
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
237
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span>
238
- <?php endforeach; ?>
239
- <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
240
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
241
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
242
- <?php endforeach; ?>
243
- <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
244
- <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
245
- <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
246
- <?php endforeach; ?>
247
- <?php endif; ?>
248
- </div>
249
-
250
- <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
251
- <div class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
252
- <span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>: <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedRowAmount()); ?></span>
253
- </div>
254
- <?php endif; ?>
255
- <?php endif; ?>
256
- </td>
257
- <?php endif; ?>
258
- <td class="a-center"><a href="<?php echo $this->getDeleteUrl()?>" title="<?php echo $this->__('Remove item')?>" class="btn-remove btn-remove2"><?php echo $this->__('Remove item')?></a></td>
 
 
 
 
 
 
 
 
 
 
 
 
259
  </tr>
1
+ <?php
2
+ $_item = $this->getItem();
3
+ $isVisibleProduct = $_item->getProduct()->isVisibleInSiteVisibility();
4
+ $_personalizationHelper = $this->helper('printscience_personalization/output');
5
+ $window_type = Mage::getStoreConfig('catalog/personalization/window_type');
6
+ ?>
7
+ <tr>
8
+ <td>
9
+ <?php $apiSessionKey = $this->getPersonalizationApiSessionKey() ?>
10
+ <?php if ($apiSessionKey):?>
11
+ <?php $personalizationPreviews = $this->getPersonalizationPreviews() ?>
12
+ <?php //echo "<pre>"; print_r($personalizationPreviews); echo "</pre>";?>
13
+ <div class="personalizationGallery" style="height:50px">
14
+ <?php $class = '' ?>
15
+ <?php foreach ($personalizationPreviews as $previewImage):
16
+ if (!$class) { $class = 'class="first"'; }
17
+ ?>
18
+ <a href="<?php echo $previewImage ?>" rel="fancybox[<?php echo $apiSessionKey ?>]" class="pgImg" target="_blank"><img src="<?php echo $previewImage ?>" hight="100" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" <?php echo $class ?> /></a>
19
+ <?php endforeach; ?>
20
+ </div>
21
+
22
+ <div>
23
+ <?php if ($apiSessionKey):?>
24
+ <?php if ($window_type=='2'):?>
25
+ <button type="button" title="<?php echo $this->__('Re-edit') ?>" class="button btn-cart personalize_btn_link" onclick="setPersonalizeLocation('<?php echo $this->getResumePersonalizationUrl($_item->getProduct()->getId()) ?>', this.form)"><span><span><?php echo $this->__('Re-edit') ?></span></span></button>
26
+ <?php else: ?>
27
+ <button type="button" title="<?php echo $this->__('Re-edit') ?>" class="button btn-cart personalize_btn_link" onclick="setLocation('<?php echo $this->getResumePersonalizationUrl($_item->getProduct()->getId()) ?>')"><span><span><?php echo $this->__('Re-edit') ?></span></span></button>
28
+ <?php endif; ?>
29
+ <?php endif; ?>
30
+ </div>
31
+ <?php else: ?>
32
+ <?php $personalizationPreviews = $this->getPersonalizationPreviews() ?>
33
+ <?php if(!empty($personalizationPreviews)):?>
34
+
35
+ <div class="personalizationGallery">
36
+ <?php $class = '' ?>
37
+ <?php foreach ($personalizationPreviews as $previewImage):
38
+ $imgArray = $previewImage[1]->me;
39
+ if (!$class) { $class = 'class="first"'; }
40
+ if($imgArray['string']!='') : ?>
41
+ <a href="<?php echo $imgArray['string']; ?>" rel="fancybox[<?php echo 'product_image_'.$this->getItem()->getId() ?>]" class="pgImg" target="_blank"><img src="<?php echo $imgArray['string']; ?>" width="75" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" <?php echo $class ?> /></a>
42
+ <?php endif; ?>
43
+ <?php endforeach; ?>
44
+ </div>
45
+ <?php else:?>
46
+ <?php if ($this->hasProductUrl()):?><a href="<?php echo $this->getProductUrl() ?>" title="<?php echo $this->htmlEscape($this->getProductName()) ?>" class="product-image"><?php endif;?><img src="<?php echo $this->getProductThumbnail()->resize(75); ?>" width="75" height="75" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" /><?php if ($this->hasProductUrl()):?></a><?php endif;?>
47
+ <?php endif; ?>
48
+ <?php endif; ?>
49
+ </td>
50
+ <td>
51
+ <h2 class="product-name">
52
+ <?php if ($this->hasProductUrl()):?>
53
+ <a href="<?php echo $this->getProductUrl() ?>"><?php echo $this->htmlEscape($this->getProductName()) ?></a>
54
+ <?php else: ?>
55
+ <?php echo $this->htmlEscape($this->getProductName()) ?>
56
+ <?php endif; ?>
57
+ </h2>
58
+ <?php if ($_options = $this->getOptionList()):?>
59
+ <dl class="item-options">
60
+ <?php foreach ($_options as $_option) : ?>
61
+ <?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
62
+ <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
63
+ <dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>><?php echo $_formatedOptionValue['value'] ?>
64
+ <?php if (isset($_formatedOptionValue['full_view'])): ?>
65
+ <div class="truncated_full_value">
66
+ <dl class="item-options">
67
+ <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
68
+ <dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
69
+ </dl>
70
+ </div>
71
+ <?php endif; ?>
72
+ </dd>
73
+ <?php endforeach; ?>
74
+ </dl>
75
+ <?php endif;?>
76
+ <?php if ($messages = $this->getMessages()): ?>
77
+ <?php foreach ($messages as $message): ?>
78
+ <p class="item-msg <?php echo $message['type'] ?>">* <?php echo $message['text'] ?></p>
79
+ <?php endforeach; ?>
80
+ <?php endif; ?>
81
+ <?php if ($addtInfoBlock = $this->getProductAdditionalInformationBlock()):?>
82
+ <?php echo $addtInfoBlock->setItem($_item)->toHtml() ?>
83
+ <?php endif;?>
84
+ </td>
85
+ <td class="a-center">
86
+ <?php if ($isVisibleProduct): ?>
87
+ <a href="<?php echo $this->getConfigureUrl() ?>" title="<?php echo $this->__('Edit item parameters') ?>"><?php echo $this->__('Edit') ?></a>
88
+ <?php endif ?>
89
+ </td>
90
+ <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
91
+ <td class="a-center">
92
+ <?php if ($isVisibleProduct): ?>
93
+ <input type="checkbox" value="1" name="cart[<?php echo $_item->getId() ?>][wishlist]" title="<?php echo $this->__('Move to Wishlist') ?>" class="checkbox" />
94
+ <?php endif ?>
95
+ </td>
96
+ <?php endif ?>
97
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
98
+ <td class="a-right">
99
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
100
+ <span class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
101
+ <?php else: ?>
102
+ <span class="cart-price">
103
+ <?php endif; ?>
104
+
105
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
106
+ <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?>
107
+ <?php else: ?>
108
+ <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
109
+ <?php endif; ?>
110
+
111
+ </span>
112
+
113
+
114
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
115
+
116
+ <div class="cart-tax-info" id="eunit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
117
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
118
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
119
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span>
120
+ <?php endforeach; ?>
121
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
122
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
123
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
124
+ <?php endforeach; ?>
125
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
126
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
127
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
128
+ <?php endforeach; ?>
129
+ <?php endif; ?>
130
+ </div>
131
+
132
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
133
+ <div class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
134
+ <span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?></span>
135
+ </div>
136
+ <?php endif; ?>
137
+ <?php endif; ?>
138
+ </td>
139
+ <?php endif; ?>
140
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
141
+ <td>
142
+ <?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?>
143
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
144
+ <span class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
145
+ <?php else: ?>
146
+ <span class="cart-price">
147
+ <?php endif; ?>
148
+
149
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
150
+ <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?>
151
+ <?php else: ?>
152
+ <?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxDisposition()) ?>
153
+ <?php endif; ?>
154
+
155
+ </span>
156
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
157
+
158
+ <div class="cart-tax-info" id="unit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
159
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
160
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
161
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span>
162
+ <?php endforeach; ?>
163
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
164
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
165
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
166
+ <?php endforeach; ?>
167
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
168
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
169
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
170
+ <?php endforeach; ?>
171
+ <?php endif; ?>
172
+ </div>
173
+
174
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
175
+ <div class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
176
+ <span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>: <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?></span>
177
+ </div>
178
+ <?php endif; ?>
179
+ <?php endif; ?>
180
+ </td>
181
+ <?php endif; ?>
182
+ <td class="a-center">
183
+ <input name="cart[<?php echo $_item->getId() ?>][qty]" value="<?php echo $this->getQty() ?>" size="4" title="<?php echo $this->__('Qty') ?>" class="input-text qty" maxlength="12" />
184
+ </td>
185
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
186
+ <td class="a-right">
187
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
188
+ <span class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
189
+ <?php else: ?>
190
+ <span class="cart-price">
191
+ <?php endif; ?>
192
+
193
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
194
+ <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?>
195
+ <?php else: ?>
196
+ <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
197
+ <?php endif; ?>
198
+
199
+ </span>
200
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
201
+
202
+ <div class="cart-tax-info" id="esubtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
203
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
204
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
205
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span>
206
+ <?php endforeach; ?>
207
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
208
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
209
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
210
+ <?php endforeach; ?>
211
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
212
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
213
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
214
+ <?php endforeach; ?>
215
+ <?php endif; ?>
216
+ </div>
217
+
218
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
219
+ <div class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
220
+ <span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?></span>
221
+ </div>
222
+ <?php endif; ?>
223
+ <?php endif; ?>
224
+ </td>
225
+ <?php endif; ?>
226
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
227
+ <td>
228
+ <?php $_incl = $this->helper('checkout')->getSubtotalInclTax($_item); ?>
229
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
230
+ <span class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
231
+ <?php else: ?>
232
+ <span class="cart-price">
233
+ <?php endif; ?>
234
+
235
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
236
+ <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedRowAmount()); ?>
237
+ <?php else: ?>
238
+ <?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxRowDisposition()) ?>
239
+ <?php endif; ?>
240
+
241
+ </span>
242
+
243
+
244
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
245
+
246
+ <div class="cart-tax-info" id="subtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
247
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
248
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
249
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span>
250
+ <?php endforeach; ?>
251
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
252
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
253
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
254
+ <?php endforeach; ?>
255
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
256
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
257
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
258
+ <?php endforeach; ?>
259
+ <?php endif; ?>
260
+ </div>
261
+
262
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
263
+ <div class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
264
+ <span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>: <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedRowAmount()); ?></span>
265
+ </div>
266
+ <?php endif; ?>
267
+ <?php endif; ?>
268
+ </td>
269
+ <?php endif; ?>
270
+ <td class="a-center"><a href="<?php echo $this->getDeleteUrl()?>" title="<?php echo $this->__('Remove item')?>" class="btn-remove btn-remove2"><?php echo $this->__('Remove item')?></a></td>
271
  </tr>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Print_Science_Designer_Web_to_Print</name>
4
- <version>1.0.11</version>
5
  <stability>stable</stability>
6
  <license>OSL v3.0</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Print_Science_Designer_Web_to_Print</description>
11
  <notes>Print_Science_Designer_Web_to_Print</notes>
12
  <authors><author><name>John Weissberg</name><user>johnwwweissberg</user><email>jw@print-science.com</email></author></authors>
13
- <date>2013-04-11</date>
14
- <time>16:44:38</time>
15
- <contents><target name="magelocal"><dir name="PrintScience"><dir name="Personalization"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Items"><file name="Renderer.php" hash="e9a0dcb549311ea6f4e3992bbc9a4b5c"/></dir></dir></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="df8e92bcf833f62324a47cb0af298e1c"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="c179538b05ea6c4a57f7193c1c8e225b"/><file name="Order.php" hash="ba50cbfb5f647cbca2deae91153db9b7"/><file name="Output.php" hash="850a4a708a2dd67a5f3f71ee93087740"/><file name="Quote.php" hash="d14fbe62e2a96e4aede13082c16dda30"/><file name="Session.php" hash="0236f26208780df75ca780d40edbe351"/></dir><dir name="Model"><dir name="ApiGateway"><dir name="Response"><file name="Abstract.php" hash="66667fce4c92782faf1d1a92f4c3e339"/><file name="Begin.php" hash="451d64c86ef6aa542ae7cf5949b1b627"/><file name="GetPreview.php" hash="5801403f4c511aa0a97b8273a712e407"/></dir></dir><file name="ApiGateway.php" hash="1893c8252ac1eb4f877da99d5aa81d65"/><file name="Observer.php" hash="eb7b131c876983ff28cbaee0c0022794"/><dir name="Override"><dir name="Checkout"><file name="Cart.php" hash="ccece0a4e9fffd6d4b7f1b1a8a97dbd3"/></dir><dir name="Sales"><file name="Quote.php" hash="58083e79ec32db5ea22e0fa61f3a4bd7"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="0b1f152cf26c58a92efe4165dc9b3803"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="ApiUrl.php" hash="34eb488ef178104966397f425625534d"/></dir><dir name="Source"><file name="ApiVersion.php" hash="e0248a29ebc88171b7fb51bdbabaca8b"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="e72c45efac84a7dbeb5a36a025dd06df"/></dir><dir name="etc"><file name="config.xml" hash="91cc7650d50ceb4992bca18ed986d72e"/><file name="system.xml" hash="664e6c7cebbf88cfb17881907bc16826"/></dir><dir name="sql"><dir name="printscience_personalization_setup"><file name="mysql4-install-1.0.3.php" hash="7895f0369177cb6dab9911d7820647b4"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="d952675034fdd05650ef978dccbc05fd"/><file name="mysql4-upgrade-1.0.8-1.0.9.php" hash="2e7cd11df78d3742d95f5264a2f34f07"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="PrintScience_Personalization.xml" hash="5f5c39c5b01e828137125d057d04a655"/></dir></target><target name="magelib"><dir name="xmlrpc"><file name="xmlrpc.inc" hash="55ecb2a9f7fc20d53a7b4da9d885e26b"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="PrintScience_Personalization.csv" hash="fc8365124f21bddca4dfac3d3dbf5b7f"/></dir></dir></target><target name="mage"><dir name="js"><dir name="printscience_personalization"><file name="gallery.css" hash="eccacd49a35d68ef25bc1bf8e292fe98"/><file name="gallery.js" hash="d1ce93b3cf8ef950fef1097636f3205e"/><dir name="jquery"><dir name="fancybox"><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="4638ce99ef00cf62bfb22d230f9924b8"/><file name="jquery.fancybox-1.3.4.pack.js" hash="8bc36a08c46719377528d962966ce37c"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="3b0a821567b463e70bcc1e90ed2bc9b6"/></dir><file name="jquery-1.4.2.min.js" hash="b80a2154ce061c8242031d9a4892c5a6"/><dir name="jquery.cycle"><file name="jquery.cycle.lite.min.js" hash="0c4a7571c05a6ada90b93e826e7f9f6e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="printscience_personalization.xml" hash="02bbc420d579eceee5b83b3fb41a73af"/></dir><dir name="template"><dir name="printscience_personalization"><dir name="sales"><dir name="order"><dir name="view"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="5b6bcdd9bd94afda867429707dd786d3"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="printscience_personalization.xml" hash="8aaf99ddb5b8f918413fc861ff7c6036"/></dir><dir name="template"><dir name="printscience_personalization"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="ed9facdc48754e923c89b206003abe8a"/><dir name="view"><file name="addtocart.phtml" hash="c46ece2a25fa12658938f3f2be6a6790"/><file name="media.phtml" hash="c1350af91c896b3a621a4ddc9bb9e219"/></dir></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="100d84ebfa362f73af66a6e12fa3cb83"/></dir></dir></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>Print_Science_Designer_Web_to_Print</name>
4
+ <version>1.0.12</version>
5
  <stability>stable</stability>
6
  <license>OSL v3.0</license>
7
  <channel>community</channel>
10
  <description>Print_Science_Designer_Web_to_Print</description>
11
  <notes>Print_Science_Designer_Web_to_Print</notes>
12
  <authors><author><name>John Weissberg</name><user>johnwwweissberg</user><email>jw@print-science.com</email></author></authors>
13
+ <date>2013-09-19</date>
14
+ <time>06:59:00</time>
15
+ <contents><target name="magelocal"><dir name="PrintScience"><dir name="Personalization"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Items"><file name="Renderer.php" hash="e9a0dcb549311ea6f4e3992bbc9a4b5c"/></dir></dir></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="ed6e20240327913534ae3d93debe5101"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="cd3c2c919469c3ad244bb412892a7462"/><file name="Order.php" hash="ba50cbfb5f647cbca2deae91153db9b7"/><file name="Output.php" hash="cc6f4eccaff419490bc8cccbf45b6b45"/><file name="Quote.php" hash="d14fbe62e2a96e4aede13082c16dda30"/><file name="Session.php" hash="0236f26208780df75ca780d40edbe351"/></dir><dir name="Model"><dir name="ApiGateway"><dir name="Response"><file name="Abstract.php" hash="66667fce4c92782faf1d1a92f4c3e339"/><file name="Begin.php" hash="451d64c86ef6aa542ae7cf5949b1b627"/><file name="GetPreview.php" hash="5801403f4c511aa0a97b8273a712e407"/></dir></dir><file name="ApiGateway.php" hash="1893c8252ac1eb4f877da99d5aa81d65"/><file name="Observer.php" hash="8aff4eadf568df85125ec2340599e720"/><dir name="Override"><dir name="Checkout"><file name="Cart.php" hash="ccece0a4e9fffd6d4b7f1b1a8a97dbd3"/></dir><dir name="Sales"><file name="Quote.php" hash="58083e79ec32db5ea22e0fa61f3a4bd7"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="0b1f152cf26c58a92efe4165dc9b3803"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="ApiUrl.php" hash="34eb488ef178104966397f425625534d"/></dir><dir name="Source"><file name="ApiVersion.php" hash="e0248a29ebc88171b7fb51bdbabaca8b"/><file name="WindowType.php" hash="1af16df72f4fcfe959f6f091cd2f6821"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="c266982327554278526fc2bc02fa2820"/></dir><dir name="etc"><file name="config.xml" hash="7a9b44ccba53ebec65d1aef4ba47f1c2"/><file name="system.xml" hash="ea5d1935373ddfef8935d5cd26c53066"/></dir><dir name="sql"><dir name="printscience_personalization_setup"><file name="mysql4-install-1.0.3.php" hash="7895f0369177cb6dab9911d7820647b4"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="d952675034fdd05650ef978dccbc05fd"/><file name="mysql4-upgrade-1.0.8-1.0.9.php" hash="2e7cd11df78d3742d95f5264a2f34f07"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="printscience_personalization.xml" hash="d0934cc5cfaca9e2d6c687f2fb866943"/></dir><dir name="template"><dir name="printscience_personalization"><dir name="sales"><dir name="order"><dir name="view"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="5b6bcdd9bd94afda867429707dd786d3"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="printscience_personalization.xml" hash="c5cd5cf8e4a4e8b715224e9081d0bb6d"/></dir><dir name="template"><dir name="printscience_personalization"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="df34148e4bf01000bb445a02e887b8a6"/><dir name="view"><file name="addtocart.phtml" hash="ee0af223cca8c873492e2e9624953879"/><file name="media.phtml" hash="c1350af91c896b3a621a4ddc9bb9e219"/></dir><file name="view.phtml" hash="bc39bfa989142e868f2283476c767c2a"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="f36d9b822f54a543fcbcc7af06326379"/></dir></dir><file name="cart.phtml" hash="e89ff28600d85d6ecaa4ef2254c6852b"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="PrintScience_Personalization.xml" hash="5f5c39c5b01e828137125d057d04a655"/></dir></target><target name="magelocale"><dir name="en_US"><file name="PrintScience_Personalization.csv" hash="fc8365124f21bddca4dfac3d3dbf5b7f"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="printscience_personalization"><file name="jquery-1.7.2.min.js" hash="acc0adc6c188845a409bf158d2de4451"/><file name="modalPopLite.css" hash="32dc2c9142fff0c6221c62e3f95b8275"/><file name="modalPopLite.min.js" hash="255d501be44d6c7ac54aa4226d1ce314"/></dir></dir></dir></dir></target><target name="magelib"><dir name="xmlrpc"><file name="xmlrpc.inc" hash="55ecb2a9f7fc20d53a7b4da9d885e26b"/></dir></target><target name="mage"><dir name="js"><dir name="printscience_personalization"><file name="gallery.css" hash="eccacd49a35d68ef25bc1bf8e292fe98"/><file name="gallery.js" hash="d1ce93b3cf8ef950fef1097636f3205e"/><dir name="jquery"><dir name="fancybox"><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="4638ce99ef00cf62bfb22d230f9924b8"/><file name="jquery.fancybox-1.3.4.pack.js" hash="8bc36a08c46719377528d962966ce37c"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="3b0a821567b463e70bcc1e90ed2bc9b6"/></dir><file name="jquery-1.4.2.min.js" hash="b80a2154ce061c8242031d9a4892c5a6"/><dir name="jquery.cycle"><file name="jquery.cycle.lite.min.js" hash="0c4a7571c05a6ada90b93e826e7f9f6e"/></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/base/default/printscience_personalization/jquery-1.7.2.min.js ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ /*! jQuery v1.7.2 jquery.com | jquery.org/license */
2
+ (function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cu(a){if(!cj[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"<!doctype html>":"")+"<html><body>"),cl.close();d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function ca(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function b_(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bD.test(a)?d(a,e):b_(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&f.type(b)==="object")for(var e in b)b_(a+"["+e+"]",b[e],c,d);else d(a,b)}function b$(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function bZ(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bS,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bZ(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bZ(a,c,d,e,"*",g));return l}function bY(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bO),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bB(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?1:0,g=4;if(d>0){if(c!=="border")for(;e<g;e+=2)c||(d-=parseFloat(f.css(a,"padding"+bx[e]))||0),c==="margin"?d+=parseFloat(f.css(a,c+bx[e]))||0:d-=parseFloat(f.css(a,"border"+bx[e]+"Width"))||0;return d+"px"}d=by(a,b);if(d<0||d==null)d=a.style[b];if(bt.test(d))return d;d=parseFloat(d)||0;if(c)for(;e<g;e+=2)d+=parseFloat(f.css(a,"padding"+bx[e]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+bx[e]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+bx[e]))||0);return d+"px"}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;b.nodeType===1&&(b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?b.outerHTML=a.outerHTML:c!=="input"||a.type!=="checkbox"&&a.type!=="radio"?c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text):(a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value)),b.removeAttribute(f.expando),b.removeAttribute("_submit_attached"),b.removeAttribute("_change_attached"))}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c,i[c][d])}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?+d:j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c)return null;var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h,i){var j,k=d==null,l=0,m=a.length;if(d&&typeof d=="object"){for(l in d)e.access(a,c,l,d[l],1,h,f);g=1}else if(f!==b){j=i===b&&e.isFunction(f),k&&(j?(j=c,c=function(a,b,c){return j.call(e(a),c)}):(c.call(a,f),c=null));if(c)for(;l<m;l++)c(a[l],d,j?f.call(a[l],l,c(a[l],d)):f,i);g=1}return g?a:k?c.call(a):m?c(a[0],d):h},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m,n=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?n(g):h==="function"&&(!a.unique||!p.has(g))&&c.push(g)},o=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,j=!0,m=k||0,k=0,l=c.length;for(;c&&m<l;m++)if(c[m].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}j=!1,c&&(a.once?e===!0?p.disable():c=[]:d&&d.length&&(e=d.shift(),p.fireWith(e[0],e[1])))},p={add:function(){if(c){var a=c.length;n(arguments),j?l=c.length:e&&e!==!0&&(k=a,o(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){j&&f<=l&&(l--,f<=m&&m--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&p.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(j?a.once||d.push([b,c]):(!a.once||!e)&&o(b,c));return this},fire:function(){p.fireWith(this,arguments);return this},fired:function(){return!!i}};return p};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p=c.createElement("div"),q=c.documentElement;p.setAttribute("className","t"),p.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent)for(n in{submit:1,change:1,focusin:1})m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o;j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="<div "+n+"display:block;'><div style='"+t+"0;display:block;overflow:hidden;'></div></div>"+"<table "+n+"' cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="<table><tr><td style='"+t+"0;display:none'></td><td>t</td></tr></table>",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="<div style='width:5px;'></div>",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h,i,j=this[0],k=0,m=null;if(a===b){if(this.length){m=f.data(j);if(j.nodeType===1&&!f._data(j,"parsedAttrs")){g=j.attributes;for(i=g.length;k<i;k++)h=g[k].name,h.indexOf("data-")===0&&(h=f.camelCase(h.substring(5)),l(j,h,m[h]));f._data(j,"parsedAttrs",!0)}}return m}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!";return f.access(this,function(c){if(c===b){m=this.triggerHandler("getData"+e,[d[0]]),m===b&&j&&(m=f.data(j,a),m=l(j,a,m));return m===b&&d[1]?this.data(d[0]):m}d[1]=c,this.each(function(){var b=f(this);b.triggerHandler("setData"+e,d),f.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length<d)return f.queue(this[0],a);return c===b?this:this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise(c)}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,f.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i<g;i++)e=d[i],e&&(c=f.propFix[e]||e,h=u.test(e),h||f.attr(a,e,""),a.removeAttribute(v?e:c),h&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0,coords:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(
3
+ a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler,g=p.selector),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:g&&G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=f.event.special[c.type]||{},j=[],k,l,m,n,o,p,q,r,s,t,u;g[0]=c,c.delegateTarget=this;if(!i.preDispatch||i.preDispatch.call(this,c)!==!1){if(e&&(!c.button||c.type!=="click")){n=f(this),n.context=this.ownerDocument||this;for(m=c.target;m!=this;m=m.parentNode||this)if(m.disabled!==!0){p={},r=[],n[0]=m;for(k=0;k<e;k++)s=d[k],t=s.selector,p[t]===b&&(p[t]=s.quick?H(m,s.quick):n.is(t)),p[t]&&r.push(s);r.length&&j.push({elem:m,matches:r})}}d.length>e&&j.push({elem:this,matches:d.slice(e)});for(k=0;k<j.length&&!c.isPropagationStopped();k++){q=j[k],c.currentTarget=q.elem;for(l=0;l<q.matches.length&&!c.isImmediatePropagationStopped();l++){s=q.matches[l];if(h||!c.namespace&&!s.namespace||c.namespace_re&&c.namespace_re.test(s.namespace))c.data=s.data,c.handleObj=s,o=((f.event.special[s.origType]||{}).handle||s.handler).apply(q.elem,g),o!==b&&(c.result=o,o===!1&&(c.preventDefault(),c.stopPropagation()))}}i.postDispatch&&i.postDispatch.call(this,c);return c.result}},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),d._submit_attached=!0)})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9||d===11){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));o.match.globalPOS=p;var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.globalPOS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")[\\s/>]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f
4
+ .clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(f.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(g){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,function(a,b){b.src?f.ajax({type:"GET",global:!1,url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l)continue;if(typeof l=="string")if(!_.test(l))l=b.createTextNode(l);else{l=l.replace(Y,"<$1></$2>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--)p=p.lastChild;if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]==="<table>"&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i<u;i++)bn(l[i]);else bn(l);l.nodeType?j.push(l):j=f.merge(j,l)}if(d){g=function(a){return!a.type||be.test(a.type)};for(k=0;j[k];k++){h=j[k];if(e&&f.nodeName(h,"script")&&(!h.type||be.test(h.type)))e.push(h.parentNode?h.parentNode.removeChild(h):h);else{if(h.nodeType===1){var v=f.grep(h.getElementsByTagName("script"),g);j.splice.apply(j,[k+1,0].concat(v))}d.appendChild(h)}}}return j},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bp=/alpha\([^)]*\)/i,bq=/opacity=([^)]*)/,br=/([A-Z]|^ms)/g,bs=/^[\-+]?(?:\d*\.)?\d+$/i,bt=/^-?(?:\d*\.)?\d+(?!px)[^\d\s]+$/i,bu=/^([\-+])=([\-+.\de]+)/,bv=/^margin/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Top","Right","Bottom","Left"],by,bz,bA;f.fn.css=function(a,c){return f.access(this,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)},a,c,arguments.length>1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR)return bR.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bZ(bT,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(ct("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),(e===""&&f.css(d,"display")==="none"||!f.contains(d.ownerDocument.documentElement,d))&&f._data(d,"olddisplay",cu(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(ct("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(ct("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o,p,q;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]);if((k=f.cssHooks[g])&&"expand"in k){l=k.expand(a[g]),delete a[g];for(i in l)i in a||(a[i]=l[i])}}for(g in a){h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cu(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cm.test(h)?(q=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),q?(f._data(this,"toggle"+i,q==="show"?"hide":"show"),j[q]()):j[h]()):(m=cn.exec(h),n=j.cur(),m?(o=parseFloat(m[2]),p=m[3]||(f.cssNumber[i]?"":"px"),p!=="px"&&(f.style(this,i,(o||1)+p),n=(o||1)/j.cur()*n,f.style(this,i,n+p)),m[1]&&(o=(m[1]==="-="?-1:1)*o+n),j.custom(n,o,p)):j.custom(n,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:ct("show",1),slideUp:ct("hide",1),slideToggle:ct("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a){return a},swing:function(a){return-Math.cos(a*Math.PI)/2+.5}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cq||cr(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){f._data(e.elem,"fxshow"+e.prop)===b&&(e.options.hide?f._data(e.elem,"fxshow"+e.prop,e.start):e.options.show&&f._data(e.elem,"fxshow"+e.prop,e.end))},h()&&f.timers.push(h)&&!co&&(co=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cq||cr(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(co),co=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(cp.concat.apply([],cp),function(a,b){b.indexOf("margin")&&(f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)})}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cv,cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?cv=function(a,b,c,d){try{d=a.getBoundingClientRect()}catch(e){}if(!d||!f.contains(c,a))return d?{top:d.top,left:d.left}:{top:0,left:0};var g=b.body,h=cy(b),i=c.clientTop||g.clientTop||0,j=c.clientLeft||g.clientLeft||0,k=h.pageYOffset||f.support.boxModel&&c.scrollTop||g.scrollTop,l=h.pageXOffset||f.support.boxModel&&c.scrollLeft||g.scrollLeft,m=d.top+k-i,n=d.left+l-j;return{top:m,left:n}}:cv=function(a,b,c){var d,e=a.offsetParent,g=a,h=b.body,i=b.defaultView,j=i?i.getComputedStyle(a,null):a.currentStyle,k=a.offsetTop,l=a.offsetLeft;while((a=a.parentNode)&&a!==h&&a!==c){if(f.support.fixedPosition&&j.position==="fixed")break;d=i?i.getComputedStyle(a,null):a.currentStyle,k-=a.scrollTop,l-=a.scrollLeft,a===e&&(k+=a.offsetTop,l+=a.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(a.nodeName))&&(k+=parseFloat(d.borderTopWidth)||0,l+=parseFloat(d.borderLeftWidth)||0),g=e,e=a.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&d.overflow!=="visible"&&(k+=parseFloat(d.borderTopWidth)||0,l+=parseFloat(d.borderLeftWidth)||0),j=d}if(j.position==="relative"||j.position==="static")k+=h.offsetTop,l+=h.offsetLeft;f.support.fixedPosition&&j.position==="fixed"&&(k+=Math.max(c.scrollTop,h.scrollTop),l+=Math.max(c.scrollLeft,h.scrollLeft));return{top:k,left:l}},f.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){f.offset.setOffset(this,a,b)});var c=this[0],d=c&&c.ownerDocument;if(!d)return null;if(c===d.body)return f.offset.bodyOffset(c);return cv(c,d,d.documentElement)},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b)return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e];h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e])return i[d];return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);
skin/frontend/base/default/printscience_personalization/modalPopLite.css ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .modalPopLite-mask
2
+ {
3
+ position:fixed;
4
+ z-index:9994;
5
+ background-color:#000;
6
+ display:none;
7
+ top:0px;
8
+ left:0px;
9
+ width:100%;
10
+ }
11
+ .modalPopLite-wrapper
12
+ {
13
+ position:fixed;
14
+ z-index:9995;
15
+ /*display:none;*/
16
+ /*left:-10000px;*/
17
+ -webkit-border-radius: .5em;
18
+ -moz-border-radius: .5em;
19
+ border-radius: .5em;
20
+ -webkit-box-shadow: 0 0px 25px rgba(0,0,0,.9);
21
+ -moz-box-shadow: 0 0px 25px rgba(0,0,0,.9);
22
+ box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
23
+ border: 5px solid #335805;
24
+
25
+ }
26
+
27
+ /* popup */
28
+ .popBox-holder
29
+ {
30
+ display:none;
31
+ position: absolute;
32
+ left: 0px;
33
+ top: 0px;
34
+ width:100%;
35
+ height:100%;
36
+ text-align:center;
37
+ z-index: 999;
38
+ background-color:#000;
39
+ filter:alpha(opacity=40);
40
+ opacity:0.5;
41
+
42
+ }
43
+
44
+ .popBox-container
45
+ {
46
+ display:none;
47
+ background-color: #fff;
48
+ border:4px solid #000;
49
+ padding:10px;
50
+ text-align:center;
51
+ z-index: 1000;
52
+ -webkit-border-radius: .5em;
53
+ -moz-border-radius: .5em;
54
+ border-radius: .5em;
55
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
56
+ -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
57
+ box-shadow: 0 1px 2px rgba(0,0,0,.2);
58
+ }
59
+
60
+ .popBox-container .done-button
61
+ {
62
+ margin-top:10px;
63
+ }
64
+
65
+ .popBox-container .button {
66
+ display: inline-block;
67
+ zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
68
+ *display: inline;
69
+ vertical-align: baseline;
70
+ margin: 0 2px;
71
+ outline: none;
72
+ cursor: pointer;
73
+ text-align: center;
74
+ text-decoration: none;
75
+ font: 14px/100% Arial, Helvetica, sans-serif;
76
+ padding: .5em 2em .55em;
77
+ text-shadow: 0 1px 1px rgba(0,0,0,.3);
78
+ -webkit-border-radius: .5em;
79
+ -moz-border-radius: .5em;
80
+ border-radius: .5em;
81
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
82
+ -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
83
+ box-shadow: 0 1px 2px rgba(0,0,0,.2);
84
+ }
85
+ .popBox-container .button:hover {
86
+ text-decoration: none;
87
+ }
88
+ .popBox-container .button:active {
89
+ position: relative;
90
+ top: 1px;
91
+ }
92
+
93
+ .popBox-container .small {
94
+ font-size: 11px;
95
+ padding: .2em 1em .275em;
96
+ }
97
+ .popBox-container .blue {
98
+ color: #d9eef7;
99
+ border: solid 1px #0076a3;
100
+ background: #0095cd;
101
+ background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
102
+ background: -moz-linear-gradient(top, #00adee, #0078a5);
103
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
104
+ }
105
+ .popBox-container .blue:hover {
106
+ background: #007ead;
107
+ background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
108
+ background: -moz-linear-gradient(top, #0095cc, #00678e);
109
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
110
+ }
111
+ .popBox-container .blue:active {
112
+ color: #80bed6;
113
+ background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
114
+ background: -moz-linear-gradient(top, #0078a5, #00adee);
115
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
116
+ }
117
+
118
+ .popBox-ajax-progress
119
+ {
120
+ position: fixed;
121
+ left: 0px;
122
+ top: 0px;
123
+ width:100%;
124
+ height:100%;
125
+ text-align:center;
126
+ z-index: 99999;
127
+ background-color:#000;
128
+ filter:alpha(opacity=40);
129
+ opacity:0.5;
130
+ background-image: url('ajax-loader.gif');
131
+ background-repeat:no-repeat;
132
+ background-position:center center;
133
+ }
134
+ /* end popup */
135
+
skin/frontend/base/default/printscience_personalization/modalPopLite.min.js ADDED
@@ -0,0 +1,2 @@
 
 
1
+ jQuery.noConflict();
2
+ (function (a) { var b = 0; a.fn.modalPopLite = function (c) { var c = a.extend({}, { openButton: "modalPopLite-open-btn", closeButton: "modalPopLite-close-btn", isModal: false, callBack: null }, c); return this.each(function () { b++; var d = b; var e = false; obj = a(this); triggerObj = c.openButton; closeObj = c.closeButton; isReallyModel = c.isModal; obj.before('<div id="modalPopLite-mask' + d + '" style="width:100%" class="modalPopLite-mask" />'); obj.wrap('<div id="modalPopLite-wrapper' + d + '" style="left: -10000px;" class="modalPopLite-wrapper" />'); obj.addClass("modalPopLite-child-" + d); a(triggerObj).live("click", function (b) { b.preventDefault(); var c = a(window).width(); var f = a(window).height(); var g = a(".modalPopLite-child-" + d).outerWidth(); var h = a(".modalPopLite-child-" + d).outerHeight(); var i = c / 2 - g / 2; var j = f / 2 - h / 2; a("#modalPopLite-mask" + d).css("height", f + "px"); a("#modalPopLite-mask" + d).fadeTo("slow", .6); a("#modalPopLite-wrapper" + d).css({ left: i + "px", top: j }); a("#modalPopLite-wrapper" + d).fadeIn("slow"); e = true }); a(closeObj).live("click", function (b) { b.preventDefault(); a("#modalPopLite-mask" + d).hide(); a("#modalPopLite-wrapper" + d).css("left", "-10000px"); e = false; if (c.callBack != null) { c.callBack.call(this) } }); if (!isReallyModel) { a("#modalPopLite-mask" + d).click(function (b) { b.preventDefault(); a(this).hide(); a("#modalPopLite-wrapper" + d).css("left", "-10000px"); e = false; if (c.callBack != null) { c.callBack.call(this) } }) } a(window).resize(function () { if (e) { var b = a(window).width(); var c = a(window).height(); var f = a(".modalPopLite-child-" + d).outerWidth(); var g = a(".modalPopLite-child-" + d).outerHeight(); var h = b / 2 - f / 2; var i = c / 2 - g / 2; a("#modalPopLite-wrapper" + d).css({ left: h + "px", top: i }) } }) }) }; a.fn.modalPopLite.Close = function (b) { a("#modalPopLite-mask" + b).hide(); a("#modalPopLite-wrapper" + thisPopID).css("left", "-10000px"); if (options.callBack != null) { options.callBack.call(this) } }; a.fn.modalPopLite.ShowProgress = function () { a('<div class="popBox-ajax-progress"></div>').appendTo("body") }; a.fn.modalPopLite.HideProgress = function () { a(".popBox-ajax-progress").remove() } })(jQuery)