buildbot success in ASF Buildbot on aoo-win7

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

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

Buildslave for this Build: bb-win7

Build Reason: The Nightly scheduler named 'aoo-win7-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-03 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/73

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/trunk] HEAD
Blamelist: 

Build succeeded!

sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-nightly

2014-07-03 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/68

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





svn commit: r1607610 - /openoffice/trunk/main/sysui/desktop/debian/makefile.mk

2014-07-03 Thread hdu
Author: hdu
Date: Thu Jul  3 12:35:27 2014
New Revision: 1607610

URL: http://svn.apache.org/r1607610
Log:
#i125176# fix the Debian control-file-bad-permission problem

Modified:
openoffice/trunk/main/sysui/desktop/debian/makefile.mk

Modified: openoffice/trunk/main/sysui/desktop/debian/makefile.mk
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sysui/desktop/debian/makefile.mk?rev=1607610&r1=1607609&r2=1607610&view=diff
==
--- openoffice/trunk/main/sysui/desktop/debian/makefile.mk (original)
+++ openoffice/trunk/main/sysui/desktop/debian/makefile.mk Thu Jul  3 12:35:27 
2014
@@ -81,7 +81,7 @@ $(DEBFILES) : makefile.mk control postin
-$(RM) $(@:d)$(@:f:s/_/ /:1)_*
$(RM) -r $(MISC)$/$(@:b)
dmake $(MISC)$/$(@:b)$/DEBIAN$/{control postinst postrm prerm} 
-   @chmod -R o-w $(MISC)$/$(@:b)
+   @chmod -R go-w $(MISC)$/$(@:b)
@chmod a+rx $(MISC)$/$(@:b)$/DEBIAN $(MISC)/$(@:b)/DEBIAN/post* 
$(MISC)/$(@:b)/DEBIAN/pre*
@chmod g-s $(MISC)/$(@:b)/DEBIAN
@mkdir -p $(PKGDIR)




svn commit: r1607619 - /openoffice/trunk/main/sysui/desktop/debian/control

2014-07-03 Thread hdu
Author: hdu
Date: Thu Jul  3 12:50:04 2014
New Revision: 1607619

URL: http://svn.apache.org/r1607619
Log:
#i125176# add Debian package maintainer and extended description

the package maintainer is a to-be-created email alias to the target that
will be decided by the Apache OpenOffice PMC.

Modified:
openoffice/trunk/main/sysui/desktop/debian/control

Modified: openoffice/trunk/main/sysui/desktop/debian/control
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sysui/desktop/debian/control?rev=1607619&r1=1607618&r2=1607619&view=diff
==
--- openoffice/trunk/main/sysui/desktop/debian/control (original)
+++ openoffice/trunk/main/sysui/desktop/debian/control Thu Jul  3 12:50:04 2014
@@ -1,5 +1,6 @@
 Description: %productname desktop integration
-Maintainer: Apache Software Foundation
+ This package provides desktop icons and menus for %productname
+Maintainer: Apache Software Foundation 
 Architecture: all
 Provides: openoffice-desktop-integration, openoffice.org-unbundled
 Conflicts: openoffice-desktop-integration, openofficeorg-desktop-integration, 
openoffice.org-debian-menus




svn commit: r1607649 - /openoffice/trunk/main/sw/source/core/doc/notxtfrm.cxx

2014-07-03 Thread alg
Author: alg
Date: Thu Jul  3 13:58:29 2014
New Revision: 1607649

URL: http://svn.apache.org/r1607649
Log:
i125171 support lossless embedding of linked jpegs in writer for PDF export

Modified:
openoffice/trunk/main/sw/source/core/doc/notxtfrm.cxx

Modified: openoffice/trunk/main/sw/source/core/doc/notxtfrm.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/core/doc/notxtfrm.cxx?rev=1607649&r1=1607648&r2=1607649&view=diff
==
--- openoffice/trunk/main/sw/source/core/doc/notxtfrm.cxx (original)
+++ openoffice/trunk/main/sw/source/core/doc/notxtfrm.cxx Thu Jul  3 13:58:29 
2014
@@ -1006,13 +1006,54 @@ void SwNoTxtFrm::PaintPicture( OutputDev
 basegfx::tools::createScaleTranslateB2DHomMatrix(
 aTargetRange.getRange(),
 aTargetRange.getMinimum()));
-drawinglayer::primitive2d::Primitive2DSequence aContent;
+drawinglayer::primitive2d::Primitive2DSequence aContent(1);
+bool bDone(false);
 
