svn commit: r1549504 - in /openoffice/trunk/main/solenv/bin: modules/installer/download.pm modules/installer/simplepackage.pm modules/installer/worker.pm srcrelease.xml update_module_ignore_lists.pl

2013-12-09 Thread hdu
Author: hdu
Date: Mon Dec  9 08:20:16 2013
New Revision: 1549504

URL: http://svn.apache.org/r1549504
Log:
#i122301# handle new names of unxmac* platform targets

Modified:
openoffice/trunk/main/solenv/bin/modules/installer/download.pm
openoffice/trunk/main/solenv/bin/modules/installer/simplepackage.pm
openoffice/trunk/main/solenv/bin/modules/installer/worker.pm
openoffice/trunk/main/solenv/bin/srcrelease.xml
openoffice/trunk/main/solenv/bin/update_module_ignore_lists.pl

Modified: openoffice/trunk/main/solenv/bin/modules/installer/download.pm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/modules/installer/download.pm?rev=1549504r1=1549503r2=1549504view=diff
==
--- openoffice/trunk/main/solenv/bin/modules/installer/download.pm (original)
+++ openoffice/trunk/main/solenv/bin/modules/installer/download.pm Mon Dec  9 
08:20:16 2013
@@ -594,15 +594,15 @@ sub get_download_architecture
 {
my $arch = ;

-   if ( $installer::globals::compiler =~ /unxlngi/ )
+   if(( $installer::globals::compiler =~ /^unxlngi/ )
+   || ( $installer::globals::compiler =~ /^unxmac.i/ )
+   || ( $installer::globals::issolarisx86build )
+   || ( $installer::globals::iswindowsbuild ))
{
$arch = x86;
}
-   elsif ( $installer::globals::compiler =~ /unxlngppc/ )
-   { 
-   $arch = PPC;
-   }
-   elsif ( $installer::globals::compiler =~ /unxlngx/ )
+   elsif(( $installer::globals::compiler =~ /^unxlngx/ )
+   ||( $installer::globals::compiler =~ /^unxmaccx/ ))
{
$arch = x86-64;
}
@@ -610,19 +610,8 @@ sub get_download_architecture
{
$arch = Sparc;
}
-   elsif ( $installer::globals::issolarisx86build )
-   {
-   $arch = x86;  
-   }
-   elsif ( $installer::globals::iswindowsbuild )
-   {
-   $arch = x86;
-   }
-   elsif ( $installer::globals::compiler =~ /^unxmacxi/ )
-   {
-   $arch = x86;
-   }
-   elsif ( $installer::globals::compiler =~ /^unxmacxp/ )
+   elsif(( $installer::globals::compiler =~ /^unxmacxp/ )
+   ||( $installer::globals::compiler =~ /^unxlngppc/ ))
{
$arch = PPC;
}
@@ -856,8 +845,9 @@ sub resolve_variables_in_downloadname
elsif ( $installer::globals::issolarissparcbuild ) { $os = solsparc; }
elsif ( $installer::globals::issolarisx86build ) { $os = solia; }
elsif ( $installer::globals::islinuxbuild ) { $os = linux; }
-   elsif ( $installer::globals::compiler =~ /unxmacxi/ ) { $os = 
macosxi; }
-   elsif ( $installer::globals::compiler =~ /unxmacxp/ ) { $os = 
macosxp; }
+   elsif ( $installer::globals::compiler =~ /unxmac.i/ ) { $os = macosi; 
}
+   elsif ( $installer::globals::compiler =~ /unxmac.x/ ) { $os = macosx; 
}
+   elsif ( $installer::globals::compiler =~ /unxmacxp/ ) { $os = macosp; 
}
else { $os = ; }  
$downloadname =~ s/\{os\}/$os/;
 

Modified: openoffice/trunk/main/solenv/bin/modules/installer/simplepackage.pm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/modules/installer/simplepackage.pm?rev=1549504r1=1549503r2=1549504view=diff
==
--- openoffice/trunk/main/solenv/bin/modules/installer/simplepackage.pm 
(original)
+++ openoffice/trunk/main/solenv/bin/modules/installer/simplepackage.pm Mon Dec 
 9 08:20:16 2013
@@ -804,7 +804,7 @@ sub create_simple_package
installer::logger::include_header_into_logfile(Registering 
extensions:);
register_extensions($subfolderdir, $languagestringref, $preregdir);

-   if ( $installer::globals::compiler =~ /^unxmacx/ )
+   if ( $installer::globals::compiler =~ /^unxmac/ )
{

installer::worker::put_scpactions_into_installset($installdir/$packagename);
}

Modified: openoffice/trunk/main/solenv/bin/modules/installer/worker.pm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/modules/installer/worker.pm?rev=1549504r1=1549503r2=1549504view=diff
==
--- openoffice/trunk/main/solenv/bin/modules/installer/worker.pm (original)
+++ openoffice/trunk/main/solenv/bin/modules/installer/worker.pm Mon Dec  9 
08:20:16 2013
@@ -733,10 +733,8 @@ sub remove_all_items_with_special_flag
if ( $oneitem-{'Styles'} ) { $styles = $oneitem-{'Styles'} };
if ( $styles =~ /\b$flag\b/ )
{
-   $installer::logger::Lang-printf(
-Attention: Removing from collector '%s' because it has flag 
%s\n,
-$oneitem-{'Name'},
-$flag);
+   my $infoline = Attention: Removing 

buildbot success in ASF Buildbot on openoffice-linux64-nightly

2013-12-09 Thread buildbot
Hi! , The openoffice-linux64-nightly builder has just completed a run

STATUS: Success

 Build revision 1549378 on branch openoffice/trunk

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: tethys_ubuntu

 Build results at: 
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/821

 Build reason was: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






svn commit: r1549512 - /openoffice/trunk/main/solenv/bin/modules/installer/worker.pm

2013-12-09 Thread af
Author: af
Date: Mon Dec  9 08:37:41 2013
New Revision: 1549512

URL: http://svn.apache.org/r1549512
Log:
123729: Reapply changes that where accidentally merged out.

Modified:
openoffice/trunk/main/solenv/bin/modules/installer/worker.pm

Modified: openoffice/trunk/main/solenv/bin/modules/installer/worker.pm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/modules/installer/worker.pm?rev=1549512r1=1549511r2=1549512view=diff
==
--- openoffice/trunk/main/solenv/bin/modules/installer/worker.pm (original)
+++ openoffice/trunk/main/solenv/bin/modules/installer/worker.pm Mon Dec  9 
08:37:41 2013
@@ -733,8 +733,10 @@ sub remove_all_items_with_special_flag
if ( $oneitem-{'Styles'} ) { $styles = $oneitem-{'Styles'} };
if ( $styles =~ /\b$flag\b/ )
{
-   my $infoline = Attention: Removing from collector: 
$oneitem-{'Name'} !\n;
-   $installer::logger::Lang-print($infoline);
+$installer::logger::Lang-printf(
+Attention: Removing from collector '%s' because it has flag 
%s\n,
+$oneitem-{'Name'},
+$flag);
if ( $flag eq BINARYTABLE_ONLY ) { 
push(@installer::globals::binarytableonlyfiles, $oneitem); }
next;
}




svn commit: r1549513 - in /openoffice/trunk/main/solenv/bin/modules/installer: languages.pm patch/InstallationSet.pm patch/Msi.pm

2013-12-09 Thread af
Author: af
Date: Mon Dec  9 08:43:20 2013
New Revision: 1549513

URL: http://svn.apache.org/r1549513
Log:
123531: Handle languages that are internally prefixed with 'en-US_'

Modified:
openoffice/trunk/main/solenv/bin/modules/installer/languages.pm
openoffice/trunk/main/solenv/bin/modules/installer/patch/InstallationSet.pm
openoffice/trunk/main/solenv/bin/modules/installer/patch/Msi.pm

Modified: openoffice/trunk/main/solenv/bin/modules/installer/languages.pm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/modules/installer/languages.pm?rev=1549513r1=1549512r2=1549513view=diff
==
--- openoffice/trunk/main/solenv/bin/modules/installer/languages.pm (original)
+++ openoffice/trunk/main/solenv/bin/modules/installer/languages.pm Mon Dec  9 
08:43:20 2013
@@ -462,4 +462,29 @@ sub get_key_language ($)
}
 }
 
