Webinterpret_Connector - Version 1.3.5.0

Version Notes

Constant redirection from product page.

Download this release

Release Info

Developer Webinterpret
Extension Webinterpret_Connector
Version 1.3.5.0
Comparing to
See all releases


Code changes from version 1.3.4.0 to 1.3.5.0

app/code/community/Webinterpret/Connector/Lib/autoload.php CHANGED
@@ -2,6 +2,6 @@
2
 
3
  // autoload.php @generated by Composer
4
 
5
- require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInita645de5498819440995422a042fbf08c::getLoader();
2
 
3
  // autoload.php @generated by Composer
4
 
5
+ require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit6212b1904c1c4e85b10547bad70ddde1::getLoader();
app/code/community/Webinterpret/Connector/Lib/composer/ClassLoader.php CHANGED
@@ -53,8 +53,8 @@ class ClassLoader
53
 
54
  private $useIncludePath = false;
55
  private $classMap = array();
 
56
  private $classMapAuthoritative = false;
57
- private $missingClasses = array();
58
 
59
  public function getPrefixes()
60
  {
@@ -322,20 +322,20 @@ class ClassLoader
322
  if (isset($this->classMap[$class])) {
323
  return $this->classMap[$class];
324
  }
325
- if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
326
  return false;
327
  }
328
 
329
  $file = $this->findFileWithExtension($class, '.php');
330
 
331
  // Search for Hack files if we are running on HHVM
332
- if (false === $file && defined('HHVM_VERSION')) {
333
  $file = $this->findFileWithExtension($class, '.hh');
334
  }
335
 
336
- if (false === $file) {
337
  // Remember that this class does not exist.
338
- $this->missingClasses[$class] = true;
339
  }
340
 
341
  return $file;
@@ -399,8 +399,6 @@ class ClassLoader
399
  if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
400
  return $file;
401
  }
402
-
403
- return false;
404
  }
405
  }
406
 
53
 
54
  private $useIncludePath = false;
55
  private $classMap = array();
56
+
57
  private $classMapAuthoritative = false;
 
58
 
59
  public function getPrefixes()
60
  {
322
  if (isset($this->classMap[$class])) {
323
  return $this->classMap[$class];
324
  }
325
+ if ($this->classMapAuthoritative) {
326
  return false;
327
  }
328
 
329
  $file = $this->findFileWithExtension($class, '.php');
330
 
331
  // Search for Hack files if we are running on HHVM
332
+ if ($file === null && defined('HHVM_VERSION')) {
333
  $file = $this->findFileWithExtension($class, '.hh');
334
  }
335
 
336
+ if ($file === null) {
337
  // Remember that this class does not exist.
338
+ return $this->classMap[$class] = false;
339
  }
340
 
341
  return $file;
399
  if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
400
  return $file;
401
  }
 
 
402
  }
403
  }
404
 
app/code/community/Webinterpret/Connector/Lib/composer/LICENSE CHANGED
@@ -1,21 +1,433 @@
 
 
 
 
1
 
2
- Copyright (c) 2016 Nils Adermann, Jordi Boggiano
 
 
 
3
 
4
- Permission is hereby granted, free of charge, to any person obtaining a copy
5
- of this software and associated documentation files (the "Software"), to deal
6
- in the Software without restriction, including without limitation the rights
7
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
- copies of the Software, and to permit persons to whom the Software is furnished
9
- to do so, subject to the following conditions:
10
 
11
- The above copyright notice and this permission notice shall be included in all
12
- copies or substantial portions of the Software.
 
 
 
 
13
 
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
- THE SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2
+ Upstream-Name: Composer
3
+ Upstream-Contact: Jordi Boggiano <j.boggiano@seld.be>
4
+ Source: https://github.com/composer/composer
5
 
6
+ Files: *
7
+ Copyright: 2016, Nils Adermann <naderman@naderman.de>
8
+ 2016, Jordi Boggiano <j.boggiano@seld.be>
9
+ License: Expat
10
 
11
+ Files: res/cacert.pem
12
+ Copyright: 2015, Mozilla Foundation
13
+ License: MPL-2.0
 
 
 
14
 
15
+ Files: src/Composer/Util/RemoteFilesystem.php
16
+ src/Composer/Util/TlsHelper.php
17
+ Copyright: 2016, Nils Adermann <naderman@naderman.de>
18
+ 2016, Jordi Boggiano <j.boggiano@seld.be>
19
+ 2013, Evan Coury <me@evancoury.com>
20
+ License: Expat and BSD-2-Clause
21
 
22
+ License: BSD-2-Clause
23
+ Redistribution and use in source and binary forms, with or without modification,
24
+ are permitted provided that the following conditions are met:
25
+ .
26
+ * Redistributions of source code must retain the above copyright notice,
27
+ this list of conditions and the following disclaimer.
28
+ .
29
+ * Redistributions in binary form must reproduce the above copyright notice,
30
+ this list of conditions and the following disclaimer in the documentation
31
+ and/or other materials provided with the distribution.
32
+ .
33
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
34
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
35
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
36
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
37
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
38
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
39
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
40
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
42
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43
 