-aContent.realloc(1);
-aContent[0] = new 
drawinglayer::primitive2d::GraphicPrimitive2D(
-aTargetTransform,
-rGrfObj.GetGraphic(),
-aGrfAttr);
+// #i125171# The mechanism to get lossless jpegs into pdf 
is based on having the original
+// file data (not the bitmap data) at the Graphic in the 
GfxLink (which has *nothing* to
+// do with the graphic being linked). This works well for 
DrawingLayer GraphicObjects (linked
+// and unlinked) but fails for linked Writer 
GraphicObjects. These have the URL in the
+// GraphicObject, but no GfxLink with the original file 
data when it's a linked graphic.
+// Since this blows up PDF size by a factor of 10 (the 
graphics get embedded as pixel maps
+// then) it is okay to add this workarund: In the needed 
case, load the graphic in a way to
+// get the GfxLink in the needed form and use that Graphic 
temporarily. Do this only when
+// - we have PDF export
+// - the GraphicObject is linked
+// - the Graphic has no GfxLink
+// - LosslessCompression is activated
+// - it's indeed a jpeg graphic (could be checked by the 
url ending, but is more reliable to check later)
+// In all other cases (normal repaint, print, etc...) use 
the available Graphic with the
+// already loaded pixel graphic as before this change.
+if(pOut->GetExtOutDevData() && rGrfObj.HasLink() && 
!rGrfObj.GetGraphic().IsLink())
+{
+const vcl::PDFExtOutDevData* pPDFExt = dynamic_cast< 
const vcl::PDFExtOutDevData* >(pOut->GetExtOutDevData());
+
+if(pPDFExt && pPDFExt->GetIsLosslessCompression())
+{
+Graphic aTempGraphic;
+INetURLObject aURL(rGrfObj.GetLink());
+
+if(GRFILTER_OK == 
GraphicFilter::GetGraphicFilter()->ImportGraphic(aTempGraphic, aURL))
+{
+if(aTempGraphic.IsLink() && 
GFX_LINK_TYPE_NATIVE_JPG == aTempGraphic.GetLink().GetType())
+{
+aContent[0] = new 
drawinglayer::primitive2d::GraphicPrimitive2D(
+aTargetTransform,
+aTempGraphic,
+aGrfAttr);
+bDone = true;
+}
+}
+}
+}
+
+if(!bDone)
+{
+aContent[0] = new 
drawinglayer::primitive2d::GraphicPrimitive2D(
+aTargetTransform,
+rGrfObj.GetGraphic(),
+aGrfAttr);
+}
 
 paintUsingPrimitivesHelper(
 *pOut,




svn commit: r1607682 - in /openoffice/trunk/main/svgio: inc/svgio/svgreader/svgclippathnode.hxx inc/svgio/svgreader/svgmasknode.hxx source/svgreader/svgclippathnode.cxx source/svgreader/svgmasknode.cx

2014-07-03 Thread alg
Author: alg
Date: Thu Jul  3 15:49:09 2014
New Revision: 1607682

URL: http://svn.apache.org/r1607682
Log:
i124852 Corrected mask and clip polygons for userSpaceOnUse

Modified:
openoffice/trunk/main/svgio/inc/svgio/svgreader/svgclippathnode.hxx
openoffice/trunk/main/svgio/inc/svgio/svgreader/svgmasknode.hxx
openoffice/trunk/main/svgio/source/svgreader/svgclippathnode.cxx
openoffice/trunk/main/svgio/source/svgreader/svgmasknode.cxx
openoffice/trunk/main/svgio/source/svgreader/svgstyleattributes.cxx

Modified: openoffice/trunk/main/svgio/inc/svgio/svgreader/svgclippathnode.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svgio/inc/svgio/svgreader/svgclippathnode.hxx?rev=1607682&r1=1607681&r2=1607682&view=diff
==
--- openoffice/trunk/main/svgio/inc/svgio/svgreader/svgclippathnode.hxx 
(original)
+++ openoffice/trunk/main/svgio/inc/svgio/svgreader/svgclippathnode.hxx Thu Jul 
 3 15:49:09 2014
@@ -52,8 +52,10 @@ namespace svgio
 virtual void parseAttribute(const rtl::OUString& rTokenName, 
SVGToken aSVGToken, const rtl::OUString& aContent);
 virtual void 
decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool 
bReferenced) const;
 
-/// apply contained clipPath to given geometry
-void apply(drawinglayer::primitive2d::Primitive2DSequence& 
rTarget) const;
+/// apply contained clipPath to given geometry #i124852# transform 
may be needed
+void apply(
+drawinglayer::primitive2d::Primitive2DSequence& rTarget, 
+const basegfx::B2DHomMatrix* pTransform) const;
 
 /// clipPathUnits content
 SvgUnits getClipPathUnits() const { return maClipPathUnits; }

Modified: openoffice/trunk/main/svgio/inc/svgio/svgreader/svgmasknode.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svgio/inc/svgio/svgreader/svgmasknode.hxx?rev=1607682&r1=1607681&r2=1607682&view=diff
==
--- openoffice/trunk/main/svgio/inc/svgio/svgreader/svgmasknode.hxx (original)
+++ openoffice/trunk/main/svgio/inc/svgio/svgreader/svgmasknode.hxx Thu Jul  3 
15:49:09 2014
@@ -57,8 +57,10 @@ namespace svgio
 virtual void parseAttribute(const rtl::OUString& rTokenName, 
SVGToken aSVGToken, const rtl::OUString& aContent);
 virtual void 
decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool 
bReferenced) const;
 
-/// apply contained clipPath to given geometry
-void apply(drawinglayer::primitive2d::Primitive2DSequence& 
rTarget) const;
+/// apply contained clipPath to given geometry #i124852# transform 
may be needed
+void apply(
+drawinglayer::primitive2d::Primitive2DSequence& rTarget, 
+const basegfx::B2DHomMatrix* pTransform) const;
 
 /// x content, set if found in current context
 const SvgNumber& getX() const { return maX; }

Modified: openoffice/trunk/main/svgio/source/svgreader/svgclippathnode.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svgio/source/svgreader/svgclippathnode.cxx?rev=1607682&r1=1607681&r2=1607682&view=diff
==
--- openoffice/trunk/main/svgio/source/svgreader/svgclippathnode.cxx (original)
+++ openoffice/trunk/main/svgio/source/svgreader/svgclippathnode.cxx Thu Jul  3 
15:49:09 2014
@@ -132,7 +132,9 @@ namespace svgio
 }
 }
 
-void 
SvgClipPathNode::apply(drawinglayer::primitive2d::Primitive2DSequence& 
rContent) const
+void SvgClipPathNode::apply(
+drawinglayer::primitive2d::Primitive2DSequence& rContent,
+const basegfx::B2DHomMatrix* pTransform) const
 {
 if(rContent.hasElements() && Display_none != getDisplay())
 {
@@ -179,6 +181,14 @@ namespace svgio
 aContentRange.getRange(),
 aContentRange.getMinimum()));
 }
+else // userSpaceOnUse
+{
+// #i124852#
+if(pTransform)
+{
+aClipPolyPolygon.transform(*pTransform);
+}
+}
 
 // #124313# try to avoid creating an embedding to a 
MaskPrimitive2D if
 // possible; MaskPrimitive2D processing is potentially 
expensive

Modified: openoffice/trunk/main/svgio/source/svgreader/svgmasknode.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svgio/source/svgreader/svgmasknode.cxx?rev=1607682&r1=1607681&r2=1607682&view=diff
==
--- openoffice/trunk/main/

svn commit: r1607725 - /openoffice/ooo-site/trunk/content/zh-tw/index.html

2014-07-03 Thread marcus
Author: marcus
Date: Thu Jul  3 19:21:32 2014
New Revision: 1607725

URL: http://svn.apache.org/r1607725
Log:
Improved translation, contributed by 'Hung Mark '

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

Modified: openoffice/ooo-site/trunk/content/zh-tw/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/zh-tw/index.html?rev=1607725&r1=1607724&r2=1607725&view=diff
==
--- openoffice/ooo-site/trunk/content/zh-tw/index.html (original)
+++ openoffice/ooo-site/trunk/content/zh-tw/index.html Thu Jul  3 19:21:32 2014
@@ -121,12 +121,12 @@ screen reader.
   + ""
 + ""
   + ""
-+ "I want to download Apache OpenOffice"
-+ "(Most recent 
release: " + VERSION + ")"
-+ "Download Apache OpenOffice for free (really!) | "
++ "我想下載Apache OpenOffice"
++ "(最新版本: 
" + VERSION + ")"
++ "免費下載Apache OpenOffice(真的免費!) | "
   + ""
-+ "Click here to get more information"
++ "點這裡取得更多資訊"
   + "."
 + ""
   + ""