+
+
+
+=head2 get_normalized_language ($language)
+
+Transform ..._language into language.
+The ... part, if it exists, is typically en-US.
+
+If $language does not contain a '_' then $language is returned unmodified.
+
+=cut
+sub get_normalized_language ($)
+{
+my ($language) = @_;
+
+if ($language =~ /^.*?_(.*)$/)
+{
+return $1;
+}
+else
+{
+return $language;
+}
+}
+
 1;

Modified: 
openoffice/trunk/main/solenv/bin/modules/installer/patch/InstallationSet.pm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/modules/installer/patch/InstallationSet.pm?rev=1549513r1=1549512r2=1549513view=diff
==
--- openoffice/trunk/main/solenv/bin/modules/installer/patch/InstallationSet.pm 
(original)
+++ openoffice/trunk/main/solenv/bin/modules/installer/patch/InstallationSet.pm 
Mon Dec  9 08:43:20 2013
@@ -253,7 +253,7 @@ sub GetUnpackedPath ($)
 $package_format,
 installer::patch::Version::ArrayToDirectoryName(
 installer::patch::Version::StringToNumberArray($version)),
-$language);
+installer::languages::get_normalized_language($language));
 }
 
 

Modified: openoffice/trunk/main/solenv/bin/modules/installer/patch/Msi.pm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/modules/installer/patch/Msi.pm?rev=1549513r1=1549512r2=1549513view=diff
==
--- openoffice/trunk/main/solenv/bin/modules/installer/patch/Msi.pm (original)
+++ openoffice/trunk/main/solenv/bin/modules/installer/patch/Msi.pm Mon Dec  9 
08:43:20 2013
@@ -51,7 +51,7 @@ sub FindAndCreate($)
 $path = installer::patch::InstallationSet::GetUnpackedExePath(
 $version,
 $is_current_version,
-$language,
+installer::languages::get_normalized_language($language),
 msi,
 $product_name);
 
