buildbot failure in ASF Buildbot on aoo-win7

2014-07-10 Thread buildbot
The Buildbot has detected a failed build on builder aoo-win7 while building ASF 
Buildbot.
Full details are available at:
 http://ci.apache.org/builders/aoo-win7/builds/82

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-win7

Build Reason: forced: by IRC user hdu_hh on channel #asftest: force clean 
build on the AOO410 branch
Build Source Stamp: HEAD
Blamelist: 

BUILD FAILED: failed svn under cygwin

sincerely,
 -The Buildbot





buildbot exception in ASF Buildbot on aoo-win7

2014-07-10 Thread buildbot
The Buildbot has detected a build exception on builder aoo-win7 while building 
ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/aoo-win7/builds/83

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-win7

Build Reason: forced: by IRC user hdu_hh on channel #asftest: now with 
http-repo-url and clean build on the AOO410 branch
Build Source Stamp: HEAD
Blamelist: 

BUILD FAILED: exception build.pl --all

sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-nightly

2014-07-10 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-nightly 
while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/openoffice-linux64-nightly/builds/75

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux32-nightly

2014-07-10 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux32-nightly 
while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/openoffice-linux32-nightly/builds/81

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-vm2_ubuntu_32bit

Build Reason: The Nightly scheduler named 'openoffice-linux32-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/branches/AOO410] HEAD
Blamelist: 

Build succeeded!

sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on aoo-win7

2014-07-10 Thread buildbot
The Buildbot has detected a failed build on builder aoo-win7 while building ASF 
Buildbot.
Full details are available at:
 http://ci.apache.org/builders/aoo-win7/builds/84

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-win7

Build Reason: forced: by IRC user hdu_hh on channel #asftest: clean build on 
forced AOO410 branch
Build Source Stamp: HEAD
Blamelist: 

BUILD FAILED: failed build.pl --all

sincerely,
 -The Buildbot





svn commit: r1609426 - /openoffice/trunk/main/sfx2/source/appl/impldde.cxx

2014-07-10 Thread hdu
Author: hdu
Date: Thu Jul 10 09:11:07 2014
New Revision: 1609426

URL: http://svn.apache.org/r1609426
Log:
#i125226# disallow absolute and relative paths for DDE servers

Modified:
openoffice/trunk/main/sfx2/source/appl/impldde.cxx