@@ -202,23 +202,23 @@ screen reader.
   
 
   
-
+title="OpenOffice官方網誌">
+
 官方網誌
   
   
-
+title="在Facebook上跟隨我們">
+
 Facebook
   
   
-
+title="在Twitter上跟隨我們">
+
 Twitter
   
   
-
+title="在Google+上跟隨我們">
+
 Google+
   
 
@@ -233,9 +233,9 @@ screen reader.
 
   
 http://validator.w3.org/check?uri=referer";
-title="W3C Markup Validation Service - Check the markup (HTML, XHTML, ...) 
of Web documents">
+title="W3C標記檢驗服務 - 檢查網頁文件標記 (HTML, XHTML, 
...)">
 http://www.w3.org/Icons/valid-xhtml10-blue.png";
-alt="W3C Markup Validation Service - Check the markup (HTML, XHTML, ...) 
of Web documents" />
+alt="W3C標記檢驗服務 - 檢查網頁文件標記 (HTML, XHTML, ...)" 
/>
   
 
 
@@ -252,31 +252,31 @@ screen reader.
   29 April:
   
   https://blogs.apache.org/OOo/entry/the_apache_openoffice_project_announce";>
-  Apache OpenOffice 4.1.0 released
+  Apache OpenOffice 4.1.0 已經發行
   
 
   28 April:
   
   https://blogs.apache.org/OOo/entry/apache_openoffice_weekly_news_2";>
-  Apache OpenOffice Weekly News #2
+  Apache OpenOffice 每周新聞#2
   
 
   25 April:
   
   https://blogs.apache.org/OOo/entry/apache_openoffice_weekly_news_1";>
-  Apache OpenOffice Weekly News #1
+  Apache OpenOffice 每周新聞#1
   
 
   17 April:
   
   https://blogs.apache.org/foundation/entry/the_apache_software_foundation_announces56";>
-  100 Million downloads
+  1億次下載達成
   
 
   31 December:
   
   https://blogs.apache.org/OOo/entry/apache_openoffice_in_2013_a";>
-  Apache OpenOffice in 2013: a year in review
+  2013年的Apache OpenOffice: 回顧的一年
   
 
   
@@ -286,7 +286,7 @@ screen reader.
   近期新聞
 
   
-All News
+所有新聞
   
   
 




svn commit: r914924 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/zh-tw/index.html

2014-07-03 Thread buildbot
Author: buildbot
Date: Thu Jul  3 19:23:40 2014
New Revision: 914924

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/zh-tw/index.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 19:23:40 2014
@@ -1 +1 @@
-1607494
+1607725

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 19:23:40 2014
@@ -1 +1 @@
-1607494
+1607725

Modified: websites/staging/ooo-site/trunk/content/zh-tw/index.html
==
--- websites/staging/ooo-site/trunk/content/zh-tw/index.html (original)
+++ websites/staging/ooo-site/trunk/content/zh-tw/index.html Thu Jul  3 
19:23:40 2014
@@ -137,12 +137,12 @@ screen reader.
   + ""
 + ""
   + ""
-+ "I want to download Apache OpenOffice"
-+ "(Most recent 
release: " + VERSION + ")"
-+ "Download Apache OpenOffice for free (really!) | "
++ "我想下載Apache OpenOffice"
++ "(最新版本: 
" + VERSION + ")"
++ "免費下載Apache OpenOffice(真的免費!) | "
   + ""
-+ "Click here to get more information"
++ "點這裡取得更多資訊"
   + "."
 + ""
   + ""
@@ -218,23 +218,23 @@ screen reader.
   
 
   
-
+title="OpenOffice官方網誌">
+
 官方網誌
   
   
-
+title="在Facebook上跟隨我們">
+
 Facebook
   
   
-
+title="在Twitter上跟隨我們">
+
 Twitter
   
   
-
+title="在Google+上跟隨我們">
+
 Google+
   
 
@@ -249,9 +249,9 @@ screen reader.
 
   
 http://validator.w3.org/check?uri=referer";
-title="W3C Markup Validation Service - Check the markup (HTML, XHTML, ...) 
of Web documents">
+title="W3C標記檢驗服務 - 檢查網頁文件標記 (HTML, XHTML, 
...)">
 http://www.w3.org/Icons/valid-xhtml10-blue.png";
-alt="W3C Markup Validation Service - Check the markup (HTML, XHTML, ...) 
of Web documents" />
+alt="W3C標記檢驗服務 - 檢查網頁文件標記 (HTML, XHTML, ...)" 
/>
   
 
 
@@ -268,31 +268,31 @@ screen reader.
   29 April:
   
   https://blogs.apache.org/OOo/entry/the_apache_openoffice_project_announce";>
-  Apache OpenOffice 4.1.0 released
+  Apache OpenOffice 4.1.0 已經發行
   
 
   28 April:
   
   https://blogs.apache.org/OOo/entry/apache_openoffice_weekly_news_2";>
-  Apache OpenOffice Weekly News #2
+  Apache OpenOffice 每周新聞#2
   
 
   25 April:
   
   https://blogs.apache.org/OOo/entry/apache_openoffice_weekly_news_1";>
-  Apache OpenOffice Weekly News #1
+  Apache OpenOffice 每周新聞#1
   
 
   17 April:
   
   https://blogs.apache.org/foundation/entry/the_apache_software_foundation_announces56";>
-  100 Million downloads
+  1億次下載達成
   
 
   31 December:
   
   https://blogs.apache.org/OOo/entry/apache_openoffice_in_2013_a";>
-  Apache OpenOffice in 2013: a year in review
+  2013年的Apache OpenOffice: 回顧的一年
   
 
   
@@ -302,7 +302,7 @@ screen reader.
   近期新聞
 
   
-All News
+所有新聞
   
   
 




svn commit: r1607726 - /openoffice/ooo-site/trunk/content/download/archive.html

2014-07-03 Thread marcus
Author: marcus
Date: Thu Jul  3 19:28:11 2014
New Revision: 1607726

URL: http://svn.apache.org/r1607726
Log:
Fixed HTML error, updated text

Modified:
openoffice/ooo-site/trunk/content/download/archive.html

Modified: openoffice/ooo-site/trunk/content/download/archive.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/archive.html?rev=1607726&r1=1607725&r2=1607726&view=diff
==
--- openoffice/ooo-site/trunk/content/download/archive.html (original)
+++ openoffice/ooo-site/trunk/content/download/archive.html Thu Jul  3 19:28:11 
2014
@@ -14,46 +14,55 @@
 
 
 
-OpenOffice.org® - Download archived versions
+OpenOffice.org® and Apache OpenOffice® - Download archived versions
 
-
-  
-
+
 
