NanoRep_Widgets_1_1_0 - Version 2.1.1

Version Notes

minor fix

Download this release

Release Info

Developer NanoRep
Extension NanoRep_Widgets_1_1_0
Version 2.1.1
Comparing to
See all releases


Code changes from version 2.1.0 to 2.1.1

app/code/local/NanoRep/Widgets/etc/config.xml CHANGED
@@ -12,7 +12,7 @@
12
  <config>
13
  <modules>
14
  <NanoRep_Widgets>
15
- <version>2.1.0</version>
16
  </NanoRep_Widgets>
17
  </modules>
18
  <global>
12
  <config>
13
  <modules>
14
  <NanoRep_Widgets>
15
+ <version>2.1.1</version>
16
  </NanoRep_Widgets>
17
  </modules>
18
  <global>
app/design/frontend/default/default/template/nanorepwidgets/contact_us.phtml CHANGED
@@ -13,7 +13,8 @@
13
  <?php if($fileds != ""): ?>
14
  <script type="text/javascript" src="<?php echo $this->getSkinUrl('nanorepwidgets/jsonp.js') ?>"></script>
15
  <script type="text/javascript">
16
- var _nanoRepContactusSessionId = '';
 
17
 
18
  function getNanoRepContactUsSessionId(query, e){
19
  var getSessionIdUrl = "<?php echo $this->getApiServerUrl('hello.js'); ?>";
@@ -52,53 +53,55 @@
52
  if(sid == ''){
53
  getNanoRepContactUsSessionId();
54
  }
 
55
  new Ajax.JSONRequest(nanoRepQueryApiUrl, {
56
- callbackParamName: "cb",
57
- parameters: {
58
- auto : "false",
59
- text : query,
60
- sameQ : "false",
61
- suggestion : "false",
62
- kb : "<?php echo $this->getKb(); ?>",
63
- "sid" : sid
64
- },
65
- onCreate: function(response) {
66
- // console.log("1: create", response, response.responseJSON);
67
- },
68
- onSuccess: function(response) {
69
- var data = response.responseJSON;
70
- // console.log(e);
71
- // console.log(data);
72
- nanoRepContactUsAnswers.title = "<?php echo $this->getTitle(); ?>";
73
- if(data.answers.length > 0){
74
- for(a = 0; a < data.answers.length; a++){
75
- if(data.answers[a].context != undefined){
76
- data.answers.splice(a, 1);
77
- }
78
- }
79
- if(data.answers.length > 0){
80
- nanoRepContactUsAnswers.show(e, data.answers);
81
- }
82
- else{
83
- $('answers-popup-text').innerHTML = '';
84
- nanoRepContactUsAnswers.hide();
85
-
86
  }
87
-
 
 
88
  }
89
  else{
90
  $('answers-popup-text').innerHTML = '';
91
  nanoRepContactUsAnswers.hide();
92
  }
93
- // console.log("1: success", response, response.responseJSON);
94
- },
95
- onFailure: function(response) {
96
- // console.log("1: fail", response, response.responseJSON);
97
- },
98
- onComplete: function(response) {
99
- // console.log("1: complete", response, response.responseJSON);
100
- }
101
- });
 
 
 
 
 
 
 
102
  }
103
 
104
  var fields_css = [<?php echo $fileds ?>];
@@ -107,12 +110,15 @@
107
  $$(fields_css[i])[0].observe('keyup', function(e){
108
  var query = e.target.value;
109
  if(query != ""){
110
- if(_nanoRepContactusSessionId == ''){
111
- getNanoRepContactUsSessionId(query, e);
112
- }
113
- else{
114
- queryNanoRepContactUs(query, _nanoRepContactusSessionId, e);
115
- }
 
 
 
116
  }
117
  });
118
  }
13
  <?php if($fileds != ""): ?>
14
  <script type="text/javascript" src="<?php echo $this->getSkinUrl('nanorepwidgets/jsonp.js') ?>"></script>
15
  <script type="text/javascript">
16
+ var _nanoRepContactusSessionId = '',
17
+ _nanoRepContactusRequestId = 0;
18
 