44
+ License: Expat
45
+ Permission is hereby granted, free of charge, to any person obtaining a copy
46
+ of this software and associated documentation files (the "Software"), to deal
47
+ in the Software without restriction, including without limitation the rights
48
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
49
+ copies of the Software, and to permit persons to whom the Software is furnished
50
+ to do so, subject to the following conditions:
51
+ .
52
+ The above copyright notice and this permission notice shall be included in all
53
+ copies or substantial portions of the Software.
54
+ .
55
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
56
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
57
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
58
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
59
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
60
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
61
+ THE SOFTWARE.
62
+
63
+ License: MPL-2.0
64
+ 1. Definitions
65
+ --------------
66
+ .
67
+ 1.1. "Contributor"
68
+ means each individual or legal entity that creates, contributes to
69
+ the creation of, or owns Covered Software.
70
+ .
71
+ 1.2. "Contributor Version"
72
+ means the combination of the Contributions of others (if any) used
73
+ by a Contributor and that particular Contributor's Contribution.
74
+ .
75
+ 1.3. "Contribution"
76
+ means Covered Software of a particular Contributor.
77
+ .
78
+ 1.4. "Covered Software"
79
+ means Source Code Form to which the initial Contributor has attached
80
+ the notice in Exhibit A, the Executable Form of such Source Code
81
+ Form, and Modifications of such Source Code Form, in each case
82
+ including portions thereof.
83
+ .
84
+ 1.5. "Incompatible With Secondary Licenses"
85
+ means
86
+ .
87
+ (a) that the initial Contributor has attached the notice described
88
+ in Exhibit B to the Covered Software; or
89
+ .
90
+ (b) that the Covered Software was made available under the terms of
91
+ version 1.1 or earlier of the License, but not also under the
92
+ terms of a Secondary License.
93
+ .
94
+ 1.6. "Executable Form"
95
+ means any form of the work other than Source Code Form.
96
+ .
97
+ 1.7. "Larger Work"
98
+ means a work that combines Covered Software with other material, in
99
+ a separate file or files, that is not Covered Software.
100
+ .
101
+ 1.8. "License"
102
+ means this document.
103
+ .
104
+ 1.9. "Licensable"
105
+ means having the right to grant, to the maximum extent possible,
106
+ whether at the time of the initial grant or subsequently, any and
107
+ all of the rights conveyed by this License.
108
+ .
109
+ 1.10. "Modifications"
110
+ means any of the following:
111
+ .
112
+ (a) any file in Source Code Form that results from an addition to,
113
+ deletion from, or modification of the contents of Covered
114
+ Software; or
115
+ .
116
+ (b) any new file in Source Code Form that contains any Covered
117
+ Software.
118
+ .
119
+ 1.11. "Patent Claims" of a Contributor
120
+ means any patent claim(s), including without limitation, method,
121
+ process, and apparatus claims, in any patent Licensable by such
122
+ Contributor that would be infringed, but for the grant of the
123
+ License, by the making, using, selling, offering for sale, having
124
+ made, import, or transfer of either its Contributions or its
125
+ Contributor Version.
126
+ .
127
+ 1.12. "Secondary License"
128
+ means either the GNU General Public License, Version 2.0, the GNU
129
+ Lesser General Public License, Version 2.1, the GNU Affero General
130
+ Public License, Version 3.0, or any later versions of those
131
+ licenses.
132
+ .
133
+ 1.13. "Source Code Form"
134
+ means the form of the work preferred for making modifications.
135
+ .
136
+ 1.14. "You" (or "Your")
137
+ means an individual or a legal entity exercising rights under this
138
+ License. For legal entities, "You" includes any entity that
139
+ controls, is controlled by, or is under common control with You. For
140
+ purposes of this definition, "control" means (a) the power, direct
141
+ or indirect, to cause the direction or management of such entity,
142
+ whether by contract or otherwise, or (b) ownership of more than
143
+ fifty percent (50%) of the outstanding shares or beneficial
144
+ ownership of such entity.
145
+ .
146
+ 2. License Grants and Conditions
147
+ --------------------------------
148
+ .
149
+ 2.1. Grants
150
+ .
151
+ Each Contributor hereby grants You a world-wide, royalty-free,
152
+ non-exclusive license:
153
+ .
154
+ (a) under intellectual property rights (other than patent or trademark)
155
+ Licensable by such Contributor to use, reproduce, make available,
156
+ modify, display, perform, distribute, and otherwise exploit its
157
+ Contributions, either on an unmodified basis, with Modifications, or
158
+ as part of a Larger Work; and
159
+ .
160
+ (b) under Patent Claims of such Contributor to make, use, sell, offer
161
+ for sale, have made, import, and otherwise transfer either its
162
+ Contributions or its Contributor Version.
163
+ .
164
+ 2.2. Effective Date
165
+ .
166
+ The licenses granted in Section 2.1 with respect to any Contribution
167
+ become effective for each Contribution on the date the Contributor first
168
+ distributes such Contribution.
169
+ .
170
+ 2.3. Limitations on Grant Scope
171
+ .
172
+ The licenses granted in this Section 2 are the only rights granted under
173
+ this License. No additional rights or licenses will be implied from the
174
+ distribution or licensing of Covered Software under this License.
175
+ Notwithstanding Section 2.1(b) above, no patent license is granted by a
176
+ Contributor:
177
+ .
178
+ (a) for any code that a Contributor has removed from Covered Software;
179
+ or
180
+ .
181
+ (b) for infringements caused by: (i) Your and any other third party's
182
+ modifications of Covered Software, or (ii) the combination of its
183
+ Contributions with other software (except as part of its Contributor
184
+ Version); or
185
+ .
186
+ (c) under Patent Claims infringed by Covered Software in the absence of
187
+ its Contributions.
188
+ .
189
+ This License does not grant any rights in the trademarks, service marks,
190
+ or logos of any Contributor (except as may be necessary to comply with
191
+ the notice requirements in Section 3.4).
192
+ .
193
+ 2.4. Subsequent Licenses
194
+ .
195
+ No Contributor makes additional grants as a result of Your choice to
196
+ distribute the Covered Software under a subsequent version of this
197
+ License (see Section 10.2) or under the terms of a Secondary License (if
198
+ permitted under the terms of Section 3.3).
199
+ .
200
+ 2.5. Representation
201
+ .
202
+ Each Contributor represents that the Contributor believes its
203
+ Contributions are its original creation(s) or it has sufficient rights
204
+ to grant the rights to its Contributions conveyed by this License.
205
+ .
206
+ 2.6. Fair Use
207
+ .
208
+ This License is not intended to limit any rights You have under
209
+ applicable copyright doctrines of fair use, fair dealing, or other
210
+ equivalents.
211
+ .
212
+ 2.7. Conditions
213
+ .
214
+ Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
215
+ in Section 2.1.
216
+ .
217
+ 3. Responsibilities
218
+ -------------------
219
+ .
220
+ 3.1. Distribution of Source Form
221
+ .
222
+ All distribution of Covered Software in Source Code Form, including any
223
+ Modifications that You create or to which You contribute, must be under
224
+ the terms of this License. You must inform recipients that the Source
225
+ Code Form of the Covered Software is governed by the terms of this
226
+ License, and how they can obtain a copy of this License. You may not
227
+ attempt to alter or restrict the recipients' rights in the Source Code
228
+ Form.
229
+ .
230
+ 3.2. Distribution of Executable Form
231
+ .
232
+ If You distribute Covered Software in Executable Form then:
233
+ .
234
+ (a) such Covered Software must also be made available in Source Code
235
+ Form, as described in Section 3.1, and You must inform recipients of
236
+ the Executable Form how they can obtain a copy of such Source Code
237
+ Form by reasonable means in a timely manner, at a charge no more
238
+ than the cost of distribution to the recipient; and
239
+ .
240
+ (b) You may distribute such Executable Form under the terms of this
241
+ License, or sublicense it under different terms, provided that the
242
+ license for the Executable Form does not attempt to limit or alter
243
+ the recipients' rights in the Source Code Form under this License.
244
+ .
245
+ 3.3. Distribution of a Larger Work
246
+ .
247
+ You may create and distribute a Larger Work under terms of Your choice,
248
+ provided that You also comply with the requirements of this License for
249
+ the Covered Software. If the Larger Work is a combination of Covered
250
+ Software with a work governed by one or more Secondary Licenses, and the
251
+ Covered Software is not Incompatible With Secondary Licenses, this
252
+ License permits You to additionally distribute such Covered Software
253
+ under the terms of such Secondary License(s), so that the recipient of
254
+ the Larger Work may, at their option, further distribute the Covered
255
+ Software under the terms of either this License or such Secondary
256
+ License(s).
257
+ .
258
+ 3.4. Notices
259
+ .
260
+ You may not remove or alter the substance of any license notices
261
+ (including copyright notices, patent notices, disclaimers of warranty,
262
+ or limitations of liability) contained within the Source Code Form of
263
+ the Covered Software, except that You may alter any license notices to
264
+ the extent required to remedy known factual inaccuracies.
265
+ .
266
+ 3.5. Application of Additional Terms
267
+ .
268
+ You may choose to offer, and to charge a fee for, warranty, support,
269
+ indemnity or liability obligations to one or more recipients of Covered
270
+ Software. However, You may do so only on Your own behalf, and not on
271
+ behalf of any Contributor. You must make it absolutely clear that any
272
+ such warranty, support, indemnity, or liability obligation is offered by
273
+ You alone, and You hereby agree to indemnify every Contributor for any
274
+ liability incurred by such Contributor as a result of warranty, support,
275
+ indemnity or liability terms You offer. You may include additional
276
+ disclaimers of warranty and limitations of liability specific to any
277
+ jurisdiction.
278
+ .
279
+ 4. Inability to Comply Due to Statute or Regulation
280
+ ---------------------------------------------------
281
+ .
282
+ If it is impossible for You to comply with any of the terms of this
283
+ License with respect to some or all of the Covered Software due to
284
+ statute, judicial order, or regulation then You must: (a) comply with
285
+ the terms of this License to the maximum extent possible; and (b)
286
+ describe the limitations and the code they affect. Such description must
287
+ be placed in a text file included with all distributions of the Covered
288
+ Software under this License. Except to the extent prohibited by statute
289
+ or regulation, such description must be sufficiently detailed for a
290
+ recipient of ordinary skill to be able to understand it.
291
+ .
292
+ 5. Termination
293
+ --------------
294
+ .
295
+ 5.1. The rights granted under this License will terminate automatically
296
+ if You fail to comply with any of its terms. However, if You become
297
+ compliant, then the rights granted under this License from a particular
298
+ Contributor are reinstated (a) provisionally, unless and until such
299
+ Contributor explicitly and finally terminates Your grants, and (b) on an
300
+ ongoing basis, if such Contributor fails to notify You of the
301
+ non-compliance by some reasonable means prior to 60 days after You have
302
+ come back into compliance. Moreover, Your grants from a particular
303
+ Contributor are reinstated on an ongoing basis if such Contributor
304
+ notifies You of the non-compliance by some reasonable means, this is the
305
+ first time You have received notice of non-compliance with this License
306
+ from such Contributor, and You become compliant prior to 30 days after
307
+ Your receipt of the notice.
308
+ .
309
+ 5.2. If You initiate litigation against any entity by asserting a patent
310
+ infringement claim (excluding declaratory judgment actions,
311
+ counter-claims, and cross-claims) alleging that a Contributor Version
312
+ directly or indirectly infringes any patent, then the rights granted to
313
+ You by any and all Contributors for the Covered Software under Section
314
+ 2.1 of this License shall terminate.
315
+ .
316
+ 5.3. In the event of termination under Sections 5.1 or 5.2 above, all
317
+ end user license agreements (excluding distributors and resellers) which
318
+ have been validly granted by You or Your distributors under this License
319
+ prior to termination shall survive termination.
320
+ .
321
+ ************************************************************************
322
+ * *
323
+ * 6. Disclaimer of Warranty *
324
+ * ------------------------- *
325
+ * *
326
+ * Covered Software is provided under this License on an "as is" *
327
+ * basis, without warranty of any kind, either expressed, implied, or *
328
+ * statutory, including, without limitation, warranties that the *
329
+ * Covered Software is free of defects, merchantable, fit for a *
330
+ * particular purpose or non-infringing. The entire risk as to the *
331
+ * quality and performance of the Covered Software is with You. *
332
+ * Should any Covered Software prove defective in any respect, You *
333
+ * (not any Contributor) assume the cost of any necessary servicing, *
334
+ * repair, or correction. This disclaimer of warranty constitutes an *
335
+ * essential part of this License. No use of any Covered Software is *
336
+ * authorized under this License except under this disclaimer. *
337
+ * *
338
+ ************************************************************************
339
+ .
340
+ ************************************************************************
341
+ * *
342
+ * 7. Limitation of Liability *
343
+ * -------------------------- *
344
+ * *
345
+ * Under no circumstances and under no legal theory, whether tort *
346
+ * (including negligence), contract, or otherwise, shall any *
347
+ * Contributor, or anyone who distributes Covered Software as *
348
+ * permitted above, be liable to You for any direct, indirect, *
349
+ * special, incidental, or consequential damages of any character *
350
+ * including, without limitation, damages for lost profits, loss of *
351
+ * goodwill, work stoppage, computer failure or malfunction, or any *
352
+ * and all other commercial damages or losses, even if such party *
353
+ * shall have been informed of the possibility of such damages. This *
354
+ * limitation of liability shall not apply to liability for death or *
355
+ * personal injury resulting from such party's negligence to the *
356
+ * extent applicable law prohibits such limitation. Some *
357
+ * jurisdictions do not allow the exclusion or limitation of *
358
+ * incidental or consequential damages, so this exclusion and *
359
+ * limitation may not apply to You. *
360
+ * *
361
+ ************************************************************************
362
+ .
363
+ 8. Litigation
364
+ -------------
365
+ .
366
+ Any litigation relating to this License may be brought only in the
367
+ courts of a jurisdiction where the defendant maintains its principal
368
+ place of business and such litigation shall be governed by laws of that
369
+ jurisdiction, without reference to its conflict-of-law provisions.
370
+ Nothing in this Section shall prevent a party's ability to bring
371
+ cross-claims or counter-claims.
372
+ .
373
+ 9. Miscellaneous
374
+ ----------------
375
+ .
376
+ This License represents the complete agreement concerning the subject
377
+ matter hereof. If any provision of this License is held to be
378
+ unenforceable, such provision shall be reformed only to the extent
379
+ necessary to make it enforceable. Any law or regulation which provides
380
+ that the language of a contract shall be construed against the drafter
381
+ shall not be used to construe this License against a Contributor.
382
+ .
383
+ 10. Versions of the License
384
+ ---------------------------
385
+ .
386
+ 10.1. New Versions
387
+ .
388
+ Mozilla Foundation is the license steward. Except as provided in Section
389
+ 10.3, no one other than the license steward has the right to modify or
390
+ publish new versions of this License. Each version will be given a
391
+ distinguishing version number.
392
+ .
393
+ 10.2. Effect of New Versions
394
+ .
395
+ You may distribute the Covered Software under the terms of the version
396
+ of the License under which You originally received the Covered Software,
397
+ or under the terms of any subsequent version published by the license
398
+ steward.
399
+ .
400
+ 10.3. Modified Versions
401
+ .
402
+ If you create software not governed by this License, and you want to
403
+ create a new license for such software, you may create and use a
404
+ modified version of this License if you rename the license and remove
405
+ any references to the name of the license steward (except to note that
406
+ such modified license differs from this License).
407
+ .
408
+ 10.4. Distributing Source Code Form that is Incompatible With Secondary
409
+ Licenses
410
+ .
411
+ If You choose to distribute Source Code Form that is Incompatible With
412
+ Secondary Licenses under the terms of this version of the License, the
413
+ notice described in Exhibit B of this License must be attached.
414
+ .
415
+ Exhibit A - Source Code Form License Notice
416
+ -------------------------------------------
417
+ .
418
+ This Source Code Form is subject to the terms of the Mozilla Public
419
+ License, v. 2.0. If a copy of the MPL was not distributed with this
420
+ file, You can obtain one at http://mozilla.org/MPL/2.0/.
421
+ .
422
+ If it is not possible or desirable to put the notice in a particular
423
+ file, then You may include the notice in a location (such as a LICENSE
424
+ file in a relevant directory) where a recipient would be likely to look
425
+ for such a notice.
426
+ .
427
+ You may add additional accurate notices of copyright ownership.
428
+ .
429
+ Exhibit B - "Incompatible With Secondary Licenses" Notice
430
+ ---------------------------------------------------------
431
+ .
432
+ This Source Code Form is "Incompatible With Secondary Licenses", as
433
+ defined by the Mozilla Public License, v. 2.0.
app/code/community/Webinterpret/Connector/Lib/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInita645de5498819440995422a042fbf08c
6
  {
7
  private static $loader;
8
 
@@ -19,30 +19,23 @@ class ComposerAutoloaderInita645de5498819440995422a042fbf08c
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInita645de5498819440995422a042fbf08c', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInita645de5498819440995422a042fbf08c', 'loadClassLoader'));
25
-
26
- $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
27
- if ($useStaticLoader) {
28
- require_once __DIR__ . '/autoload_static.php';
29
-
30
- call_user_func(\Composer\Autoload\ComposerStaticInita645de5498819440995422a042fbf08c::getInitializer($loader));
31
- } else {
32
- $map = require __DIR__ . '/autoload_namespaces.php';
33
- foreach ($map as $namespace => $path) {
34
- $loader->set($namespace, $path);
35
- }
36
-
37
- $map = require __DIR__ . '/autoload_psr4.php';
38
- foreach ($map as $namespace => $path) {
39
- $loader->setPsr4($namespace, $path);
40
- }
41
-
42
- $classMap = require __DIR__ . '/autoload_classmap.php';
43
- if ($classMap) {
44
- $loader->addClassMap($classMap);
45
- }
46
  }
