Beck_LiveChat - Version 1.5.2

Version Notes

none

Download this release

Release Info

Developer Magento Core Team
Extension Beck_LiveChat
Version 1.5.2
Comparing to
See all releases


Code changes from version 1.5.1 to 1.5.2

app/code/community/Beck/LiveChat/Block/Reporting.php CHANGED
@@ -14,8 +14,16 @@ class Beck_LiveChat_Block_Reporting extends Mage_Adminhtml_Block_Template
14
  $count_order++;
15
  }
16
  }
17
- $percent_order = $count_order / $total_chat * 100;
18
- $percent_noorder = ($total_chat - $count_order) / $total_chat * 100;
 
 
 
 
 
 
 
 
19
  $xml = "<chart>
20
  <chart_data>
21
  <row>
14
  $count_order++;
15
  }
16
  }
17
+ if ($total_chart <= 0)
18
+ {
19
+ $percent_order = 0;
20
+ $percent_noorder = 100;
21
+ }
22
+ else
23
+ {
24
+ $percent_order = $count_order / $total_chat * 100;
25
+ $percent_noorder = ($total_chat - $count_order) / $total_chat * 100;
26
+ }
27
  $xml = "<chart>
28
  <chart_data>
29
  <row>
app/code/community/Beck/LiveChat/Model/Api.php CHANGED
@@ -79,10 +79,17 @@ class Beck_LiveChat_Model_Api extends Mage_Api_Model_Resource_Abstract
79
  $session->Expired();
80
  }
81
  $index = count($res);
82
- $res[$index]['id'] = $session_id;
83
- $res[$index]['customer_url'] = $session->getCustomer_url();
84
- $res[$index]['close'] = $session->getClose();
85
- $res[$index]['customer_name'] = $session->getCustomer_name();
 
 
 
 
 
 
 
86
  }
87
  return ($res);
88
  }
79
  $session->Expired();
80
  }
81
  $index = count($res);
82
+ if ($session->getId() === null)
83
+ {
84
+ $session = Mage::getModel('livechat/archives_session')->load($session_id);
85
+ }
86
+ if ($session->getId() !== null)
87
+ {
88
+ $res[$index]['id'] = $session_id;
89
+ $res[$index]['customer_url'] = $session->getCustomer_url();
90
+ $res[$index]['close'] = $session->getClose();
91
+ $res[$index]['customer_name'] = $session->getCustomer_name();
92
+ }
93
  }
94
  return ($res);
95
  }
app/code/community/Beck/LiveChat/controllers/TestController.php CHANGED
@@ -1,15 +1,11 @@
1
  <?php
2
 
3
- class Beck_LiveChat_TestController extends Mage_Adminhtml_Controller_Action
4
  {
5
  public function indexAction()
6
  {
7
- /*$visitors = Mage::getModel('log/visitor')->getCollection()
8
- ->useOnlineFilter();
9
- foreach ($visitors as $visitor)
10
- {
11
- echo 'visiteur :' . $visitor->getSession_id().'<br>';
12
- }*/
13
- //Zend_Debug::dump($res);
14
  }
15
  }
1
  <?php
2
 
3
+ class Beck_LiveChat_TestController extends Mage_Core_Controller_Front_Action
4
  {
5
  public function indexAction()
6
  {
7
+ $api = Mage::getModel('livechat/api');
8
+ $result = $api->refreshmessages('8-31,32,33,34');
9
+ Zend_Debug::dump($result);
 
 
 
 
10
  }
11
  }
app/code/community/Beck/LiveChat/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Beck_LiveChat>
5
- <version>1.5.1</version>
6
  </Beck_LiveChat>
7
  </modules>
8
  <admin>
2
  <config>
3
  <modules>
4
  <Beck_LiveChat>
5
+ <version>1.5.2</version>
6
  </Beck_LiveChat>
7
  </modules>
8
  <admin>
app/etc/modules/ZBeck_LiveChat.xml CHANGED
@@ -5,7 +5,7 @@
5
  <active>true</active>
6
  <codePool>community</codePool>
7
  <depends />
8
- <version>1.5.1</version>
9
  </Beck_LiveChat>
10
  </modules>
11
  </config>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
  <depends />
8
+ <version>1.5.2</version>
9
  </Beck_LiveChat>
10
  </modules>
11
  </config>