-Old versions of OpenOffice can be downloaded here.
-
+
+  Old versions of OpenOffice can be downloaded here.
+  
+  If you are searching for the most recent release, please visit the
+  download 
webpage.
+
 
-If you are searching for the most recent release, please visit the
-  download 
webpage. Please note: Archived builds are
-  unsupported and may contain security issues. It is highly recommended not to 
use them except when there is no better
-  choice.
+
+  Please note:
+  
+  Archived builds are unsupported and may contain security issues. It is 
highly recommended not to use them except when
+  there is no better choice.
 
-
 
 Versions 1.x-3.x (until 3.3.0)
 
 
-  http://archive.services.openoffice.org/pub/openoffice-archive/";>Archive 
Mirror Network
+  http://archive.services.openoffice.org/pub/openoffice-archive/"; 
title="Archive Mirror Network">
+Archive Mirror Network
+  
 
 
-The URL above will send you to the most available mirror. If it does not 
work, use one of the following direct links to
+
+  The URL above will send you to the most available mirror. If it does not 
work, use one of the following direct links to
   mirrors:
   
-  http://ooo.mirror.garr.it/mirrors/openoffice-archive/";>GARR 
(Italy) -
-  http://ftp5.gwdg.de/pub/openoffice/archive/";>GWDG (Germany) -
-  http://ftp.rz.tu-bs.de/pub/mirror/openoffice-archive/";>TU BS 
(Germany) -
-  http://ftp.tu-chemnitz.de/pub/openoffice-archive/";>TU Chemnitz 
(Germany)
+  http://ooo.mirror.garr.it/mirrors/openoffice-archive/"; title="GARR 
(Italy)">GARR (Italy) -
+  http://ftp5.gwdg.de/pub/openoffice/archive/"; title="GWDG 
(Germany)">GWDG (Germany) -
+  http://ftp.rz.tu-bs.de/pub/mirror/openoffice-archive/"; 
title="Mirror: TU BS (Germany)">TU BS (Germany) -
+  http://ftp.tu-chemnitz.de/pub/openoffice-archive/"; title="TU 
Chemnitz (Germany)">TU Chemnitz (Germany)
 
 
 Versions 1.x-3.x (until 3.4.1)
 
 
-  http://archive.apache.org/dist/incubator/ooo/";>ASF - Archives of 
the Apache Software Foundation - Incubator
-  Quick access:
-  http://archive.apache.org/dist/incubator/ooo/stable/";>1.x-3.3.0 
English -
-  http://archive.apache.org/dist/incubator/ooo/localized/";>1.x-3.3.0 
Localized -
-  http://archive.apache.org/dist/incubator/ooo/files/stable/";>3.4.x 
English -
-  http://archive.apache.org/dist/incubator/ooo/files/localized/";>3.4.x 
Localized
+  http://archive.apache.org/dist/incubator/ooo/"; title="Archives of 
the Apache Software Foundation - Incubator">
+Archives of the Apache Software Foundation - Incubator
+  
+  
+  Quick access:
+  http://archive.apache.org/dist/incubator/ooo/stable/"; 
title="1.x-3.3.0 English">1.x-3.3.0 English -
+  http://archive.apache.org/dist/incubator/ooo/localized/";  
title="1.x-3.3.0 Localized">1.x-3.3.0 Localized -
+  http://archive.apache.org/dist/incubator/ooo/files/stable/";  
title="3.4.x English">3.4.x English -
+  http://archive.apache.org/dist/incubator/ooo/files/localized/";  
title="3.4.x Localized">3.4.x Localized
 
 
 Versions 4.x




svn commit: r914926 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/archive.html

2014-07-03 Thread buildbot
Author: buildbot
Date: Thu Jul  3 19:28:51 2014
New Revision: 914926

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/download/archive.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 19:28:51 2014
@@ -1 +1 @@
-1607725
+1607726

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 19:28:51 2014
@@ -1 +1 @@
-1607725
+1607726

Modified: websites/staging/ooo-site/trunk/content/download/archive.html
==
--- websites/staging/ooo-site/trunk/content/download/archive.html (original)
+++ websites/staging/ooo-site/trunk/content/download/archive.html Thu Jul  3 
19:28:51 2014
@@ -30,46 +30,55 @@
 
 
 
-OpenOffice.org® - Download archived versions
+OpenOffice.org® and Apache OpenOffice® - Download archived versions
 
-
-  
-
+
 
-Old versions of OpenOffice can be downloaded here.
-
+
+  Old versions of OpenOffice can be downloaded here.
+  
+  If you are searching for the most recent release, please visit the
+  download 
webpage.
+
 
-If you are searching for the most recent release, please visit the
-  download 
webpage. Please note: Archived builds are
-  unsupported and may contain security issues. It is highly recommended not to 
use them except when there is no better
-  choice.
+
+  Please note:
+  
+  Archived builds are unsupported and may contain security issues. It is 
highly recommended not to use them except when
+  there is no better choice.
 
-
 
 Versions 1.x-3.x (until 3.3.0)
 
 
-  http://archive.services.openoffice.org/pub/openoffice-archive/";>Archive 
Mirror Network
+  http://archive.services.openoffice.org/pub/openoffice-archive/"; 
title="Archive Mirror Network">
+Archive Mirror Network
+  
 
 
-The URL above will send you to the most available mirror. If it does not 
work, use one of the following direct links to
+
+  The URL above will send you to the most available mirror. If it does not 
work, use one of the following direct links to
   mirrors:
   
-  http://ooo.mirror.garr.it/mirrors/openoffice-archive/";>GARR 
(Italy) -
-  http://ftp5.gwdg.de/pub/openoffice/archive/";>GWDG (Germany) -
-  http://ftp.rz.tu-bs.de/pub/mirror/openoffice-archive/";>TU BS 
(Germany) -
-  http://ftp.tu-chemnitz.de/pub/openoffice-archive/";>TU Chemnitz 
(Germany)
+  http://ooo.mirror.garr.it/mirrors/openoffice-archive/"; title="GARR 
(Italy)">GARR (Italy) -
+  http://ftp5.gwdg.de/pub/openoffice/archive/"; title="GWDG 
(Germany)">GWDG (Germany) -
+  http://ftp.rz.tu-bs.de/pub/mirror/openoffice-archive/"; 
title="Mirror: TU BS (Germany)">TU BS (Germany) -
+  http://ftp.tu-chemnitz.de/pub/openoffice-archive/"; title="TU 
Chemnitz (Germany)">TU Chemnitz (Germany)
 
 
 Versions 1.x-3.x (until 3.4.1)
 
 