47
 
48
  $loader->register(true);
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit6212b1904c1c4e85b10547bad70ddde1
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit6212b1904c1c4e85b10547bad70ddde1', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit6212b1904c1c4e85b10547bad70ddde1', 'loadClassLoader'));
25
+
26
+ $map = require __DIR__ . '/autoload_namespaces.php';
27
+ foreach ($map as $namespace => $path) {
28
+ $loader->set($namespace, $path);
29
+ }
30
+
31
+ $map = require __DIR__ . '/autoload_psr4.php';
32
+ foreach ($map as $namespace => $path) {
33
+ $loader->setPsr4($namespace, $path);
34
+ }
35
+
36
+ $classMap = require __DIR__ . '/autoload_classmap.php';
37
+ if ($classMap) {
38
+ $loader->addClassMap($classMap);
 
 
 
 
 
 
 
39
  }
40
 
41
  $loader->register(true);
app/code/community/Webinterpret/Connector/Lib/composer/autoload_static.php DELETED
@@ -1,65 +0,0 @@
1
- <?php
2
-
3
- // autoload_static.php @generated by Composer
4
-
5
- namespace Composer\Autoload;
6
-
7
- class ComposerStaticInita645de5498819440995422a042fbf08c
8
- {
9
- public static $prefixLengthsPsr4 = array (
10
- 'M' =>
11
- array (
12
- 'MaxMind\\' => 8,
13
- ),
14
- 'G' =>
15
- array (
16
- 'GeoIp2\\' => 7,
17
- ),
18
- 'C' =>
19
- array (
20
- 'Composer\\CaBundle\\' => 18,
21
- ),
22
- );
23
-
24
- public static $prefixDirsPsr4 = array (
25
- 'MaxMind\\' =>
26
- array (
27
- 0 => __DIR__ . '/..' . '/maxmind/web-service-common/src',
28
- ),
29
- 'GeoIp2\\' =>
30
- array (
31
- 0 => __DIR__ . '/..' . '/geoip2/geoip2/src',
32
- ),
33
- 'Composer\\CaBundle\\' =>
34
- array (
35
- 0 => __DIR__ . '/..' . '/composer/ca-bundle/src',
36
- ),
37
- );
38
-
39
- public static $prefixesPsr0 = array (
40
- 'M' =>
41
- array (
42
- 'MaxMind' =>
43
- array (
44
- 0 => __DIR__ . '/..' . '/maxmind-db/reader/src',
45
- ),
46
- ),
47
- 'B' =>
48
- array (
49
- 'Buzz' =>
50
- array (
51
- 0 => __DIR__ . '/..' . '/kriswallsmith/buzz/lib',
52
- ),
53
- ),
54
- );
55
-
56
- public static function getInitializer(ClassLoader $loader)
57
- {
58
- return \Closure::bind(function () use ($loader) {
59
- $loader->prefixLengthsPsr4 = ComposerStaticInita645de5498819440995422a042fbf08c::$prefixLengthsPsr4;
60
- $loader->prefixDirsPsr4 = ComposerStaticInita645de5498819440995422a042fbf08c::$prefixDirsPsr4;
61
- $loader->prefixesPsr0 = ComposerStaticInita645de5498819440995422a042fbf08c::$prefixesPsr0;
62
-
63
- }, null, ClassLoader::class);
64
- }
65
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/Webinterpret/Connector/Lib/composer/installed.json CHANGED
@@ -1,4 +1,54 @@
1
  [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  {
3
  "name": "composer/ca-bundle",
4
  "version": "1.0.4",
@@ -209,55 +259,5 @@
209
  "geolocation",
210
  "maxmind"
211
  ]
212
- },
213
- {
214
- "name": "kriswallsmith/buzz",
215
- "version": "v0.15",
216
- "version_normalized": "0.15.0.0",
217
- "source": {
218
- "type": "git",
219
- "url": "https://github.com/kriswallsmith/Buzz.git",
220
- "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8"
221
- },
222
- "dist": {
223
- "type": "zip",
224
- "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/d4041666c3ffb379af02a92dabe81c904b35fab8",
225
- "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8",
226
- "shasum": ""
227
- },
228
- "require": {
229
- "php": ">=5.3.0"
230
- },
231
- "require-dev": {
232
- "phpunit/phpunit": "3.7.*"
233
- },
234
- "suggest": {
235
- "ext-curl": "*"
236
- },
237
- "time": "2015-06-25 17:26:56",
238
- "type": "library",
239
- "installation-source": "dist",
240
- "autoload": {
241
- "psr-0": {
242
- "Buzz": "lib/"
243
- }
244
- },
245
- "notification-url": "https://packagist.org/downloads/",
246
- "license": [
247
- "MIT"
248
- ],
249
- "authors": [
250
- {
251
- "name": "Kris Wallsmith",
252
- "email": "kris.wallsmith@gmail.com",
253
- "homepage": "http://kriswallsmith.net/"
254
- }
255
- ],
256
- "description": "Lightweight HTTP client",
257
- "homepage": "https://github.com/kriswallsmith/Buzz",
258
- "keywords": [
259
- "curl",
260
- "http client"
261
- ]
262
  }
263
  ]