app/locale/es_ES/Beck_LiveChat.csv ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Configuration","Configuración"
2
+ "General options","Opciones generales"
3
+ "Is enabled","Habilitado"
4
+ "Display options","Mostrar opciones"
5
+ "Chat label","Etiqueta de charla"
6
+ "LiveChat configuration","Configuración de charla en vivo"
7
+ "LiveChat operators","Operadores de charla en vivo"
8
+ "Operators","Operadores"
9
+ "Operators list","Listado de operadores"
10
+ "Create new operator","Crear nuevo operador"
11
+ "Operator's data","Datos del operador"
12
+ "Password","Contraseña"
13
+ "Name","Nombre"
14
+ "Enabled","Habilitado"
15
+ "Disabled","Deshabilitado"
16
+ "Save","Guardar"
17
+ "Create","Crear"
18
+ "Operator %s has been successfully created.","Operador %s se creó con éxito"
19
+ "Operator %s has been successfully modified.","Operador %s se modificó con éxito"
20
+ "Operator %s has been successfully deleted.","Operador %s se eliminó con éxito"
21
+ "Edit operator","Editar operador"
22
+ "disabled","deshabilitado"
23
+ "Send","Enviar"
24
+ "Chat refresh frequency","Frecuencia de refresco de charla"
25
+ "Chat refresh decay","Decaimiento de refresco de charla"
26
+ "Image style","Estilo de imagen"
27
+ "Get chat list","Obtener lista de charla"
28
+ "Get chat messages messages","Obtener mensages de charla"
29
+ "Send message to customer","Enviar mensaje a consumidor"
30
+ "Operator disconnection","Desconexión de operador"
31
+ "Operator connection","Conexión de operador"
32
+ "Title label","Etiqueta de titulo"
33
+ "Unavailable message","Mensaje no disponible"
34
+ "Default customer name","Nombre de consumidor asumido"
35
+ "Get new messages","Obtener nuevos mensajes"
36
+ "Get new sessions","Obtener nuevas sesiones"
37
+ "System name","Nombre del sistema"
38
+ "System wait message","Mensajes de espera del sistema"
39
+ "Customers chat list","Lista de charla de consumidores"
40
+ "Customer name","Nombre de consumidor"
41
+ "Started at","Iniciado a las"
42
+ "Dispatched to","Despachado a"
43
+ "Store","Tienda"
44
+ "State","Estado"
45
+ "Not dispatched","No despachado"
46
+ "Closed","Cerrado"
47
+ "Close","Cerrar"
48
+ "Open","Abrir"
49
+ "Are you sure ?","¿ Está seguro ?"
50
+ "Total of %d record(s) were successfully deleted","Un total de %d registros fueron borrados con éxito"
51
+ "Please select chat(s)","Por favor seleccione charlas"
52
+ "Status","Estados"
53
+ "Online","En linea"
54
+ "Disconnected","Desconectado"
55
+ "Autor","Autor"
56
+ "Message","Mensaje"
57
+ "Placed at","Situado en"
58
+ "Please select message(s)","Por favor seleccione mensajes"
59
+ "Delete","Borrar"
60
+ "-- Session terminated --","Sesión terminada"
61
+ "Total of %d record(s) were successfully closed","Un total de %d registros fueron cerrados con éxito"
62
+ "There is no chat available for operator %s","No hay charlas disponibles para el operador %s"
63
+ "This session is closed, you cannot send message.","Esta sesión se cerró, no puede enviar mensaje."
64
+ "Access denied for %s","Acceso denegado para %s"
65
+ "Operator access","Acceso Operador"
66
+ "Operator %s is now disconnected and no longer appear online.","El Operador % está ahora desconectado y no volverá a aparecer en línea"
67
+ "Operator %s has just been created configure the store allowed for him <a href=\'%s\'>here</a>.","El Operador %"
68
+ "Admin refresh rate","Ratio de refresco del Administrador"
69
+ "Behaviour","Comportamiento"
70
+ "On Operator disconnect","Cuando un Operador se desconecta"
71
+ "On chat session close","Cuando una sesión de Chat se cierra"
72
+ "On customer connexion","Cuando un cliente se conecta"
73
+ "Close dispatched chat session","Cerrar sesiones de chat completadas"
74
+ "Undispatch non-closed chat session","No cerrar sesiones de chat sin completar"
75
+ "Send a close message","Enviar y cerrar el mensage"
76
+ "Allow to reopen a closed chat session","Permitir reabrir una sesión de chat cerrada"
77
+ "Replace the chat session creator name","Reemplazar nombre autor del creador de sesión"
78
+ "Replace all customer's messages autor name","Reemplazar nombre autor de todos los mensajes del cliente"
79
+ "When the customer sends a message","Cuando el cliente envía un mensage"
80
+ "System message when session is automatically created","Mensaje del sistema cuando se crea sesión automáticamente"
81
+ "Chat session creation","Crear sesión de chat"
82
+ "When customer send his first message","Cuando el cliente envía su primer mensage"
83
+ "Automatically create a new chatsession for everyone","Automáticamente crear una nueva sesión de chat para cualquiera"
84
+ "Automatically create a new chat session for every customer logged in","Automáticamente crear una nueva sesión de chat para cualquier cliente identificado"
85
+ "Customer url","Url cliente"
86
+ "Total of %d record(s) were successfully opened","Un total de %d registro(s) han sido abiertos"
87
+ "Running chat sessions","Iniciando sesiones de chat"
88
+ "Archived chat sessions","Sesiones de chat archivadas"
89
+ "View archived sessions","Ver sesiones archivadas"
90
+ "View live sessions","Ver sesiones activas"
91
+ "Back","Volver"
92
+ "Messages","Mensages"
93
+ "Total of %d record(s) were successfully archived","Un total de %d registro(s) han sido archivados"
94
+ "Archive","Archivar"
95
+ "Close a session","Cerrar sesión"
96
+ "Display LiveChat box in front office.","Mostrar cuadro LiveChat al frente."
97
+ "Message refresh interval for customer (in seconds).","Intervalo de refresco de mensages para el cliente (en segundos)."
98
+ "Admin operator page refresh rate (in seconds).","Ratio de refresco página operador administración (en segundos)."
99
+ "Message which is displaying when no operator are online.","Mensage que es mostrado cuando no hay operadores online."
100
+ "Name of the customer when not logged in.","Nombre del cliente cuando no está identificado."
101
+ "Sender name of the automatic messages.","Nombre remitente de mensajes automáticos."
102
+ "Message sent when a customer has just started a chat session.","Mensage enviado cuando un cliente inicia sesión de chat."
103
+ "Message sent when a chat has been automatically created.","Mensage cuando un chat ha sido creado automáticamente."
104
+ "The chat session is closed, so no operator can get it.","La sesión de chat se ha cerrado, por lo que ningún operador puede seguir."
105
+ "The chat session is released, so another operator can get it.","La sesión de chat se ha liberado, por lo que otro operador puede seguir."
106
+ "If the chat session is not archived the customer can reactivate it by sending a new message.","Si la sesión de chat no es archivada el cliente puede reactivarla enviado un mensage nuevo."
107
+ "Archived session are definitevely closed. If not chat sessions are only closed.","Las sesiones archivadas son definitivamente cerradas. Si no las sesiones de chat sólo son cerradas."
108
+ "Total of %d record(s) were successfully disconnected","Un total de %d registro(s) fueron desconectados"
109
+ "Disconnect","Desconectar"
110
+ "Update existing sessions","Actualizar sesiones existentes"
111
+ "Maximum number of lines displayed","Número máximo de líneas a la vista"
112
+ "Set 0 to display all lines","Establecer 0 para mostrar todas las líneas"
113
+ "When the session expire","Cuando la sesión expira"
114
+ "Archivate the session","Archivar la sesión"
115
+ "Session","Sesión"
116
+ "Sessions Live","Sesión Activa"
117
+ "Display only for registered user","Mostrar sólo para usuarios registrados"
118
+ "If yes, only connected customer can see the chatbox.","Si es sí, sólo los clientes conectados pueden ver la chat."
119
+ "Reporting","Creando informes"
120
+ "Convert rate","Ratio de conversión"
121
+ "Chat with order","Chat con pedido"
122
+ "Chat without order","Chat sin pedido"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Beck_LiveChat</name>
4
- <version>1.5.1</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>
@@ -23,9 +23,9 @@ By providing tips online.
23
  Interact with your customer by sending them link to your product pages.</description>
