buildbot success in ASF Buildbot on aoo-win7

2014-07-16 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/90

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

Build succeeded!

sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-nightly

2014-07-16 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/81

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: r1610953 - in /openoffice/trunk/main/svgio: inc/svgio/svgreader/ source/svgreader/

2014-07-16 Thread alg
Author: alg
Date: Wed Jul 16 09:42:11 2014
New Revision: 1610953

URL: http://svn.apache.org/r1610953
Log:
i125258 reworked some of the style hierarchy stuff

Modified:
openoffice/trunk/main/svgio/inc/svgio/svgreader/svgnode.hxx
openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstyleattributes.hxx
openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstylenode.hxx
openoffice/trunk/main/svgio/inc/svgio/svgreader/svgsvgnode.hxx
openoffice/trunk/main/svgio/source/svgreader/svggnode.cxx
openoffice/trunk/main/svgio/source/svgreader/svggradientnode.cxx
openoffice/trunk/main/svgio/source/svgreader/svgnode.cxx
openoffice/trunk/main/svgio/source/svgreader/svgstyleattributes.cxx
openoffice/trunk/main/svgio/source/svgreader/svgstylenode.cxx
openoffice/trunk/main/svgio/source/svgreader/svgsvgnode.cxx
openoffice/trunk/main/svgio/source/svgreader/svgtitledescnode.cxx

Modified: openoffice/trunk/main/svgio/inc/svgio/svgreader/svgnode.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svgio/inc/svgio/svgreader/svgnode.hxx?rev=1610953&r1=1610952&r2=1610953&view=diff
==
--- openoffice/trunk/main/svgio/inc/svgio/svgreader/svgnode.hxx (original)
+++ openoffice/trunk/main/svgio/inc/svgio/svgreader/svgnode.hxx Wed Jul 16 
09:42:11 2014
@@ -130,6 +130,9 @@ 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;
 
+/// #125258# tell if this node is allowed to have a parent style 
(e.g. defs do not)
+virtual bool supportsParentStyle() const;
+
 /// basic data read access
 SVGToken getType() const { return maType; }
 const SvgDocument& getDocument() const { return mrDocument; }

Modified: openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstyleattributes.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstyleattributes.hxx?rev=1610953&r1=1610952&r2=1610953&view=diff
==
--- openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstyleattributes.hxx 
(original)
+++ openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstyleattributes.hxx Wed 
Jul 16 09:42:11 2014
@@ -286,6 +286,7 @@ namespace svgio
 ~SvgStyleAttributes();
 
 /// fill content
+bool isFillSet() const; // #125258# ask if fill is a direct hard 
attribute (no hierarchy)
 const basegfx::BColor* getFill() const;
 void setFill(const SvgPaint& rFill) { maFill = rFill; }
 

Modified: openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstylenode.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstylenode.hxx?rev=1610953&r1=1610952&r2=1610953&view=diff
==
--- openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstylenode.hxx (original)
+++ openoffice/trunk/main/svgio/inc/svgio/svgreader/svgstylenode.hxx Wed Jul 16 
09:42:11 2014
@@ -47,6 +47,9 @@ namespace svgio
 SvgNode* pParent);
 virtual ~SvgStyleNode();
 
+/// #125258# tell if this node is allowed to have a parent style 
(e.g. defs do not)
+virtual bool supportsParentStyle() const;
+
 virtual void parseAttribute(const rtl::OUString& rTokenName, 
SVGToken aSVGToken, const rtl::OUString& aContent);
 void addCssStyleSheet(const rtl::OUString& aContent);
 

Modified: openoffice/trunk/main/svgio/inc/svgio/svgreader/svgsvgnode.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svgio/inc/svgio/svgreader/svgsvgnode.hxx?rev=1610953&r1=1610952&r2=1610953&view=diff
==
--- openoffice/trunk/main/svgio/inc/svgio/svgreader/svgsvgnode.hxx (original)
+++ openoffice/trunk/main/svgio/inc/svgio/svgreader/svgsvgnode.hxx Wed Jul 16 
09:42:11 2014
@@ -46,6 +46,13 @@ namespace svgio
 SvgNumber   maHeight;
 SvgNumber   maVersion;
 
+/// #125258# bitfield
+boolmbStyleAttributesInitialized : 1;
+
+// #125258# on-demand init hard attributes when this is the 
outmost svg element
+// and more (see implementation)
+void initializeStyleAttributes();
+
 public:
 SvgSvgNode(
 SvgDocument& rDocument,

Modified: openoffice/trunk/main/svgio/source/svgreader/svggnode.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svgio/source/svgreader/svggnode.cxx?rev=1610953&r1=1610952&r2=1610953&view=diff

svn commit: r1611176 - /openoffice/ooo-site/trunk/content/legacy/thankyou.html

2014-07-16 Thread marcus
Author: marcus
Date: Wed Jul 16 20:18:47 2014
New Revision: 1611176

URL: http://svn.apache.org/r1611176
Log:
Fixed typo

Modified:
openoffice/ooo-site/trunk/content/legacy/thankyou.html

Modified: openoffice/ooo-site/trunk/content/legacy/thankyou.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/legacy/thankyou.html?rev=1611176&r1=1611175&r2=1611176&view=diff
==
--- openoffice/ooo-site/trunk/content/legacy/thankyou.html (original)
+++ openoffice/ooo-site/trunk/content/legacy/thankyou.html Wed Jul 16 20:18:47 
2014
@@ -32,7 +32,7 @@
 document.write( ""
   + "Please note:"
   + ""
-  + "You have installed an outdated version of OpenOffice and are missing new 
features, bug fixes and securty updates. "
+  + "You have installed an outdated version of OpenOffice and are missing new 
features, bug fixes and security updates. "
   + "The latest version is Apache OpenOffice " + DL.VERSION + ", released on " 
+ DL.REL_DATE + ". You can download the "
   + "latest version - (for free, really !)"




svn commit: r916427 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/legacy/thankyou.html

2014-07-16 Thread buildbot
Author: buildbot
Date: Wed Jul 16 20:21:43 2014
New Revision: 916427

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/legacy/thankyou.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Wed Jul 16 20:21:43 2014
@@ -1 +1 @@
-1610850
+1611176

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Wed Jul 16 20:21:43 2014
@@ -1 +1 @@
-1610850
+1611176

Modified: websites/staging/ooo-site/trunk/content/legacy/thankyou.html
==
--- websites/staging/ooo-site/trunk/content/legacy/thankyou.html (original)
+++ websites/staging/ooo-site/trunk/content/legacy/thankyou.html Wed Jul 16 
20:21:43 2014
@@ -48,7 +48,7 @@
 document.write( ""
   + "Please note:"
   + ""
-  + "You have installed an outdated version of OpenOffice and are missing new 
features, bug fixes and securty updates. "
+  + "You have installed an outdated version of OpenOffice and are missing new 
features, bug fixes and security updates. "
   + "The latest version is Apache OpenOffice " + DL.VERSION + ", released on " 
+ DL.REL_DATE + ". You can download the "
   + "latest version - (for free, really !)"




buildbot failure in ASF Buildbot on openoffice-linux32-nightly

2014-07-16 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/88

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