buildbot failure in ASF Buildbot on openoffice-linux32-nightly

2012-11-30 Thread buildbot
Hi! , The openoffice-linux32-nightly builder has just completed a run

STATUS: Failure

 Build revision 1415495 on branch openoffice/trunk

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

 Build using the ASF buildslave: bb-vm2_ubuntu_32bit

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

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


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

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






svn commit: r1415559 - /openoffice/trunk/ext_sources/52654eb3b2e60c35731ea8fc87f1bd29-jpeg.v8d.tar.gz

2012-11-30 Thread hdu
Author: hdu
Date: Fri Nov 30 09:46:12 2012
New Revision: 1415559

URL: http://svn.apache.org/viewvc?rev=1415559view=rev
Log:
#i121079# renamed local tarball to jpeg.v8d

Found by: Maho Nakata cha...@mac.com

Added:

openoffice/trunk/ext_sources/52654eb3b2e60c35731ea8fc87f1bd29-jpeg.v8d.tar.gz
  - copied unchanged from r1415101, 
openoffice/trunk/ext_sources/52654eb3b2e60c35731ea8fc87f1bd29-jpegsrc.v8d.tar.gz



svn commit: r1415572 - /openoffice/trunk/ext_sources/52654eb3b2e60c35731ea8fc87f1bd29-jpegsrc.v8d.tar.gz

2012-11-30 Thread hdu
Author: hdu
Date: Fri Nov 30 10:12:31 2012
New Revision: 1415572

URL: http://svn.apache.org/viewvc?rev=1415572view=rev
Log:
#i121079# jpegsrc-8d was moved to jpeg-8d, not just copied

Removed:

openoffice/trunk/ext_sources/52654eb3b2e60c35731ea8fc87f1bd29-jpegsrc.v8d.tar.gz



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

2012-11-30 Thread bmcs
Author: bmcs
Date: Fri Nov 30 10:17:08 2012
New Revision: 840100

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

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



svn commit: r1415617 - /openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx

2012-11-30 Thread paveljanik
Author: paveljanik
Date: Fri Nov 30 13:16:22 2012
New Revision: 1415617

URL: http://svn.apache.org/viewvc?rev=1415617view=rev
Log:
Add missing break in the original code.

Modified:
openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx

Modified: openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx?rev=1415617r1=1415616r2=1415617view=diff
==
--- openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx (original)
+++ openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx Fri Nov 30 13:16:22 
2012
@@ -2309,8 +2309,9 @@ SwEscherEx::SwEscherEx(SvStream* pStrm, 
 else
 ASSERT( !this, Where is the SDR-Object? );
 #endif
-   default:
- ;
+   break;
+   default:
+   break;
 }
 
 if( !nShapeId )




svn commit: r1415625 - /openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx

2012-11-30 Thread hdu
Author: hdu
Date: Fri Nov 30 13:31:14 2012
New Revision: 1415625

URL: http://svn.apache.org/viewvc?rev=1415625view=rev
Log:
#i120927# limit scope of case-specific pSdrObj

Modified:
openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx

Modified: openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx?rev=1415625r1=1415624r2=1415625view=diff
==
--- openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx (original)
+++ openoffice/trunk/main/sw/source/filter/ww8/wrtw8esh.cxx Fri Nov 30 13:31:14 
2012
@@ -2282,37 +2282,38 @@ SwEscherEx::SwEscherEx(SvStream* pStrm, 
 case sw::Frame::eFormControl:
 WriteOCXControl(rFmt, nShapeId = GenerateShapeId());
 break;
-case sw::Frame::eDrawing:
-aWinwordAnchoring.SetAnchoring(rFmt);
-   const SdrObject* pSdrObj = 
rFmt.FindRealSdrObject();
-if (pSdrObj)
-{
-bool bSwapInPage = false;
-if (!pSdrObj-GetPage())
+case sw::Frame::eDrawing: {
+aWinwordAnchoring.SetAnchoring(rFmt);
+const SdrObject* pSdrObj = rFmt.FindRealSdrObject();
+if (pSdrObj)
 {
-if (SdrModel* pModel = rWrt.pDoc-GetDrawModel())
+bool bSwapInPage = false;
+if (!pSdrObj-GetPage())
 {
-if (SdrPage *pPage = pModel-GetPage(0))
+if (SdrModel* pModel = 
rWrt.pDoc-GetDrawModel())
 {
-bSwapInPage = true;
-
(const_castSdrObject*(pSdrObj))-SetPage(pPage);
+if (SdrPage *pPage = pModel-GetPage(0))
+{
+bSwapInPage = true;
+
(const_castSdrObject*(pSdrObj))-SetPage(pPage);
+}
 }
 }
-}
 
-nShapeId = AddSdrObject(*pSdrObj);
+nShapeId = AddSdrObject(*pSdrObj);
 
-if (bSwapInPage)
-(const_castSdrObject*(pSdrObj))-SetPage(0);
-}
+if (bSwapInPage)
+(const_castSdrObject*(pSdrObj))-SetPage(0);
+}
 #ifdef DBG_UTIL
-else
-ASSERT( !this, Where is the SDR-Object? );
+else
+ASSERT( !this, Where is the SDR-Object? );
 #endif
-   break;
-   default:
-   break;
-}
+}
+break;
+default:
+break;
+}
 
 if( !nShapeId )
 {




svn commit: r1415741 - /openoffice/trunk/main/sw/source/filter/ww8/ww8par.hxx

2012-11-30 Thread hdu
Author: hdu
Date: Fri Nov 30 17:06:36 2012
New Revision: 1415741

URL: http://svn.apache.org/viewvc?rev=1415741view=rev
Log:
#i120927# ww8par.hxx always needs the numeric_limits include

Modified:
openoffice/trunk/main/sw/source/filter/ww8/ww8par.hxx

Modified: openoffice/trunk/main/sw/source/filter/ww8/ww8par.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/filter/ww8/ww8par.hxx?rev=1415741r1=1415740r2=1415741view=diff
==
--- openoffice/trunk/main/sw/source/filter/ww8/ww8par.hxx (original)
+++ openoffice/trunk/main/sw/source/filter/ww8/ww8par.hxx Fri Nov 30 17:06:36 
2012
@@ -40,6 +40,7 @@
 #include deque
 #include map
 #include utility
+#include limits.h
 
 #include tracer.hxx
 #include ww8struc.hxx // WW8_BRC




buildbot failure in ASF Buildbot on openoffice-linux64-nightly

2012-11-30 Thread buildbot
Hi! , The openoffice-linux64-nightly builder has just completed a run

STATUS: Failure

 Build revision 1415629 on branch None

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

 Build using the ASF buildslave: tethys_ubuntu

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

 Build reason was: forced: by IRC user hdu_hh on channel #asftest: testing 
the anti-buildbreaker commits for the ww8-filter


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

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






buildbot success in ASF Buildbot on aoo-win7

2012-11-30 Thread buildbot
Hi! , The aoo-win7 builder has just completed a run

STATUS: Success

 Build revision 1415912 on branch openoffice/trunk

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

 Build using the ASF buildslave: bb-win7

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

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


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

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