24
  <notes>none</notes>
25
  <authors><author><name>Fabrice Beck</name><user>auto-converted</user><email>fabrice.beck@fia-net.com</email></author></authors>
26
- <date>2009-04-30</date>
27
- <time>08:36:43</time>
28
- <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="livechat"><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="close.png" hash="453440e151c84241d7e96fbef87e3ce4"/><file name="close_hover.png" hash="504658759baedc0fae5461fc25d1258d"/></dir></dir><dir name="livechat"><file name="livechat.css" hash="dc9579be4ca477338f78cb63d63dc5f4"/></dir><dir name="media"><dir name="livechat"><dir name="charts_library"><file name="ar3d.swf" hash="fb7a5ccea0ef3623a100861ad1b3177f"/><file name="arno.swf" hash="6f456468baea864aacf66638bac2b589"/><file name="ars3.swf" hash="f987c6b33b986081b16ffc7c32816e1c"/><file name="arst.swf" hash="fbea762106f595c8a80d0836765888b0"/><file name="brfl.swf" hash="0f670edbeeb28e39e3bd67af6f2edbe7"/><file name="brno.swf" hash="048dee265c0261516f3d7372ab3be8b5"/><file name="brst.swf" hash="f2dba1bfc8edb0afc338b419fb48e2fa"/><file name="buno.swf" hash="3d9300f94accd4088b35c46aac3e44a4"/><file name="cl3d.swf" hash="ebe6bf32cf48b06471cb6a0573014a1b"/><file name="clfl.swf" hash="7f5f46d5aa493d70ee5c7b2ddbdc78dc"/><file name="clim.swf" hash="36ee76079777bb8e64050b61c4cc1c97"/><file name="clno.swf" hash="deb606ffde80297088a35286e50a9ca3"/><file name="clp3.swf" hash="b341e66d7a3463bfa2e27fbde386df8c"/><file name="cls3.swf" hash="043fcd28ed20a2b1367eb31039caac03"/><file name="clst.swf" hash="c69eed5bbac1cfb3e00a5ce06bf0948e"/><file name="cnno.swf" hash="10b9081bbaac03b8899b2801e949ca78"/><file name="dollar.jpg" hash="2e5353fa0aaff541926f0a90693211fe"/><file name="dono.swf" hash="9d1f9c75850599448c9faed3c050e1af"/><file name="lnno.swf" hash="c23393fe4574aae26d59b9e8f6fb40bf"/><file name="mxno.swf" hash="1f4c2d4283fa10f48a3b92562a59c0a2"/><file name="pi3d.swf" hash="bcb13d2e348979745c11a9368a24d2ff"/><file name="pie.jpg" hash="b1c6fc913c3b3a8ef5d674be32bffe0f"/><file name="piim.swf" hash="83ca329f031841560721ffd3ca4473ed"/><file name="pino.swf" hash="2c9b396e3b5194380d78a0331cd2ec37"/><file name="pono.swf" hash="3cdef367c4ff70b4772d64e48291bc58"/><file name="scno.swf" hash="c50bcebd97ee6def9079a51f54c4db8f"/></dir><file name="charts.swf" hash="2570563b5c23598a97e3c74cf47a2dc8"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="b4e4554301897980dfb271a5f33549b4"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="2089b8492f53243c46f05e1d86ae85dc"/></dir></dir></dir><dir name="modern"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="f0595e7964bdae458d1c7fb4a0e71060"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="5d6de5587cb6edace482aa9ceb9d5363"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="af3e2fb377187626cb2dd1568b041789"/></dir><dir name="template"><dir name="livechat"><file name="operator.phtml" hash="7013c5fe4dbd2cba0fe06336dba4c7a7"/><file name="reporting.phtml" hash="9d85c067799b93afa051f06c8fe69f91"/><file name="session.phtml" hash="bed057fb47975a3a7a09187b82c76483"/><dir name="notification"><file name="toolbar.phtml" hash="17cf821d5949f14a61fcd5e8b36e5038"/></dir><dir name="session"><file name="detail.phtml" hash="278dbb25de95e687d02b291a67261518"/></dir><dir name="widget"><file name="chatlive.phtml" hash="309a7cfb21f706f63f90d937112d9d26"/><file name="sessionslive.phtml" hash="692226dc8625b3765030d6b48711cea4"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="7a80c2f0893481af99d2acabf14de075"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir><dir name="modern"><dir name="layout"><file name="livechat.xml" hash="37e80dc38dd51095f830c1ca6349cbe5"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Beck"><dir name="LiveChat"><dir name="Block"><file name="Operator.php" hash="359b81c070d1e6599fec6186adbb76cb"/><file name="Reporting.php" hash="f648e735daf17a99b56f64c173dd2e71"/><file name="Session.php" hash="4ef2dd4fbfc349b31acc707882860d9c"/><file name="Template.php" hash="0c074cc3ac23df715131bc5e3be4f043"/><dir name="Notification"><file name="Toolbar.php" hash="4b158993a40a24fe1f355fa8d29623af"/></dir><dir name="Operator"><file name="Edit.php" hash="540a5246fcff5b1a8e821445e07ebd12"/><file name="List.php" hash="e4f392b7522aa002744abcb33fa5ce70"/><dir name="Edit"><file name="Form.php" hash="e97d951a63ed996560cb1526e23cb358"/></dir></dir><dir name="Session"><file name="Detail.php" hash="821d5c92c500cafa72ed50ba29eab352"/><file name="Grid.php" hash="b2116c31cbd297ed046296083bbf2fcf"/><dir name="Detail"><file name="Grid.php" hash="15786bd48ac663b9e9292d0d27fe8a30"/></dir></dir><dir name="Widget"><file name="Chat.php" hash="926f6fc13b7490d2f97035f1276078e7"/><file name="Sessions.php" hash="97e5f2686cc6f2762731b1fa536d91dc"/><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Dispatched.php" hash="9052fa22cd9e07375d0de4f312c8bcf3"/><file name="Online.php" hash="1810c742fe22fd536798f2f76a11479c"/><file name="State.php" hash="c4367ea40d730b6b42e887fb0f57f758"/></dir><dir name="Renderer"><file name="Dispatched.php" hash="21e79c6d3662fd71737f1f6021509883"/><file name="Online.php" hash="e16ef426e2d329986774670c75188901"/><file name="State.php" hash="4efb918376b7b23ec182ad7d1c981ec9"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="ChatController.php" hash="6ec1063832d7133d2f0ad866cc460376"/><file name="OperatorController.php" hash="68e72482a399d247bd8972032c0ea797"/><file name="ReportingController.php" hash="4b4ed6c8ae7d765e173c5befd0f40fea"/><file name="TestController.php" hash="74a83761b01601c438554d3e5634451e"/><dir name="Operator"><file name="ListController.php" hash="6e82400d65838594f0f139d3884fd75f"/></dir><dir name="Session"><file name="ListController.php" hash="174608c0fb4446193f4ad2dfbbd127f9"/><file name="LiveController.php" hash="d3642bbfca2c6e54bd902187c46c4276"/></dir></dir><dir name="etc"><file name="api.xml" hash="557b013a006d6cb0700b9bd80be41ace"/><file name="config.xml" hash="f6d575e711afc8897f99c735bc5e8d3f"/><file name="system.xml" hash="0ace3cfb75089b603ae902f1d31c0af1"/></dir><dir name="Helper"><file name="Data.php" hash="9b8122364bcd6d142aaf2221229fb79e"/></dir><dir name="Model"><file name="AdminSession.php" hash="c6edda40339ae92777ff627d56fd69f7"/><file name="Api.php" hash="01f3c0a5548787af4f01e6bd24cf847e"/><file name="Event.php" hash="1f9664d6b3455d4bf7e34aa2500163d1"/><file name="Message.php" hash="14b9b7ffef2638e2178ed449945f2189"/><file name="Operator.php" hash="0a79de761f0f1b8b2cfb5318529c6c16"/><file name="Session.php" hash="38e464f28d70d3993d6797cd2a4ed77f"/><dir name="Archives"><file name="Message.php" hash="77405730511ada4e8f973189cc04a70a"/><file name="Session.php" hash="e7e342df2a427a31c6d0392ae230f084"/></dir><dir name="Mysql4"><file name="Message.php" hash="15f54ff4ac2e42d499a465ba02f54545"/><file name="Operator.php" hash="183d4556a4adb362080db8b29b3d363b"/><file name="Session.php" hash="23470233413431cb15fd64d6f6a9e57a"/><dir name="Archives"><file name="Message.php" hash="08a24b0294485713fa948a6bdc321d95"/><file name="Session.php" hash="1e9179810d16098a15e318aec9fecb7d"/><dir name="Message"><file name="Collection.php" hash="312e6198632cc2cbd4fc7b5ace253383"/></dir><dir name="Session"><file name="Collection.php" hash="2f25d488fde87349bfa0e39faa7b6a11"/></dir></dir><dir name="Message"><file name="Collection.php" hash="fe88b353a34e33a8c1dd3ff7fb31dcd4"/></dir><dir name="Operator"><file name="Collection.php" hash="1f85ba68d6c707589b7650fc3fbf1929"/></dir><dir name="Session"><file name="Collection.php" hash="4409f4ba36832a8c0ff8e186b4945de8"/></dir></dir><dir name="Session"><file name="List.php" hash="c97c0507a2ead10e3df948a985f94aae"/></dir><dir name="Source"><file name="Images.php" hash="a78214110d992b5f1267360fac8ffb10"/><file name="Online.php" hash="16a3933b4c4801ce20c714635ea52a47"/><file name="SessionCreation.php" hash="bf20fc0949be23a892b5744e9a68ed4b"/></dir></dir><dir name="sql"><dir name="livechat_setup"><file name="mysql4-install-1.0.0.php" hash="5a967b18d8bc56b345cd3870d1c9ebb7"/><file name="mysql4-upgrade-1.0.0-1.2.4.php" hash="852891c2299a597fe671ca3e06101f82"/><file name="mysql4-upgrade-1.2.4-1.2.9.php" hash="573b71d02e8690e8c4903cf0447a928e"/><file name="mysql4-upgrade-1.2.9-1.3.0.php" hash="d487ca45bb75f68b8f813d4bd3c04ca7"/><file name="mysql4-upgrade-1.3.0-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.1-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.2-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.3-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.4-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="Beck_LiveChat.csv" hash="cc3e27db788935eb162d3bf2b45b289a"/></dir><dir name="fr_FR"><file name="Beck_LiveChat.csv" hash="34e520dc019a8824be7d55f833005406"/></dir><dir name="hu_HU"><file name="Beck_LiveChat.csv" hash="54ac103d11ce3b50f7dea53743f61ed5"/></dir><dir name="lt_LT"><file name="Beck_LiveChat.csv" hash="49c8f61e6d80cf79f52502a268f65aa7"/></dir><dir name="nl_NL"><file name="Beck_LiveChat.csv" hash="8e7fdb53f6bd85f5a5b5a3a2bb0920e7"/></dir><dir name="pt_BR"><file name="Beck_LiveChat.csv" hash="dcc95caec18cf727489eb48a523368fe"/></dir><dir name="vi_VN"><file name="Beck_LiveChat.csv" hash="7174a4d1b4dc358c4246729be74721be"/></dir></target><target name="mage"><dir name="js"><dir name="livechat"><file name="js.js" hash="e2e673b8f54faa02279c669e5db595fa"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ZBeck_LiveChat.xml" hash="24f150aed1934c2b875f717b349df1e7"/></dir></target></contents>
29
  <compatible/>