1
  [
2
+ {
3
+ "name": "kriswallsmith/buzz",
4
+ "version": "v0.15",
5
+ "version_normalized": "0.15.0.0",
6
+ "source": {
7
+ "type": "git",
8
+ "url": "https://github.com/kriswallsmith/Buzz.git",
9
+ "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8"
10
+ },
11
+ "dist": {
12
+ "type": "zip",
13
+ "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/d4041666c3ffb379af02a92dabe81c904b35fab8",
14
+ "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8",
15
+ "shasum": ""
16
+ },
17
+ "require": {
18
+ "php": ">=5.3.0"
19
+ },
20
+ "require-dev": {
21
+ "phpunit/phpunit": "3.7.*"
22
+ },
23
+ "suggest": {
24
+ "ext-curl": "*"
25
+ },
26
+ "time": "2015-06-25 17:26:56",
27
+ "type": "library",
28
+ "installation-source": "dist",
29
+ "autoload": {
30
+ "psr-0": {
31
+ "Buzz": "lib/"
32
+ }
33
+ },
34
+ "notification-url": "https://packagist.org/downloads/",
35
+ "license": [
36
+ "MIT"
37
+ ],
38
+ "authors": [
39
+ {
40
+ "name": "Kris Wallsmith",
41
+ "email": "kris.wallsmith@gmail.com",
42
+ "homepage": "http://kriswallsmith.net/"
43
+ }
44
+ ],
45
+ "description": "Lightweight HTTP client",
46
+ "homepage": "https://github.com/kriswallsmith/Buzz",
47
+ "keywords": [
48
+ "curl",
49
+ "http client"
50
+ ]
51
+ },
52
  {
53
  "name": "composer/ca-bundle",
54
  "version": "1.0.4",
259
  "geolocation",
260
  "maxmind"
261
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
262
  }
263
  ]
app/code/community/Webinterpret/Connector/Model/BackendRedirector.php CHANGED
@@ -19,16 +19,6 @@ use WebinterpretConnector\Webinterpret\Toolkit\GeoIP;
19
  */
20
  class Webinterpret_Connector_Model_BackendRedirector extends Varien_Object
21
  {
22
- /**
23
- * Time that the redirector should be disabled for in seconds
24
- */
25
- const REDIRECTOR_DISABLEMENT_PERIOD = 3600;
26
-
27
- /**
28
- * The key that the list of disabled products will be kept under in the session
29
- */
30
- const REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY = 'webinterpret-redirector-disabled-products';
31
-
32
  /** @var GeoIP */
33
  private $geoIp;
34
 
@@ -189,35 +179,4 @@ class Webinterpret_Connector_Model_BackendRedirector extends Varien_Object
189
  return new FileGetContents();
190
  }
191
  }
192
-
193
- public function disableBackendRedirectorForProduct($productId)
194
- {
195
- $disabledProducts = Mage::getSingleton('core/session')->getData(self::REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY);
196
-
197
- if (!is_array($disabledProducts)) {
198
- $disabledProducts = array();
199
- }
200
-
201
- $disabledProducts[$productId] = time() + self::REDIRECTOR_DISABLEMENT_PERIOD;
202
-
203
- Mage::getSingleton('core/session')->setData(self::REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY, $disabledProducts);
204
- }
205
-
206
- public function isBackendRedirectorDisabledForProduct($productId)
207
- {
208
- $disabledProducts = Mage::getSingleton('core/session')->getData(self::REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY);
209
- $redirectorDisablementExpiryDate = isset($disabledProducts[$productId]) ? $disabledProducts[$productId] : null;
210
-
211
- if (is_null($redirectorDisablementExpiryDate)) {
212
- return false;
213
- }
214
-
215
- if ($redirectorDisablementExpiryDate < time()) {
216
- unset($disabledProducts[$productId]);
217
- Mage::getSingleton('core/session')->setData(self::REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY, $disabledProducts);
218
- return false;
219
- } else {
220
- return true;
221
- }
222
- }
223
  }
19
  */
20
  class Webinterpret_Connector_Model_BackendRedirector extends Varien_Object
21
  {
 
 
 
 
 
 
 
 
 
 
22
  /** @var GeoIP */
23
  private $geoIp;
24
 
179
  return new FileGetContents();
180
  }
181
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  }
app/code/community/Webinterpret/Connector/Model/Observer.php CHANGED
@@ -64,13 +64,11 @@ class Webinterpret_Connector_Model_Observer
64
  try {
65
  /** @var Webinterpret_Connector_Model_BackendRedirector $backendRedirector */
66
  $backendRedirector = Mage::getModel('webinterpret_connector/backendRedirector');
 
 
67
  $productId = Mage::registry('current_product')->getId();
68
 
69
- if (
70
- !Mage::helper('webinterpret_connector')->isSessionStarted() ||
71
- !Mage::helper('webinterpret_connector')->isBackendRedirectorEnabled() ||
72
- $backendRedirector->isBackendRedirectorDisabledForProduct($productId)
73
- ) {
74
  return $observer;
75
  }
76
 
@@ -80,13 +78,11 @@ class Webinterpret_Connector_Model_Observer
80
  }
81
 
82
  if (!is_null($redirectionUrl)) {
83
- $backendRedirector->disableBackendRedirectorForProduct($productId);
84
  Mage::app()->getFrontController()->getResponse()->setRedirect($redirectionUrl);
85
  Mage::app()->getResponse()->sendResponse();
86
  exit;
87
  }
88
 
89
-
90
  return $observer;
91
  }
92
  }
64
  try {
65
  /** @var Webinterpret_Connector_Model_BackendRedirector $backendRedirector */
66
  $backendRedirector = Mage::getModel('webinterpret_connector/backendRedirector');
67
+ /** @var Webinterpret_Connector_Helper_Data $helper */
68
+ $helper = Mage::helper('webinterpret_connector');
69
  $productId = Mage::registry('current_product')->getId();
70
 
71
+ if (!$helper->isSessionStarted() || !$helper->isBackendRedirectorEnabled()) {
 
 
 
 
72
  return $observer;
73
  }
74
 
78
  }
79
 
80
  if (!is_null($redirectionUrl)) {
 
81
  Mage::app()->getFrontController()->getResponse()->setRedirect($redirectionUrl);
82
  Mage::app()->getResponse()->sendResponse();
83
  exit;
84
  }
85
 
 
86
  return $observer;
87
  }
88
  }
app/code/community/Webinterpret/Connector/etc/config.xml CHANGED
@@ -8,7 +8,7 @@
8
  <config>
9
  <modules>
10
  <Webinterpret_Connector>
11
- <version>1.3.4.0</version>
12
  </Webinterpret_Connector>
13
  </modules>
14
  <global>
8
  <config>
9
  <modules>
10
  <Webinterpret_Connector>
11
+ <version>1.3.5.0</version>
12
  </Webinterpret_Connector>
13
  </modules>
14
  <global>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Webinterpret_Connector</name>
4
- <version>1.3.4.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Webinterpret integration for Magento</summary>
10
  <description>Boost your international sales in just a few clicks with Webinterpret.</description>
11
- <notes>Updated bridge.</notes>
12
  <authors><author><name>Webinterpret</name><user>webinterpret</user><email>info@webinterpret.com</email></author></authors>