19
  function getNanoRepContactUsSessionId(query, e){
20
  var getSessionIdUrl = "<?php echo $this->getApiServerUrl('hello.js'); ?>";
53
  if(sid == ''){
54
  getNanoRepContactUsSessionId();
55
  }
56
+
57
  new Ajax.JSONRequest(nanoRepQueryApiUrl, {
58
+ callbackParamName: "cb",
59
+ parameters: {
60
+ auto : "false",
61
+ text : query,
62
+ requestId : _nanoRepContactusRequestId,
63
+ sameQ : "false",
64
+ suggestion : "false",
65
+ kb : "<?php echo $this->getKb(); ?>",
66
+ "sid" : sid
67
+ },
68
+ onCreate: function(response) {
69
+ // console.log("1: create", response, response.responseJSON);
70
+ },
71
+ onSuccess: function(response) {
72
+ var data = response.responseJSON;
73
+ // console.log(e);
74
+ //console.log(data);
75
+ nanoRepContactUsAnswers.title = "<?php echo $this->getTitle(); ?>";
76
+ if(data.answers.length > 0){
77
+ for(a = 0; a < data.answers.length; a++){
78
+ if(data.answers[a].context != undefined){
79
+ data.answers.splice(a, 1);
 
 
 
 
 
 
 
 
80
  }
81
+ }
82
+ if(data.answers.length > 0 && data.requestId == (_nanoRepContactusRequestId - 1)){
83
+ nanoRepContactUsAnswers.show(e, data.answers);
84
  }
85
  else{
86
  $('answers-popup-text').innerHTML = '';
87
  nanoRepContactUsAnswers.hide();
88
  }
89
+
90
+ }
91
+ else{
92
+ $('answers-popup-text').innerHTML = '';
93
+ nanoRepContactUsAnswers.hide();
94
+ }
95
+ // console.log("1: success", response, response.responseJSON);
96
+ },
97
+ onFailure: function(response) {
98
+ // console.log("1: fail", response, response.responseJSON);
99
+ },
100
+ onComplete: function(response) {
101
+ // console.log("1: complete", response, response.responseJSON);
102
+ }
103
+ });
104
+ _nanoRepContactusRequestId++;
105
  }
106
 
107
  var fields_css = [<?php echo $fileds ?>];
110
  $$(fields_css[i])[0].observe('keyup', function(e){
111
  var query = e.target.value;
112
  if(query != ""){
113
+ clearTimeout(window.nanoRepContactusTimer);
114
+ window.nanoRepContactusTimer = setTimeout(function(){
115
+ if(_nanoRepContactusSessionId == ''){
116
+ getNanoRepContactUsSessionId(query, e);
117
+ }
118
+ else{
119
+ queryNanoRepContactUs(query, _nanoRepContactusSessionId, e);
120
+ }
121
+ }, 500);
122
  }
123
  });
124
  }
app/design/frontend/rwd/default/template/nanorepwidgets/contact_us.phtml CHANGED
@@ -13,7 +13,8 @@
13
  <?php if($fileds != ""): ?>
14
  <script type="text/javascript" src="<?php echo $this->getSkinUrl('nanorepwidgets/jsonp.js') ?>"></script>
15
  <script type="text/javascript">
16
- var _nanoRepContactusSessionId = '';
 
17
 
