buildbot success in ASF Buildbot on aoo-win7

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

STATUS: Success

 Build revision 1462756 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/556

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


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

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






buildbot success in ASF Buildbot on aoo-w7l10n

2013-04-01 Thread buildbot
Hi! , The aoo-w7l10n builder has just completed a run

STATUS: Success

 Build revision 1461052 on branch openoffice/branches/l10n

 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-w7l10n/builds/73

 Build reason was: The Nightly scheduler named 'aoo-win7-l10n' 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: r1463154 [2/6] - in /openoffice/branches/sidebar/main: editeng/inc/editeng/ editeng/source/outliner/ officecfg/registry/data/org/openoffice/Office/UI/ sc/sdi/ sc/source/ui/app/ sc/source/u

2013-04-01 Thread zhengfan
Added: openoffice/branches/sidebar/main/svx/inc/svx/nbdtmg.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/sidebar/main/svx/inc/svx/nbdtmg.hxx?rev=1463154view=auto
==
--- openoffice/branches/sidebar/main/svx/inc/svx/nbdtmg.hxx (added)
+++ openoffice/branches/sidebar/main/svx/inc/svx/nbdtmg.hxx Mon Apr  1 14:43:34 
2013
@@ -0,0 +1,412 @@
+/*
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ * 
+ * Copyright IBM Corporation 2009.
+ * Copyright 2009. by Sun Microsystems, Inc.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: nbdtmg.hxx,v $
+ * $Revision: 1.00.00.0 $
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org.  If not, see
+ * http://www.openoffice.org/license.html
+ * for a copy of the LGPLv3 License.
+ *
+ /
+
+/***
+ *
+ * Tool to Visualize Internal Data Structure for Productive Development
+ * It is a developer's tool from Lotus Symphony Documents Editor Team
+ *
+ * This file provides developers of OpenOffice.org a visualize tool for 
tracing 
+ * the internal data structure and its parameters. 
+ *
+ * Date: 05/25/2009
+ *
+ ***/
+
+#ifndef _NBDTMG_HXX
+#define _NBDTMG_HXX
+#include svx/svxdllapi.h
+
+#ifndef _SVX_NUMITEM_HXX
+#include editeng/numitem.hxx
+#endif
+#define _SVSTDARR_USHORTS
+#include svl/svstdarr.hxx
+#include svl/svarray.hxx
+#ifndef _LIST_HXX
+#include tools/list.hxx
+#endif
+#ifndef _SV_FONT_HXX
+#include vcl/font.hxx
+#endif
+
+namespace svx { namespace sidebar {
+
+#define DEFAULT_BULLET_TYPES   
8
+#define DEFAULT_NONE   
10
+#define DEFAULT_NUM_TYPE_MEMBER
5 
+#define DEFAULT_NUM_VALUSET_COUNT  
8
+#define DEFAULT_NUMBERING_CACHE_FORMAT_VERSION 0x10
+
+typedef sal_uInt16 NBOType;
+namespace eNBOType
+{
+const NBOType BULLETS = 0x01;
+const NBOType GRAPHICBULLETS = 0x02;
+const NBOType NUMBERING = 0x03;
+const NBOType OUTLINE = 0x04;
+const NBOType MIXBULLETS = 0x05;
+}
+
+typedef sal_uInt16 NBType;
+namespace eNBType
+{
+const NBOType BULLETS = 0x01;
+const NBOType GRAPHICBULLETS = 0x02;
+}
+
+class  SVX_DLLPUBLIC NumSettings_Impl
+{
+   public:
+   short   nNumberType;
+   short   nParentNumbering;
+   SvxNumberFormat::SvxNumLabelFollowedBy eLabelFollowedBy;
+   longnTabValue;
+   SvxAdjust   eNumAlign;
+   longnNumAlignAt;
+   longnNumIndentAt;
+   rtl::OUString   sPrefix;
+   rtl::OUString   sSuffix;
+   rtl::OUString   sBulletChar;
+   rtl::OUString   sBulletFont;
+   SvxBrushItem   *pBrushItem;
+   SizeaSize;
+
+   public:
+   NumSettings_Impl() :
+   nNumberType(0),
+   pBrushItem(0),
+   aSize(0,0),
+   nParentNumbering(0)
+   {}
+   ~NumSettings_Impl(){}
+};
+/*
+typedef NumSettings_Impl* NumSettings_ImplPtr;
+SV_DECL_PTRARR_DEL(NumSettingsArr_Impl,NumSettings_ImplPtr,8,4)
+SV_IMPL_PTRARR( NumSettingsArr_Impl, NumSettings_ImplPtr )*/
+
+class NumSettingsArr_Impl;
+
+class  SVX_DLLPUBLIC BulletsSettings
+{
+   public:
+   sal_BoolbIsCustomized;
+   rtl::OUString   sDescription;
+   NBType  eType;  
+   public:
+   BulletsSettings(NBType eTy) :
+   bIsCustomized(sal_False),   
+   eType(eTy)
+   {}
+   virtual ~BulletsSettings(){}
+};
+
+class  SVX_DLLPUBLIC 

buildbot success in ASF Buildbot on aoo-w7snap

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

STATUS: Success

 Build revision 1458757 on branch openoffice/tags/SNAPSHOT

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

 Build using the ASF buildslave: bb-win7

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

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


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

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






svn commit: r1463157 - in /openoffice/ooo-site/trunk/content: brand.mdtext index.html

2013-04-01 Thread robweir
Author: robweir
Date: Mon Apr  1 14:59:35 2013
New Revision: 1463157

URL: http://svn.apache.org/r1463157
Log: (empty)

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

Modified: openoffice/ooo-site/trunk/content/brand.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/brand.mdtext?rev=1463157r1=1463156r2=1463157view=diff
==
--- openoffice/ooo-site/trunk/content/brand.mdtext (original)
+++ openoffice/ooo-site/trunk/content/brand.mdtext Mon Apr  1 14:59:35 2013
@@ -2,10 +2,10 @@ home: home
 search:search
 name:  Apache OpenOffice
 tagline:   The Free and Open Productivity Suite
-logo:  AOO_logos/dfd-site-log.jpg
+logo:  AOO_logos/OOo_Website_v2_copy.png
 domain:www.openoffice.org
 divid: bannera
-announce:  We're Celebrating Document Freedom Day
-announceurl:   http://blogs.apache.org/OOo/entry/openoffice_and_odf
-announcetip:   Liberate your documents!
+announce:  We're now on Pinterest!
+announceurl:   http://pinterest.com/openoffice/boards/
+announcetip:   Follow us on Pinteresst
 

Modified: openoffice/ooo-site/trunk/content/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/index.html?rev=1463157r1=1463156r2=1463157view=diff
==
--- openoffice/ooo-site/trunk/content/index.html (original)
+++ openoffice/ooo-site/trunk/content/index.html Mon Apr  1 14:59:35 2013
@@ -3,13 +3,13 @@
 head

 meta name=description content=The official home page of the Apache 
OpenOffice open source project, home of OpenOffice Writer, Calc, Impress, Draw 
and Base. /
-meta name=keywords content=OpenOffice, Open Office, Apache OpenOffice, 
OpenOffice.org, Calc, Impress, Draw, Base, ODF, Open Document Format, free 
office editors /
+meta name=keywords content=OpenOffice, Open Office, Apache OpenOffice, 
Apache Open Office, OpenOffice.org, Calc, Impress, Draw, Base, ODF, Open 
Document Format, free office editors /
 meta name=google-site-verification 
content=x1jl2cGum4kCvj0PgxjTy_pasCsLY_fBT7my88fpKD4 /
meta name=p:domain_verify 
content=bd1ba1fb9d25b0eb3d64891f89e9195e/ 
 meta http-equiv=Content-Type content=text/html; charset=utf-8 /
 link href=https://plus.google.com/+openoffice; rel=publisher /
 link rel=STYLESHEET type=text/css href=/product/product.css 
media=screen /
-titleApache OpenOffice - The Free and Open Productivity Suite/title
+titleApache OpenOffice — The Free and Open Productivity Suite/title
 style type=text/css
 /* ![CDATA[ */
 /* Exceptions on standard css ---*/




svn commit: r856869 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/brand.html content/index.html

2013-04-01 Thread buildbot
Author: buildbot
Date: Mon Apr  1 15:00:46 2013
New Revision: 856869

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/brand.html
websites/staging/ooo-site/trunk/content/index.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Apr  1 15:00:46 2013
@@ -1 +1 @@
-1463032
+1463157

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Apr  1 15:00:46 2013
@@ -1 +1 @@
-1463032
+1463157

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 Mon Apr  1 15:00:46 2013
@@ -1,5 +1,5 @@
   div id=bannera
-div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt=Apache OpenOffice 
src=/images/AOO_logos/dfd-site-log.jpg//a/div
+div id=bannerlefta title=Apache OpenOffice href=/img 
id=ooo-logo alt=Apache OpenOffice 
src=/images/AOO_logos/OOo_Website_v2_copy.png//a/div
 div id=bannerright
   div style=relative; margin: 14px 0 0 0; height: 24px;
form id=cse-search-box-header action=http://www.google.com/search; 
method=get
@@ -17,4 +17,4 @@
 /div
 div id=bannercenterbr/The Free and Open Productivity Suite/div
   /div
-  div id=announcea 
href=http://blogs.apache.org/OOo/entry/openoffice_and_odf; title=Liberate 
your documents!We#39;re Celebrating Document Freedom Day/a/div
+  div id=announcea href=http://pinterest.com/openoffice/boards/; 
title=Follow us on PinteresstWe#39;re now on Pinterest!/a/div

Modified: websites/staging/ooo-site/trunk/content/index.html
==
--- websites/staging/ooo-site/trunk/content/index.html (original)
+++ websites/staging/ooo-site/trunk/content/index.html Mon Apr  1 15:00:46 2013
@@ -5,13 +5,13 @@
 

 meta name=description content=The official home page of the Apache 
OpenOffice open source project, home of OpenOffice Writer, Calc, Impress, Draw 
and Base. /
-meta name=keywords content=OpenOffice, Open Office, Apache OpenOffice, 
OpenOffice.org, Calc, Impress, Draw, Base, ODF, Open Document Format, free 
office editors /
+meta name=keywords content=OpenOffice, Open Office, Apache OpenOffice, 
Apache Open Office, OpenOffice.org, Calc, Impress, Draw, Base, ODF, Open 
Document Format, free office editors /
 meta name=google-site-verification 
content=x1jl2cGum4kCvj0PgxjTy_pasCsLY_fBT7my88fpKD4 /
meta name=p:domain_verify 
content=bd1ba1fb9d25b0eb3d64891f89e9195e/ 
 meta http-equiv=Content-Type content=text/html; charset=utf-8 /
 link href=https://plus.google.com/+openoffice; rel=publisher /
 link rel=STYLESHEET type=text/css href=/product/product.css 
media=screen /
-titleApache OpenOffice - The Free and Open Productivity Suite/title
+titleApache OpenOffice — The Free and Open Productivity Suite/title
 style type=text/css
 /* ![CDATA[ */
 /* Exceptions on standard css ---*/




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

2013-04-01 Thread robweir
Author: robweir
Date: Mon Apr  1 15:16:59 2013
New Revision: 856873

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

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



svn commit: r1463163 - /openoffice/branches/sidebar/main/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx

2013-04-01 Thread zhengfan
Author: zhengfan
Date: Mon Apr  1 15:37:21 2013
New Revision: 1463163

URL: http://svn.apache.org/r1463163
Log:
i121794: Commit for Paragraph Properties Panel, in Sidebar feature branch. By 
ZhengFan.

Modified:

openoffice/branches/sidebar/main/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx

Modified: 
openoffice/branches/sidebar/main/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/sidebar/main/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx?rev=1463163r1=1463162r2=1463163view=diff
==
--- 
openoffice/branches/sidebar/main/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx
 (original)
+++ 
openoffice/branches/sidebar/main/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx
 Mon Apr  1 15:37:21 2013
@@ -152,8 +152,7 @@ void ParaLineSpacingControl::initial()
for (int i=0;i4;i++)
maLineSpacing.AddItem(mpImg[i], 
mpImgSel[i],mpStr[i],mpStrTip[i]);
 
-   maLineSpacing.InsertCustom(maImgCus, maImgCusGrey, maStrCus);
-   maLineSpacing.SetCustomTip(maStrCus); //Add
+   maLineSpacing.AddItem( maImgCus, 0, maStrCus, 0 );
 
SetAllNoSel();
Link aLink = LINK(this, ParaLineSpacingControl,VSSelHdl );
@@ -264,11 +263,11 @@ void ParaLineSpacingControl::Rearrange(S
mbLineSPDisable = sal_False;
 
if( mbLineSPDisable )
-   maLineSpacing.SetCusEnable(0);
+   maLineSpacing.ReplaceItemImages(5, maImgCusGrey,0);
else
{
-   maLineSpacing.SetCusEnable(1);
-   maLineSpacing.SetCustomTip(sHelpText,sal_True);//Modify for 
Sym2_7266
+   maLineSpacing.ReplaceItemImages(5, maImgCus,0);
+   maLineSpacing.SetItemText(5,sHelpText);
}
 
SfxItemState eState = currSPState;
@@ -303,7 +302,7 @@ void ParaLineSpacingControl::Rearrange(S
mbUseLineSPCustom = 
DO_NOT_CUSTOM;
if ( LINESPACE_1 == 
currSPItem-GetPropLineSpace() )
{
-   
maLineSpacing.SetSelItem(1);
+   
maLineSpacing.SelectItem(1);
bValueSetFocus = 
sal_True;  //wj
}
}
@@ -317,7 +316,7 @@ void ParaLineSpacingControl::Rearrange(S

pActLineDistFld-Disable();

pActLineDistFld-SetText( String() );
mbUseLineSPCustom = 
DO_NOT_CUSTOM;
-   
maLineSpacing.SetSelItem(1);
+   
maLineSpacing.SelectItem(1);
bValueSetFocus = 
sal_True;  //wj
break;
}
@@ -328,7 +327,7 @@ void ParaLineSpacingControl::Rearrange(S

pActLineDistFld-SetText( String() );
 
mbUseLineSPCustom = 
DO_NOT_CUSTOM;
-   
maLineSpacing.SetSelItem(3);
+   
maLineSpacing.SelectItem(3);
bValueSetFocus = 
sal_True;  //wj
break;
}
@@ -339,7 +338,7 @@ void ParaLineSpacingControl::Rearrange(S

pActLineDistFld-SetText( String() );

mbUseLineSPCustom = 
DO_NOT_CUSTOM;
-   
maLineSpacing.SetSelItem(4);
+   
maLineSpacing.SelectItem(4);
bValueSetFocus = 
sal_True;  //wj
break;
}
@@ -367,13 +366,14 @@ void ParaLineSpacingControl::Rearrange(S
if( 
currSPItem-GetPropLineSpace() == LINESPACE_115 )
{
mbUseLineSPCustom = 
DO_NOT_CUSTOM;
- 

[CONF] Apache OpenOffice Community AOO 4.x - Logo Explorations

2013-04-01 Thread confluence
Space: Apache OpenOffice Community 
(https://cwiki.apache.org/confluence/display/OOOUSERS)
Page: AOO 4.x - Logo Explorations 
(https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.x+-+Logo+Explorations)

Attached by Can Ünlüsoy:
-
sunum 1.jpg (120 kB) - 
https://cwiki.apache.org/confluence/download/attachments/27846912/sunum+1.jpg?version=1modificationDate=1364839823652

Change your notification preferences: 
https://cwiki.apache.org/confluence/users/viewnotifications.action


svn commit: r1463277 - /openoffice/ooo-site/trunk/content/stats/aoo34-downloads.txt

2013-04-01 Thread robweir
Author: robweir
Date: Mon Apr  1 20:10:34 2013
New Revision: 1463277

URL: http://svn.apache.org/r1463277
Log:
Update through March 31st

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

Modified: openoffice/ooo-site/trunk/content/stats/aoo34-downloads.txt
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/stats/aoo34-downloads.txt?rev=1463277r1=1463276r2=1463277view=diff
==
--- openoffice/ooo-site/trunk/content/stats/aoo34-downloads.txt (original)
+++ openoffice/ooo-site/trunk/content/stats/aoo34-downloads.txt Mon Apr  1 
20:10:34 2013
@@ -296,7 +296,34 @@
 2013-02-27,165965,39532593
 2013-02-28,162947,39695540
 2013-03-01,143850,39839390
-2013-03-02,128184,39967574
-2013-03-03,145869,40113443
-
-
+2013-03-01,143850,39839390
+2013-03-02,125295,39964685
+2013-03-03,117227,40081912
+2013-03-04,166085,40247997
+2013-03-05,165522,40413519
+2013-03-06,166834,40580353
+2013-03-07,155665,40736018
+2013-03-08,118976,40854994
+2013-03-09,126478,40981472
+2013-03-10,64,41092636
+2013-03-11,170429,41263065
+2013-03-12,169273,41432338
+2013-03-13,168610,41600948
+2013-03-14,162824,41763772
+2013-03-15,149528,41913300
+2013-03-16,155455,42068755
+2013-03-17,154315,42223070
+2013-03-18,165686,42388756
+2013-03-19,166268,42555024
+2013-03-20,169763,42724787
+2013-03-21,156786,42881573
+2013-03-22,134516,43016089
+2013-03-23,122640,43138729
+2013-03-24,129785,43268514
+2013-03-25,157234,43425748
+2013-03-26,154418,43580166
+2013-03-27,149790,43729956
+2013-03-28,135647,43865603
+2013-03-29,121848,43987451
+2013-03-30,103908,44091359
+2013-03-31,99196,44190555




svn commit: r856904 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/stats/aoo34-downloads.txt

2013-04-01 Thread buildbot
Author: buildbot
Date: Mon Apr  1 20:11:49 2013
New Revision: 856904

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Apr  1 20:11:49 2013
@@ -1 +1 @@
-1463157
+1463277

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Apr  1 20:11:49 2013
@@ -1 +1 @@
-1463157
+1463277

Modified: websites/staging/ooo-site/trunk/content/stats/aoo34-downloads.txt
==
--- websites/staging/ooo-site/trunk/content/stats/aoo34-downloads.txt (original)
+++ websites/staging/ooo-site/trunk/content/stats/aoo34-downloads.txt Mon Apr  
1 20:11:49 2013
@@ -296,7 +296,34 @@
 2013-02-27,165965,39532593
 2013-02-28,162947,39695540
 2013-03-01,143850,39839390
-2013-03-02,128184,39967574
-2013-03-03,145869,40113443
-
-
+2013-03-01,143850,39839390
+2013-03-02,125295,39964685
+2013-03-03,117227,40081912
+2013-03-04,166085,40247997
+2013-03-05,165522,40413519
+2013-03-06,166834,40580353
+2013-03-07,155665,40736018
+2013-03-08,118976,40854994
+2013-03-09,126478,40981472
+2013-03-10,64,41092636
+2013-03-11,170429,41263065
+2013-03-12,169273,41432338
+2013-03-13,168610,41600948
+2013-03-14,162824,41763772
+2013-03-15,149528,41913300
+2013-03-16,155455,42068755
+2013-03-17,154315,42223070
+2013-03-18,165686,42388756
+2013-03-19,166268,42555024
+2013-03-20,169763,42724787
+2013-03-21,156786,42881573
+2013-03-22,134516,43016089
+2013-03-23,122640,43138729
+2013-03-24,129785,43268514
+2013-03-25,157234,43425748
+2013-03-26,154418,43580166
+2013-03-27,149790,43729956
+2013-03-28,135647,43865603
+2013-03-29,121848,43987451
+2013-03-30,103908,44091359
+2013-03-31,99196,44190555




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

2013-04-01 Thread buildbot
Author: buildbot
Date: Mon Apr  1 20:15:12 2013
New Revision: 856906

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Apr  1 20:15:12 2013
@@ -1 +1 @@
-1463277
+1463281

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Apr  1 20:15:12 2013
@@ -1 +1 @@
-1463277
+1463281

Modified: websites/staging/ooo-site/trunk/content/index.html
==
--- websites/staging/ooo-site/trunk/content/index.html (original)
+++ websites/staging/ooo-site/trunk/content/index.html Mon Apr  1 20:15:12 2013
@@ -11,7 +11,7 @@
 meta http-equiv=Content-Type content=text/html; charset=utf-8 /
 link href=https://plus.google.com/+openoffice; rel=publisher /
 link rel=STYLESHEET type=text/css href=/product/product.css 
media=screen /
-titleApache OpenOffice — The Free and Open Productivity Suite/title
+titleApache OpenOffice � The Free and Open Productivity Suite/title
 style type=text/css
 /* ![CDATA[ */
 /* Exceptions on standard css ---*/
@@ -153,7 +153,7 @@
  div class=campaign
 h2Over 40 million downloads of AOO 3.4/h2
 
- pem4 March 2013:/em Apache OpenOffice 3.4 was released in May. 
Downloads now exceed 40 million. We invite you to take a look at 
+ pem31 March 2013:/em Apache OpenOffice 3.4 was released in May. 
Downloads now exceed 44 million. We invite you to take a look at 
 a href=http://stats.openoffice.org/;our interactive charts/a of daily 
and cumulative downloads./p
   /div   





svn commit: r1463308 - /openoffice/site/trunk/content/source.mdtext

2013-04-01 Thread kschenk
Author: kschenk
Date: Mon Apr  1 21:42:19 2013
New Revision: 1463308

URL: http://svn.apache.org/r1463308
Log:
Added old developer repository.

Modified:
openoffice/site/trunk/content/source.mdtext

Modified: openoffice/site/trunk/content/source.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/site/trunk/content/source.mdtext?rev=1463308r1=1463307r2=1463308view=diff
==
--- openoffice/site/trunk/content/source.mdtext (original)
+++ openoffice/site/trunk/content/source.mdtext Mon Apr  1 21:42:19 2013
@@ -80,6 +80,8 @@ LGPL-licenced and is not maintained by t
 
 The legacy repository can be found [here][10].
 
+And, developer areas (cws, etc.) from [here][11].
+
 
 [1]: http://subversion.apache.org
 [2]: http://svn.apache.org/viewvc/openoffice/trunk
@@ -91,3 +93,4 @@ The legacy repository can be found [here
 [8]: 
https://cwiki.apache.org/confluence/display/OOOUSERS/Development+Snapshot+Builds#DevelopmentSnapshotBuilds-fullsets
 [9]: http://ci.apache.org/projects/openoffice
 [10]: https://bitbucket.org/mst/ooo340
+[11]: http://hg.services.openoffice.org/




svn commit: r856920 - /websites/production/openoffice/content/

2013-04-01 Thread kschenk
Author: kschenk
Date: Mon Apr  1 21:42:59 2013
New Revision: 856920

Log:
ok, let's go

Added:
websites/production/openoffice/content/
  - copied from r856919, websites/staging/openoffice/trunk/content/