13
- <date>2017-01-30</date>
14
- <time>14:52:10</time>
15
- <contents><target name="magecommunity"><dir name="Webinterpret"><dir name="Connector"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="5e1935e32f1b5d10f0b76fee427a23a6"/><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Status.php" hash="99b95c7991e91a4d4d98efdaf8007b88"/></dir></dir></dir></dir><file name="Footer.php" hash="160f03e528d7e9411e85d524919fd280"/><file name="Head.php" hash="1261ad40df9f0dc708178d78d63158d8"/><dir name="Product"><file name="View.php" hash="3b3b40108b53d326c0dcff0e45fa8407"/></dir></dir><dir name="Helper"><file name="Autoloader.php" hash="5d052e0b234a1a2177303a37368aa9e4"/><file name="Data.php" hash="af7805660b1760a61c7c9fc587d87dc1"/><file name="Verifier.php" hash="60de45131e5cf01e03209d3615355a5f"/></dir><dir name="Lib"><dir name="Webinterpret"><file name="InventoryManagerClient.php" hash="d6acf256009835b2d389ffdb8abe48b8"/><file name="InventoryManagerProductInfo.php" hash="bb57591383e0422f6d053092a1e8820c"/><dir name="Toolkit"><file name="GeoIP.php" hash="04b858256cee73a321e34b1cdd81953f"/><dir name="StatusApi"><file name="AbstractStatusApiDiagnostics.php" hash="fd864ccc4073b1b439b7c61ac43d7956"/><file name="PlatformDiagnostics.php" hash="7e7689f82ffa38272693c2dc5d2d91d1"/><file name="PluginDiagnostics.php" hash="7dbf2e7e965a4ca1cfdc17b339196f53"/><file name="StatusApi.php" hash="763aba8683f38f1c7c1e17c4691bccbc"/><file name="StatusApiConfigurator.php" hash="08b0d62ecd063baa1922452ae23ead18"/><file name="SystemDiagnostics.php" hash="70df1d00c80e7962277e832c26e256fc"/></dir></dir></dir><file name="autoload.php" hash="ae17a894afd28e9ef91eb2e430ad884b"/><dir name="composer"><file name="ClassLoader.php" hash="bf6c4758ae060fd8f3e3a88e6c24ac3c"/><file name="LICENSE" hash="9b01fc9e0129adc080344653fbcbbc0f"/><file name="autoload_classmap.php" hash="8645d3a4e3ad87e7cf4d88a46717aab4"/><file name="autoload_namespaces.php" hash="f7aec47106fe386a4d7710cee304fc7c"/><file name="autoload_psr4.php" hash="a1ee1e33d38bf972aaa8596aed6b9498"/><file name="autoload_real.php" hash="8fd33316d33709ccfdccc2a34b91b217"/><file name="autoload_static.php" hash="916d2bc47eff30560b4e5689efa5e2c5"/><dir name="ca-bundle"><file name="LICENSE" hash="783e50a8f248e56536e25b4746d035af"/><file name="README.md" hash="04096c5cd7666bbb481909761dd7d528"/><file name="composer.json" hash="719cc746e830f62c35eb73f694b02881"/><dir name="res"><file name="cacert.pem" hash="dcd698b7138230c1a9b6d04051a4fc83"/></dir><dir name="src"><file name="CaBundle.php" hash="ce2de2d0d2ac7d0035333c47f062f7f3"/></dir></dir><file name="installed.json" hash="4ca2f315c4edd0ad95ace90fc714ddc1"/></dir><dir name="geoip2"><dir name="geoip2"><file name="CHANGELOG.md" hash="c93aaf66d68f404db1143ac548e72f69"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="99be28bbbbf4e4e4d9ade38af2172c7b"/><file name="composer.json" hash="684eb00e319ab4b9f463712d2ea07ee2"/><dir name="src"><dir name="Compat"><file name="JsonSerializable.php" hash="b328c8968d8f6fd793da9ec8266b7ead"/></dir><dir name="Database"><file name="Reader.php" hash="69128baa625870ba775cdbce95bff033"/></dir><dir name="Exception"><file name="AddressNotFoundException.php" hash="f7b42f2f1952b78482e1cc6ae3e9c92e"/><file name="AuthenticationException.php" hash="a664ef571be82c82fa584545e66ff1fb"/><file name="GeoIp2Exception.php" hash="b14e09b853d258d93f7a0fd50e07b1d3"/><file name="HttpException.php" hash="c8129a00315622f4b2ce282096d41562"/><file name="InvalidRequestException.php" hash="79b7b13a3057e02ad573f01795bad4d3"/><file name="OutOfQueriesException.php" hash="35f4fa482a66d2e424b0f0ca9d19d390"/></dir><dir name="Model"><file name="AbstractModel.php" hash="34ef56e9aa17d1b408bcb5f48652e921"/><file name="AnonymousIp.php" hash="3c241f7efdde4dd769611f725384cc20"/><file name="City.php" hash="05f32089542682ec031911c66f457799"/><file name="ConnectionType.php" hash="202313369fa7d759d0c2f842a707cc42"/><file name="Country.php" hash="75526b5928bde78331e1cbaaf8551c30"/><file name="Domain.php" hash="8dcd1be751d401e66a8d220b0f15dca1"/><file name="Enterprise.php" hash="34fac18339d7cdff0492376a2d6ddaaf"/><file name="Insights.php" hash="1f0131cf93a2a64af5f7b1ae4c7f3a87"/><file name="Isp.php" hash="fbeb9ae86063258f363f6d2ed3e18057"/></dir><file name="ProviderInterface.php" hash="ada7808f8ef411d055c74f8e1e607930"/><dir name="Record"><file name="AbstractPlaceRecord.php" hash="746e0df11901479b60cb5dabf938cced"/><file name="AbstractRecord.php" hash="d821f2fb8a4ebd3c75f78ad82bd7a32c"/><file name="City.php" hash="54a21bf0b8984bea0091ee4e4eea9a5d"/><file name="Continent.php" hash="05ec67b54e6be3287cc3f2e439e1eaf5"/><file name="Country.php" hash="626d0e71d01876f400787be9e51ab628"/><file name="Location.php" hash="7552ff9d0f2a415bfee76f0141ffe9e2"/><file name="MaxMind.php" hash="05a43644700119689bf9940ab480b967"/><file name="Postal.php" hash="63832bd023c1c91a63c55477f14bb671"/><file name="RepresentedCountry.php" hash="9def588dc86e3302178992be480c5592"/><file name="Subdivision.php" hash="95008667190f6465669dbe6314d1e1e8"/><file name="Traits.php" hash="b70cdd26fd9a8b72e4e116c3cfef686a"/></dir><dir name="WebService"><file name="Client.php" hash="43a9140d8c9e6f52ee8369de1a6db5d8"/></dir></dir><file name=".gitmodules" hash="a1da842003e271f63f73319ab5d4e555"/></dir></dir><dir name="kriswallsmith"><dir name="buzz"><file name="CHANGELOG.md" hash="52f99dd3ede5d1ce97bf3b84597d1f69"/><file name="LICENSE" hash="8a10d9e96a9a0925ec7ebcacdd311337"/><file name="README.md" hash="901c8c869022838a7b1d5c355b678f41"/><file name="composer.json" hash="450defd5c92b8f905eb533c7b68775b7"/><dir name="examples"><file name="CookieListener.php" hash="424842bc2eee0b7bebdb9e105afe850f"/><file name="DigestAuthListener.php" hash="c4bfba70ecdd10b34174dbabda70bd38"/></dir><dir name="lib"><dir name="Buzz"><file name="Browser.php" hash="b59c3a87d43f0341ed310543e7dc8555"/><dir name="Client"><file name="AbstractClient.php" hash="f40f342282ce950321ee033e38c0f861"/><file name="AbstractCurl.php" hash="d86e03512358f4e946e623382da97afb"/><file name="AbstractStream.php" hash="f81315ba845a61eb3065eb988e32051d"/><file name="BatchClientInterface.php" hash="3216ee78dd79fab5cf54bcb94ca7cbad"/><file name="ClientInterface.php" hash="0ba9521f57320a50bc912565b45f3324"/><file name="Curl.php" hash="9208ca282da8907429e0c5ffb8a91e91"/><file name="FileGetContents.php" hash="a74d11f3053c37ad3ec74f80bb17df46"/><file name="MultiCurl.php" hash="097a75700f0781016e5b8bfa574af159"/></dir><dir name="Exception"><file name="ClientException.php" hash="2290c9bb236df1415e63ee4b50199524"/><file name="ExceptionInterface.php" hash="887286cc69d88403826f2cde0fb05d6d"/><file name="InvalidArgumentException.php" hash="40bcc515ead31256f723daa920ea970e"/><file name="LogicException.php" hash="1f93d93a6173bc3dc83071928d855a1c"/><file name="RequestException.php" hash="603c99142aa41fb69373c46d0c4d5eff"/><file name="RuntimeException.php" hash="2a5c17331eb1b01dcf82138668f149fb"/></dir><dir name="Listener"><file name="BasicAuthListener.php" hash="a01fae7d3a226d7b4c4a213cf2784ea4"/><file name="CallbackListener.php" hash="2b80a85e1dd5905bab79af7dc851d780"/><file name="CookieListener.php" hash="f2d400cbe1973e0bf2e70d233c71976e"/><file name="DigestAuthListener.php" hash="4205ee1295ae9e6046187b2a05436378"/><dir name="History"><file name="Entry.php" hash="e21f16b7547b4571f8325f8e2d1a0a32"/><file name="Journal.php" hash="4a7382bf0aa15400795dad3bcc0b3a0b"/></dir><file name="HistoryListener.php" hash="c20a2823330ad1c62c1e00d666062feb"/><file name="ListenerChain.php" hash="a19636acd50c32e7f1f3e74f70fa1c04"/><file name="ListenerInterface.php" hash="843663d54fc7362a9ff1aa79a8bc0503"/><file name="LoggerListener.php" hash="a1848cf1541d6c573ac17f216b6113e4"/></dir><dir name="Message"><file name="AbstractMessage.php" hash="d26608e2edb470f57c315005885bb359"/><dir name="Factory"><file name="Factory.php" hash="5cf89875f6796df4df08926b5f1006ad"/><file name="FactoryInterface.php" hash="96293478c30ce7ab5f6c8e1385d839db"/></dir><dir name="Form"><file name="FormRequest.php" hash="cd16d45436dab763aa8026e5adc43e7f"/><file name="FormRequestInterface.php" hash="57147f32a199d34858494aa9e935046e"/><file name="FormUpload.php" hash="5ad3c1fc47ea6d222915944b39bf46b2"/><file name="FormUploadInterface.php" hash="e654b096b82b5a4275489492387f568b"/></dir><file name="MessageInterface.php" hash="bd99826f8e2c9d1a1b0c65a5eb997e9e"/><file name="Request.php" hash="a1342c3ea578ddefa2b120814ba8bf80"/><file name="RequestInterface.php" hash="2b0fe4438cfc90c017389b191c94652b"/><file name="Response.php" hash="f4ffe4a64514548b0beb621a3d9f0089"/></dir><dir name="Util"><file name="Cookie.php" hash="1d42f5324611c19e8a6ea5c2cb6eb9f2"/><file name="CookieJar.php" hash="a3a92e31e139f797445e6be14c32e155"/><file name="Url.php" hash="888ec065b1a992dd2e8062bd7ba9e679"/></dir></dir></dir><file name="phpunit.xml.dist" hash="188b17738bbcd66e1fd408b454243572"/><dir name="test"><dir name="Buzz"><dir name="Test"><file name="BrowserTest.php" hash="e813cb5807345aff24698449f1ae5be9"/><dir name="Client"><file name="AbstractStreamTest.php" hash="e7b47d0fe24b7149c62ac736177d203d"/><file name="ClientTest.php" hash="8a14503e884cdf9b5e833b5206be61a4"/><file name="FunctionalTest.php" hash="0f069b79b734fb2efbde5f276d6ce37a"/></dir><dir name="Listener"><file name="BasicAuthListenerTest.php" hash="ae5c0fd244f7743d81080118b42dc73c"/><file name="CallbackListenerTest.php" hash="07d0e399b18e0cdd69aa66bf62bcbadc"/><file name="DigestAuthListenerTest.php" hash="595dbd612d2f1fde1264f738d1ed2c1e"/><dir name="History"><file name="EntryTest.php" hash="b7c001167cc0131c399e071538a66cb7"/><file name="JournalTest.php" hash="4111eb643fbcb05129dded0067aeefa7"/></dir><file name="HistoryListenerTest.php" hash="9953cad9320b6c78ce477532d454b3af"/><file name="ListenerChainTest.php" hash="ff5b9727f91f7a9da2d322d5a97deddb"/><file name="LoggerListenerTest.php" hash="7e40e0735e7dac71bcd9119c7a3c2e56"/></dir><dir name="Message"><file name="AbstractMessageTest.php" hash="90d531511705842c573b28f4c8fb5d68"/><file name="FactoryTest.php" hash="ced832a48cbc0d9e288136c1ff77d075"/><dir name="Fixtures"><file name="google.png" hash="169e859db7f28a01e1b51e1c9e2d6b2b"/></dir><file name="FormRequestTest.php" hash="a2ffa5131fd015f512b4a27c346d5657"/><file name="FormUploadTest.php" hash="34879f48bef94f8e33da964873cab449"/><file name="RequestTest.php" hash="e317c4e28a35a1aaebb7bec68cfe896c"/><file name="ResponseTest.php" hash="579841f50c45431092ca535aefbd9dc8"/></dir><dir name="Util"><file name="CookieJarTest.php" hash="79ee72e90586bc4be15b609c62b6db40"/><file name="CookieTest.php" hash="52f9472651d7cd7933fe5cf91daff218"/><file name="UrlTest.php" hash="2161e86caf2c229e63be62b555375054"/></dir></dir></dir><dir name="etc"><file name="nginx.conf" hash="db731e2d76cb867039bbc90014ba6476"/><file name="squid.conf" hash="77d3d02b7f2d73d6330a207b579785e7"/></dir><file name="server.php" hash="479689cf2fe15407f6280e83160b0277"/></dir><file name=".gitignore" hash="f7d5a75baf3a1beeb22243dd7ef578bd"/><file name=".travis.yml" hash="1b91a4fa3e3b4cc60d31f5f0eddb7e79"/></dir></dir><dir name="maxmind"><dir name="web-service-common"><file name="CHANGELOG.md" hash="7f2f05525acaaf52f3771f0129676e4a"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="37316c741db7f5ae8dc1eaff4a045bd8"/><file name="composer.json" hash="ec42bb19ef5ba2b22192e89f3bd7b1ce"/><dir name="src"><dir name="Exception"><file name="AuthenticationException.php" hash="a1fdcba6decc96345545f4f10287e162"/><file name="HttpException.php" hash="6579aa42001dbe77ca3e8d1e51aac3d2"/><file name="InsufficientFundsException.php" hash="14886d684f1be0b4b28a66f4b22e490f"/><file name="InvalidInputException.php" hash="72dc20089eb4a5cfaccafe6e2b17a36e"/><file name="InvalidRequestException.php" hash="b55c1b8b30715dc40416be8c1ce3bd61"/><file name="IpAddressNotFoundException.php" hash="16313ab0d82195477e1ba071e7696313"/><file name="PermissionRequiredException.php" hash="f832cea2f10902ae2ffa4521e13c73d1"/><file name="WebServiceException.php" hash="6882e0d113e22478202f99caf306bde9"/></dir><dir name="WebService"><file name="Client.php" hash="6253acd40102faead6d8750f5467d420"/><dir name="Http"><file name="CurlRequest.php" hash="da8ba5cf09aea35ee6a69c074d70f3f8"/><file name="Request.php" hash="b493bca240735584dd610eadf2372880"/><file name="RequestFactory.php" hash="5c41aa383b7be71773fa2b68c0ad4e6e"/></dir></dir></dir></dir></dir><dir name="maxmind-db"><dir name="reader"><file name="CHANGELOG.md" hash="6e0348104ab013c82482394c0d10322e"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="4d6518a9c5916e04e55cd394f0f39424"/><file name="composer.json" hash="0a95937043bf1924fb18f70ba453122a"/><dir name="ext"><file name="config.m4" hash="e6d700d321e152a73797148a486c449d"/><file name="maxminddb.c" hash="0ac67b9330fa433be129f77c2b9622c6"/><file name="php_maxminddb.h" hash="312cbe9b3aa017e727b52d421475b7fa"/><dir name="tests"><file name="001-load.phpt" hash="86ba1adc502540b42cbb1ef2fe5cfd67"/></dir></dir><dir name="src"><dir name="MaxMind"><dir name="Db"><dir name="Reader"><file name="Decoder.php" hash="ac9cc72ca5d65bf0e2bc26254d2e08e6"/><file name="InvalidDatabaseException.php" hash="30a5d8369ea2012e747ac1e59f78c76f"/><file name="Metadata.php" hash="643d939699d39a80c3a8c3adb19ee9e7"/><file name="Util.php" hash="92c382f8642000eef497745ec9bf2e91"/></dir><file name="Reader.php" hash="dd648dd18ea4df0c8ff6eabee28ddf57"/></dir></dir></dir></dir></dir></dir><dir name="Model"><file name="BackendRedirector.php" hash="76adbcd50fc8b71758428ef57eca6ce6"/><file name="Notification.php" hash="a62c3b7ff11cd2d1082c0d959d8eb295"/><file name="Observer.php" hash="d3973d8acb54217d98d86c2b81fe3d3a"/><file name="StoreExtender.php" hash="316db9a49ce8c22edf44648f2fa7baa6"/></dir><dir name="bridge2cart"><file name="bridge.php" hash="e076e52fe7867f1306d35f4df55b433f"/><file name="config.php" hash="0fb8e12c8d9c293354eb4fb96a713608"/><file name="helper.php" hash="afb5e2141259c580285ac85d0c180144"/><file name="preloader.php" hash="8a8ada3537394687defdc28d4b6077e8"/></dir><dir name="controllers"><file name="ConfigurationController.php" hash="5c3b27204772f6cd243a34b4489b9305"/><file name="DiagnosticsController.php" hash="678d9c6ead8331a6cc25f775574beab6"/><file name="HelperController.php" hash="73fb01f035db7d75eb1ee0a3d535fd0b"/><file name="IndexController.php" hash="a76fb36d3f6fa4c370b766ed9ba818ed"/></dir><dir name="etc"><file name="adminhtml.xml" hash="07e287503c40ce7c588efe7863c05002"/><file name="config.xml" hash="23b05a67af3aaef0c2195734a56c8528"/><file name="system.xml" hash="cfe59ca34ebfef69b900f4ad275a809a"/></dir><dir name="resources"><dir name="geoip"><file name="COPYRIGHT.txt" hash="37e1c6f4fc26ec1993d127575029c079"/><file name="GeoIP2-Country.mmdb" hash="33a191481c2840aa2ad482d00773d6b5"/><file name="LICENSE.txt" hash="46fce10ea30c7c62dbf39fc979604d68"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Webinterpret_Connector.xml" hash="087c2742f6bcb89ed6a77921e6493feb"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="1226a298ca08a92008293ba4e8c09eab"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="connector"><file name="footer.phtml" hash="bd48d0e36dea0936b9f28fbdada3b8c1"/><file name="head.phtml" hash="107312871a7b2730532db8d986de5726"/><file name="product_view.phtml" hash="2036bc444284b99f4cc8228fa4751777"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="867fafe49fa978668f6e5d7027c57aa6"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="system"><dir name="config"><file name="activate.phtml" hash="5ef389ad58cb1be9cc666fecd8379fbf"/><dir name="fieldset"><file name="banner.phtml" hash="921b677bd3e52d9c86172bdf26ab4a37"/><file name="status.phtml" hash="412bd1ea314a7f0c8897e6a9225c3551"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Webinterpret_Connector.csv" hash="91312fd3bd2645b88e3b3643b6b614a9"/></dir><dir name="en_US"><file name="Webinterpret_Connector.csv" hash="c382db753974630198cf029cf90b5d27"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.2</min><max>7.0.99</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Webinterpret_Connector</name>
4
+ <version>1.3.5.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Webinterpret integration for Magento</summary>
10
  <description>Boost your international sales in just a few clicks with Webinterpret.</description>