18
  function getNanoRepContactUsSessionId(query, e){
19
  var getSessionIdUrl = "<?php echo $this->getApiServerUrl('hello.js'); ?>";
@@ -52,53 +53,55 @@
52
  if(sid == ''){
53
  getNanoRepContactUsSessionId();
54
  }
 
55
  new Ajax.JSONRequest(nanoRepQueryApiUrl, {
56
- callbackParamName: "cb",
57
- parameters: {
58
- auto : "false",
59
- text : query,
60
- sameQ : "false",
61
- suggestion : "false",
62
- kb : "<?php echo $this->getKb(); ?>",
63
- "sid" : sid
64
- },
65
- onCreate: function(response) {
66
- // console.log("1: create", response, response.responseJSON);
67
- },
68
- onSuccess: function(response) {
69
- var data = response.responseJSON;
70
- // console.log(e);
71
- // console.log(data);
72
- nanoRepContactUsAnswers.title = "<?php echo $this->getTitle(); ?>";
73
- if(data.answers.length > 0){
74
- for(a = 0; a < data.answers.length; a++){
75
- if(data.answers[a].context != undefined){
76
- data.answers.splice(a, 1);
77
- }
78
- }
79
- if(data.answers.length > 0){
80
- nanoRepContactUsAnswers.show(e, data.answers);
81
- }
82
- else{
83
- $('answers-popup-text').innerHTML = '';
84
- nanoRepContactUsAnswers.hide();
85
-
86
  }
87
-
 
 
88
  }
89
  else{
90
  $('answers-popup-text').innerHTML = '';
91
  nanoRepContactUsAnswers.hide();
92
  }
93
- // console.log("1: success", response, response.responseJSON);
94
- },
95
- onFailure: function(response) {
96
- // console.log("1: fail", response, response.responseJSON);
97
- },
98
- onComplete: function(response) {
99
- // console.log("1: complete", response, response.responseJSON);
100
- }
101
- });
 
 
 
 
 
 
 
102
  }
103
 
104
  var fields_css = [<?php echo $fileds ?>];
@@ -107,12 +110,15 @@
107
  $$(fields_css[i])[0].observe('keyup', function(e){
108
  var query = e.target.value;
109
  if(query != ""){
110
- if(_nanoRepContactusSessionId == ''){
111
- getNanoRepContactUsSessionId(query, e);
112
- }
113
- else{
114
- queryNanoRepContactUs(query, _nanoRepContactusSessionId, e);
115
- }
 
 
 
116
  }
117
  });
118
  }
13
  <?php if($fileds != ""): ?>
14
  <script type="text/javascript" src="<?php echo $this->getSkinUrl('nanorepwidgets/jsonp.js') ?>"></script>
15
  <script type="text/javascript">
16
+ var _nanoRepContactusSessionId = '',
17
+ _nanoRepContactusRequestId = 0;
18
 
19
  function getNanoRepContactUsSessionId(query, e){
20
  var getSessionIdUrl = "<?php echo $this->getApiServerUrl('hello.js'); ?>";
53
  if(sid == ''){
54
  getNanoRepContactUsSessionId();
55
  }
56
+
57
  new Ajax.JSONRequest(nanoRepQueryApiUrl, {
58
+ callbackParamName: "cb",
59
+ parameters: {
60
+ auto : "false",
61
+ text : query,
62
+ requestId : _nanoRepContactusRequestId,
63
+ sameQ : "false",
64
+ suggestion : "false",
65
+ kb : "<?php echo $this->getKb(); ?>",
66
+ "sid" : sid
67
+ },
68
+ onCreate: function(response) {
69
+ // console.log("1: create", response, response.responseJSON);
70
+ },
71
+ onSuccess: function(response) {
72
+ var data = response.responseJSON;
73
+ // console.log(e);
74
+ //console.log(data);
75
+ nanoRepContactUsAnswers.title = "<?php echo $this->getTitle(); ?>";
76
+ if(data.answers.length > 0){
77
+ for(a = 0; a < data.answers.length; a++){
78
+ if(data.answers[a].context != undefined){
79
+ data.answers.splice(a, 1);
 
 
 
 
 
 
 
 
80
  }
81
+ }
82
+ if(data.answers.length > 0 && data.requestId == (_nanoRepContactusRequestId - 1)){
83
+ nanoRepContactUsAnswers.show(e, data.answers);
84
  }
85
  else{
86
  $('answers-popup-text').innerHTML = '';
87
  nanoRepContactUsAnswers.hide();
88
  }
89
+
90
+ }
91
+ else{
92
+ $('answers-popup-text').innerHTML = '';
93
+ nanoRepContactUsAnswers.hide();
94
+ }
95
+ // console.log("1: success", response, response.responseJSON);
96
+ },
97
+ onFailure: function(response) {
98
+ // console.log("1: fail", response, response.responseJSON);
99
+ },
100
+ onComplete: function(response) {
101
+ // console.log("1: complete", response, response.responseJSON);
102
+ }
103
+ });
104
+ _nanoRepContactusRequestId++;
105
  }
