merge of '7e92f68d047f833383107a515ec0f4ffbcbb0ba5'

and 'd14d73ffda1c750075f94c27ab66f90844a83291'

Monotone-Parent: 7e92f68d047f833383107a515ec0f4ffbcbb0ba5
Monotone-Parent: d14d73ffda1c750075f94c27ab66f90844a83291
Monotone-Revision: 150562a6cebe155a4cb327810609cda6bf2fb935

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2010-09-22T11:25:43
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2010-09-22 11:25:43 +00:00
5 changed files with 19 additions and 19 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,26 +24,25 @@
/* 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"
=> 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" => "3.102",
"filename" => "sogo-connector-3.102.xpi" ),
"sogo-integrator@inverse.ca"
=> array( "application" => "thunderbird",
"version" => "3.102",
"filename" => "sogo-integrator-3.102.xpi" ),
"{e2fda1a4-762b-4020-b5ad-a41df1933103}"
=> array( "application" => "thunderbird",
"version" => "1.0b2.102i",
"filename" => "lightning-1.0b2.102i.xpi" )
);
$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];
@@ -89,4 +88,4 @@ if ( $plugin ) {
header("Content-type: text/plain; charset=utf-8", true, 404);
echo( 'Plugin not found' );
}
?>
?>