11
+ <notes>Constant redirection from product page.</notes>
12
  <authors><author><name>Webinterpret</name><user>webinterpret</user><email>info@webinterpret.com</email></author></authors>
13
+ <date>2017-02-09</date>
14
+ <time>14:55:16</time>
15
+ <contents><target name="magecommunity"><dir name="Webinterpret"><dir name="Connector"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="5e1935e32f1b5d10f0b76fee427a23a6"/><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Status.php" hash="99b95c7991e91a4d4d98efdaf8007b88"/></dir></dir></dir></dir><file name="Footer.php" hash="160f03e528d7e9411e85d524919fd280"/><file name="Head.php" hash="1261ad40df9f0dc708178d78d63158d8"/><dir name="Product"><file name="View.php" hash="3b3b40108b53d326c0dcff0e45fa8407"/></dir></dir><dir name="Helper"><file name="Autoloader.php" hash="5d052e0b234a1a2177303a37368aa9e4"/><file name="Data.php" hash="af7805660b1760a61c7c9fc587d87dc1"/><file name="Verifier.php" hash="60de45131e5cf01e03209d3615355a5f"/></dir><dir name="Lib"><dir name="Webinterpret"><file name="InventoryManagerClient.php" hash="d6acf256009835b2d389ffdb8abe48b8"/><file name="InventoryManagerProductInfo.php" hash="bb57591383e0422f6d053092a1e8820c"/><dir name="Toolkit"><file name="GeoIP.php" hash="04b858256cee73a321e34b1cdd81953f"/><dir name="StatusApi"><file name="AbstractStatusApiDiagnostics.php" hash="fd864ccc4073b1b439b7c61ac43d7956"/><file name="PlatformDiagnostics.php" hash="7e7689f82ffa38272693c2dc5d2d91d1"/><file name="PluginDiagnostics.php" hash="7dbf2e7e965a4ca1cfdc17b339196f53"/><file name="StatusApi.php" hash="763aba8683f38f1c7c1e17c4691bccbc"/><file name="StatusApiConfigurator.php" hash="08b0d62ecd063baa1922452ae23ead18"/><file name="SystemDiagnostics.php" hash="70df1d00c80e7962277e832c26e256fc"/></dir></dir></dir><file name="autoload.php" hash="38dfc2154472b80340528faa44a36522"/><dir name="composer"><file name="ClassLoader.php" hash="c67ebce5ff31e99311ceb750202adf2e"/><file name="LICENSE" hash="cfdafe5f67fbcc46c00fcb2f5b80a0cf"/><file name="autoload_classmap.php" hash="8645d3a4e3ad87e7cf4d88a46717aab4"/><file name="autoload_namespaces.php" hash="f7aec47106fe386a4d7710cee304fc7c"/><file name="autoload_psr4.php" hash="a1ee1e33d38bf972aaa8596aed6b9498"/><file name="autoload_real.php" hash="097fc6becad3c938f052e71bc46ab58a"/><dir name="ca-bundle"><file name="LICENSE" hash="783e50a8f248e56536e25b4746d035af"/><file name="README.md" hash="04096c5cd7666bbb481909761dd7d528"/><file name="composer.json" hash="719cc746e830f62c35eb73f694b02881"/><dir name="res"><file name="cacert.pem" hash="dcd698b7138230c1a9b6d04051a4fc83"/></dir><dir name="src"><file name="CaBundle.php" hash="ce2de2d0d2ac7d0035333c47f062f7f3"/></dir></dir><file name="installed.json" hash="309fa5b7f42e66abb184c0d81e0eaca9"/></dir><dir name="geoip2"><dir name="geoip2"><file name="CHANGELOG.md" hash="c93aaf66d68f404db1143ac548e72f69"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="99be28bbbbf4e4e4d9ade38af2172c7b"/><file name="composer.json" hash="684eb00e319ab4b9f463712d2ea07ee2"/><dir name="src"><dir name="Compat"><file name="JsonSerializable.php" hash="b328c8968d8f6fd793da9ec8266b7ead"/></dir><dir name="Database"><file name="Reader.php" hash="69128baa625870ba775cdbce95bff033"/></dir><dir name="Exception"><file name="AddressNotFoundException.php" hash="f7b42f2f1952b78482e1cc6ae3e9c92e"/><file name="AuthenticationException.php" hash="a664ef571be82c82fa584545e66ff1fb"/><file name="GeoIp2Exception.php" hash="b14e09b853d258d93f7a0fd50e07b1d3"/><file name="HttpException.php" hash="c8129a00315622f4b2ce282096d41562"/><file name="InvalidRequestException.php" hash="79b7b13a3057e02ad573f01795bad4d3"/><file name="OutOfQueriesException.php" hash="35f4fa482a66d2e424b0f0ca9d19d390"/></dir><dir name="Model"><file name="AbstractModel.php" hash="34ef56e9aa17d1b408bcb5f48652e921"/><file name="AnonymousIp.php" hash="3c241f7efdde4dd769611f725384cc20"/><file name="City.php" hash="05f32089542682ec031911c66f457799"/><file name="ConnectionType.php" hash="202313369fa7d759d0c2f842a707cc42"/><file name="Country.php" hash="75526b5928bde78331e1cbaaf8551c30"/><file name="Domain.php" hash="8dcd1be751d401e66a8d220b0f15dca1"/><file name="Enterprise.php" hash="34fac18339d7cdff0492376a2d6ddaaf"/><file name="Insights.php" hash="1f0131cf93a2a64af5f7b1ae4c7f3a87"/><file name="Isp.php" hash="fbeb9ae86063258f363f6d2ed3e18057"/></dir><file name="ProviderInterface.php" hash="ada7808f8ef411d055c74f8e1e607930"/><dir name="Record"><file name="AbstractPlaceRecord.php" hash="746e0df11901479b60cb5dabf938cced"/><file name="AbstractRecord.php" hash="d821f2fb8a4ebd3c75f78ad82bd7a32c"/><file name="City.php" hash="54a21bf0b8984bea0091ee4e4eea9a5d"/><file name="Continent.php" hash="05ec67b54e6be3287cc3f2e439e1eaf5"/><file name="Country.php" hash="626d0e71d01876f400787be9e51ab628"/><file name="Location.php" hash="7552ff9d0f2a415bfee76f0141ffe9e2"/><file name="MaxMind.php" hash="05a43644700119689bf9940ab480b967"/><file name="Postal.php" hash="63832bd023c1c91a63c55477f14bb671"/><file name="RepresentedCountry.php" hash="9def588dc86e3302178992be480c5592"/><file name="Subdivision.php" hash="95008667190f6465669dbe6314d1e1e8"/><file name="Traits.php" hash="b70cdd26fd9a8b72e4e116c3cfef686a"/></dir><dir name="WebService"><file name="Client.php" hash="43a9140d8c9e6f52ee8369de1a6db5d8"/></dir></dir><file name=".gitmodules" hash="a1da842003e271f63f73319ab5d4e555"/></dir></dir><dir name="kriswallsmith"><dir name="buzz"><file name="CHANGELOG.md" hash="52f99dd3ede5d1ce97bf3b84597d1f69"/><file name="LICENSE" hash="8a10d9e96a9a0925ec7ebcacdd311337"/><file name="README.md" hash="901c8c869022838a7b1d5c355b678f41"/><file name="composer.json" hash="450defd5c92b8f905eb533c7b68775b7"/><dir name="examples"><file name="CookieListener.php" hash="424842bc2eee0b7bebdb9e105afe850f"/><file name="DigestAuthListener.php" hash="c4bfba70ecdd10b34174dbabda70bd38"/></dir><dir name="lib"><dir name="Buzz"><file name="Browser.php" hash="b59c3a87d43f0341ed310543e7dc8555"/><dir name="Client"><file name="AbstractClient.php" hash="f40f342282ce950321ee033e38c0f861"/><file name="AbstractCurl.php" hash="d86e03512358f4e946e623382da97afb"/><file name="AbstractStream.php" hash="f81315ba845a61eb3065eb988e32051d"/><file name="BatchClientInterface.php" hash="3216ee78dd79fab5cf54bcb94ca7cbad"/><file name="ClientInterface.php" hash="0ba9521f57320a50bc912565b45f3324"/><file name="Curl.php" hash="9208ca282da8907429e0c5ffb8a91e91"/><file name="FileGetContents.php" hash="a74d11f3053c37ad3ec74f80bb17df46"/><file name="MultiCurl.php" hash="097a75700f0781016e5b8bfa574af159"/></dir><dir name="Exception"><file name="ClientException.php" hash="2290c9bb236df1415e63ee4b50199524"/><file name="ExceptionInterface.php" hash="887286cc69d88403826f2cde0fb05d6d"/><file name="InvalidArgumentException.php" hash="40bcc515ead31256f723daa920ea970e"/><file name="LogicException.php" hash="1f93d93a6173bc3dc83071928d855a1c"/><file name="RequestException.php" hash="603c99142aa41fb69373c46d0c4d5eff"/><file name="RuntimeException.php" hash="2a5c17331eb1b01dcf82138668f149fb"/></dir><dir name="Listener"><file name="BasicAuthListener.php" hash="a01fae7d3a226d7b4c4a213cf2784ea4"/><file name="CallbackListener.php" hash="2b80a85e1dd5905bab79af7dc851d780"/><file name="CookieListener.php" hash="f2d400cbe1973e0bf2e70d233c71976e"/><file name="DigestAuthListener.php" hash="4205ee1295ae9e6046187b2a05436378"/><dir name="History"><file name="Entry.php" hash="e21f16b7547b4571f8325f8e2d1a0a32"/><file name="Journal.php" hash="4a7382bf0aa15400795dad3bcc0b3a0b"/></dir><file name="HistoryListener.php" hash="c20a2823330ad1c62c1e00d666062feb"/><file name="ListenerChain.php" hash="a19636acd50c32e7f1f3e74f70fa1c04"/><file name="ListenerInterface.php" hash="843663d54fc7362a9ff1aa79a8bc0503"/><file name="LoggerListener.php" hash="a1848cf1541d6c573ac17f216b6113e4"/></dir><dir name="Message"><file name="AbstractMessage.php" hash="d26608e2edb470f57c315005885bb359"/><dir name="Factory"><file name="Factory.php" hash="5cf89875f6796df4df08926b5f1006ad"/><file name="FactoryInterface.php" hash="96293478c30ce7ab5f6c8e1385d839db"/></dir><dir name="Form"><file name="FormRequest.php" hash="cd16d45436dab763aa8026e5adc43e7f"/><file name="FormRequestInterface.php" hash="57147f32a199d34858494aa9e935046e"/><file name="FormUpload.php" hash="5ad3c1fc47ea6d222915944b39bf46b2"/><file name="FormUploadInterface.php" hash="e654b096b82b5a4275489492387f568b"/></dir><file name="MessageInterface.php" hash="bd99826f8e2c9d1a1b0c65a5eb997e9e"/><file name="Request.php" hash="a1342c3ea578ddefa2b120814ba8bf80"/><file name="RequestInterface.php" hash="2b0fe4438cfc90c017389b191c94652b"/><file name="Response.php" hash="f4ffe4a64514548b0beb621a3d9f0089"/></dir><dir name="Util"><file name="Cookie.php" hash="1d42f5324611c19e8a6ea5c2cb6eb9f2"/><file name="CookieJar.php" hash="a3a92e31e139f797445e6be14c32e155"/><file name="Url.php" hash="888ec065b1a992dd2e8062bd7ba9e679"/></dir></dir></dir><file name="phpunit.xml.dist" hash="188b17738bbcd66e1fd408b454243572"/><dir name="test"><dir name="Buzz"><dir name="Test"><file name="BrowserTest.php" hash="e813cb5807345aff24698449f1ae5be9"/><dir name="Client"><file name="AbstractStreamTest.php" hash="e7b47d0fe24b7149c62ac736177d203d"/><file name="ClientTest.php" hash="8a14503e884cdf9b5e833b5206be61a4"/><file name="FunctionalTest.php" hash="0f069b79b734fb2efbde5f276d6ce37a"/></dir><dir name="Listener"><file name="BasicAuthListenerTest.php" hash="ae5c0fd244f7743d81080118b42dc73c"/><file name="CallbackListenerTest.php" hash="07d0e399b18e0cdd69aa66bf62bcbadc"/><file name="DigestAuthListenerTest.php" hash="595dbd612d2f1fde1264f738d1ed2c1e"/><dir name="History"><file name="EntryTest.php" hash="b7c001167cc0131c399e071538a66cb7"/><file name="JournalTest.php" hash="4111eb643fbcb05129dded0067aeefa7"/></dir><file name="HistoryListenerTest.php" hash="9953cad9320b6c78ce477532d454b3af"/><file name="ListenerChainTest.php" hash="ff5b9727f91f7a9da2d322d5a97deddb"/><file name="LoggerListenerTest.php" hash="7e40e0735e7dac71bcd9119c7a3c2e56"/></dir><dir name="Message"><file name="AbstractMessageTest.php" hash="90d531511705842c573b28f4c8fb5d68"/><file name="FactoryTest.php" hash="ced832a48cbc0d9e288136c1ff77d075"/><dir name="Fixtures"><file name="google.png" hash="169e859db7f28a01e1b51e1c9e2d6b2b"/></dir><file name="FormRequestTest.php" hash="a2ffa5131fd015f512b4a27c346d5657"/><file name="FormUploadTest.php" hash="34879f48bef94f8e33da964873cab449"/><file name="RequestTest.php" hash="e317c4e28a35a1aaebb7bec68cfe896c"/><file name="ResponseTest.php" hash="579841f50c45431092ca535aefbd9dc8"/></dir><dir name="Util"><file name="CookieJarTest.php" hash="79ee72e90586bc4be15b609c62b6db40"/><file name="CookieTest.php" hash="52f9472651d7cd7933fe5cf91daff218"/><file name="UrlTest.php" hash="2161e86caf2c229e63be62b555375054"/></dir></dir></dir><dir name="etc"><file name="nginx.conf" hash="db731e2d76cb867039bbc90014ba6476"/><file name="squid.conf" hash="77d3d02b7f2d73d6330a207b579785e7"/></dir><file name="server.php" hash="479689cf2fe15407f6280e83160b0277"/></dir><file name=".gitignore" hash="f7d5a75baf3a1beeb22243dd7ef578bd"/><file name=".travis.yml" hash="1b91a4fa3e3b4cc60d31f5f0eddb7e79"/></dir></dir><dir name="maxmind"><dir name="web-service-common"><file name="CHANGELOG.md" hash="7f2f05525acaaf52f3771f0129676e4a"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="37316c741db7f5ae8dc1eaff4a045bd8"/><file name="composer.json" hash="ec42bb19ef5ba2b22192e89f3bd7b1ce"/><dir name="src"><dir name="Exception"><file name="AuthenticationException.php" hash="a1fdcba6decc96345545f4f10287e162"/><file name="HttpException.php" hash="6579aa42001dbe77ca3e8d1e51aac3d2"/><file name="InsufficientFundsException.php" hash="14886d684f1be0b4b28a66f4b22e490f"/><file name="InvalidInputException.php" hash="72dc20089eb4a5cfaccafe6e2b17a36e"/><file name="InvalidRequestException.php" hash="b55c1b8b30715dc40416be8c1ce3bd61"/><file name="IpAddressNotFoundException.php" hash="16313ab0d82195477e1ba071e7696313"/><file name="PermissionRequiredException.php" hash="f832cea2f10902ae2ffa4521e13c73d1"/><file name="WebServiceException.php" hash="6882e0d113e22478202f99caf306bde9"/></dir><dir name="WebService"><file name="Client.php" hash="6253acd40102faead6d8750f5467d420"/><dir name="Http"><file name="CurlRequest.php" hash="da8ba5cf09aea35ee6a69c074d70f3f8"/><file name="Request.php" hash="b493bca240735584dd610eadf2372880"/><file name="RequestFactory.php" hash="5c41aa383b7be71773fa2b68c0ad4e6e"/></dir></dir></dir></dir></dir><dir name="maxmind-db"><dir name="reader"><file name="CHANGELOG.md" hash="6e0348104ab013c82482394c0d10322e"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="4d6518a9c5916e04e55cd394f0f39424"/><file name="composer.json" hash="0a95937043bf1924fb18f70ba453122a"/><dir name="ext"><file name="config.m4" hash="e6d700d321e152a73797148a486c449d"/><file name="maxminddb.c" hash="0ac67b9330fa433be129f77c2b9622c6"/><file name="php_maxminddb.h" hash="312cbe9b3aa017e727b52d421475b7fa"/><dir name="tests"><file name="001-load.phpt" hash="86ba1adc502540b42cbb1ef2fe5cfd67"/></dir></dir><dir name="src"><dir name="MaxMind"><dir name="Db"><dir name="Reader"><file name="Decoder.php" hash="ac9cc72ca5d65bf0e2bc26254d2e08e6"/><file name="InvalidDatabaseException.php" hash="30a5d8369ea2012e747ac1e59f78c76f"/><file name="Metadata.php" hash="643d939699d39a80c3a8c3adb19ee9e7"/><file name="Util.php" hash="92c382f8642000eef497745ec9bf2e91"/></dir><file name="Reader.php" hash="dd648dd18ea4df0c8ff6eabee28ddf57"/></dir></dir></dir></dir></dir></dir><dir name="Model"><file name="BackendRedirector.php" hash="dfad0b36d85dbfbd82866ff3a492bec9"/><file name="Notification.php" hash="a62c3b7ff11cd2d1082c0d959d8eb295"/><file name="Observer.php" hash="82ccec2453c0a1891eabae820e1fbaec"/><file name="StoreExtender.php" hash="316db9a49ce8c22edf44648f2fa7baa6"/></dir><dir name="bridge2cart"><file name="bridge.php" hash="e076e52fe7867f1306d35f4df55b433f"/><file name="config.php" hash="0fb8e12c8d9c293354eb4fb96a713608"/><file name="helper.php" hash="afb5e2141259c580285ac85d0c180144"/><file name="preloader.php" hash="8a8ada3537394687defdc28d4b6077e8"/></dir><dir name="controllers"><file name="ConfigurationController.php" hash="5c3b27204772f6cd243a34b4489b9305"/><file name="DiagnosticsController.php" hash="678d9c6ead8331a6cc25f775574beab6"/><file name="HelperController.php" hash="73fb01f035db7d75eb1ee0a3d535fd0b"/><file name="IndexController.php" hash="a76fb36d3f6fa4c370b766ed9ba818ed"/></dir><dir name="etc"><file name="adminhtml.xml" hash="07e287503c40ce7c588efe7863c05002"/><file name="config.xml" hash="93f85bbd7d3b9508b62d3d004840ec6a"/><file name="system.xml" hash="cfe59ca34ebfef69b900f4ad275a809a"/></dir><dir name="resources"><dir name="geoip"><file name="COPYRIGHT.txt" hash="37e1c6f4fc26ec1993d127575029c079"/><file name="GeoIP2-Country.mmdb" hash="33a191481c2840aa2ad482d00773d6b5"/><file name="LICENSE.txt" hash="46fce10ea30c7c62dbf39fc979604d68"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Webinterpret_Connector.xml" hash="087c2742f6bcb89ed6a77921e6493feb"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="1226a298ca08a92008293ba4e8c09eab"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="connector"><file name="footer.phtml" hash="bd48d0e36dea0936b9f28fbdada3b8c1"/><file name="head.phtml" hash="107312871a7b2730532db8d986de5726"/><file name="product_view.phtml" hash="2036bc444284b99f4cc8228fa4751777"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="867fafe49fa978668f6e5d7027c57aa6"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="system"><dir name="config"><file name="activate.phtml" hash="5ef389ad58cb1be9cc666fecd8379fbf"/><dir name="fieldset"><file name="banner.phtml" hash="921b677bd3e52d9c86172bdf26ab4a37"/><file name="status.phtml" hash="412bd1ea314a7f0c8897e6a9225c3551"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Webinterpret_Connector.csv" hash="91312fd3bd2645b88e3b3643b6b614a9"/></dir><dir name="en_US"><file name="Webinterpret_Connector.csv" hash="c382db753974630198cf029cf90b5d27"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.2</min><max>7.0.99</max></php></required></dependencies>
18
  </package>