106
 
107
  var fields_css = [<?php echo $fileds ?>];
110
  $$(fields_css[i])[0].observe('keyup', function(e){
111
  var query = e.target.value;
112
  if(query != ""){
113
+ clearTimeout(window.nanoRepContactusTimer);
114
+ window.nanoRepContactusTimer = setTimeout(function(){
115
+ if(_nanoRepContactusSessionId == ''){
116
+ getNanoRepContactUsSessionId(query, e);
117
+ }
118
+ else{
119
+ queryNanoRepContactUs(query, _nanoRepContactusSessionId, e);
120
+ }
121
+ }, 500);
122
  }
123
  });
124
  }
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>NanoRep_Widgets_1_1_0</name>
4
- <version>2.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/gpl.html">GPL v3.0</license>
7
  <channel>community</channel>
@@ -45,11 +45,11 @@ Agents get a 360&#xD;
45
  degree view of customers&#x2019; activity before&#xD;
46
  working on cases.&#xD;
47
  </description>
48
- <notes>Contact us integration</notes>
49
  <authors><author><name>NanoRep</name><user>avivnanore</user><email>aviv@nanorep.com</email></author></authors>
50
- <date>2015-03-01</date>
51
- <time>17:31:04</time>
52
- <contents><target name="magelocal"><dir name="NanoRep"><dir name="Widgets"><dir name="Block"><dir name="Adminhtml"><dir name="Answer"><dir name="Grid"><file name="Export.php" hash="98bed6330628da0056b9281cd0044ab1"/></dir><file name="Grid.php" hash="bda00ac3e4e1d85327eac227949e7bb5"/></dir><file name="Answer.php" hash="2c1b7c5dfdd1485b6c3cd8eb2c134bcd"/><file name="Mynanorep.php" hash="a7aea34f919bc75ca9a2d374a115b3fa"/><dir name="Order"><dir name="Grid"><file name="Export.php" hash="13bc156b3331c9b2dacde70e8483a909"/></dir><file name="Grid.php" hash="a78d4a0d35b0f1575763af33bb7c03e4"/></dir><file name="Order.php" hash="39ebfd2fe23db490046ae8e324901b72"/><dir name="System"><dir name="Config"><dir name="Form"><file name="Fields.php" hash="76cdde1a24c8348189384b278aa7480a"/></dir></dir></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><dir name="Answer"><dir name="Body"><file name="Pretty.php" hash="0a7d01f7ff96b9bace44256e82ab047e"/></dir><file name="Body.php" hash="89f497faa6a03cac040834804439a8d2"/><dir name="Title"><file name="Pretty.php" hash="b47a584daaed1c1e55545877b097f75b"/></dir><file name="Title.php" hash="115ee0a85937406fa07e8d439f1e3dbb"/></dir><dir name="Questions"><file name="Pretty.php" hash="3ffd9f82f2c5c2696eed0f35f7109b9e"/></dir><file name="Questions.php" hash="1a979d2272acde87c1e907aa29816c6c"/><dir name="Results"><file name="Pretty.php" hash="f0c8ba45e792f4cfee6ce4a22a3898fa"/></dir><file name="Results.php" hash="d08aa0325398bc23b335df26ca48c53c"/></dir></dir></dir></dir></dir><file name="Contactus.php" hash="ffd26e05d47bf36603ae6ed236a51c5e"/><file name="Customerhistoryjson.php" hash="2e6a8dc4c0e5c49639ff088ac3910009"/><file name="Embed.php" hash="c228d0d8d1dce3a975147434ef8f38ea"/><file name="Events.php" hash="5f5f965d626c8b73c072db1fca506d4c"/><file name="Float.php" hash="e51c028ad72498a96dcd1b38ae2f18f7"/><file name="Forgotpassword.php" hash="8493dab6da5c3bfcc2fee3f38bf7f1ad"/><file name="Header.php" hash="88fbe58d72982d15434f4b0d1462942e"/><file name="Login.php" hash="8bde6fc8b241e277ff4ce8b4c85b246c"/><file name="Success.php" hash="9383181f50edf203c457872412de7a0c"/></dir><dir name="Helper"><file name="Data.php" hash="7943a0d04ad961a97e0e177a2c0b44ac"/></dir><dir name="Model"><file name="Answer.php" hash="3931d7299a746e0ac90a6cae4a154982"/><file name="History.php" hash="0ffa4f8d5366abc1f7702e101cc5a90f"/><file name="Observer.php" hash="93b8b6b08dec94f56c4b122687df7f14"/><file name="Query.php" hash="c4eaf10c4bae492d782b552550570215"/><file name="Request.php" hash="aa581b40cd716654a1f71cc0fe202fcc"/><dir name="Resource"><dir name="Answer"><file name="Collection.php" hash="febae104bf1dd741119b8cf6f168b21d"/></dir><file name="Answer.php" hash="0f79604579c93d4315b62cc23d595a53"/><dir name="Query"><file name="Collection.php" hash="ab7cd2f853a4f21d216ee24748a9b1c8"/></dir><file name="Query.php" hash="ccc5ae9e2e2f144c37fef2245033911c"/><file name="Setup.php" hash="812ef9ae3c38fe84eda2c702890faac5"/></dir><file name="Session.php" hash="63b7e34c1782e8e376936e7f196b0353"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="ConversionTracking.php" hash="fd8154dd85c21be1f8e4270f21e42358"/></dir><dir name="Source"><file name="Attribute.php" hash="03529194354c0557a881305a69158fa5"/><file name="FloatWidgetActivePages.php" hash="e1f7f28f4e3e13ba13e4293eed61a943"/><file name="OrdersStatusActivePages.php" hash="f098536503386289102acfcc19d016a6"/><file name="ProductIdAttribute.php" hash="03c69b051e8ba54e47f87b6f1495c19e"/></dir></dir></dir></dir><dir name="controllers"><file name="AccountController.php" hash="77275920ac024972dc8686a7ecd30d06"/><dir name="Adminhtml"><file name="AnswerController.php" hash="c78297d83f113e8e01cc6b39158bdc66"/><file name="MynanorepController.php" hash="b411ddc154ef98ca3f568daab73fd003"/><file name="OrderController.php" hash="b5484dde49a2ebbcc8b0933bcad4c0bb"/></dir><file name="IndexController.php" hash="a88b39a8ee27925df32be3c57f95cbf6"/><file name="OrderController.php" hash="45be95b16ff3bbf928c0e8234a4a3fb2"/><file name="QueryController.php" hash="58145cd9ff89c0bc7ff078c0d11b4d83"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6b796ffd37d982a516efac2d8870c4dc"/><file name="config.xml" hash="7197f62dae32a0dba18fb4b30e6b6569"/><file name="system.xml" hash="71e4c16ef29b47b7ce53963fbf52f41b"/></dir><dir name="sql"><dir name="nanorepwidgets_setup"><file name="install-2.0.0.php" hash="df808cb581bb4e2cf8a03687c2969d1b"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="NanoRep_Widgets.xml" hash="4fbaad20e02fa3ed2147ba15864c3cab"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="5f391879e7c7bd0c5c81e649f9b5442a"/></dir><dir name="template"><dir name="nanorepwidgets"><file name="cdc.phtml" hash="587dab4d48df5773746b7ddff0a0165b"/><file name="contact_us.phtml" hash="6c05072487ec1d4766f2671fc5eb977a"/><file name="embed.phtml" hash="690b5ab9ed1d024a27220732a28652f5"/><file name="empty_page.phtml" hash="bc909c2029bf6035c74b4c2c8c8c4873"/><file name="events.phtml" hash="32c2e2b9f798104fb47db6a1a104783c"/><file name="float.phtml" hash="3a082b0822f143b8e8f7dc1da4137d1c"/><file name="forgotpassword.phtml" hash="8bcc9f68d8a7559930284d60d6a1b461"/><file name="header.phtml" hash="aee72cc5a4e551326c5c8c5931234f0f"/><file name="login.phtml" hash="47d8d9ba7a473f879e46523258ed8576"/><dir name="order"><file name="list.phtml" hash="83009ccc06d76eacea13c96caaf77c44"/></dir><file name="success.phtml" hash="9db1192b7c1190c07b983431f400d6b2"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="5f391879e7c7bd0c5c81e649f9b5442a"/></dir><dir name="template"><dir name="nanorepwidgets"><file name="cdc.phtml" hash="587dab4d48df5773746b7ddff0a0165b"/><file name="contact_us.phtml" hash="6c05072487ec1d4766f2671fc5eb977a"/><file name="embed.phtml" hash="690b5ab9ed1d024a27220732a28652f5"/><file name="empty_page.phtml" hash="bc909c2029bf6035c74b4c2c8c8c4873"/><file name="events.phtml" hash="32c2e2b9f798104fb47db6a1a104783c"/><file name="float.phtml" hash="3a082b0822f143b8e8f7dc1da4137d1c"/><file name="forgotpassword.phtml" hash="8bcc9f68d8a7559930284d60d6a1b461"/><file name="header.phtml" hash="aee72cc5a4e551326c5c8c5931234f0f"/><file name="login.phtml" hash="47d8d9ba7a473f879e46523258ed8576"/><dir name="order"><file name="list.phtml" hash="83009ccc06d76eacea13c96caaf77c44"/></dir><file name="success.phtml" hash="9db1192b7c1190c07b983431f400d6b2"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir><dir name="default"><dir name="default"><dir name="template"><dir name="nanorepwidgets"><file name="mynanorep.phtml" hash="ecdbcbdfbe5c4e4ed18aaf74492b5adb"/><dir name="system"><dir name="config"><dir name="form"><file name="fields.phtml" hash="8ee604593b10281c6bc73aca463d5529"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="341cf527d4c3eb6c452f5398d2ed7588"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="nanorepwidgets"><file name="contactus.css" hash="c019e42775bad8285f0001ba5f16398f"/><file name="head.css" hash="1779a092e2c2a771a0725e1cdd682a46"/><file name="head.js" hash="8bafa94d8432b42e2e6e7f6af91db39e"/><dir name="images"><file name="mp_sprites.gif" hash="3f1cf238d90dd2bf737f98d04bdcde69"/></dir><file name="jsonp.js" hash="c324f25e1c9f4a434db78ee2e669553b"/></dir></dir></dir></dir></target></contents>
53
  <compatible/>