-  http://archive.apache.org/dist/incubator/ooo/";>ASF - Archives of 
the Apache Software Foundation - Incubator
-  Quick access:
-  http://archive.apache.org/dist/incubator/ooo/stable/";>1.x-3.3.0 
English -
-  http://archive.apache.org/dist/incubator/ooo/localized/";>1.x-3.3.0 
Localized -
-  http://archive.apache.org/dist/incubator/ooo/files/stable/";>3.4.x 
English -
-  http://archive.apache.org/dist/incubator/ooo/files/localized/";>3.4.x 
Localized
+  http://archive.apache.org/dist/incubator/ooo/"; title="Archives of 
the Apache Software Foundation - Incubator">
+Archives of the Apache Software Foundation - Incubator
+  
+  
+  Quick access:
+  http://archive.apache.org/dist/incubator/ooo/stable/"; 
title="1.x-3.3.0 English">1.x-3.3.0 English -
+  http://archive.apache.org/dist/incubator/ooo/localized/";  
title="1.x-3.3.0 Localized">1.x-3.3.0 Localized -
+  http://archive.apache.org/dist/incubator/ooo/files/stable/";  
title="3.4.x English">3.4.x English -
+  http://archive.apache.org/dist/incubator/ooo/files/localized/";  
title="3.4.x Localized">3.4.x Localized
 
 
 Versions 4.x




svn commit: r1607731 - /openoffice/ooo-site/trunk/content/download/devbuilds.html

2014-07-03 Thread marcus
Author: marcus
Date: Thu Jul  3 19:56:17 2014
New Revision: 1607731

URL: http://svn.apache.org/r1607731
Log:
Updated HTML, updated text

Modified:
openoffice/ooo-site/trunk/content/download/devbuilds.html

Modified: openoffice/ooo-site/trunk/content/download/devbuilds.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/devbuilds.html?rev=1607731&r1=1607730&r2=1607731&view=diff
==
--- openoffice/ooo-site/trunk/content/download/devbuilds.html (original)
+++ openoffice/ooo-site/trunk/content/download/devbuilds.html Thu Jul  3 
19:56:17 2014
@@ -4,12 +4,14 @@
   
   Apache OpenOffice development builds: daily, nightly, 
snapshots
   
-div.warning {
-  background-color: rgb(254,203,203);
-  padding: 10px;
-  border: 1px solid rgb(192,0,0);
-  font-style: italic;
-}
+  /*  */
   
 
 
@@ -18,51 +20,84 @@
 Apache OpenOffice daily/nightly builds and snapshots
 
 
-The following installation packages are automatically generated by 
buildbots.
-They are for testing purposes only: they are not formally 
approved and they can contain issues.
-End users must use only our formally approved builds,
-available from
-http://www.openoffice.org/download/";>http://www.openoffice.org/download/
-and widely tested.
+  The following installation packages are automatically generated by buildbots.
+  
+  They are for testing purposes only: they are not formally 
approved and they can contain issues.
+  
+  End users must use only our officially approved and widely tested 
builds, available from the 
+  http://www.openoffice.org/download/"; title="Download">Download 
webpage.
 
 
 Target public
 
 
-The following builds are for use by OpenOffice project
-volunteers who are participating in the
-http://openoffice.apache.org/qa.html";>QA or
-http://openoffice.apache.org/translate.html";>Localization
-activities and are tracking specific bugs in our
-https://issues.apache.org/ooo/";>Bugzilla.
+  The following builds are for use by OpenOffice project 
volunteers who are participating in the
+  http://openoffice.apache.org/qa.html"; title="QA">QA or
+  http://openoffice.apache.org/translate.html"; 
title="Localization">Localization
+  activities and are tracking specific bugs in our
+  https://issues.apache.org/ooo/"; title="Bugzilla">Bugzilla.
 
 
 
 
 Available builds
 
 
-  
-  
-  
-  
-  
-  
-  
-  We currently have no development builds available. Version 4.1.0 has 
been released. Use http://svn.apache.org/viewvc/openoffice/trunk/main/?sortby=date#dirlist";>the
 SVN web interface to see what changed in code since version 
4.1.0.
+
+  
+We currently have no development builds available.
+  
+  
+Version 4.1.0 has been released. Use http://svn.apache.org/viewvc/openoffice/trunk/main/?sortby=date#dirlist";
+title="SVN web interface">the SVN web interface to see what has 
changed in code since version 4.1.0.
+  
 
 
 
-Being meant for testing purposes only, all development
-builds are untested!
+  Being meant for testing purposes only, all development 
builds are untested!
 
 
 




svn commit: r914927 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/devbuilds.html

2014-07-03 Thread buildbot
Author: buildbot
Date: Thu Jul  3 19:57:01 2014
New Revision: 914927

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/download/devbuilds.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 19:57:01 2014
@@ -1 +1 @@
-1607726
+1607731

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 19:57:01 2014
@@ -1 +1 @@
-1607726
+1607731

Modified: websites/staging/ooo-site/trunk/content/download/devbuilds.html
==
--- websites/staging/ooo-site/trunk/content/download/devbuilds.html (original)
+++ websites/staging/ooo-site/trunk/content/download/devbuilds.html Thu Jul  3 
19:57:01 2014
@@ -6,12 +6,14 @@
   
   Apache OpenOffice development builds: daily, nightly, 
snapshots
   
-div.warning {
-  background-color: rgb(254,203,203);
-  padding: 10px;
-  border: 1px solid rgb(192,0,0);
-  font-style: italic;
-}
+  /*  */
   
 
  
@@ -34,51 +36,84 @@
 Apache OpenOffice daily/nightly builds and snapshots
 
 
-The following installation packages are automatically generated by 
buildbots.
-They are for testing purposes only: they are not formally 
approved and they can contain issues.
-End users must use only our formally approved builds,
-available from
-http://www.openoffice.org/download/";>http://www.openoffice.org/download/
-and widely tested.
+  The following installation packages are automatically generated by buildbots.
+  
+  They are for testing purposes only: they are not formally 
approved and they can contain issues.
+  
+  End users must use only our officially approved and widely tested 
builds, available from the 
+  http://www.openoffice.org/download/"; title="Download">Download 
webpage.
 
 
 Target public
 
 
-The following builds are for use by OpenOffice project
-volunteers who are participating in the
-http://openoffice.apache.org/qa.html";>QA or
-http://openoffice.apache.org/translate.html";>Localization
-activities and are tracking specific bugs in our
-https://issues.apache.org/ooo/";>Bugzilla.
+  The following builds are for use by OpenOffice project 
volunteers who are participating in the
+  http://openoffice.apache.org/qa.html"; title="QA">QA or
+  http://openoffice.apache.org/translate.html"; 
title="Localization">Localization
+  activities and are tracking specific bugs in our
+  https://issues.apache.org/ooo/"; title="Bugzilla">Bugzilla.
 
 
 
 
 Available builds
 
 
