propagate from branch 'ca.inverse.sogo.1_3_2' (head eaf913d29d99bd1d8089bfc9bfb79fddef19a8be)

to branch 'ca.inverse.sogo' (head 595f922ff0d07669c998389a631ab6ba36fe8fe7)

Monotone-Parent: 595f922ff0d07669c998389a631ab6ba36fe8fe7
Monotone-Parent: eaf913d29d99bd1d8089bfc9bfb79fddef19a8be
Monotone-Revision: c4797e1e6cd8eac66a45d44b94200b38f4bf7749

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2010-09-21T17:47:46
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte 2010-09-21 17:47:46 +00:00
commit 942420475e
2 changed files with 16 additions and 17 deletions

3
NEWS
View file

@ -1,4 +1,5 @@
1.3-201009XX (1.3.2)
1.3-20100921 (1.3.2)
--------------------
- fixed various issues with some types of email address fields
- added support for Ctrl-A (select all) in all web modules
- added support for Ctrl-C/Ctrl-V (copy/paste) in the calendar web module

View file

@ -1,7 +1,7 @@
<?php
/* updates.php - this file is part of SOGo
*
* Copyright (C) 2006-2009 Inverse inc.
* Copyright (C) 2006-2010 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
@ -24,28 +24,26 @@
/* This script handles the automatic propagation of extensions pertaining to a
SOGo site. It requires PHP 4.1.0 or later. */
$plugins
= array( "sogo-connector@inverse.ca"
= array(
"sogo-connector@inverse.ca"
=> array( "application" => "thunderbird",
"version" => "0.92",
"filename" => "sogo-connector-0.92.xpi" ),
"sogo-integrator@inverse.ca"
"version" => "3.102",
"filename" => "sogo-connector-3.102.xpi" ),
"sogo-integrator@inverse.ca"
=> array( "application" => "thunderbird",
"version" => "3.102",
"filename" => "sogo-integrator-3.102.xpi" ),
=> array( "application" => "thunderbird",
"version" => "0.92",
"filename" => "sogo-integrator-0.92-sogo-demo.xpi" ),
"{e2fda1a4-762b-4020-b5ad-a41df1933103}"
=> array( "application" => "thunderbird",
"version" => "0.9.2",
"filename" => "lightning-0.9.2.xpi" ));
"version" => "1.0b2.102i",
"filename" => "lightning-1.0b2.102i.xpi" )
);
{3550f703-e582-4d05-9a08-453d09bdfdc6}
$applications
= array( "thunderbird" => "<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
<em:minVersion>1.5</em:minVersion>
<em:maxVersion>2.0.*</em:maxVersion>",
"firefox" => "<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>1.5</em:minVersion>
<em:maxVersion>2.0.*</em:maxVersion>" );
<em:minVersion>3.1.0</em:minVersion>
<em:maxVersion>3.1.*</em:maxVersion>" );
$pluginname = $_GET["plugin"];
$plugin =& $plugins[$pluginname];