Copernica_MarketingSoftware - Version 3.1.3

Version Notes

Release Notes - Copernica - Version 3.1.3

Bug



  • [COPE-211] - Dubbele profielen na sync

  • [COPE-220] - Dubbele profielen

  • [COPE-221] - importeren klanten bestand

  • [COPE-223] - Support Magento - Copernica

  • [COPE-226] - Magento Copernica Pluging

  • [COPE-227] - Issue with Copernica on Magento 1.7



Improvement



  • [COPE-208] - Let CURL handle SSL completely


Download this release

Release Info

Developer Cream
Extension Copernica_MarketingSoftware
Version 3.1.3
Comparing to
See all releases


Code changes from version 3.1.2 to 3.1.3

app/code/community/Copernica/MarketingSoftware/Helper/Rest/Request.php CHANGED
@@ -142,17 +142,7 @@ class Copernica_MarketingSoftware_Helper_Rest_Request
142
  {
143
  $curl = curl_init();
144
 
145
- if (is_null(self::$_cryptoLib)) {
146
- $version = curl_version();
147
-
148
- if (strpos($version['ssl_version'], 'NSS') !== false) {
149
- self::$_cryptoLib = 'nss';
150
- } else {
151
- self::$_cryptoLib = 'openssl';
152
- }
153
- }
154
-
155
- curl_setopt($curl, CURLOPT_SSL_CIPHER_LIST, self::$_cipherList[self::$_cryptoLib]);
156
  curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
157
 
158
  return $curl;
142
  {
143
  $curl = curl_init();
144
 
145
+ // Sometimes ssl gives problems so the verification is off.
 
 
 
 
 
 
 
 
 
 
146
  curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
147
 
148
  return $curl;
app/code/community/Copernica/MarketingSoftware/Model/Abstraction/Quote.php CHANGED
@@ -311,23 +311,6 @@ class Copernica_MarketingSoftware_Model_Abstraction_Quote implements Serializabl
311
  return serialize(array(
312
  $this->id()
313
  ));
314
-
315
- return serialize(array(
316
- $this->id(),
317
- $this->quantity(),
318
- $this->currency(),
319
- $this->timestamp(),
320
- $this->customerIP(),
321
- $this->items(),
322
- $this->storeview(),
323
- is_object($customer = $this->customer()) ? $customer->id() : null,
324
- $this->addresses(),
325
- $this->price(),
326
- $this->weight(),
327
- $this->active(),
328
- $this->shippingDescription(),
329
- $this->paymentDescription()
330
- ));
331
  }
332
 
333
  /**
@@ -346,24 +329,5 @@ class Copernica_MarketingSoftware_Model_Abstraction_Quote implements Serializabl
346
  $this->loadQuote($this->_quoteId);
347
 
348
  return $this;
349
-
350
- list(
351
- $this->_quoteId,
352
- $this->_quantity,
353
- $this->_currency,
354
- $this->_timestamp,
355
- $this->_customerIP,
356
- $this->_items,
357
- $this->_storeview,
358
- $this->_customerId,
359
- $this->_addresses,
360
- $this->_price,
361
- $this->_weight,
362
- $this->_active,
363
- $this->_shippingDescription,
364
- $this->_paymentDescription
365
- ) = unserialize($string);
366
-
367
- return $this;
368
  }
369
  }
311
  return serialize(array(
312
  $this->id()
313
  ));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  }
315
 
316
  /**
329
  $this->loadQuote($this->_quoteId);
330
 
331
  return $this;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
  }
333
  }
app/code/community/Copernica/MarketingSoftware/Model/Copernica/Entity/Order/Item.php CHANGED
@@ -123,7 +123,7 @@ class Copernica_MarketingSoftware_Model_Copernica_Entity_Order_Item extends Cope
123
  if ($this->_orderItem->getQuote()) {
124
  return $this->_orderItem->getQuote()->getStoreId();
125
  } else {
126
- return Mage::getModel('sales/quote')->load($this->_orderItem->getQuoteId())->getStoreId();
127
  }
128
  } elseif ($this->_orderItem instanceof Mage_Sales_Model_Order_Item) {
129
  return $this->_orderItem->getOrder()->getStoreId();
123
  if ($this->_orderItem->getQuote()) {
124
  return $this->_orderItem->getQuote()->getStoreId();
125
  } else {
126
+ return Mage::getModel('sales/quote')->loadByIdWithoutStore($this->_orderItem->getQuoteId())->getStoreId();
127
  }
128
  } elseif ($this->_orderItem instanceof Mage_Sales_Model_Order_Item) {
129
  return $this->_orderItem->getOrder()->getStoreId();
app/code/community/Copernica/MarketingSoftware/Model/Queue/Event/Subscription.php CHANGED
@@ -26,11 +26,11 @@ class Copernica_MarketingSoftware_Model_Queue_Event_Subscription extends Coperni
26
 
27
  $profileLinkedFields = Mage::helper('marketingsoftware/config')->getLinkedCustomerFields();
28
 
29
- if (!$object->email && !$object->store_id) {
30
  return false;
31
  }
32
 
33
- $store = Mage::getModel('core/store')->load($object->store_id);
34
  $website = $store->getWebsite();
35
  $group = $store->getGroup();
36
 
26
 
27
  $profileLinkedFields = Mage::helper('marketingsoftware/config')->getLinkedCustomerFields();
28
 
29
+ if (!$object->email && !$object->storeId) {
30
  return false;
31
  }
32
 
33
+ $store = Mage::getModel('core/store')->load($object->storeId);
34
  $website = $store->getWebsite();
35
  $group = $store->getGroup();
36
 
app/code/community/Copernica/MarketingSoftware/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Copernica_MarketingSoftware>
5
- <version>3.1.2</version>
6
  </Copernica_MarketingSoftware>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Copernica_MarketingSoftware>
5
+ <version>3.1.3</version>
6
  </Copernica_MarketingSoftware>
7
  </modules>
8
  <global>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Copernica_MarketingSoftware</name>
4
- <version>3.1.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
@@ -10,28 +10,37 @@
10
  <description>When you install the integration, all contact, order and shop cart data from Magento will be automatically synchronized and stored in Copernica. By synchronizing data between your Magento webshop and Copernica, you are able to set up targeted email campaigns. For example you can consider emailing customers with abandoned shopcarts automatically every week. Your contacts will only receive information relevant to them, which will make them come back to your shop time and again. The available integration is also compatible with the Magento Enterprise edition.&#xD;
11
  &#xD;
12
  Please note that this extension does not work with PHP 5.4.X. and should be run with the Magento system requirements in mind.</description>
13
- <notes> Release Notes - Copernica - Version 3.1.2&#xD;
 
14
  &#xD;
15
  &lt;h2&gt; Bug&#xD;
16
  &lt;/h2&gt;&#xD;
17
  &lt;ul&gt;&#xD;
18
- &lt;li&gt;[&lt;a href='http://support.cream.nl/browse/COPE-213'&gt;COPE-213&lt;/a&gt;] - Copernica sync valt stil&#xD;
19
  &lt;/li&gt;&#xD;
20
- &lt;li&gt;[&lt;a href='http://support.cream.nl/browse/COPE-215'&gt;COPE-215&lt;/a&gt;] - Foutmelding bij synchroniseren&#xD;
 
 
 
 
 
 
 
 
21
  &lt;/li&gt;&#xD;
22
  &lt;/ul&gt;&#xD;
23
  &#xD;
24
  &lt;h2&gt; Improvement&#xD;
25
  &lt;/h2&gt;&#xD;
26
  &lt;ul&gt;&#xD;
27
- &lt;li&gt;[&lt;a href='http://support.cream.nl/browse/COPE-208'&gt;COPE-208&lt;/a&gt;] - Let CURL handle SSL completely&#xD;
28
  &lt;/li&gt;&#xD;
29
  &lt;/ul&gt;&#xD;
30
  </notes>
31
  <authors><author><name>Cream</name><user>creaminternet</user><email>info@cream.nl</email></author></authors>
32
- <date>2015-03-12</date>
33
- <time>23:05:32</time>
34
- <contents><target name="magecommunity"><dir name="Copernica"><dir name="MarketingSoftware"><dir name="Block"><dir name="Adminhtml"><dir name="Marketingsoftware"><file name="Accesstoken.php" hash="2196942b0b6c6727854e360126831a41"/><file name="Export.php" hash="a8a1203c12602345f9b3dd249ec77216"/><file name="Link.php" hash="4be8ea5a022ab5ab705862ce3d74b9ad"/><file name="Settings.php" hash="f18848ba6a75106d8bf6863c0a91dc80"/><file name="Sync.php" hash="10191fd99632e43a2df9b9372a487280"/></dir></dir></dir><dir name="Controller"><file name="Action.php" hash="8c89215b082dbf0e68ff8454d1e0eca9"/></dir><file name="Exception.php" hash="5be0f3715157b3b05c9471a1aeef75d1"/><dir name="Helper"><dir name="Api"><file name="Abstract.php" hash="f4d61c76a1659eda7456fcf180884408"/><file name="Builder.php" hash="200daf757d512f2844e98463f564e3e0"/><file name="Validator.php" hash="e9c81cbbf6c147ca0b8437d3d10f8c46"/></dir><file name="Api.php" hash="71e4c4c9d1a4dcf62d03170a7d4dd66a"/><file name="Config.php" hash="6cdf2bf007ac35d11718ab1080e24764"/><file name="Data.php" hash="5ee3dc0e876edfa560a00f859e465b15"/><file name="DataWriter.php" hash="562cd6afe278dd8200a025d74a7cd1e1"/><file name="Profile.php" hash="8f1375c1a2a49176bbf4390f24a6d8c3"/><dir name="Rest"><file name="Request.php" hash="4230d69607d84a934b31623d4d551d41"/></dir></dir><dir name="Model"><dir name="Abandoned"><file name="Cart.php" hash="e9f9b0e533a3c96c45fb079ae5344d7a"/><dir name="Carts"><file name="Processor.php" hash="bf88d2983fd7896c306fe5977a51f7fa"/></dir></dir><dir name="Abstraction"><file name="Address.php" hash="6d9cc361b47f54c60055a1b4c1416124"/><file name="Attributes.php" hash="1302fd4317be556d9b4b57a4d7ceed48"/><file name="Customer.php" hash="02f7134f354c2480f90a1f32a4d8c983"/><file name="Name.php" hash="fccb94d66e34f8d68cdf2db34ff983ff"/><dir name="Order"><dir name="Item"><file name="Options.php" hash="d1bb9f5b2532e4030a8dd33742d9650c"/></dir><file name="Item.php" hash="337fc33a3919986b8f404c8b639ee2fe"/></dir><file name="Order.php" hash="f41d297c3642fb0cef10ca73cc3a79bb"/><file name="Price.php" hash="bd3ae9dd656754b664bf0ab94cdafb26"/><dir name="Product"><file name="Viewed.php" hash="e807df800b2310f3a815c50daa397a59"/></dir><file name="Product.php" hash="5f9e28f1b7f3923923cc7fd80198a560"/><dir name="Quote"><dir name="Item"><file name="Options.php" hash="c789c20cd4664ec9faaeccb44bdcfa35"/></dir><file name="Item.php" hash="e24c78fbe4b6e251eb94c8358aca3168"/></dir><file name="Quote.php" hash="0d9aa047cf263304efb9c1450843dc54"/><file name="Storeview.php" hash="427880472097a9eaa5a6ecf801b2e535"/><file name="Subscription.php" hash="e09b421f41d4fb00fb083b50660a6190"/><dir name="Wishlist"><dir name="Item"><file name="Options.php" hash="850fa07b6c8f82958ca6ef2350a7bc5e"/></dir><file name="Item.php" hash="f5266fc0c4bbb1ba3b09fd75ad6e3b6b"/></dir><file name="Wishlist.php" hash="d02da3380379403f6ef9a0bcd83bd3c6"/></dir><file name="Config.php" hash="f9b93ad167d7d2d34759f1d2aeca251d"/><dir name="Copernica"><file name="Abstract.php" hash="e43e91e8d3a7c31cca75b0a11fe396d4"/><dir name="Address"><file name="Subprofile.php" hash="8da47fe822c3c67998d082afb798eb4b"/></dir><dir name="Entity"><file name="Address.php" hash="1d8114c82978f516b4ebbb8aad81c4ed"/><file name="Customer.php" hash="061b3a8adf62b0eb42800be5507995ab"/><dir name="Order"><file name="Item.php" hash="a36f422cca382021eae5dcfbb4cc7679"/></dir><file name="Order.php" hash="159aeca86326bf456cc7d352467a7f68"/><file name="Product.php" hash="dca88a160907b84c200fdb6df002fc82"/><dir name="Quote"><file name="Item.php" hash="79d353ab6e150e21b7967c5795f4b28a"/></dir><file name="Quote.php" hash="0060a8d576f0d14b63f3017db7cc1a6d"/><file name="Subscription.php" hash="bf3cb5ae41b45d653415f1c06af0f407"/><dir name="Wishlist"><file name="Item.php" hash="214f22f4b07b8614007371301cf435ed"/></dir><file name="Wishlist.php" hash="200e2b74fd97bc878b00bb7c1bf24002"/></dir><file name="Entity.php" hash="e74a89d1bf00dfcb5454122df437c633"/><dir name="Order"><file name="Subprofile.php" hash="4799f8ab8b2c47298b0c472483699a29"/></dir><dir name="Orderitem"><file name="Subprofile.php" hash="09b122fcbeae65efa99c650882dc2a04"/></dir><dir name="Product"><dir name="Viewed"><file name="Subprofile.php" hash="477b56cc538a8bb4433efca30182381d"/></dir></dir><dir name="Profile"><file name="Customer.php" hash="2641a5303861472199310df5e9744b94"/><file name="Order.php" hash="26c091f3cb789d5785371950084252b7"/><file name="Quote.php" hash="4b92449c77cce625640ef92e4d8e0204"/><file name="Subscription.php" hash="cda9cea09add3504d085c046ac2b4b72"/></dir><file name="Profile.php" hash="dd4f415edd5cd5f6706461e432096d96"/><dir name="Quote"><dir name="Item"><file name="Subprofile.php" hash="1c338be576cfd9cde1d653be5e0fbaf9"/></dir></dir><dir name="Wishlist"><dir name="Item"><file name="Subprofile.php" hash="93eb9a0fdb23aedf75cd7dd0d3893385"/></dir></dir></dir><dir name="Error"><file name="Queue.php" hash="d6c8d9d5e552242f18a1829a91413760"/></dir><dir name="Mysql4"><dir name="Abandoned"><dir name="Cart"><file name="Collection.php" hash="b754475b97a81e5a3bd729eb767ccc1f"/></dir><file name="Cart.php" hash="d53d4bd5cabce576ea7ebb65389cdbca"/></dir><dir name="Config"><file name="Collection.php" hash="522757300fdf26a7964e7047c7a6504b"/></dir><file name="Config.php" hash="ab9bc864339624019f060a1f1c3e491b"/><dir name="Error"><dir name="Queue"><file name="Collection.php" hash="4932afd4111bd61e8801f906b142bb5b"/></dir><file name="Queue.php" hash="6b9b915a4b97380d0a1e684b3e6a24ae"/></dir><dir name="Profile"><dir name="Cache"><file name="Collection.php" hash="abbad62cfb50930fcca472456ce4f502"/></dir><file name="Cache.php" hash="e2f6b69236a65dd84aeac3a43e69e9a7"/></dir><dir name="Queue"><dir name="Item"><file name="Collection.php" hash="fd2470afdd7f6e4d6fdd54796c34913d"/></dir><file name="Item.php" hash="e995226766fbf7bf90dbcd51f26a9e35"/></dir><dir name="Sync"><dir name="Profile"><file name="Collection.php" hash="9c533a3547afa689e56c6088d5718e27"/></dir><file name="Profile.php" hash="970a87f955107d2d7149dd3c6b1d526a"/></dir></dir><file name="Observer.php" hash="721d5f673d0900e8e13c88a54045bc53"/><dir name="Profile"><file name="Cache.php" hash="44a4e9c2366bd56f242b3758c0fe5e6b"/></dir><dir name="Queue"><dir name="Event"><file name="Abstract.php" hash="9befdb6be287a6255ae456221ccf908a"/><file name="Checkout.php" hash="7708478accbb489d2e32b24fe3aadc27"/><file name="Customer.php" hash="f907b2efc50dc0a89156ae5921dcfcf6"/><file name="Factory.php" hash="eeffd0ed87bc3244ad99894aefe70bd2"/><file name="Item.php" hash="8cdb8b8d6397a33aa414588cb08a96c8"/><file name="Order.php" hash="c5704ce38f9a7e41609f9021aabcfe20"/><file name="Quote.php" hash="055417e52b6f6a48bd69d4e01ba78a13"/><file name="Startsync.php" hash="e9d65e226ee4d3bb854011a914fbbf56"/><file name="Subscription.php" hash="038a740dcfeeb344e06d865d3ee7f238"/><file name="View.php" hash="da35bba0385be3698304ba319f5d0823"/><dir name="Wishlist"><file name="Item.php" hash="377fd52a28f562ea3c3245f2d308fc11"/></dir></dir><file name="Item.php" hash="e41928715574738dbcf7462412895c94"/><file name="Processor.php" hash="0df4dc186d3720d96fd918ed3da02efa"/></dir><dir name="Rest"><file name="Address.php" hash="fa4ef338560c09c51fd35cf09116283c"/><file name="Customer.php" hash="f63d75ff74ca8d27fe66c5ad3067693f"/><dir name="Order"><file name="Item.php" hash="3c5003e4c95bc88dc9eb346bbbaed46b"/></dir><file name="Order.php" hash="92039328b49dfd8f265b43f6d401e75a"/><file name="Product.php" hash="391085c8b16ded397881d07357f7288f"/><dir name="Quote"><file name="Item.php" hash="3f33b30d5d47c1541ad2cec1e1c8b0ef"/></dir><file name="Quote.php" hash="f4579e270a7ce16f78cd52c774a45218"/><file name="Subscription.php" hash="080bf61e85dfc6c7818c2fe1ed60661b"/><dir name="Wishlist"><file name="Item.php" hash="87911c626195e772eee4a3b3301f3302"/></dir><file name="Wishlist.php" hash="de42a165f867bdf8ee0206a7ea8d828f"/></dir><file name="Rest.php" hash="c0902c530a341a14f91bb62d5c42208e"/><dir name="Sync"><file name="Profile.php" hash="06230cb2bfc959e7d512f62eb5869f1f"/><file name="Status.php" hash="57304f5054b15151427b962da0e39bba"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Marketingsoftware"><file name="AccessTokenController.php" hash="59ea43c94c5867066c907d7279e0aa66"/><file name="AjaxcollectionController.php" hash="59adf742661833985f0332d5b1fa520a"/><file name="ExportController.php" hash="3e8aec97b1cdcd6a6453969ba458fcd7"/><file name="LinkController.php" hash="a9b24b028dfc91d4daf8b6bd3ba736cd"/><file name="SettingsController.php" hash="5606991d9d0d8272a35964c81740e2c2"/><file name="SyncController.php" hash="582e86628d5a982f374cb934c25ae434"/></dir></dir><file name="ProductController.php" hash="618c95dbe763242eeaa00b6d233998b2"/><file name="UnsubscribeController.php" hash="6abd591209af2d7d7753405580ef6f71"/></dir><dir name="cron"><file name="clearCopernicaDatabase.php" hash="d64420e7f2a3ba674be72a15b47a3363"/><file name="detectAbandonedCarts.php" hash="ab3a8d7c6ed1a03cfd5129a8b6116e7f"/><file name="fullSync.php" hash="543451ba33dcf4e576b3a02cec62a4d9"/><file name="processQueue.php" hash="3614018e73120a5386ebd3ae7bff5060"/></dir><dir name="data"><dir name="marketingsoftware_setup"><file name="data-upgrade-3.4.0-3.4.1.php" hash="81ee78df6fb57daaa62a35c8d6096865"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="06693ae7df5091f51d0f835d4e98aa8c"/><file name="config.xml" hash="95d7b654ca0626d6550655d8ee2ffe8d"/></dir><dir name="sql"><dir name="marketingsoftware_setup"><file name="mysql4-install-1.2.0.php" hash="d4349dd3d45e411d39be85d4cee50302"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="4902356c13309b6415e1a61c3fcc805c"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="1bfa357933494cbded4c32f4d1d0a45c"/><file name="mysql4-upgrade-1.1.7-1.1.8.php" hash="860e3ce11771bd8e6f7c755f2afa8805"/><file name="mysql4-upgrade-1.1.8-1.2.0.php" hash="0414892bc3b6ebff44e991afe23a0f19"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="5374760e8bee6edb033475cd0cf8fd0a"/><file name="mysql4-upgrade-2.1.0.1-2.2.0.php" hash="8c4f8168b9b6b9ff196b7b72eeccea22"/><file name="mysql4-upgrade-2.2.0.1-2.3.0.php" hash="1c019bd68d35e91cd6771d4f52528513"/><file name="mysql4-upgrade-2.3.0-2.3.1.php" hash="d0310551734c1f1312dc8b1e416931ba"/><file name="mysql4-upgrade-2.3.1-2.3.2.php" hash="edf9c78d676f12dfa6b82f008e9e5967"/><file name="mysql4-upgrade-2.3.2-2.3.3.php" hash="70aded2b5d9b4736471c43c7f2540b62"/><file name="mysql4-upgrade-2.3.3-2.3.4.php" hash="f3824fb5c040893566fddb14727659ab"/><file name="mysql4-upgrade-2.3.4-2.3.5.php" hash="530cd67311cd72432274e3aea0ed3cc4"/><file name="mysql4-upgrade-2.3.8-2.4.0.php" hash="67c039843f81e2dc45d490f616e1bceb"/><file name="mysql4-upgrade-2.4.0-2.4.1.php" hash="86f85289e160bc6c7fe51a60ab73f248"/><file name="mysql4-upgrade-2.4.1-2.4.2.php" hash="de8c28f9d4cbbddaf0205d54b90689c1"/><file name="mysql4-upgrade-2.4.2-2.4.3.php" hash="200490a9c31749b4c0ee7c447568fb2d"/><file name="mysql4-upgrade-2.4.3-2.4.4.php" hash="6aa12fe669044cfad384405b82afe625"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Copernica_MarketingSoftware.xml" hash="a0f52371ec0e8a63ea5d066c6f9f24c3"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="marketingsoftware"><file name="accessToken.phtml" hash="169fd5c06606e854d80eb42d406c4f82"/><file name="export.phtml" hash="cd79d0803fda66072035ea3acdbf08cf"/><file name="link.phtml" hash="7b82ece3be8ad9ff9f0e3dbca5b3736a"/><file name="settings.phtml" hash="f5b4fa0fe8757935a458e7cbc67129b8"/><file name="sync.phtml" hash="78005a8bf2cad44424aba48cfcc940a6"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="copernica"><dir name="marketingsoftware"><file name="link.js" hash="7309fdc8855cf3f031fedad336031c59"/></dir></dir></dir></target></contents>
35
  <compatible/>
36
  <dependencies><required><php><min>5.2.0</min><max>5.6.99</max></php><extension><name>PDO</name><min></min><max></max></extension><extension><name>curl</name><min></min><max></max></extension></required></dependencies>
37
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Copernica_MarketingSoftware</name>
4
+ <version>3.1.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
10
  <description>When you install the integration, all contact, order and shop cart data from Magento will be automatically synchronized and stored in Copernica. By synchronizing data between your Magento webshop and Copernica, you are able to set up targeted email campaigns. For example you can consider emailing customers with abandoned shopcarts automatically every week. Your contacts will only receive information relevant to them, which will make them come back to your shop time and again. The available integration is also compatible with the Magento Enterprise edition.&#xD;
11
  &#xD;
12
  Please note that this extension does not work with PHP 5.4.X. and should be run with the Magento system requirements in mind.</description>
13
+ <notes>&#xD;
14
+ Release Notes - Copernica - Version 3.1.3&#xD;
15
  &#xD;
16
  &lt;h2&gt; Bug&#xD;
17
  &lt;/h2&gt;&#xD;
18
  &lt;ul&gt;&#xD;
19
+ &lt;li&gt;[COPE-211] - Dubbele profielen na sync&#xD;
20
  &lt;/li&gt;&#xD;
21
+ &lt;li&gt;[COPE-220] - Dubbele profielen&#xD;
22
+ &lt;/li&gt;&#xD;
23
+ &lt;li&gt;[COPE-221] - importeren klanten bestand&#xD;
24
+ &lt;/li&gt;&#xD;
25
+ &lt;li&gt;[COPE-223] - Support Magento - Copernica&#xD;
26
+ &lt;/li&gt;&#xD;
27
+ &lt;li&gt;[COPE-226] - Magento Copernica Pluging&#xD;
28
+ &lt;/li&gt;&#xD;
29
+ &lt;li&gt;[COPE-227] - Issue with Copernica on Magento 1.7&#xD;
30
  &lt;/li&gt;&#xD;
31
  &lt;/ul&gt;&#xD;
32
  &#xD;
33
  &lt;h2&gt; Improvement&#xD;
34
  &lt;/h2&gt;&#xD;
35
  &lt;ul&gt;&#xD;
36
+ &lt;li&gt;[COPE-208] - Let CURL handle SSL completely&#xD;
37
  &lt;/li&gt;&#xD;
38
  &lt;/ul&gt;&#xD;
39
  </notes>
40
  <authors><author><name>Cream</name><user>creaminternet</user><email>info@cream.nl</email></author></authors>
41
+ <date>2015-03-26</date>
42
+ <time>21:48:04</time>
43
+ <contents><target name="magecommunity"><dir name="Copernica"><dir name="MarketingSoftware"><dir name="Block"><dir name="Adminhtml"><dir name="Marketingsoftware"><file name="Accesstoken.php" hash="2196942b0b6c6727854e360126831a41"/><file name="Export.php" hash="a8a1203c12602345f9b3dd249ec77216"/><file name="Link.php" hash="4be8ea5a022ab5ab705862ce3d74b9ad"/><file name="Settings.php" hash="f18848ba6a75106d8bf6863c0a91dc80"/><file name="Sync.php" hash="10191fd99632e43a2df9b9372a487280"/></dir></dir></dir><dir name="Controller"><file name="Action.php" hash="8c89215b082dbf0e68ff8454d1e0eca9"/></dir><file name="Exception.php" hash="5be0f3715157b3b05c9471a1aeef75d1"/><dir name="Helper"><dir name="Api"><file name="Abstract.php" hash="f4d61c76a1659eda7456fcf180884408"/><file name="Builder.php" hash="200daf757d512f2844e98463f564e3e0"/><file name="Validator.php" hash="e9c81cbbf6c147ca0b8437d3d10f8c46"/></dir><file name="Api.php" hash="71e4c4c9d1a4dcf62d03170a7d4dd66a"/><file name="Config.php" hash="6cdf2bf007ac35d11718ab1080e24764"/><file name="Data.php" hash="5ee3dc0e876edfa560a00f859e465b15"/><file name="DataWriter.php" hash="562cd6afe278dd8200a025d74a7cd1e1"/><file name="Profile.php" hash="8f1375c1a2a49176bbf4390f24a6d8c3"/><dir name="Rest"><file name="Request.php" hash="f54193941ce3cff36c025231360ca4c0"/></dir></dir><dir name="Model"><dir name="Abandoned"><file name="Cart.php" hash="e9f9b0e533a3c96c45fb079ae5344d7a"/><dir name="Carts"><file name="Processor.php" hash="bf88d2983fd7896c306fe5977a51f7fa"/></dir></dir><dir name="Abstraction"><file name="Address.php" hash="6d9cc361b47f54c60055a1b4c1416124"/><file name="Attributes.php" hash="1302fd4317be556d9b4b57a4d7ceed48"/><file name="Customer.php" hash="02f7134f354c2480f90a1f32a4d8c983"/><file name="Name.php" hash="fccb94d66e34f8d68cdf2db34ff983ff"/><dir name="Order"><dir name="Item"><file name="Options.php" hash="d1bb9f5b2532e4030a8dd33742d9650c"/></dir><file name="Item.php" hash="337fc33a3919986b8f404c8b639ee2fe"/></dir><file name="Order.php" hash="f41d297c3642fb0cef10ca73cc3a79bb"/><file name="Price.php" hash="bd3ae9dd656754b664bf0ab94cdafb26"/><dir name="Product"><file name="Viewed.php" hash="e807df800b2310f3a815c50daa397a59"/></dir><file name="Product.php" hash="5f9e28f1b7f3923923cc7fd80198a560"/><dir name="Quote"><dir name="Item"><file name="Options.php" hash="c789c20cd4664ec9faaeccb44bdcfa35"/></dir><file name="Item.php" hash="e24c78fbe4b6e251eb94c8358aca3168"/></dir><file name="Quote.php" hash="f118cbad4065a15244d09c9657b60c68"/><file name="Storeview.php" hash="427880472097a9eaa5a6ecf801b2e535"/><file name="Subscription.php" hash="e09b421f41d4fb00fb083b50660a6190"/><dir name="Wishlist"><dir name="Item"><file name="Options.php" hash="850fa07b6c8f82958ca6ef2350a7bc5e"/></dir><file name="Item.php" hash="f5266fc0c4bbb1ba3b09fd75ad6e3b6b"/></dir><file name="Wishlist.php" hash="d02da3380379403f6ef9a0bcd83bd3c6"/></dir><file name="Config.php" hash="f9b93ad167d7d2d34759f1d2aeca251d"/><dir name="Copernica"><file name="Abstract.php" hash="e43e91e8d3a7c31cca75b0a11fe396d4"/><dir name="Address"><file name="Subprofile.php" hash="8da47fe822c3c67998d082afb798eb4b"/></dir><dir name="Entity"><file name="Address.php" hash="1d8114c82978f516b4ebbb8aad81c4ed"/><file name="Customer.php" hash="061b3a8adf62b0eb42800be5507995ab"/><dir name="Order"><file name="Item.php" hash="3cce8a1cb2f133e0d6e3228c24d1ccc1"/></dir><file name="Order.php" hash="159aeca86326bf456cc7d352467a7f68"/><file name="Product.php" hash="dca88a160907b84c200fdb6df002fc82"/><dir name="Quote"><file name="Item.php" hash="79d353ab6e150e21b7967c5795f4b28a"/></dir><file name="Quote.php" hash="0060a8d576f0d14b63f3017db7cc1a6d"/><file name="Subscription.php" hash="bf3cb5ae41b45d653415f1c06af0f407"/><dir name="Wishlist"><file name="Item.php" hash="214f22f4b07b8614007371301cf435ed"/></dir><file name="Wishlist.php" hash="200e2b74fd97bc878b00bb7c1bf24002"/></dir><file name="Entity.php" hash="e74a89d1bf00dfcb5454122df437c633"/><dir name="Order"><file name="Subprofile.php" hash="4799f8ab8b2c47298b0c472483699a29"/></dir><dir name="Orderitem"><file name="Subprofile.php" hash="09b122fcbeae65efa99c650882dc2a04"/></dir><dir name="Product"><dir name="Viewed"><file name="Subprofile.php" hash="477b56cc538a8bb4433efca30182381d"/></dir></dir><dir name="Profile"><file name="Customer.php" hash="2641a5303861472199310df5e9744b94"/><file name="Order.php" hash="26c091f3cb789d5785371950084252b7"/><file name="Quote.php" hash="4b92449c77cce625640ef92e4d8e0204"/><file name="Subscription.php" hash="cda9cea09add3504d085c046ac2b4b72"/></dir><file name="Profile.php" hash="dd4f415edd5cd5f6706461e432096d96"/><dir name="Quote"><dir name="Item"><file name="Subprofile.php" hash="1c338be576cfd9cde1d653be5e0fbaf9"/></dir></dir><dir name="Wishlist"><dir name="Item"><file name="Subprofile.php" hash="93eb9a0fdb23aedf75cd7dd0d3893385"/></dir></dir></dir><dir name="Error"><file name="Queue.php" hash="d6c8d9d5e552242f18a1829a91413760"/></dir><dir name="Mysql4"><dir name="Abandoned"><dir name="Cart"><file name="Collection.php" hash="b754475b97a81e5a3bd729eb767ccc1f"/></dir><file name="Cart.php" hash="d53d4bd5cabce576ea7ebb65389cdbca"/></dir><dir name="Config"><file name="Collection.php" hash="522757300fdf26a7964e7047c7a6504b"/></dir><file name="Config.php" hash="ab9bc864339624019f060a1f1c3e491b"/><dir name="Error"><dir name="Queue"><file name="Collection.php" hash="4932afd4111bd61e8801f906b142bb5b"/></dir><file name="Queue.php" hash="6b9b915a4b97380d0a1e684b3e6a24ae"/></dir><dir name="Profile"><dir name="Cache"><file name="Collection.php" hash="abbad62cfb50930fcca472456ce4f502"/></dir><file name="Cache.php" hash="e2f6b69236a65dd84aeac3a43e69e9a7"/></dir><dir name="Queue"><dir name="Item"><file name="Collection.php" hash="fd2470afdd7f6e4d6fdd54796c34913d"/></dir><file name="Item.php" hash="e995226766fbf7bf90dbcd51f26a9e35"/></dir><dir name="Sync"><dir name="Profile"><file name="Collection.php" hash="9c533a3547afa689e56c6088d5718e27"/></dir><file name="Profile.php" hash="970a87f955107d2d7149dd3c6b1d526a"/></dir></dir><file name="Observer.php" hash="721d5f673d0900e8e13c88a54045bc53"/><dir name="Profile"><file name="Cache.php" hash="44a4e9c2366bd56f242b3758c0fe5e6b"/></dir><dir name="Queue"><dir name="Event"><file name="Abstract.php" hash="9befdb6be287a6255ae456221ccf908a"/><file name="Checkout.php" hash="7708478accbb489d2e32b24fe3aadc27"/><file name="Customer.php" hash="f907b2efc50dc0a89156ae5921dcfcf6"/><file name="Factory.php" hash="eeffd0ed87bc3244ad99894aefe70bd2"/><file name="Item.php" hash="8cdb8b8d6397a33aa414588cb08a96c8"/><file name="Order.php" hash="c5704ce38f9a7e41609f9021aabcfe20"/><file name="Quote.php" hash="055417e52b6f6a48bd69d4e01ba78a13"/><file name="Startsync.php" hash="e9d65e226ee4d3bb854011a914fbbf56"/><file name="Subscription.php" hash="bb53db809cf3090fb6a5aef64b6864da"/><file name="View.php" hash="da35bba0385be3698304ba319f5d0823"/><dir name="Wishlist"><file name="Item.php" hash="377fd52a28f562ea3c3245f2d308fc11"/></dir></dir><file name="Item.php" hash="e41928715574738dbcf7462412895c94"/><file name="Processor.php" hash="0df4dc186d3720d96fd918ed3da02efa"/></dir><dir name="Rest"><file name="Address.php" hash="fa4ef338560c09c51fd35cf09116283c"/><file name="Customer.php" hash="f63d75ff74ca8d27fe66c5ad3067693f"/><dir name="Order"><file name="Item.php" hash="3c5003e4c95bc88dc9eb346bbbaed46b"/></dir><file name="Order.php" hash="92039328b49dfd8f265b43f6d401e75a"/><file name="Product.php" hash="391085c8b16ded397881d07357f7288f"/><dir name="Quote"><file name="Item.php" hash="3f33b30d5d47c1541ad2cec1e1c8b0ef"/></dir><file name="Quote.php" hash="f4579e270a7ce16f78cd52c774a45218"/><file name="Subscription.php" hash="080bf61e85dfc6c7818c2fe1ed60661b"/><dir name="Wishlist"><file name="Item.php" hash="87911c626195e772eee4a3b3301f3302"/></dir><file name="Wishlist.php" hash="de42a165f867bdf8ee0206a7ea8d828f"/></dir><file name="Rest.php" hash="c0902c530a341a14f91bb62d5c42208e"/><dir name="Sync"><file name="Profile.php" hash="06230cb2bfc959e7d512f62eb5869f1f"/><file name="Status.php" hash="57304f5054b15151427b962da0e39bba"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Marketingsoftware"><file name="AccessTokenController.php" hash="59ea43c94c5867066c907d7279e0aa66"/><file name="AjaxcollectionController.php" hash="59adf742661833985f0332d5b1fa520a"/><file name="ExportController.php" hash="3e8aec97b1cdcd6a6453969ba458fcd7"/><file name="LinkController.php" hash="a9b24b028dfc91d4daf8b6bd3ba736cd"/><file name="SettingsController.php" hash="5606991d9d0d8272a35964c81740e2c2"/><file name="SyncController.php" hash="582e86628d5a982f374cb934c25ae434"/></dir></dir><file name="ProductController.php" hash="618c95dbe763242eeaa00b6d233998b2"/><file name="UnsubscribeController.php" hash="6abd591209af2d7d7753405580ef6f71"/></dir><dir name="cron"><file name="clearCopernicaDatabase.php" hash="d64420e7f2a3ba674be72a15b47a3363"/><file name="detectAbandonedCarts.php" hash="ab3a8d7c6ed1a03cfd5129a8b6116e7f"/><file name="fullSync.php" hash="543451ba33dcf4e576b3a02cec62a4d9"/><file name="processQueue.php" hash="3614018e73120a5386ebd3ae7bff5060"/></dir><dir name="data"><dir name="marketingsoftware_setup"><file name="data-upgrade-3.4.0-3.4.1.php" hash="81ee78df6fb57daaa62a35c8d6096865"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="06693ae7df5091f51d0f835d4e98aa8c"/><file name="config.xml" hash="5567727a826dccdcf5c5a9aebe174bd3"/></dir><dir name="sql"><dir name="marketingsoftware_setup"><file name="mysql4-install-1.2.0.php" hash="d4349dd3d45e411d39be85d4cee50302"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="4902356c13309b6415e1a61c3fcc805c"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="1bfa357933494cbded4c32f4d1d0a45c"/><file name="mysql4-upgrade-1.1.7-1.1.8.php" hash="860e3ce11771bd8e6f7c755f2afa8805"/><file name="mysql4-upgrade-1.1.8-1.2.0.php" hash="0414892bc3b6ebff44e991afe23a0f19"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="5374760e8bee6edb033475cd0cf8fd0a"/><file name="mysql4-upgrade-2.1.0.1-2.2.0.php" hash="8c4f8168b9b6b9ff196b7b72eeccea22"/><file name="mysql4-upgrade-2.2.0.1-2.3.0.php" hash="1c019bd68d35e91cd6771d4f52528513"/><file name="mysql4-upgrade-2.3.0-2.3.1.php" hash="d0310551734c1f1312dc8b1e416931ba"/><file name="mysql4-upgrade-2.3.1-2.3.2.php" hash="edf9c78d676f12dfa6b82f008e9e5967"/><file name="mysql4-upgrade-2.3.2-2.3.3.php" hash="70aded2b5d9b4736471c43c7f2540b62"/><file name="mysql4-upgrade-2.3.3-2.3.4.php" hash="f3824fb5c040893566fddb14727659ab"/><file name="mysql4-upgrade-2.3.4-2.3.5.php" hash="530cd67311cd72432274e3aea0ed3cc4"/><file name="mysql4-upgrade-2.3.8-2.4.0.php" hash="67c039843f81e2dc45d490f616e1bceb"/><file name="mysql4-upgrade-2.4.0-2.4.1.php" hash="86f85289e160bc6c7fe51a60ab73f248"/><file name="mysql4-upgrade-2.4.1-2.4.2.php" hash="de8c28f9d4cbbddaf0205d54b90689c1"/><file name="mysql4-upgrade-2.4.2-2.4.3.php" hash="200490a9c31749b4c0ee7c447568fb2d"/><file name="mysql4-upgrade-2.4.3-2.4.4.php" hash="6aa12fe669044cfad384405b82afe625"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Copernica_MarketingSoftware.xml" hash="a0f52371ec0e8a63ea5d066c6f9f24c3"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="marketingsoftware"><file name="accessToken.phtml" hash="169fd5c06606e854d80eb42d406c4f82"/><file name="export.phtml" hash="cd79d0803fda66072035ea3acdbf08cf"/><file name="link.phtml" hash="7b82ece3be8ad9ff9f0e3dbca5b3736a"/><file name="settings.phtml" hash="f5b4fa0fe8757935a458e7cbc67129b8"/><file name="sync.phtml" hash="78005a8bf2cad44424aba48cfcc940a6"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="copernica"><dir name="marketingsoftware"><file name="link.js" hash="7309fdc8855cf3f031fedad336031c59"/></dir></dir></dir></target></contents>
44
  <compatible/>
45
  <dependencies><required><php><min>5.2.0</min><max>5.6.99</max></php><extension><name>PDO</name><min></min><max></max></extension><extension><name>curl</name><min></min><max></max></extension></required></dependencies>
46
  </package>