-  
-  
-  
-  
-  
-  
-  
-  We currently have no development builds available. Version 4.1.0 has 
been released. Use http://svn.apache.org/viewvc/openoffice/trunk/main/?sortby=date#dirlist";>the
 SVN web interface to see what changed in code since version 
4.1.0.
+
+  
+We currently have no development builds available.
+  
+  
+Version 4.1.0 has been released. Use http://svn.apache.org/viewvc/openoffice/trunk/main/?sortby=date#dirlist";
+title="SVN web interface">the SVN web interface to see what has 
changed in code since version 4.1.0.
+  
 
 
 
-Being meant for testing purposes only, all development
-builds are untested!
+  Being meant for testing purposes only, all development 
builds are untested!
 
 
 




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

2014-07-03 Thread marcus
Author: marcus
Date: Thu Jul  3 20:01:30 2014
New Revision: 914929

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

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



svn commit: r1607756 - /openoffice/ooo-site/trunk/content/download/test/boxed_download.js

2014-07-03 Thread marcus
Author: marcus
Date: Thu Jul  3 22:18:15 2014
New Revision: 1607756

URL: http://svn.apache.org/r1607756
Log:
Updated comments

Modified:
openoffice/ooo-site/trunk/content/download/test/boxed_download.js

Modified: openoffice/ooo-site/trunk/content/download/test/boxed_download.js
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/boxed_download.js?rev=1607756&r1=1607755&r2=1607756&view=diff
==
--- openoffice/ooo-site/trunk/content/download/test/boxed_download.js (original)
+++ openoffice/ooo-site/trunk/content/download/test/boxed_download.js Thu Jul  
3 22:18:15 2014
@@ -1,17 +1,21 @@
 /*
  * Functions to draw every single colored box as well as the navigation bar 
and logo section
  */