Modified: openoffice/trunk/main/sfx2/source/appl/impldde.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sfx2/source/appl/impldde.cxx?rev=1609426r1=1609425r2=1609426view=diff
==
--- openoffice/trunk/main/sfx2/source/appl/impldde.cxx (original)
+++ openoffice/trunk/main/sfx2/source/appl/impldde.cxx Thu Jul 10 09:11:07 2014
@@ -260,19 +260,20 @@ sal_Bool SvDDEObject::Connect( SvBaseLin
// check the suitability of starting the DDE server
const SvtSecurityOptions aSecOpts;
bool bForbidden = (aSecOpts.GetMacroSecurityLevel() == 
eNEVER_EXECUTE);
-   bForbidden |= (bInWinExec != sal_False);
+   bForbidden |= (sServer.SearchChar( L:./%\\) != 
STRING_NOTFOUND);
static const char* aBadServers[] = { cmd, rundll32 };
for( int i = 0; i  sizeof(aBadServers)/sizeof(*aBadServers); 
++i)
-   bForbidden |= (sServer.CompareIgnoreCaseToAscii( 
aBadServers[i]) == COMPARE_EQUAL );
+   bForbidden |= (sServer.CompareIgnoreCaseToAscii( 
aBadServers[i]) == COMPARE_EQUAL);
 
// try to start the DDE server if it is not there already
+   bForbidden |= (bInWinExec != sal_False);
if( !bForbidden )
{
ByteString aCmdLine( sServer, RTL_TEXTENCODING_ASCII_US 
);
aCmdLine.Append( .exe  );
aCmdLine.Append( ByteString( sTopic, 
RTL_TEXTENCODING_ASCII_US ) );
 
-   if( WinExec( aCmdLine.GetBuffer(), SW_SHOWMINIMIZED )  
32 )
+   if( WinExec( aCmdLine.GetBuffer(), SW_SHOWMINIMIZED )  
32 ) // TODO: use CreateProcess() instead
nError = DDELINK_ERROR_APP;
else
{




svn commit: r1609427 - in /openoffice/devtools/genUpdateFeed: ./ AdditionalTextForMacOSX.txt LanguageCodeMap.txt ProductInfos.txt feed-entry-template.Update feed-prefix.Update generate-update-feed.sh

2014-07-10 Thread orw
Author: orw
Date: Thu Jul 10 09:11:14 2014
New Revision: 1609427

URL: http://svn.apache.org/r1609427
Log:
bash script inclusive needed meta data to generate Update Feeds


Added:
openoffice/devtools/genUpdateFeed/
openoffice/devtools/genUpdateFeed/AdditionalTextForMacOSX.txt
openoffice/devtools/genUpdateFeed/LanguageCodeMap.txt
openoffice/devtools/genUpdateFeed/ProductInfos.txt
openoffice/devtools/genUpdateFeed/feed-entry-template.Update   (with props)
openoffice/devtools/genUpdateFeed/feed-prefix.Update   (with props)
openoffice/devtools/genUpdateFeed/generate-update-feed.sh   (with props)

Added: openoffice/devtools/genUpdateFeed/AdditionalTextForMacOSX.txt
URL: 
http://svn.apache.org/viewvc/openoffice/devtools/genUpdateFeed/AdditionalTextForMacOSX.txt?rev=1609427view=auto
==
--- openoffice/devtools/genUpdateFeed/AdditionalTextForMacOSX.txt (added)
+++ openoffice/devtools/genUpdateFeed/AdditionalTextForMacOSX.txt Thu Jul 10 
09:11:14 2014
@@ -0,0 +1,45 @@
+# Additional text for installed OpenOffice instance on Mac OS X
+#
+
+en-US,Only for Mac OS X versions 10.7 or newer
+ar,فقط لإصدارات نظام التشغيل Mac OS X 10.7 أو أحدث
+ast,Only for Mac OS X versions 10.7 or newer
+bg,Само за Mac OS X 10.7 или по-нова версия
+ca,Only for Mac OS X versions 10.7 or newer
+ca-XV,Only for Mac OS X versions 10.7 or newer
+cs,Pouze pro Mac OS verze 10.7 a novější
+da,Kun for Mac OS X version 10.7 eller nyere
+de,Nur für Mac OS X-Versionen 10.7 oder neuer
+el,Μόνο για Mac OS X εκδόσεις 10.7 ή νεότερο
+en-GB,Only for Mac OS X versions 10.7 or newer
+es,Sólo para versiones de Mac OS X 10.7 o más reciente
+eu,Mac OS X bertsioak soilik 10.7 edo berriagoa
+fi,Vain Mac OS X-versiot 10.7 tai uudempi
+fr,Seulement pour les versions Mac OS X 10.7 ou plus récent
+gd,Only for Mac OS X versions 10.7 or newer
+gl,Só para as versións de Mac OS X 10.7 ou superior
+he,רק עבור גרסאות Mac OS X 10.7 או חדש יותר
+hi,मैक ओएस एक्स संस्करणों के 
लिए 10.7 या नए
+hu,Csak a Mac OS X 10.7 vagy újabb verzió
+it,Solo per Mac OS X 10.7 o superiore
+ja,唯一のMac OS Xバージョン10.7以降
+km,សម្រាប់តែកំណែ Mac OS X 10.7 
ឬថ្មីជាង
+ko,오직 맥 OS X 버전 10.7 이상 버전
+lt,Tik Mac OS X versijos 10.7 arba naujesnė
+nb,Bare for Mac OS X versjon 10.7 eller nyere
+nl,Alleen voor Mac OS X-versies 10.7 of nieuwer
+pl,Tylko dla wersji Mac OS X 10.7 lub nowszy
+pt,Somente para as versões do Mac OS X 10.7 ou mais recente
+pt-BR,Somente para as versões do Mac OS X 10.7 ou mais recente
+ru,Только для Mac OS X версий 10.7 или новее
+sk,Iba pre Mac OS verzie 10.7 a novšie
+sl,Samo za Mac OS X 10.7 ali novejši
+sr,Само за Мац ОС Кс 10.7 или новији верзије
+sv,Endast för Mac OS X-versioner 10.7 eller nyare
+ta,ஒரே Mac OS X, பதிப்புகள் 10.7 அல்லது 
புதிய
+th,เฉพาะสำหรับ Mac OS X รุ่น 10.7 
หรือใหม่กว่า
+tr,Sadece Mac OS X sürümleri için 10.7 veya daha yeni
+vi,Chỉ cho các phiên bản Mac OS X 10.7 hoặc mới hơn
+zh-CN,仅适用于Mac OS X版本10.7或更高版本
+zh-TW,僅適用於Mac OS X版本10.7或更高版本
+

Added: openoffice/devtools/genUpdateFeed/LanguageCodeMap.txt
URL: 
http://svn.apache.org/viewvc/openoffice/devtools/genUpdateFeed/LanguageCodeMap.txt?rev=1609427view=auto
==
--- openoffice/devtools/genUpdateFeed/LanguageCodeMap.txt (added)
+++ openoffice/devtools/genUpdateFeed/LanguageCodeMap.txt Thu Jul 10 09:11:14 
2014
@@ -0,0 +1,51 @@
+# Map of language codes
+#
+# Format:
+# LANGUAGECODE,LANGUAGE,DOWNLOADURL
+#
+# Legend:
+# LANGUAGECODE  Language code of an released language
+# LANGUAGE  Human-readable language name
+# DOWNLOADURL   optional URL the user is guided to for corresponding package 
in the named language
+
+en-US,English (US)
+ar,Arabic
+ast,Asturian
+bg,Bulgarian
+ca,Catalan
+ca-XV,Catalan (Valencia AVL)
+cs,Czech,http://www.openoffice.org/cs/download
+da,Danish
+de,German,http://www.openoffice.org/de
+el,Greek
+en-GB,English (British)
+es,Spanish,http://www.openoffice.org/es/descargar
+eu,Basque
+fi,Finnish
+fr,French,http://www.openoffice.org/fr/Telecharger
+gd,Gaelic (Scottish)
+gl,Galician
+he,Hebrew
+hi,Hindi
+hu,Hungarian
+it,Italian,http://www.openoffice.org/it/download
+ja,Japanese,http://www.openoffice.org/ja/download
+km,Khmer
+ko,Korean
+lt,Lituanian
+nb,Norwegian (Bokmål)
+nl,Dutch,http://www.openoffice.org/nl/downloaden.html
+pl,Polish
+pt,Portuguese (European),http://www.openoffice.org/pt
+pt-BR,Portuguese (Brazilian)
+ru,Russian

svn commit: r1609431 - /openoffice/ooo-site/trunk/content/css/ooo.css

2014-07-10 Thread tal
Author: tal
Date: Thu Jul 10 10:05:28 2014
New Revision: 1609431

URL: http://svn.apache.org/r1609431
Log:
fixes for site search button (dynamic width/height, border).

Modified:
openoffice/ooo-site/trunk/content/css/ooo.css

Modified: openoffice/ooo-site/trunk/content/css/ooo.css
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/css/ooo.css?rev=1609431r1=1609430r2=1609431view=diff
==
--- openoffice/ooo-site/trunk/content/css/ooo.css (original)
+++ openoffice/ooo-site/trunk/content/css/ooo.css Thu Jul 10 10:05:28 2014
@@ -511,11 +511,13 @@ input {
 
 .topsrchbutton {
   cursor: pointer;
-  height:24px;
-  width: 60px;
+  /* height: 24px; */
+  /* width: 60px; */
   margin: 0 0 0 3px;
-  border: outset;
+  /* border: outset; */
   color: #66;
+  /* border-width: 2px; */
+  padding: 2px;
 }
 
 #query {




svn commit: r915666 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/css/ooo.css

2014-07-10 Thread buildbot
Author: buildbot
Date: Thu Jul 10 10:07:40 2014
New Revision: 915666

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/css/ooo.css

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:07:40 2014
@@ -1 +1 @@
-1609332
+1609431

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:07:40 2014
@@ -1 +1 @@
-1609332
+1609431

Modified: websites/staging/ooo-site/trunk/content/css/ooo.css
==
--- websites/staging/ooo-site/trunk/content/css/ooo.css (original)
+++ websites/staging/ooo-site/trunk/content/css/ooo.css Thu Jul 10 10:07:40 2014
@@ -511,11 +511,13 @@ input {
 
 .topsrchbutton {
   cursor: pointer;
-  height:24px;
-  width: 60px;
+  /* height: 24px; */
+  /* width: 60px; */
   margin: 0 0 0 3px;
-  border: outset;
+  /* border: outset; */
   color: #66;
+  /* border-width: 2px; */
+  padding: 2px;
 }
 
 #query {




svn commit: r1609433 - in /openoffice/ooo-site/trunk: content/css/ooo.css templates/brand.html

2014-07-10 Thread tal
Author: tal
Date: Thu Jul 10 10:20:14 2014
New Revision: 1609433

URL: http://svn.apache.org/r1609433
Log:
fixes to styles of site search  language divs.

Modified:
openoffice/ooo-site/trunk/content/css/ooo.css
openoffice/ooo-site/trunk/templates/brand.html

Modified: openoffice/ooo-site/trunk/content/css/ooo.css
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/css/ooo.css?rev=1609433r1=1609432r2=1609433view=diff
==
--- openoffice/ooo-site/trunk/content/css/ooo.css (original)
+++ openoffice/ooo-site/trunk/content/css/ooo.css Thu Jul 10 10:20:14 2014
@@ -48,8 +48,8 @@ body {
   float: left;
 }
 
-#languagesdiv {float: right; padding: 1em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
-
+#languagesdiv {float: right; padding: 1.25em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
+#searchdiv {padding:1em;}
 a {
   color: #107EC0;
 }

Modified: openoffice/ooo-site/trunk/templates/brand.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/templates/brand.html?rev=1609433r1=1609432r2=1609433view=diff
==
--- openoffice/ooo-site/trunk/templates/brand.html (original)
+++ openoffice/ooo-site/trunk/templates/brand.html Thu Jul 10 10:20:14 2014
@@ -56,7 +56,7 @@
/div
 div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt={{ headers.name }} src=/images/{{ headers.logo 
}}//a/div
 div id=bannerright
-  div style=relative; margin: 14px 0 0 0; height: 24px;
+  div class=searchdiv
form id=cse-search-box-header action=http://www.google.com/search; 
method=get
  div
input type=hidden name=domains value={{ headers.domain }}/




svn commit: r1609434 - /openoffice/ooo-site/trunk/templates/brand.html

2014-07-10 Thread tal
Author: tal
Date: Thu Jul 10 10:22:12 2014
New Revision: 1609434

URL: http://svn.apache.org/r1609434
Log:
fixed style def from class= to id=

Modified:
openoffice/ooo-site/trunk/templates/brand.html

Modified: openoffice/ooo-site/trunk/templates/brand.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/templates/brand.html?rev=1609434r1=1609433r2=1609434view=diff
==
--- openoffice/ooo-site/trunk/templates/brand.html (original)
+++ openoffice/ooo-site/trunk/templates/brand.html Thu Jul 10 10:22:12 2014
@@ -56,7 +56,7 @@
/div
 div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt={{ headers.name }} src=/images/{{ headers.logo 
}}//a/div
 div id=bannerright
-  div class=searchdiv
+  div id=searchdiv
form id=cse-search-box-header action=http://www.google.com/search; 
method=get
  div
input type=hidden name=domains value={{ headers.domain }}/




svn commit: r915669 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/bg-test/ content/cs/ content/css/ content/de/ content/el/ content/es/ content/eu-test/ content/fi/ content/fr/ cont

2014-07-10 Thread buildbot
Author: buildbot
Date: Thu Jul 10 10:29:00 2014
New Revision: 915669

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/bg-test/brand.html
websites/staging/ooo-site/trunk/content/brand.html
websites/staging/ooo-site/trunk/content/cs/brand.html
websites/staging/ooo-site/trunk/content/css/ooo.css
websites/staging/ooo-site/trunk/content/de/brand.html
websites/staging/ooo-site/trunk/content/el/brand.html
websites/staging/ooo-site/trunk/content/es/brand.html
websites/staging/ooo-site/trunk/content/eu-test/brand.html
websites/staging/ooo-site/trunk/content/fi/brand.html
websites/staging/ooo-site/trunk/content/fr/brand.html
websites/staging/ooo-site/trunk/content/he/brand.html
websites/staging/ooo-site/trunk/content/hu/brand.html
websites/staging/ooo-site/trunk/content/it/brand.html
websites/staging/ooo-site/trunk/content/ja/brand.html
websites/staging/ooo-site/trunk/content/l10n/brand.html
websites/staging/ooo-site/trunk/content/lt/brand.html
websites/staging/ooo-site/trunk/content/nl-template/brand.html
websites/staging/ooo-site/trunk/content/nl/brand.html
websites/staging/ooo-site/trunk/content/pt-br/brand.html
websites/staging/ooo-site/trunk/content/pt/brand.html
websites/staging/ooo-site/trunk/content/ru/brand.html
websites/staging/ooo-site/trunk/content/sk/brand.html
websites/staging/ooo-site/trunk/content/sr-latn/brand.html
websites/staging/ooo-site/trunk/content/test-he/brand.html
websites/staging/ooo-site/trunk/content/test/brand.html
websites/staging/ooo-site/trunk/content/tr/brand.html
websites/staging/ooo-site/trunk/content/vi-test/brand.html
websites/staging/ooo-site/trunk/content/xx/brand.html
websites/staging/ooo-site/trunk/content/zh-cn/brand.html
websites/staging/ooo-site/trunk/content/zh-tw/brand.html
websites/staging/ooo-site/trunk/content/zh/brand.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:29:00 2014
@@ -1 +1 @@
-1609431
+1609433

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:29:00 2014
@@ -1 +1 @@
-1609431
+1609433

Modified: websites/staging/ooo-site/trunk/content/bg-test/brand.html
==
--- websites/staging/ooo-site/trunk/content/bg-test/brand.html (original)
+++ websites/staging/ooo-site/trunk/content/bg-test/brand.html Thu Jul 10 
10:29:00 2014
@@ -56,7 +56,7 @@
/div
 div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt=Apache OpenOffice 
src=/images//AOO_logos/AOO4_website_logo.png//a/div
 div id=bannerright
-  div style=relative; margin: 14px 0 0 0; height: 24px;
+  div class=searchdiv
form id=cse-search-box-header action=http://www.google.com/search; 
method=get
  div
input type=hidden name=domains value=www.openoffice.org/

Modified: websites/staging/ooo-site/trunk/content/brand.html
==
--- websites/staging/ooo-site/trunk/content/brand.html (original)
+++ websites/staging/ooo-site/trunk/content/brand.html Thu Jul 10 10:29:00 2014
@@ -56,7 +56,7 @@
/div
 div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt=Apache OpenOffice 
src=/images/AOO_logos/100MillAOO100px.png//a/div
 div id=bannerright
-  div style=relative; margin: 14px 0 0 0; height: 24px;
+  div class=searchdiv
form id=cse-search-box-header action=http://www.google.com/search; 
method=get
  div
input type=hidden name=domains value=www.openoffice.org/

Modified: websites/staging/ooo-site/trunk/content/cs/brand.html
==
--- websites/staging/ooo-site/trunk/content/cs/brand.html (original)
+++ websites/staging/ooo-site/trunk/content/cs/brand.html Thu Jul 10 10:29:00 
2014
@@ -56,7 +56,7 @@
/div
 div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt= src=/images///a/div
 div id=bannerright
-  div style=relative; margin: 14px 0 0 0; height: 24px;
+  div class=searchdiv
form id=cse-search-box-header action=http://www.google.com/search; 
method=get
  div
input type=hidden name=domains value=/

Modified: websites/staging/ooo-site/trunk/content/css/ooo.css
==
--- 

svn commit: r1609436 - /openoffice/ooo-site/trunk/content/css/ooo.css

2014-07-10 Thread tal
Author: tal
Date: Thu Jul 10 10:30:28 2014
New Revision: 1609436

URL: http://svn.apache.org/r1609436
Log:
fix for searchdiv font-size.

Modified:
openoffice/ooo-site/trunk/content/css/ooo.css

Modified: openoffice/ooo-site/trunk/content/css/ooo.css
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/css/ooo.css?rev=1609436r1=1609435r2=1609436view=diff
==
--- openoffice/ooo-site/trunk/content/css/ooo.css (original)
+++ openoffice/ooo-site/trunk/content/css/ooo.css Thu Jul 10 10:30:28 2014
@@ -48,8 +48,9 @@ body {
   float: left;
 }
 
-#languagesdiv {float: right; padding: 1.25em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
-#searchdiv {padding:1em;}
+#languagesdiv {float: right; padding: 1em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
+#searchdiv {padding:1em;font-size: 0.9em;}
+
 a {
   color: #107EC0;
 }




svn commit: r1609437 - /openoffice/devtools/genUpdateFeed/generate-update-feed.sh

2014-07-10 Thread orw
Author: orw
Date: Thu Jul 10 10:35:01 2014
New Revision: 1609437

URL: http://svn.apache.org/r1609437
Log:
genUpdateFeed: add missing license header


Modified:
openoffice/devtools/genUpdateFeed/generate-update-feed.sh

Modified: openoffice/devtools/genUpdateFeed/generate-update-feed.sh
URL: 
http://svn.apache.org/viewvc/openoffice/devtools/genUpdateFeed/generate-update-feed.sh?rev=1609437r1=1609436r2=1609437view=diff
==
--- openoffice/devtools/genUpdateFeed/generate-update-feed.sh (original)
+++ openoffice/devtools/genUpdateFeed/generate-update-feed.sh Thu Jul 10 
10:35:01 2014
@@ -1,4 +1,24 @@
 #!/bin/bash
+#**
+#  
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you under the Apache License, Version 2.0 (the
+#  License); you may not use this file except in compliance
+#  with the License.  You may obtain a copy of the License at
+#  
+#http://www.apache.org/licenses/LICENSE-2.0
+#  
+#  Unless required by applicable law or agreed to in writing,
+#  software distributed under the License is distributed on an
+#  AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#  KIND, either express or implied.  See the License for the
+#  specific language governing permissions and limitations
+#  under the License.
+#  
+# *
 #
 # bash script to generate the Update Feeds requested by installed AOO/OOo 
instance via HTTP/HTTPS
 # to check, if a new AOO version is available for the requesting AOO/OOo 
instance




svn commit: r915671 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/bg-test/ content/cs/ content/de/ content/el/ content/es/ content/eu-test/ content/fi/ content/fr/ content/he/ conte

2014-07-10 Thread buildbot
Author: buildbot
Date: Thu Jul 10 10:36:01 2014
New Revision: 915671

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/bg-test/brand.html
websites/staging/ooo-site/trunk/content/brand.html
websites/staging/ooo-site/trunk/content/cs/brand.html
websites/staging/ooo-site/trunk/content/de/brand.html
websites/staging/ooo-site/trunk/content/el/brand.html
websites/staging/ooo-site/trunk/content/es/brand.html
websites/staging/ooo-site/trunk/content/eu-test/brand.html
websites/staging/ooo-site/trunk/content/fi/brand.html
websites/staging/ooo-site/trunk/content/fr/brand.html
websites/staging/ooo-site/trunk/content/he/brand.html
websites/staging/ooo-site/trunk/content/hu/brand.html
websites/staging/ooo-site/trunk/content/it/brand.html
websites/staging/ooo-site/trunk/content/ja/brand.html
websites/staging/ooo-site/trunk/content/l10n/brand.html
websites/staging/ooo-site/trunk/content/lt/brand.html
websites/staging/ooo-site/trunk/content/nl-template/brand.html
websites/staging/ooo-site/trunk/content/nl/brand.html
websites/staging/ooo-site/trunk/content/pt-br/brand.html
websites/staging/ooo-site/trunk/content/pt/brand.html
websites/staging/ooo-site/trunk/content/ru/brand.html
websites/staging/ooo-site/trunk/content/sk/brand.html
websites/staging/ooo-site/trunk/content/sr-latn/brand.html
websites/staging/ooo-site/trunk/content/test-he/brand.html
websites/staging/ooo-site/trunk/content/test/brand.html
websites/staging/ooo-site/trunk/content/tr/brand.html
websites/staging/ooo-site/trunk/content/vi-test/brand.html
websites/staging/ooo-site/trunk/content/xx/brand.html
websites/staging/ooo-site/trunk/content/zh-cn/brand.html
websites/staging/ooo-site/trunk/content/zh-tw/brand.html
websites/staging/ooo-site/trunk/content/zh/brand.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:36:01 2014
@@ -1 +1 @@
-1609433
+1609435

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:36:01 2014
@@ -1 +1 @@
-1609433
+1609435

Modified: websites/staging/ooo-site/trunk/content/bg-test/brand.html
==
--- websites/staging/ooo-site/trunk/content/bg-test/brand.html (original)
+++ websites/staging/ooo-site/trunk/content/bg-test/brand.html Thu Jul 10 
10:36:01 2014
@@ -56,7 +56,7 @@
/div
 div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt=Apache OpenOffice 
src=/images//AOO_logos/AOO4_website_logo.png//a/div
 div id=bannerright
-  div class=searchdiv
+  div id=searchdiv
form id=cse-search-box-header action=http://www.google.com/search; 
method=get
  div
input type=hidden name=domains value=www.openoffice.org/

Modified: websites/staging/ooo-site/trunk/content/brand.html
==
--- websites/staging/ooo-site/trunk/content/brand.html (original)
+++ websites/staging/ooo-site/trunk/content/brand.html Thu Jul 10 10:36:01 2014
@@ -56,7 +56,7 @@
/div
 div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt=Apache OpenOffice 
src=/images/AOO_logos/100MillAOO100px.png//a/div
 div id=bannerright
-  div class=searchdiv
+  div id=searchdiv
form id=cse-search-box-header action=http://www.google.com/search; 
method=get
  div
input type=hidden name=domains value=www.openoffice.org/

Modified: websites/staging/ooo-site/trunk/content/cs/brand.html
==
--- websites/staging/ooo-site/trunk/content/cs/brand.html (original)
+++ websites/staging/ooo-site/trunk/content/cs/brand.html Thu Jul 10 10:36:01 
2014
@@ -56,7 +56,7 @@
/div
 div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt= src=/images///a/div
 div id=bannerright
-  div class=searchdiv
+  div id=searchdiv
form id=cse-search-box-header action=http://www.google.com/search; 
method=get
  div
input type=hidden name=domains value=/

Modified: websites/staging/ooo-site/trunk/content/de/brand.html
==
--- websites/staging/ooo-site/trunk/content/de/brand.html (original)
+++ websites/staging/ooo-site/trunk/content/de/brand.html Thu Jul 10 10:36:01 
2014
@@ -56,7 +56,7 @@
/div
 div id=bannerlefta 

svn commit: r915672 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/css/ooo.css

2014-07-10 Thread buildbot
Author: buildbot
Date: Thu Jul 10 10:37:29 2014
New Revision: 915672

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/css/ooo.css

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:37:29 2014
@@ -1 +1 @@
-1609435
+1609437

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:37:29 2014
@@ -1 +1 @@
-1609435
+1609437

Modified: websites/staging/ooo-site/trunk/content/css/ooo.css
==
--- websites/staging/ooo-site/trunk/content/css/ooo.css (original)
+++ websites/staging/ooo-site/trunk/content/css/ooo.css Thu Jul 10 10:37:29 2014
@@ -48,8 +48,9 @@ body {
   float: left;
 }
 
-#languagesdiv {float: right; padding: 1.25em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
-#searchdiv {padding:1em;}
+#languagesdiv {float: right; padding: 1em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
+#searchdiv {padding:1em;font-size: 0.9em;}
+
 a {
   color: #107EC0;
 }




svn commit: r1609440 - /openoffice/ooo-site/trunk/content/css/ooo.css

2014-07-10 Thread tal
Author: tal
Date: Thu Jul 10 10:49:32 2014
New Revision: 1609440

URL: http://svn.apache.org/r1609440
Log:
fixed height of languages select box.

Modified:
openoffice/ooo-site/trunk/content/css/ooo.css

Modified: openoffice/ooo-site/trunk/content/css/ooo.css
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/css/ooo.css?rev=1609440r1=1609439r2=1609440view=diff
==
--- openoffice/ooo-site/trunk/content/css/ooo.css (original)
+++ openoffice/ooo-site/trunk/content/css/ooo.css Thu Jul 10 10:49:32 2014
@@ -49,7 +49,9 @@ body {
 }
 
 #languagesdiv {float: right; padding: 1em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
-#searchdiv {padding:1em;font-size: 0.9em;}
+#lanaugesdiv select {padding:1px}; /* equal height as of the search button */
+#searchdiv {padding:1em;font-size: 0.9em;} /*eq. positioning as for the 
languages div */
+
 
 a {
   color: #107EC0;




svn commit: r915673 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/css/ooo.css

2014-07-10 Thread buildbot
Author: buildbot
Date: Thu Jul 10 10:50:53 2014
New Revision: 915673

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/css/ooo.css

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:50:53 2014
@@ -1 +1 @@
-1609437
+1609440

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 10:50:53 2014
@@ -1 +1 @@
-1609437
+1609440

Modified: websites/staging/ooo-site/trunk/content/css/ooo.css
==
--- websites/staging/ooo-site/trunk/content/css/ooo.css (original)
+++ websites/staging/ooo-site/trunk/content/css/ooo.css Thu Jul 10 10:50:53 2014
@@ -49,7 +49,9 @@ body {
 }
 
 #languagesdiv {float: right; padding: 1em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
-#searchdiv {padding:1em;font-size: 0.9em;}
+#lanaugesdiv select {padding:1px}; /* equal height as of the search button */
+#searchdiv {padding:1em;font-size: 0.9em;} /*eq. positioning as for the 
languages div */
+
 
 a {
   color: #107EC0;




svn commit: r1609441 - /openoffice/ooo-site/trunk/content/css/ooo.css

2014-07-10 Thread tal
Author: tal
Date: Thu Jul 10 10:57:37 2014
New Revision: 1609441

URL: http://svn.apache.org/r1609441
Log:
fixed broken style sytax for lang/search div.

Modified:
openoffice/ooo-site/trunk/content/css/ooo.css

Modified: openoffice/ooo-site/trunk/content/css/ooo.css
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/css/ooo.css?rev=1609441r1=1609440r2=1609441view=diff
==
--- openoffice/ooo-site/trunk/content/css/ooo.css (original)
+++ openoffice/ooo-site/trunk/content/css/ooo.css Thu Jul 10 10:57:37 2014
@@ -49,8 +49,8 @@ body {
 }
 
 #languagesdiv {float: right; padding: 1em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
-#lanaugesdiv select {padding:1px}; /* equal height as of the search button */
-#searchdiv {padding:1em;font-size: 0.9em;} /*eq. positioning as for the 
languages div */
+#lanaugesdiv select {padding:1px;} /* equal height as of the search button */
+#searchdiv {padding:1em; font-size: 0.9em;} /* eq. positioning as for the 
languages div */
 
 
 a {




svn commit: r1609442 - /openoffice/ooo-site/trunk/content/css/ooo.css

2014-07-10 Thread tal
Author: tal
Date: Thu Jul 10 11:10:39 2014
New Revision: 1609442

URL: http://svn.apache.org/r1609442
Log:
minor fix to lang. select CSS.

Modified:
openoffice/ooo-site/trunk/content/css/ooo.css

Modified: openoffice/ooo-site/trunk/content/css/ooo.css
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/css/ooo.css?rev=1609442r1=1609441r2=1609442view=diff
==
--- openoffice/ooo-site/trunk/content/css/ooo.css (original)
+++ openoffice/ooo-site/trunk/content/css/ooo.css Thu Jul 10 11:10:39 2014
@@ -49,7 +49,7 @@ body {
 }
 
 #languagesdiv {float: right; padding: 1em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
-#lanaugesdiv select {padding:1px;} /* equal height as of the search button */
+#selectlanaugage {padding: 1px; margin: 1px;} /* equal height as of the search 
button */
 #searchdiv {padding:1em; font-size: 0.9em;} /* eq. positioning as for the 
languages div */
 
 




svn commit: r915676 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/css/ooo.css

2014-07-10 Thread buildbot
Author: buildbot
Date: Thu Jul 10 11:11:28 2014
New Revision: 915676

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/css/ooo.css

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 11:11:28 2014
@@ -1 +1 @@
-1609441
+1609442

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul 10 11:11:28 2014
@@ -1 +1 @@
-1609441
+1609442

Modified: websites/staging/ooo-site/trunk/content/css/ooo.css
==
--- websites/staging/ooo-site/trunk/content/css/ooo.css (original)
+++ websites/staging/ooo-site/trunk/content/css/ooo.css Thu Jul 10 11:11:28 2014
@@ -49,7 +49,7 @@ body {
 }
 
 #languagesdiv {float: right; padding: 1em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
-#lanaugesdiv select {padding:1px;} /* equal height as of the search button */
+#selectlanaugage {padding: 1px; margin: 1px;} /* equal height as of the search 
button */
 #searchdiv {padding:1em; font-size: 0.9em;} /* eq. positioning as for the 
languages div */
 
 




svn commit: r1609443 - /openoffice/ooo-site/trunk/content/css/ooo.css

2014-07-10 Thread tal
Author: tal
Date: Thu Jul 10 11:12:43 2014
New Revision: 1609443

URL: http://svn.apache.org/r1609443
Log:
minor fix to lang. select CSS.

Modified:
openoffice/ooo-site/trunk/content/css/ooo.css

Modified: openoffice/ooo-site/trunk/content/css/ooo.css
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/css/ooo.css?rev=1609443r1=1609442r2=1609443view=diff
==
--- openoffice/ooo-site/trunk/content/css/ooo.css (original)
+++ openoffice/ooo-site/trunk/content/css/ooo.css Thu Jul 10 11:12:43 2014
@@ -49,7 +49,7 @@ body {
 }
 
 #languagesdiv {float: right; padding: 1em; font-size: 0.9em; color:gray; 
border-left:solid 1px #ccc;}
-#selectlanaugage {padding: 1px; margin: 1px;} /* equal height as of the search 
button */
+#selectlanguage {padding: 1px; margin: 1px;} /* equal height as of the search 
button */
 #searchdiv {padding:1em; font-size: 0.9em;} /* eq. positioning as for the 
languages div */
 
 




svn commit: r1609460 - in /openoffice/branches/AOO410/main/sd: ./ source/ui/unoidl/unopage.cxx

2014-07-10 Thread alg
Author: alg
Date: Thu Jul 10 13:57:46 2014
New Revision: 1609460

URL: http://svn.apache.org/r1609460
Log:
i119287 corrected default style for draw objects created using UNO API

Modified:
openoffice/branches/AOO410/main/sd/   (props changed)
openoffice/branches/AOO410/main/sd/source/ui/unoidl/unopage.cxx

Propchange: openoffice/branches/AOO410/main/sd/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Thu Jul 10 13:57:46 2014
@@ -0,0 +1,5 @@
+/openoffice/branches/AOO400/main/sd:1503684
+/openoffice/branches/ia2/main/sd:1417739-1541842
+/openoffice/branches/ooxml-osba/main/sd:1546391,1546395,1546574,1546934,1547030,1547392,1551920,1551954,1551958,1552283
+/openoffice/branches/rejuvenate01/main/sd:1480411,1534063,1534098,1536312,1549902,1560617
+/openoffice/trunk/main/sd:1571617,1571677,1572569,1572577,1574058,1574101,1575922,1576216,1576748,1578786,1579934,1580657,1580779,1581746,1581840,1582359,1582365,1582709,1583336,1583418,1583589,1583988,1585261,1586242,1586249,1586583,1587468,1589050,1592692,1592716,1594206,1595847,1595851,1595858,1596218,1596491,1596494,1597076,1597102,1597109,1599169,1599173-1599174,1600581,1600587,1600590,1600630,1600861,1600863,1600883,1602434,1602823,1602850,1603416,1603897,1609118

Modified: openoffice/branches/AOO410/main/sd/source/ui/unoidl/unopage.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO410/main/sd/source/ui/unoidl/unopage.cxx?rev=1609460r1=1609459r2=1609460view=diff
==
--- openoffice/branches/AOO410/main/sd/source/ui/unoidl/unopage.cxx (original)
+++ openoffice/branches/AOO410/main/sd/source/ui/unoidl/unopage.cxx Thu Jul 10 
13:57:46 2014
@@ -67,11 +67,7 @@
 #include svx/svdview.hxx
 #include misc.hxx
 #include View.hxx
-#ifndef SVX_LIGHT
-#ifndef SD_DRAW_DOC_SHELL_HXX
 #include DrawDocShell.hxx
-#endif
-#endif
 #include ViewShell.hxx
 #include DrawViewShell.hxx
 #include unoobj.hxx
@@ -80,6 +76,7 @@
 #include unopback.hxx
 #include unohelp.hxx
 #include vcl/dibtools.hxx
+#include svx/svdograf.hxx
 
 using ::com::sun::star::animations::XAnimationNode;
 using ::com::sun::star::animations::XAnimationNodeSupplier;
@@ -431,9 +428,24 @@ SdrObject * SdGenericDrawPage::_CreateSd
 SdrObject* pObj = SvxFmDrawPage::_CreateSdrObject( xShape );
 if( pObj  ( (pObj-GetObjInventor() != SdrInventor) || 
(pObj-GetObjIdentifier() != OBJ_PAGE) ) )
 {
-   SdDrawDocument* pDoc = 
(SdDrawDocument*)GetPage()-GetModel();
+SdDrawDocument* pDoc = (SdDrawDocument*)GetPage()-GetModel();
 if( pDoc )
-pObj-NbcSetStyleSheet( pDoc-GetDefaultStyleSheet(), sal_True 
);
+{
+// #119287# similar to the code in the SdrObject methods the 
graphic and ole
+// SdrObjects need another default style than the rest, see 
task. Adding here, too.
+// : Same as for #119287#: Can be removed in branch aw080 
again
+const bool bIsSdrGrafObj(0 != dynamic_cast SdrGrafObj* 
(pObj));
+const bool bIsSdrOle2Obj(0 != dynamic_cast SdrOle2Obj* 
(pObj));
+
+if(bIsSdrGrafObj || bIsSdrOle2Obj)
+{
+
pObj-NbcSetStyleSheet(pDoc-GetDefaultStyleSheetForSdrGrafObjAndSdrOle2Obj(), 
sal_True);
+}
+else
+{
+pObj-NbcSetStyleSheet(pDoc-GetDefaultStyleSheet(), 
sal_True);
+}
+}
 }
return pObj;
 }




buildbot failure in ASF Buildbot on ooo-site-site-staging

2014-07-10 Thread buildbot
The Buildbot has detected a new failure on builder ooo-site-site-staging while 
building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/ooo-site-site-staging/builds/1166

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: scheduler
Build Source Stamp: [branch openoffice/ooo-site] 1609559
Blamelist: marcus

BUILD FAILED: failed compile

sincerely,
 -The Buildbot





svn commit: r1609596 - /openoffice/ooo-site/trunk/content/test/index.html

2014-07-10 Thread kschenk
Author: kschenk
Date: Fri Jul 11 00:20:22 2014
New Revision: 1609596

URL: http://svn.apache.org/r1609596
Log:
Commit new index.html to see if buildbot works now.


Modified:
openoffice/ooo-site/trunk/content/test/index.html

Modified: openoffice/ooo-site/trunk/content/test/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/test/index.html?rev=1609596r1=1609595r2=1609596view=diff
==
--- openoffice/ooo-site/trunk/content/test/index.html (original)
+++ openoffice/ooo-site/trunk/content/test/index.html Fri Jul 11 00:20:22 2014
@@ -17,19 +17,69 @@
 @import exceptions.css;
 /* ]] */
 /style
-
 script
-  function follow(platform) {
-_gaq.push(['_trackEvent','social', 'followUs', platform]); 
-  if (platform == 'Facebook') {
-window.open(https://www.facebook.com/ApacheOO,_blank;);
-  } else if (platform == 'Twitter') {
-window.open(https://twitter.com/ApacheOO,_blank;);
-  } else if (platform == 'GooglePlus') {
-window.open(https://plus.google.com/+openoffice,_blank;);
-  }  else if (platform == 'ApacheBlog') {
-window.open(https://blogs.apache.org/OOo/,_blank;);
+  function follow( platform ) {
+_gaq.push( ['_trackEvent', 'social', 'followUs', platform] ); 
+
+if ( platform == 'ApacheBlog' )
+  window.open( https://blogs.apache.org/OOo/;, _blank );
+else if ( platform == 'Facebook' )
+  window.open( https://www.facebook.com/ApacheOO;, _blank );
+else if ( platform == 'Twitter' )
+  window.open( https://twitter.com/ApacheOO;, _blank );
+else if ( platform == 'GooglePlus' )
+  window.open( https://plus.google.com/+openoffice;, _blank );
+  }
+
+  function showAlertbox( show ) {
+   // More see http://html-color-codes.info/;
+var l10n_alert_box_background_color = #F5A9A9;
+// Make the whole alert box clickable with a link.
+var l10n_alert_box_href= index.html;
+   // Maximum 49 characters.
+var l10n_alert_box_headline_text= Headline text with max. 49 
characters;
+   // Maximum 630 characters.
+var l10n_alert_box_text_text   = Text with max. 630 characters.
+ + br /br /
+ + This alert box is now within 
the layout of the list items below.
+ + br /br /
+ + The following link can be 
added to point the user to more information or 
+ + to a solution. But the link 
can also be left out. Then the link will not 
+ + be shown.;
+// Show alert box or not?
+if( show ) {
+  // If no background color value was set then use the default value.
+  if( ! l10n_alert_box_background_color )
+var l10n_alert_box_background_color = #FFD9A7;
+
+  // Show alert box with defined background color.
+  // Depending if link is available, make the whole DIV clickable or 
not.
+  if( l10n_alert_box_href ) {
+// Show the text with link and cursor as poiner.
+document.write( div id='alert_box' style='background:  + 
l10n_alert_box_background_color
++ ; ' onclick='window.open(\ + l10n_alert_box_href + \, 
\_blank\); return false;' );
+
+// Show headline.
+document.write( h2 style='cursor: pointer;' + 
l10n_alert_box_headline_text + /h2 );
+
+// Show text.
+if( l10n_alert_box_text_text )
+  document.write( p style='cursor: pointer;' + 
l10n_alert_box_text_text + /p );
+
+  } else {
+// Show the text without link and normal cursor.
+document.write( div id='alert_box' style='background:  + 
l10n_alert_box_background_color + ' );
+
+// Show headline.
+document.write( h2 style='cursor: default;' + 
l10n_alert_box_headline_text + /h2 );
+
+// Shoe text.
+if( l10n_alert_box_text_text )
+  document.write( p style='cursor: default;' + 
l10n_alert_box_text_text + /p );
   }
+
+  document.write( /div ); // Alert box
+}
   }
 /script
 /head
@@ -39,17 +89,29 @@
 !-- The text in the H1 tag is intentionally shown as not displayable, just to 
please accessibility tools like a
 screen reader.
 --
-!-- KLS: 04-21-2014: my small change --
-
 h1 style=display: none;Apache OpenOffice/h1
 
 div id=actionstatements
+
+  script type=text/javascript
+  !--
+  // Show alert box.
+  // Change to 'true' if you want to show the text that is defined in the 
variables above.
+  showAlertbox( false );
+  //--
+  /script
+
   ul
 li
+  hr /
+/li
+

buildbot success in ASF Buildbot on ooo-site-site-staging

2014-07-10 Thread buildbot
The Buildbot has detected a restored build on builder ooo-site-site-staging 
while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/ooo-site-site-staging/builds/1167

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: scheduler
Build Source Stamp: [branch openoffice/ooo-site] 1609596
Blamelist: kschenk

Build succeeded!

sincerely,
 -The Buildbot





svn commit: r915735 [2/2] - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/bg-test/ content/cs/ content/de/ content/el/ content/es/ content/eu-test/ content/fi/ content/fr/ content/he/

2014-07-10 Thread buildbot
Modified: websites/staging/ooo-site/trunk/content/test/index.html
==
--- websites/staging/ooo-site/trunk/content/test/index.html (original)
+++ websites/staging/ooo-site/trunk/content/test/index.html Fri Jul 11 00:26:33 
2014
@@ -19,19 +19,69 @@
 @import exceptions.css;
 /* ]] */
 /style
-
 script
-  function follow(platform) {
-_gaq.push(['_trackEvent','social', 'followUs', platform]); 
-  if (platform == 'Facebook') {
-window.open(https://www.facebook.com/ApacheOO,_blank;);
-  } else if (platform == 'Twitter') {
-window.open(https://twitter.com/ApacheOO,_blank;);
-  } else if (platform == 'GooglePlus') {
-window.open(https://plus.google.com/+openoffice,_blank;);
-  }  else if (platform == 'ApacheBlog') {
-window.open(https://blogs.apache.org/OOo/,_blank;);
+  function follow( platform ) {
+_gaq.push( ['_trackEvent', 'social', 'followUs', platform] ); 
+
+if ( platform == 'ApacheBlog' )
+  window.open( https://blogs.apache.org/OOo/;, _blank );
+else if ( platform == 'Facebook' )
+  window.open( https://www.facebook.com/ApacheOO;, _blank );
+else if ( platform == 'Twitter' )
+  window.open( https://twitter.com/ApacheOO;, _blank );
+else if ( platform == 'GooglePlus' )
+  window.open( https://plus.google.com/+openoffice;, _blank );
+  }
+
+  function showAlertbox( show ) {
+   // More see http://html-color-codes.info/;
+var l10n_alert_box_background_color = #F5A9A9;
+// Make the whole alert box clickable with a link.
+var l10n_alert_box_href= index.html;
+   // Maximum 49 characters.
+var l10n_alert_box_headline_text= Headline text with max. 49 
characters;
+   // Maximum 630 characters.
+var l10n_alert_box_text_text   = Text with max. 630 characters.
+ + br /br /
+ + This alert box is now within 
the layout of the list items below.
+ + br /br /
+ + The following link can be 
added to point the user to more information or 
+ + to a solution. But the link 
can also be left out. Then the link will not 
+ + be shown.;
+// Show alert box or not?
+if( show ) {
+  // If no background color value was set then use the default value.
+  if( ! l10n_alert_box_background_color )
+var l10n_alert_box_background_color = #FFD9A7;
+
+  // Show alert box with defined background color.
+  // Depending if link is available, make the whole DIV clickable or 
not.
+  if( l10n_alert_box_href ) {
+// Show the text with link and cursor as poiner.
+document.write( div id='alert_box' style='background:  + 
l10n_alert_box_background_color
++ ; ' onclick='window.open(\ + l10n_alert_box_href + \, 
\_blank\); return false;' );
+
+// Show headline.
+document.write( h2 style='cursor: pointer;' + 
l10n_alert_box_headline_text + /h2 );
+
+// Show text.
+if( l10n_alert_box_text_text )
+  document.write( p style='cursor: pointer;' + 
l10n_alert_box_text_text + /p );
+
+  } else {
+// Show the text without link and normal cursor.
+document.write( div id='alert_box' style='background:  + 
l10n_alert_box_background_color + ' );
+
+// Show headline.
+document.write( h2 style='cursor: default;' + 
l10n_alert_box_headline_text + /h2 );
+
+// Shoe text.
+if( l10n_alert_box_text_text )
+  document.write( p style='cursor: default;' + 
l10n_alert_box_text_text + /p );
   }
+
+  document.write( /div ); // Alert box
+}
   }
 /script
 
@@ -55,17 +105,29 @@
 !-- The text in the H1 tag is intentionally shown as not displayable, just to 
please accessibility tools like a
 screen reader.
 --
-!-- KLS: 04-21-2014: my small change --
-
 h1 style=display: none;Apache OpenOffice/h1
 
 div id=actionstatements
+
+  script type=text/javascript
+  !--
+  // Show alert box.
+  // Change to 'true' if you want to show the text that is defined in the 
variables above.
+  showAlertbox( false );
+  //--
+  /script
+
   ul
 li
+  hr /
+/li
+li
   div class=action-info
 div class=action-text action-link
-  a href=../why/index.htmlh2I want to learn more about 
OpenOffice/h2
-  pWhat is Apache OpenOffice? Why should I use it? Is it 
emreally/em free?/p/a
+  a href=why/index.html
+h2I want to learn more about OpenOffice/h2
+  

buildbot failure in ASF Buildbot on openoffice-linux32-nightly

2014-07-10 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-linux32-nightly 
while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/openoffice-linux32-nightly/builds/82

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-vm2_ubuntu_32bit

Build Reason: The Nightly scheduler named 'openoffice-linux32-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/branches/AOO410] HEAD
Blamelist: 

BUILD FAILED: failed

sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

2014-07-10 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-fbsd-nightly 
while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/73

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-fbsd2_64bit

Build Reason: The Nightly scheduler named 'openoffice-fbsd-nightly' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed

sincerely,
 -The Buildbot