54
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
55
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>NanoRep_Widgets_1_1_0</name>
4
+ <version>2.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/gpl.html">GPL v3.0</license>
7
  <channel>community</channel>
45
  degree view of customers&#x2019; activity before&#xD;
46
  working on cases.&#xD;
47
  </description>
48
+ <notes>minor fix</notes>
49
  <authors><author><name>NanoRep</name><user>avivnanore</user><email>aviv@nanorep.com</email></author></authors>
50
+ <date>2015-03-02</date>
51
+ <time>09:46:19</time>
52
+ <contents><target name="magelocal"><dir name="NanoRep"><dir name="Widgets"><dir name="Block"><dir name="Adminhtml"><dir name="Answer"><dir name="Grid"><file name="Export.php" hash="98bed6330628da0056b9281cd0044ab1"/></dir><file name="Grid.php" hash="bda00ac3e4e1d85327eac227949e7bb5"/></dir><file name="Answer.php" hash="2c1b7c5dfdd1485b6c3cd8eb2c134bcd"/><file name="Mynanorep.php" hash="a7aea34f919bc75ca9a2d374a115b3fa"/><dir name="Order"><dir name="Grid"><file name="Export.php" hash="13bc156b3331c9b2dacde70e8483a909"/></dir><file name="Grid.php" hash="a78d4a0d35b0f1575763af33bb7c03e4"/></dir><file name="Order.php" hash="39ebfd2fe23db490046ae8e324901b72"/><dir name="System"><dir name="Config"><dir name="Form"><file name="Fields.php" hash="76cdde1a24c8348189384b278aa7480a"/></dir></dir></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><dir name="Answer"><dir name="Body"><file name="Pretty.php" hash="0a7d01f7ff96b9bace44256e82ab047e"/></dir><file name="Body.php" hash="89f497faa6a03cac040834804439a8d2"/><dir name="Title"><file name="Pretty.php" hash="b47a584daaed1c1e55545877b097f75b"/></dir><file name="Title.php" hash="115ee0a85937406fa07e8d439f1e3dbb"/></dir><dir name="Questions"><file name="Pretty.php" hash="3ffd9f82f2c5c2696eed0f35f7109b9e"/></dir><file name="Questions.php" hash="1a979d2272acde87c1e907aa29816c6c"/><dir name="Results"><file name="Pretty.php" hash="f0c8ba45e792f4cfee6ce4a22a3898fa"/></dir><file name="Results.php" hash="d08aa0325398bc23b335df26ca48c53c"/></dir></dir></dir></dir></dir><file name="Contactus.php" hash="ffd26e05d47bf36603ae6ed236a51c5e"/><file name="Customerhistoryjson.php" hash="2e6a8dc4c0e5c49639ff088ac3910009"/><file name="Embed.php" hash="c228d0d8d1dce3a975147434ef8f38ea"/><file name="Events.php" hash="5f5f965d626c8b73c072db1fca506d4c"/><file name="Float.php" hash="e51c028ad72498a96dcd1b38ae2f18f7"/><file name="Forgotpassword.php" hash="8493dab6da5c3bfcc2fee3f38bf7f1ad"/><file name="Header.php" hash="88fbe58d72982d15434f4b0d1462942e"/><file name="Login.php" hash="8bde6fc8b241e277ff4ce8b4c85b246c"/><file name="Success.php" hash="9383181f50edf203c457872412de7a0c"/></dir><dir name="Helper"><file name="Data.php" hash="7943a0d04ad961a97e0e177a2c0b44ac"/></dir><dir name="Model"><file name="Answer.php" hash="3931d7299a746e0ac90a6cae4a154982"/><file name="History.php" hash="0ffa4f8d5366abc1f7702e101cc5a90f"/><file name="Observer.php" hash="93b8b6b08dec94f56c4b122687df7f14"/><file name="Query.php" hash="c4eaf10c4bae492d782b552550570215"/><file name="Request.php" hash="aa581b40cd716654a1f71cc0fe202fcc"/><dir name="Resource"><dir name="Answer"><file name="Collection.php" hash="febae104bf1dd741119b8cf6f168b21d"/></dir><file name="Answer.php" hash="0f79604579c93d4315b62cc23d595a53"/><dir name="Query"><file name="Collection.php" hash="ab7cd2f853a4f21d216ee24748a9b1c8"/></dir><file name="Query.php" hash="ccc5ae9e2e2f144c37fef2245033911c"/><file name="Setup.php" hash="812ef9ae3c38fe84eda2c702890faac5"/></dir><file name="Session.php" hash="63b7e34c1782e8e376936e7f196b0353"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="ConversionTracking.php" hash="fd8154dd85c21be1f8e4270f21e42358"/></dir><dir name="Source"><file name="Attribute.php" hash="03529194354c0557a881305a69158fa5"/><file name="FloatWidgetActivePages.php" hash="e1f7f28f4e3e13ba13e4293eed61a943"/><file name="OrdersStatusActivePages.php" hash="f098536503386289102acfcc19d016a6"/><file name="ProductIdAttribute.php" hash="03c69b051e8ba54e47f87b6f1495c19e"/></dir></dir></dir></dir><dir name="controllers"><file name="AccountController.php" hash="77275920ac024972dc8686a7ecd30d06"/><dir name="Adminhtml"><file name="AnswerController.php" hash="c78297d83f113e8e01cc6b39158bdc66"/><file name="MynanorepController.php" hash="b411ddc154ef98ca3f568daab73fd003"/><file name="OrderController.php" hash="b5484dde49a2ebbcc8b0933bcad4c0bb"/></dir><file name="IndexController.php" hash="a88b39a8ee27925df32be3c57f95cbf6"/><file name="OrderController.php" hash="45be95b16ff3bbf928c0e8234a4a3fb2"/><file name="QueryController.php" hash="58145cd9ff89c0bc7ff078c0d11b4d83"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6b796ffd37d982a516efac2d8870c4dc"/><file name="config.xml" hash="f059fba5d9922a75344c4e89bc4ed18c"/><file name="system.xml" hash="71e4c16ef29b47b7ce53963fbf52f41b"/></dir><dir name="sql"><dir name="nanorepwidgets_setup"><file name="install-2.0.0.php" hash="df808cb581bb4e2cf8a03687c2969d1b"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="NanoRep_Widgets.xml" hash="4fbaad20e02fa3ed2147ba15864c3cab"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="5f391879e7c7bd0c5c81e649f9b5442a"/></dir><dir name="template"><dir name="nanorepwidgets"><file name="cdc.phtml" hash="587dab4d48df5773746b7ddff0a0165b"/><file name="contact_us.phtml" hash="6e6dda6b65f7f6fac4394b84d6ef60a3"/><file name="embed.phtml" hash="690b5ab9ed1d024a27220732a28652f5"/><file name="empty_page.phtml" hash="bc909c2029bf6035c74b4c2c8c8c4873"/><file name="events.phtml" hash="32c2e2b9f798104fb47db6a1a104783c"/><file name="float.phtml" hash="3a082b0822f143b8e8f7dc1da4137d1c"/><file name="forgotpassword.phtml" hash="8bcc9f68d8a7559930284d60d6a1b461"/><file name="header.phtml" hash="aee72cc5a4e551326c5c8c5931234f0f"/><file name="login.phtml" hash="47d8d9ba7a473f879e46523258ed8576"/><dir name="order"><file name="list.phtml" hash="83009ccc06d76eacea13c96caaf77c44"/></dir><file name="success.phtml" hash="9db1192b7c1190c07b983431f400d6b2"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="5f391879e7c7bd0c5c81e649f9b5442a"/></dir><dir name="template"><dir name="nanorepwidgets"><file name="cdc.phtml" hash="587dab4d48df5773746b7ddff0a0165b"/><file name="contact_us.phtml" hash="6e6dda6b65f7f6fac4394b84d6ef60a3"/><file name="embed.phtml" hash="690b5ab9ed1d024a27220732a28652f5"/><file name="empty_page.phtml" hash="bc909c2029bf6035c74b4c2c8c8c4873"/><file name="events.phtml" hash="32c2e2b9f798104fb47db6a1a104783c"/><file name="float.phtml" hash="3a082b0822f143b8e8f7dc1da4137d1c"/><file name="forgotpassword.phtml" hash="8bcc9f68d8a7559930284d60d6a1b461"/><file name="header.phtml" hash="aee72cc5a4e551326c5c8c5931234f0f"/><file name="login.phtml" hash="47d8d9ba7a473f879e46523258ed8576"/><dir name="order"><file name="list.phtml" hash="83009ccc06d76eacea13c96caaf77c44"/></dir><file name="success.phtml" hash="9db1192b7c1190c07b983431f400d6b2"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir><dir name="default"><dir name="default"><dir name="template"><dir name="nanorepwidgets"><file name="mynanorep.phtml" hash="ecdbcbdfbe5c4e4ed18aaf74492b5adb"/><dir name="system"><dir name="config"><dir name="form"><file name="fields.phtml" hash="8ee604593b10281c6bc73aca463d5529"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="341cf527d4c3eb6c452f5398d2ed7588"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="nanorepwidgets"><file name="contactus.css" hash="c019e42775bad8285f0001ba5f16398f"/><file name="head.css" hash="1779a092e2c2a771a0725e1cdd682a46"/><file name="head.js" hash="8bafa94d8432b42e2e6e7f6af91db39e"/><dir name="images"><file name="mp_sprites.gif" hash="3f1cf238d90dd2bf737f98d04bdcde69"/></dir><file name="jsonp.js" hash="c324f25e1c9f4a434db78ee2e669553b"/></dir></dir></dir></dir></target></contents>
53
  <compatible/>
54
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
55
  </package>