30
  <dependencies/>
31
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Beck_LiveChat</name>
4
+ <version>1.5.2</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>
23
  Interact with your customer by sending them link to your product pages.</description>
24
  <notes>none</notes>
25
  <authors><author><name>Fabrice Beck</name><user>auto-converted</user><email>fabrice.beck@fia-net.com</email></author></authors>
26
+ <date>2009-05-15</date>
27
+ <time>09:50:52</time>
28
+ <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="livechat"><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="close.png" hash="453440e151c84241d7e96fbef87e3ce4"/><file name="close_hover.png" hash="504658759baedc0fae5461fc25d1258d"/></dir></dir><dir name="livechat"><file name="livechat.css" hash="dc9579be4ca477338f78cb63d63dc5f4"/></dir><dir name="media"><dir name="livechat"><dir name="charts_library"><file name="ar3d.swf" hash="fb7a5ccea0ef3623a100861ad1b3177f"/><file name="arno.swf" hash="6f456468baea864aacf66638bac2b589"/><file name="ars3.swf" hash="f987c6b33b986081b16ffc7c32816e1c"/><file name="arst.swf" hash="fbea762106f595c8a80d0836765888b0"/><file name="brfl.swf" hash="0f670edbeeb28e39e3bd67af6f2edbe7"/><file name="brno.swf" hash="048dee265c0261516f3d7372ab3be8b5"/><file name="brst.swf" hash="f2dba1bfc8edb0afc338b419fb48e2fa"/><file name="buno.swf" hash="3d9300f94accd4088b35c46aac3e44a4"/><file name="cl3d.swf" hash="ebe6bf32cf48b06471cb6a0573014a1b"/><file name="clfl.swf" hash="7f5f46d5aa493d70ee5c7b2ddbdc78dc"/><file name="clim.swf" hash="36ee76079777bb8e64050b61c4cc1c97"/><file name="clno.swf" hash="deb606ffde80297088a35286e50a9ca3"/><file name="clp3.swf" hash="b341e66d7a3463bfa2e27fbde386df8c"/><file name="cls3.swf" hash="043fcd28ed20a2b1367eb31039caac03"/><file name="clst.swf" hash="c69eed5bbac1cfb3e00a5ce06bf0948e"/><file name="cnno.swf" hash="10b9081bbaac03b8899b2801e949ca78"/><file name="dollar.jpg" hash="2e5353fa0aaff541926f0a90693211fe"/><file name="dono.swf" hash="9d1f9c75850599448c9faed3c050e1af"/><file name="lnno.swf" hash="c23393fe4574aae26d59b9e8f6fb40bf"/><file name="mxno.swf" hash="1f4c2d4283fa10f48a3b92562a59c0a2"/><file name="pi3d.swf" hash="bcb13d2e348979745c11a9368a24d2ff"/><file name="pie.jpg" hash="b1c6fc913c3b3a8ef5d674be32bffe0f"/><file name="piim.swf" hash="83ca329f031841560721ffd3ca4473ed"/><file name="pino.swf" hash="2c9b396e3b5194380d78a0331cd2ec37"/><file name="pono.swf" hash="3cdef367c4ff70b4772d64e48291bc58"/><file name="scno.swf" hash="c50bcebd97ee6def9079a51f54c4db8f"/></dir><file name="charts.swf" hash="2570563b5c23598a97e3c74cf47a2dc8"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="b4e4554301897980dfb271a5f33549b4"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="2089b8492f53243c46f05e1d86ae85dc"/></dir></dir></dir><dir name="modern"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="f0595e7964bdae458d1c7fb4a0e71060"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="5d6de5587cb6edace482aa9ceb9d5363"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="af3e2fb377187626cb2dd1568b041789"/></dir><dir name="template"><dir name="livechat"><file name="operator.phtml" hash="7013c5fe4dbd2cba0fe06336dba4c7a7"/><file name="reporting.phtml" hash="9d85c067799b93afa051f06c8fe69f91"/><file name="session.phtml" hash="bed057fb47975a3a7a09187b82c76483"/><dir name="notification"><file name="toolbar.phtml" hash="17cf821d5949f14a61fcd5e8b36e5038"/></dir><dir name="session"><file name="detail.phtml" hash="278dbb25de95e687d02b291a67261518"/></dir><dir name="widget"><file name="chatlive.phtml" hash="309a7cfb21f706f63f90d937112d9d26"/><file name="sessionslive.phtml" hash="692226dc8625b3765030d6b48711cea4"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="7a80c2f0893481af99d2acabf14de075"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir><dir name="modern"><dir name="layout"><file name="livechat.xml" hash="37e80dc38dd51095f830c1ca6349cbe5"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Beck"><dir name="LiveChat"><dir name="Block"><file name="Operator.php" hash="359b81c070d1e6599fec6186adbb76cb"/><file name="Reporting.php" hash="2a8d22e28216606101039fdf5d7300a4"/><file name="Session.php" hash="4ef2dd4fbfc349b31acc707882860d9c"/><file name="Template.php" hash="0c074cc3ac23df715131bc5e3be4f043"/><dir name="Notification"><file name="Toolbar.php" hash="4b158993a40a24fe1f355fa8d29623af"/></dir><dir name="Operator"><file name="Edit.php" hash="540a5246fcff5b1a8e821445e07ebd12"/><file name="List.php" hash="e4f392b7522aa002744abcb33fa5ce70"/><dir name="Edit"><file name="Form.php" hash="e97d951a63ed996560cb1526e23cb358"/></dir></dir><dir name="Session"><file name="Detail.php" hash="821d5c92c500cafa72ed50ba29eab352"/><file name="Grid.php" hash="b2116c31cbd297ed046296083bbf2fcf"/><dir name="Detail"><file name="Grid.php" hash="15786bd48ac663b9e9292d0d27fe8a30"/></dir></dir><dir name="Widget"><file name="Chat.php" hash="926f6fc13b7490d2f97035f1276078e7"/><file name="Sessions.php" hash="97e5f2686cc6f2762731b1fa536d91dc"/><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Dispatched.php" hash="9052fa22cd9e07375d0de4f312c8bcf3"/><file name="Online.php" hash="1810c742fe22fd536798f2f76a11479c"/><file name="State.php" hash="c4367ea40d730b6b42e887fb0f57f758"/></dir><dir name="Renderer"><file name="Dispatched.php" hash="21e79c6d3662fd71737f1f6021509883"/><file name="Online.php" hash="e16ef426e2d329986774670c75188901"/><file name="State.php" hash="4efb918376b7b23ec182ad7d1c981ec9"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="ChatController.php" hash="6ec1063832d7133d2f0ad866cc460376"/><file name="OperatorController.php" hash="68e72482a399d247bd8972032c0ea797"/><file name="ReportingController.php" hash="4b4ed6c8ae7d765e173c5befd0f40fea"/><file name="TestController.php" hash="b636abdbd22fefe47d74ce4bc1d5a605"/><dir name="Operator"><file name="ListController.php" hash="6e82400d65838594f0f139d3884fd75f"/></dir><dir name="Session"><file name="ListController.php" hash="174608c0fb4446193f4ad2dfbbd127f9"/><file name="LiveController.php" hash="d3642bbfca2c6e54bd902187c46c4276"/></dir></dir><dir name="etc"><file name="api.xml" hash="557b013a006d6cb0700b9bd80be41ace"/><file name="config.xml" hash="d06157f94c69e1d5f7362f6d9a22f31c"/><file name="system.xml" hash="0ace3cfb75089b603ae902f1d31c0af1"/></dir><dir name="Helper"><file name="Data.php" hash="9b8122364bcd6d142aaf2221229fb79e"/></dir><dir name="Model"><file name="AdminSession.php" hash="c6edda40339ae92777ff627d56fd69f7"/><file name="Api.php" hash="141e0881638f58ba2cfba370bfc209d1"/><file name="Event.php" hash="1f9664d6b3455d4bf7e34aa2500163d1"/><file name="Message.php" hash="14b9b7ffef2638e2178ed449945f2189"/><file name="Operator.php" hash="0a79de761f0f1b8b2cfb5318529c6c16"/><file name="Session.php" hash="38e464f28d70d3993d6797cd2a4ed77f"/><dir name="Archives"><file name="Message.php" hash="77405730511ada4e8f973189cc04a70a"/><file name="Session.php" hash="e7e342df2a427a31c6d0392ae230f084"/></dir><dir name="Mysql4"><file name="Message.php" hash="15f54ff4ac2e42d499a465ba02f54545"/><file name="Operator.php" hash="183d4556a4adb362080db8b29b3d363b"/><file name="Session.php" hash="23470233413431cb15fd64d6f6a9e57a"/><dir name="Archives"><file name="Message.php" hash="08a24b0294485713fa948a6bdc321d95"/><file name="Session.php" hash="1e9179810d16098a15e318aec9fecb7d"/><dir name="Message"><file name="Collection.php" hash="312e6198632cc2cbd4fc7b5ace253383"/></dir><dir name="Session"><file name="Collection.php" hash="2f25d488fde87349bfa0e39faa7b6a11"/></dir></dir><dir name="Message"><file name="Collection.php" hash="fe88b353a34e33a8c1dd3ff7fb31dcd4"/></dir><dir name="Operator"><file name="Collection.php" hash="1f85ba68d6c707589b7650fc3fbf1929"/></dir><dir name="Session"><file name="Collection.php" hash="4409f4ba36832a8c0ff8e186b4945de8"/></dir></dir><dir name="Session"><file name="List.php" hash="c97c0507a2ead10e3df948a985f94aae"/></dir><dir name="Source"><file name="Images.php" hash="a78214110d992b5f1267360fac8ffb10"/><file name="Online.php" hash="16a3933b4c4801ce20c714635ea52a47"/><file name="SessionCreation.php" hash="bf20fc0949be23a892b5744e9a68ed4b"/></dir></dir><dir name="sql"><dir name="livechat_setup"><file name="mysql4-install-1.0.0.php" hash="5a967b18d8bc56b345cd3870d1c9ebb7"/><file name="mysql4-upgrade-1.0.0-1.2.4.php" hash="852891c2299a597fe671ca3e06101f82"/><file name="mysql4-upgrade-1.2.4-1.2.9.php" hash="573b71d02e8690e8c4903cf0447a928e"/><file name="mysql4-upgrade-1.2.9-1.3.0.php" hash="d487ca45bb75f68b8f813d4bd3c04ca7"/><file name="mysql4-upgrade-1.3.0-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.1-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.2-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.3-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.4-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="Beck_LiveChat.csv" hash="cc3e27db788935eb162d3bf2b45b289a"/></dir><dir name="es_ES"><file name="Beck_LiveChat.csv" hash="0de4700d9dd2fbac7d55868d6b7e8e50"/></dir><dir name="fr_FR"><file name="Beck_LiveChat.csv" hash="34e520dc019a8824be7d55f833005406"/></dir><dir name="hu_HU"><file name="Beck_LiveChat.csv" hash="54ac103d11ce3b50f7dea53743f61ed5"/></dir><dir name="lt_LT"><file name="Beck_LiveChat.csv" hash="49c8f61e6d80cf79f52502a268f65aa7"/></dir><dir name="nl_NL"><file name="Beck_LiveChat.csv" hash="8e7fdb53f6bd85f5a5b5a3a2bb0920e7"/></dir><dir name="pt_BR"><file name="Beck_LiveChat.csv" hash="dcc95caec18cf727489eb48a523368fe"/></dir><dir name="vi_VN"><file name="Beck_LiveChat.csv" hash="7174a4d1b4dc358c4246729be74721be"/></dir></target><target name="mage"><dir name="js"><dir name="livechat"><file name="js.js" hash="e2e673b8f54faa02279c669e5db595fa"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ZBeck_LiveChat.xml" hash="ce3518bff5603a30f715a98b2e4cd9fc"/></dir></target></contents>
29
  <compatible/>
30
  <dependencies/>
31
  </package>