+
+/*
+ * Download box
+ * Show the select boxes, both download text buttons and the sub-box
+ */
 function createDownloadBox() {
-  // Green colored box.
-  // Show select boxes and both download text buttons.
   document.write( ""
 + ""
+
 // Headline.
 + ""
   + l10n_download_green_box_headline_text
 + ""
 
-// Select text.
+// Box text.
 + ""
   + "(" + l10n_download_green_box_subtext1_text + ")"
 + ""
@@ -19,7 +23,7 @@ function createDownloadBox() {
   + "" + l10n_download_green_box_subtext2_text + ":"
 + ""
 
-// Select boxes.
+// Select drop-down boxes.
 + ""
   + ""
@@ -51,15 +55,18 @@ function createDownloadBox() {
   + ""
   + ""
 
-  // Sub-green colored box.
-  // Show release info, filesizes, checksum links and help links.
+  /*
+   * Download sub-box
+   * Show release info, filesizes, checksum links and help links
+   */
   + ""
 + "" // The 3 lines of release info
+
   // Error text with hint.
   + ""
   + ""
-
   + ""
+
 // Release info and notes.
 + ""
 + ""
@@ -89,8 +96,13 @@ function createDownloadBox() {
   + ""
 + ""
 
-+ "" // The 3 help icons and links
+   /*
+* Download box
+* Show the help icons and links
+*/
++ ""
   + ""
+
 // Help: What is a language pack?
 + ""
 + ""
@@ -108,32 +120,46 @@ function createDownloadBox() {
   return;
 }
 
+/*
+ * Social network box
+ * Show the clickable icons for the social networks
+ */
 function createShareBox() {
-  // Light blue colored box.
-  // Share download with social networks.
   document.write( ""
 + ""
+
+// Headline.
 + "" + 
l10n_share_light_blue_box_headline_text + ""
+
+// Box text.
 + ""
   + l10n_share_light_blue_box_text_text
 + ""
 + ""
+
+  // Apache OpenOffice blog.
   + ""
 + ""
 + "Official Blog"
   + ""
+
+  // Facebook.
   + ""
 + ""
 + "Facebook"
   + ""
+
+  // Twitter.
   + ""
 + ""
 + "Twitter"
   + ""
+
+  // Google+.
   + ""
 + ""
@@ -144,13 +170,18 @@ function createShareBox() {
   return;
 }
 
+/*
+ * Extensions and dictionaries
+ */
 function createExtensionsBox() {
-  // Blue colored box.
-  // Get extensions and dictionaries.
   document.write( ""
 + ""
+
+// Headline.
 + "" + 
l10n_ext_blue_box_headline_text + ""
+
+// Box text.
 + ""
   + ""
 + l10n_ext_blue_box_text_text
@@ -160,13 +191,18 @@ function createExtensionsBox() {
   return;
 }
 
+/*
+ * Templates
+ */
 function createTemplatesBox() {
-  // Blue colored box.
-  // Get templates.
   document.write( ""
 + ""
+
+// Headline.
 + "" + 
l10n_tlp_blue_box_headline_text + ""
+
+// Box text.
 + ""
   + ""
 + l10n_tlp_blue_box_text_text
@@ -176,10 +212,16 @@ function createTemplatesBox() {
   return;
 }
 
+/*
+ * Navigation bar
+ */
 function createNavigationBar() {
-  // Navigation bar.
   document.write( ""
+
+// Headline 1.
 + "" + l10n_nav_headline_1_text + ""
+
+// List items.
 + ""
   + ""
 + ""
 + ""
 
+// Headline 2.
 + "" + l10n_nav_headline_2_text + ""
+
+// List items.
 + ""
   + ""
 + ""
 + ""
 
+// Headline 3.
 + "" + l10n_nav_headline_3_text + ""
+
+// List items.
 + ""
   + ""
 + ""
+
+// Sourceforge logo.
 + ""
   + ""
 + ""
 + ""
+
+// W3C Validator logo.
 + ""
   + ""
 + ""




svn commit: r1607757 - /openoffice/ooo-site/trunk/content/download/test/download.js

2014-07-03 Thread marcus
Author: marcus
Date: Thu Jul  3 22:20:20 2014
New Revision: 1607757

URL: http://svn.apache.org/r1607757
Log:
Fixed JS errors

Modified:
openoffice/ooo-site/trunk/content/download/test/download.js

Modified: openoffice/ooo-site/trunk/content/download/test/download.js
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/download.js?rev=1607757&r1=1607756&r2=1607757&view=diff
==
--- openoffice/ooo-site/trunk/content/download/test/download.js (original)
+++ openoffice/ooo-site/trunk/content/download/test/download.js Thu Jul  3 
22:20:20 2014
@@ -34,7 +34,7 @@ function init( release_mode ) {
initVariables( 1 );
 
// Fill the OS, language and version select boxes.
-   fillOSSelection()
+   fillOSSelection();
fillLanguageSelection();
fillVersionSelection();
 
@@ -49,8 +49,9 @@ function init( release_mode ) {
 

// When release mode = 2, it is a beta release. Otherwise assume 
"stable release" as default.
-   if( release_mode === 2 )
+   if( release_mode === 2 ) {
RELEASE_MODE = mode;
+   }
 
getLinkSelection();
 
@@ -130,34 +131,38 @@ function getLanguage() {
var language = "";
 
// If available, use the manual set ISO code (see "index.html") that 
overrides $LANG_ISO.
-   if( NL_LANG !== "" )
+   if( NL_LANG !== "" ) {
language = NL_LANG;
 
// Else if available, use the selected language from select box.
-   else if( LANG_SEL !== "" )
+   } else if( LANG_SEL !== "" ) {
language = LANG_SEL;
 
// Else try to recognize the language from browser data.
-   else if( navigator.language )
+   } else if( navigator.language ) {
language = navigator.language;
-   else if( navigator.userLanguage )
+   } else if( navigator.userLanguage ) {
language = navigator.userLanguage;
-   else if( navigator.browserLanguage )
+   } else if( navigator.browserLanguage ) {
language = navigator.browserLanguage;
-   else if( navigator.systemLanguage )
+   } else if( navigator.systemLanguage ) {
language = navigator.systemLanguage;
+   }
 
// Assign "en-US" as fall-back language if only "en" is set or nothing 
at all.
-   if( !language || language === "" || language == null || language === 
"en" )
+   if( !language || language === "" || language == null || language === 
"en" ) {
language = "en-US";
+   }
// Assign "pt-PT" if only "pt" is set.
-   if( language === "pt" )
+   if( language === "pt" ) {
language = "pt-PT";
+   }
 
// Konqueror uses '_' where other browsers use '-'.
-   if( language.indexOf( "_" ) !== -1 )
+   if( language.indexOf( "_" ) !== -1 ) {
// Change a contained '_' into a '-'.
language = language.split( "_" ).join( "-" );
+   }
 
language= language.toLowerCase();   // Change the 
language into lower case.
var languageCode= language.split( "-" )[ 0 ];   // Part before 
"-" is the language code.
@@ -174,8 +179,9 @@ function getLanguage() {
 
if( regionCode != null ) {
// Fix for Portuguese (European) downloads as they are named 
only "pt" without region code!
-   if( languageCode === "pt" && regionCode === "pt" )
+   if( languageCode === "pt" && regionCode === "pt" ) {
language = languageCode;
+   }
 
// If an additional region code was found.
if( thisLanguageSet[ regionCode ] != null ) {
@@ -436,11 +442,13 @@ function getVersionSelection() {
 function hideElements() {
// Change CSS styles for all elements with ID in the green and 
sub-green colored boxes.
// Emtpy the values for all elements, make them invisible.
-   for( var i = 0, j = element_ids_sub_box.length; i < j; i++ )
+   for( var i = 0, j = element_ids_sub_box.length; i < j; i++ ) {
document.getElementById( element_ids_sub_box[ i ] 
).style.display = "none";
+   }
 
-   for( var i = 0, j = element_ids_links.length; i < j; i++ )
+   for( var i = 0, j = element_ids_links.length; i < j; i++ ) {
document.getElementById( element_ids_links[ i ] ).style.display 
  = "none";
+   }
 
return;
 }
@@ -451,6 +459,8 @@ function hideElements() {
  */
 function showWindow( target_link ) {
// Open a popup window with specific parameters to show the file from 
"target_link".
+   var window;
+
window = window.open( target_link, "_blank", "location=no, menubar=no, 
resizable=yes, scrollbars=yes, status=no, titlebar=no, toolbar=no, left=100, 
top=250, width=800, height=550");
window.focus();
 
@@ -507,8 +517,9 @@ function s

svn commit: r914943 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/test/boxed_download.js

2014-07-03 Thread buildbot
Author: buildbot
Date: Thu Jul  3 22:21:19 2014
New Revision: 914943

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/download/test/boxed_download.js

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 22:21:19 2014
@@ -1 +1 @@
-1607731
+1607756

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 22:21:19 2014
@@ -1 +1 @@
-1607731
+1607756

Modified: 
websites/staging/ooo-site/trunk/content/download/test/boxed_download.js
==
--- websites/staging/ooo-site/trunk/content/download/test/boxed_download.js 
(original)
+++ websites/staging/ooo-site/trunk/content/download/test/boxed_download.js Thu 
Jul  3 22:21:19 2014
@@ -1,17 +1,21 @@
 /*
  * Functions to draw every single colored box as well as the navigation bar 
and logo section
  */
+
+/*
+ * Download box
+ * Show the select boxes, both download text buttons and the sub-box
+ */
 function createDownloadBox() {
-  // Green colored box.
-  // Show select boxes and both download text buttons.
   document.write( ""
 + ""
+
 // Headline.
 + ""
   + l10n_download_green_box_headline_text
 + ""
 
-// Select text.
+// Box text.
 + ""
   + "(" + l10n_download_green_box_subtext1_text + ")"
 + ""
@@ -19,7 +23,7 @@ function createDownloadBox() {
   + "" + l10n_download_green_box_subtext2_text + ":"
 + ""
 
-// Select boxes.
+// Select drop-down boxes.
 + ""
   + ""
@@ -51,15 +55,18 @@ function createDownloadBox() {
   + ""
   + ""
 
-  // Sub-green colored box.
-  // Show release info, filesizes, checksum links and help links.
+  /*
+   * Download sub-box
+   * Show release info, filesizes, checksum links and help links
+   */
   + ""
 + "" // The 3 lines of release info
+
   // Error text with hint.
   + ""
   + ""
-
   + ""
+
 // Release info and notes.
 + ""
 + ""
@@ -89,8 +96,13 @@ function createDownloadBox() {
   + ""
 + ""
 
-+ "" // The 3 help icons and links
+   /*
+* Download box
+* Show the help icons and links
+*/
++ ""
   + ""
+
 // Help: What is a language pack?
 + ""
 + ""
@@ -108,32 +120,46 @@ function createDownloadBox() {
   return;
 }
 
+/*
+ * Social network box
+ * Show the clickable icons for the social networks
+ */
 function createShareBox() {
-  // Light blue colored box.
-  // Share download with social networks.
   document.write( ""
 + ""
+
+// Headline.
 + "" + 
l10n_share_light_blue_box_headline_text + ""
+
+// Box text.
 + ""
   + l10n_share_light_blue_box_text_text
 + ""
 + ""
+
+  // Apache OpenOffice blog.
   + ""
 + ""
 + "Official Blog"
   + ""
+
+  // Facebook.
   + ""
 + ""
 + "Facebook"
   + ""
+
+  // Twitter.
   + ""
 + ""
 + "Twitter"
   + ""
+
+  // Google+.
   + ""
 + ""
@@ -144,13 +170,18 @@ function createShareBox() {
   return;
 }
 
+/*
+ * Extensions and dictionaries
+ */
 function createExtensionsBox() {
-  // Blue colored box.
-  // Get extensions and dictionaries.
   document.write( ""
 + ""
+
+// Headline.
 + "" + 
l10n_ext_blue_box_headline_text + ""
+
+// Box text.
 + ""
   + ""
 + l10n_ext_blue_box_text_text
@@ -160,13 +191,18 @@ function createExtensionsBox() {
   return;
 }
 
+/*
+ * Templates
+ */
 function createTemplatesBox() {
-  // Blue colored box.
-  // Get templates.
   document.write( ""
 + ""
+
+// Headline.
 + "" + 
l10n_tlp_blue_box_headline_text + ""
+
+// Box text.
 + ""
   + ""
 + l10n_tlp_blue_box_text_text
@@ -176,10 +212,16 @@ function createTemplatesBox() {
   return;
 }
 
+/*
+ * Navigation bar
+ */
 function createNavigationBar() {
-  // Navigation bar.
   document.write( ""
+
+// Headline 1.
 + "" + l10n_nav_headline_1_text + ""
+
+// List items.
 + ""
   + ""
 + ""
 + ""
 
+// Headline 2.
 + "" + l10n_nav_headline_2_text + ""
+
+// List items.
 + ""
   + ""
 + ""
 + ""
 
+// Headline 3.
 + "" + l10n_nav_headline_3_text + ""
+
+// List items.
 + ""
   + ""
 + ""
+
+// Sourceforge logo.
 + ""
   + ""
 + ""
 + ""
+
+// W3C Validator logo.
 + ""
   + ""
 + ""




svn commit: r914944 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/test/download.js

2014-07-03 Thread buildbot
Author: buildbot
Date: Thu Jul  3 22:23:05 2014
New Revision: 914944

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/download/test/download.js

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 22:23:05 2014
@@ -1 +1 @@
-1607756
+1607757

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Jul  3 22:23:05 2014
@@ -1 +1 @@
-1607756
+1607757

Modified: websites/staging/ooo-site/trunk/content/download/test/download.js
==
--- websites/staging/ooo-site/trunk/content/download/test/download.js (original)
+++ websites/staging/ooo-site/trunk/content/download/test/download.js Thu Jul  
3 22:23:05 2014
@@ -34,7 +34,7 @@ function init( release_mode ) {
initVariables( 1 );
 
// Fill the OS, language and version select boxes.
-   fillOSSelection()
+   fillOSSelection();
fillLanguageSelection();
fillVersionSelection();
 
@@ -49,8 +49,9 @@ function init( release_mode ) {
 

// When release mode = 2, it is a beta release. Otherwise assume 
"stable release" as default.
-   if( release_mode === 2 )
+   if( release_mode === 2 ) {
RELEASE_MODE = mode;
+   }
 
getLinkSelection();
 
@@ -130,34 +131,38 @@ function getLanguage() {
var language = "";
 
// If available, use the manual set ISO code (see "index.html") that 
overrides $LANG_ISO.
-   if( NL_LANG !== "" )
+   if( NL_LANG !== "" ) {
language = NL_LANG;
 
// Else if available, use the selected language from select box.
-   else if( LANG_SEL !== "" )
+   } else if( LANG_SEL !== "" ) {
language = LANG_SEL;
 
// Else try to recognize the language from browser data.
-   else if( navigator.language )
+   } else if( navigator.language ) {
language = navigator.language;
-   else if( navigator.userLanguage )
+   } else if( navigator.userLanguage ) {
language = navigator.userLanguage;
-   else if( navigator.browserLanguage )
+   } else if( navigator.browserLanguage ) {
language = navigator.browserLanguage;
-   else if( navigator.systemLanguage )
+   } else if( navigator.systemLanguage ) {
language = navigator.systemLanguage;
+   }
 
// Assign "en-US" as fall-back language if only "en" is set or nothing 
at all.
-   if( !language || language === "" || language == null || language === 
"en" )
+   if( !language || language === "" || language == null || language === 
"en" ) {
language = "en-US";
+   }
// Assign "pt-PT" if only "pt" is set.
-   if( language === "pt" )
+   if( language === "pt" ) {
language = "pt-PT";
+   }
 
// Konqueror uses '_' where other browsers use '-'.
-   if( language.indexOf( "_" ) !== -1 )
+   if( language.indexOf( "_" ) !== -1 ) {
// Change a contained '_' into a '-'.
language = language.split( "_" ).join( "-" );
+   }
 
language= language.toLowerCase();   // Change the 
language into lower case.
var languageCode= language.split( "-" )[ 0 ];   // Part before 
"-" is the language code.
@@ -174,8 +179,9 @@ function getLanguage() {
 
if( regionCode != null ) {
// Fix for Portuguese (European) downloads as they are named 
only "pt" without region code!
-   if( languageCode === "pt" && regionCode === "pt" )
+   if( languageCode === "pt" && regionCode === "pt" ) {
language = languageCode;
+   }
 
// If an additional region code was found.
if( thisLanguageSet[ regionCode ] != null ) {
@@ -436,11 +442,13 @@ function getVersionSelection() {
 function hideElements() {
// Change CSS styles for all elements with ID in the green and 
sub-green colored boxes.
// Emtpy the values for all elements, make them invisible.
-   for( var i = 0, j = element_ids_sub_box.length; i < j; i++ )
+   for( var i = 0, j = element_ids_sub_box.length; i < j; i++ ) {
document.getElementById( element_ids_sub_box[ i ] 
).style.display = "none";
+   }
 
-   for( var i = 0, j = element_ids_links.length; i < j; i++ )
+   for( var i = 0, j = element_ids_links.length; i < j; i++ ) {
document.getElementById( element_ids_links[ i ] ).style.display 
  

buildbot failure in ASF Buildbot on openoffice-linux32-nightly

2014-07-03 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/74

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/trunk] HEAD
Blamelist: 

BUILD FAILED: failed

sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

2014-07-03 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/66

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





buildbot failure in ASF Buildbot on aoo-win7

2014-07-03 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/72

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

Buildslave for this Build: bb-win7

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

BUILD FAILED: failed build.pl --all

sincerely,
 -The Buildbot