@@ -75,6 +75,7 @@ sub FindAndCreate($)
 If construction fails then IsValid() will return false.
 
 =cut
+
 sub new ($$)
 {
 my ($class, $filename, $version, $is_current_version, $language, 
$product_name) = @_;
@@ -122,6 +123,7 @@ sub IsValid ($)
 Write all modified tables back into the databse.
 
 =cut
+
 sub Commit ($)
 {
 my $self = shift;
@@ -159,6 +161,7 @@ sub Commit ($)
 call for the same table is very cheap.
 
 =cut
+
 sub GetTable ($$)
 {
 my ($self, $table_name) = @_;
@@ -197,6 +200,7 @@ sub GetTable ($$)
 Write the given table back to the databse.
 
 =cut
+
 sub PutTable ($$)
 {
 my ($self, $table) = @_;
@@ -243,6 +247,7 @@ sub PutTable ($$)
 to their last modification times (mtime).
 
 =cut
+
 sub EnsureAYoungerThanB ($$)
 {
 my ($filename_a, $filename_b) = @_;
@@ -276,6 +281,7 @@ sub EnsureAYoungerThanB ($$)
 Returns long and short name (in this order) as array.
 
 =cut
+
 sub SplitLongShortName ($)
 {
 my ($name) = @_;
@@ -300,6 +306,7 @@ sub SplitLongShortName ($)
 table.
 
 =cut
+
 sub SplitTargetSourceLongShortName ($)
 {
 my ($name) = @_;
@@ -322,6 +329,7 @@ sub SplitTargetSourceLongShortName ($)
 to hashes that contains short and long source and target names.
 
 =cut
+
 sub GetDirectoryMap ($)
 {
 my ($self) = @_;
@@ -423,6 +431,7 @@ sub GetDirectoryMap ($)
 calls but the first are cheap.
 
 =cut
+
 sub GetFileMap ($)
 {
 my ($self) = @_;




buildbot failure in ASF Buildbot on openoffice-linux32-snapshot

2013-12-09 Thread buildbot
Hi! , The openoffice-linux32-snapshot builder has just completed a run

STATUS: Failure

 Build revision 1549375 on branch openoffice/tags/SNAPSHOT

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-vm3_ubuntu_32bit

 Build results at: 
http://ci.apache.org/builders/openoffice-linux32-snapshot/builds/62

 Build reason was: The Nightly scheduler named 'openoffice-linux32-snapshot' 
triggered this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






buildbot success in ASF Buildbot on openoffice-linux32-nightly

2013-12-09 Thread buildbot
Hi! , The openoffice-linux32-nightly builder has just completed a run

STATUS: Success

 Build revision 1549378 on branch openoffice/trunk

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-vm2_ubuntu_32bit

 Build results at: 
http://ci.apache.org/builders/openoffice-linux32-nightly/builds/579

 Build reason was: The Nightly scheduler named 'openoffice-linux32-nightly' 
triggered this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






buildbot exception in ASF Buildbot on aoo-w7snap

2013-12-09 Thread buildbot
Hi! , The aoo-w7snap builder has just completed a run

STATUS: Exception

 Build revision 1542315 on branch openoffice/tags/SNAPSHOT

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-win7

 Build results at: http://ci.apache.org/builders/aoo-w7snap/builds/93

 Build reason was: The Nightly scheduler named 'aoo-win7-snapshot' triggered 
this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






buildbot retry in ASF Buildbot on aoo-win7

2013-12-09 Thread buildbot
Hi! , The aoo-win7 builder has just completed a run

STATUS: Retry

 Build revision 1548193 on branch openoffice/trunk

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-win7

 Build results at: http://ci.apache.org/builders/aoo-win7/builds/867

 Build reason was: The Nightly scheduler named 'aoo-win7-nightly' triggered 
this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






[CONF] Apache OpenOffice Community AOO 4.1 Release Notes

2013-12-09 Thread Keith N. McKenna (Confluence)







AOO 4.1 Release Notes
Page edited by Keith N. McKenna


Comment:
added new and updated languages expected to be released.


 Changes (4)
 




...
h3. New translations available in Apache OpenOffice 4.x.x include:  
| Language (ISO Code) | Language (ISO Code) | Language (ISO Code) | 
| Bulgariean (bg) | Danish (da) | Thai (th) | 
 h3. Updated translations available in Apache OpenOffice 4.x.x include:  
| Language (ISO Code) | Language (ISO Code) | Language (ISO Code) | 
| German (de) | Language (ISO Code) | Language (ISO Code) | 
 h4. For a complete list of available languages and language packs see: http://www.openoffice.org/download/other.html 
...


Full Content



 THIS IS A DRAFT PAGE. APACHE OPENOFFICE 4.1.0 HAS NOT BEEN RELEASED YET.
General Remarks
New Features
Improvements/Enhancements

Performance Improvements/Enhancements
Other Improvements/Enhancements

Seamonkey replaced by NSS ("Network Security Services")


Bug Fixes
Additional Language Support

New translations available in Apache OpenOffice 4.x.x include:
Updated translations available in Apache OpenOffice 4.x.x include:

For a complete list of available languages and language packs see: http://www.openoffice.org/download/other.html


Additional Platform Support
Known Issues
Stay informed about Apache OpenOffice


THIS IS A DRAFT PAGE. APACHE OPENOFFICE 4.1.0 HAS NOT BEEN RELEASED YET.

General Remarks

Apache OpenOffice 4.1.0 is a type of release. Other text as needed All users of Apache OpenOffice 4.0.1 or earlier are advised to upgrade. You can download Apache OpenOffice 4.1.0 here.

Our Bugzilla issue tracking database provides a detailed list of solved issues.

General areas of improvement include: additional text as needed Further details on each of these areas are below.


New Features

None at this time

Improvements/Enhancements

Performance Improvements/Enhancements

None at this time

Other Improvements/Enhancements

Seamonkey replaced by NSS ("Network Security Services")

Outdated code from Mozilla that was used to include cryptography services and address book access has been replaced with the more modern and more secure NSS libraries. This grwatly simplifies the build process and source code maintenance and is transparent to end users in general.

End users are affected only in the following ways:


	Under Windows XP, trying to add the Windows Address Book as an OpenOffice database; this has always been the case on any newer Windows versions (Windows Vista, Windows 7 and Windows 8).




	Thunderbird users will not see direct Thunderbird address book support in OpenOffice's address book wizard, but the OpenOffice support for CSV can replace it for now. Users can use Thunderbird's Tools-Export-AsCsv functionality to get their address book as comma separated text.




	Authenticated LDAP access is now unsupported (the non-authenticated access was already unsupported).



Bug Fixes

Additional Language Support

New translations available in Apache OpenOffice 4.x.x include:




 Bulgariean (bg) 
 Danish (da) 
 Thai (th) 





Updated translations available in Apache OpenOffice 4.x.x include:




 German (de) 
 Language (ISO Code) 
 Language (ISO Code) 





For a complete list of available languages and language packs see: http://www.openoffice.org/download/other.html

Additional Platform Support


	None at this time



Known Issues


	Apache OpenOffice 4.1.0 will be flagged by the new Gatekeeper facility in Mac OS X Mountain Lion and Maverick. This is a new feature to help guard against malware on Mac systems. There is a procedure laid out at the following link to allow applications not installed from the Mac App store to run. See the article at Mac support at http://support.apple.com/kb/HT5290.




	Apache OpenOffice 4.0.0 supports Java 7, which is the recommended configuration; but (especially on 64-bit Windows) you might receive warnings about the Java version being defective. In that case, download and install the Microsoft Visual C+ 2010 Redistributable Package. If you still have problems, install the most current JRE 6 version. Make sure you get the file "Windows x86 Offline (32-bit)". Then configure OpenOffice to use it at "Tools - Options - OpenOffice - Java". See this forum topic for more information.



Stay informed about Apache OpenOffice

You are encouraged to subscribe to the Apache OpenOffice announcement mailing list to receive important notifications such as product updates and security patches. To subscribe you can send an email to: ooo-announce-subscr...@incubator.apache.org.

You can also follow the project on Twitter, 

svn commit: r1549624 - /openoffice/ooo-site/trunk/content/stats/ooo-dev.txt

2013-12-09 Thread robweir
Author: robweir
Date: Mon Dec  9 17:34:16 2013
New Revision: 1549624

URL: http://svn.apache.org/r1549624
Log:
Update for December

Modified:
openoffice/ooo-site/trunk/content/stats/ooo-dev.txt

Modified: openoffice/ooo-site/trunk/content/stats/ooo-dev.txt
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/stats/ooo-dev.txt?rev=1549624r1=1549623r2=1549624view=diff
==
--- openoffice/ooo-site/trunk/content/stats/ooo-dev.txt (original)
+++ openoffice/ooo-site/trunk/content/stats/ooo-dev.txt Mon Dec  9 17:34:16 2013
@@ -21,5 +21,4 @@
 2013-09-06,453
 2013-10-04,450
 2013-11-04,460
-
-
+2013-12-09,471




svn commit: r1549625 - /openoffice/ooo-site/trunk/content/stats/committers.txt

2013-12-09 Thread robweir
Author: robweir
Date: Mon Dec  9 17:35:06 2013
New Revision: 1549625

URL: http://svn.apache.org/r1549625
Log:
Update for December

Modified:
openoffice/ooo-site/trunk/content/stats/committers.txt

Modified: openoffice/ooo-site/trunk/content/stats/committers.txt
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/stats/committers.txt?rev=1549625r1=1549624r2=1549625view=diff
==
--- openoffice/ooo-site/trunk/content/stats/committers.txt (original)
+++ openoffice/ooo-site/trunk/content/stats/committers.txt Mon Dec  9 17:35:06 
2013
@@ -30,3 +30,4 @@
 2013-10-22,132
 2013-10-31,133
 2013-11-04,134
+2013-11-27,135




svn commit: r889738 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/stats/ooo-dev.txt

2013-12-09 Thread buildbot
Author: buildbot
Date: Mon Dec  9 17:35:38 2013
New Revision: 889738

Log:
Staging update by buildbot for ooo-site

Modified:
websites/staging/ooo-site/trunk/cgi-bin/   (props changed)
websites/staging/ooo-site/trunk/content/   (props changed)
websites/staging/ooo-site/trunk/content/stats/ooo-dev.txt

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Dec  9 17:35:38 2013
@@ -1 +1 @@
-1548041
+1549624

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Dec  9 17:35:38 2013
@@ -1 +1 @@
-1548041
+1549624

Modified: websites/staging/ooo-site/trunk/content/stats/ooo-dev.txt
==
--- websites/staging/ooo-site/trunk/content/stats/ooo-dev.txt (original)
+++ websites/staging/ooo-site/trunk/content/stats/ooo-dev.txt Mon Dec  9 
17:35:38 2013
@@ -21,5 +21,4 @@
 2013-09-06,453
 2013-10-04,450
 2013-11-04,460
-
-
+2013-12-09,471




svn commit: r889739 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/stats/committers.txt

2013-12-09 Thread buildbot
Author: buildbot
Date: Mon Dec  9 17:36:09 2013
New Revision: 889739

Log:
Staging update by buildbot for ooo-site

Modified:
websites/staging/ooo-site/trunk/cgi-bin/   (props changed)
websites/staging/ooo-site/trunk/content/   (props changed)
websites/staging/ooo-site/trunk/content/stats/committers.txt

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Dec  9 17:36:09 2013
@@ -1 +1 @@
-1549624
+1549625

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Dec  9 17:36:09 2013
@@ -1 +1 @@
-1549624
+1549625

Modified: websites/staging/ooo-site/trunk/content/stats/committers.txt
==
--- websites/staging/ooo-site/trunk/content/stats/committers.txt (original)
+++ websites/staging/ooo-site/trunk/content/stats/committers.txt Mon Dec  9 
17:36:09 2013
@@ -30,3 +30,4 @@
 2013-10-22,132
 2013-10-31,133
 2013-11-04,134
+2013-11-27,135




svn commit: r889740 - in /websites/production/ooo-site: cgi-bin/ content/

2013-12-09 Thread robweir
Author: robweir
Date: Mon Dec  9 17:42:01 2013
New Revision: 889740

Log:
Publishing svnmucc operation to ooo-site site by robweir

Added:
websites/production/ooo-site/cgi-bin/
  - copied from r889739, websites/staging/ooo-site/trunk/cgi-bin/
websites/production/ooo-site/content/
  - copied from r889739, websites/staging/ooo-site/trunk/content/



buildbot success in ASF Buildbot on aoo-win7

2013-12-09 Thread buildbot
Hi! , The aoo-win7 builder has just completed a run

STATUS: Success

 Build revision 1549513 on branch openoffice/trunk

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-win7

 Build results at: http://ci.apache.org/builders/aoo-win7/builds/868

 Build reason was: The Nightly scheduler named 'aoo-win7-nightly' triggered 
this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

2013-12-09 Thread buildbot
Hi! , The openoffice-fbsd-nightly builder has just completed a run

STATUS: Failure

 Build revision 1549755 on branch openoffice/trunk

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-fbsd2_64bit

 Build results at: 
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/116

 Build reason was: The Nightly scheduler named 'openoffice-fbsd-nightly' 
triggered this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






svn commit: r1549778 - /openoffice/trunk/main/editeng/source/accessibility/AccessibleEditableTextPara.cxx

2013-12-09 Thread steve_y
Author: steve_y
Date: Tue Dec 10 07:58:01 2013
New Revision: 1549778

URL: http://svn.apache.org/r1549778
Log:
Bug 123620 - [ia2] IAccessibleHypertext::hyperlinkIndex returns 0 when editing 
a cell/object where there is no link

Modified:

openoffice/trunk/main/editeng/source/accessibility/AccessibleEditableTextPara.cxx

Modified: 
openoffice/trunk/main/editeng/source/accessibility/AccessibleEditableTextPara.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/editeng/source/accessibility/AccessibleEditableTextPara.cxx?rev=1549778r1=1549777r2=1549778view=diff
==
--- 
openoffice/trunk/main/editeng/source/accessibility/AccessibleEditableTextPara.cxx
 (original)
+++ 
openoffice/trunk/main/editeng/source/accessibility/AccessibleEditableTextPara.cxx
 Tue Dec 10 07:58:01 2013
@@ -3005,7 +3005,7 @@ namespace accessibility
 //const sal_uInt16 nEEIndex = aIndex.GetEEIndex();
 
 const sal_uInt16 nEEIndex = rT.CalcEditEngineIndex( nPara, nCharIndex 
);
-sal_Int32 nHLIndex = 0;
+sal_Int32 nHLIndex = -1; //i123620
 sal_uInt16 nHyperLink = 0;
 sal_uInt16 nFields = rT.GetFieldCount( nPara );
 for ( sal_uInt16 n = 0; n  nFields; n++ )