buildbot success in ASF Buildbot on openoffice-linux32-nightly

2014-02-24 Thread buildbot
Hi! , The openoffice-linux32-nightly builder has just completed a run

STATUS: Success

 Build revision 1571125 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/659

 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: r1571189 - in /openoffice/trunk/main/vcl/aqua/source: app/salinst.cxx app/saltimer.cxx gdi/aquaprintaccessoryview.mm gdi/aquaprintview.mm window/salframe.cxx window/salframeview.mm window/

2014-02-24 Thread hdu
Author: hdu
Date: Mon Feb 24 09:08:02 2014
New Revision: 1571189

URL: http://svn.apache.org/r1571189
Log:
#i123840# prefer NSZero* constants over open coded altetnatives

Modified:
openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx
openoffice/trunk/main/vcl/aqua/source/app/saltimer.cxx
openoffice/trunk/main/vcl/aqua/source/gdi/aquaprintaccessoryview.mm
openoffice/trunk/main/vcl/aqua/source/gdi/aquaprintview.mm
openoffice/trunk/main/vcl/aqua/source/window/salframe.cxx
openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm
openoffice/trunk/main/vcl/aqua/source/window/salnsmenu.mm
openoffice/trunk/main/vcl/aqua/source/window/salobj.cxx

Modified: openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx?rev=1571189r1=1571188r2=1571189view=diff
==
--- openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx (original)
+++ openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx Mon Feb 24 09:08:02 
2014
@@ -213,9 +213,8 @@ sal_Bool ImplSVMainHook( sal_Bool * pbIn
 bNoSVMain = false;
 initNSApp();
 
-NSPoint aPt = { 0, 0 };
 NSEvent* pEvent = [NSEvent otherEventWithType: NSApplicationDefined
-   location: aPt
+   location: NSZeroPoint
modifierFlags: 0
timestamp: 0
windowNumber: 0
@@ -495,9 +494,8 @@ void AquaSalInstance::wakeupYield()
 if( mbWaitingYield )
 {
 SalData::ensureThreadAutoreleasePool();
-NSPoint aPt = { 0, 0 };
 NSEvent* pEvent = [NSEvent otherEventWithType: NSApplicationDefined
-   location: aPt
+   location: NSZeroPoint
modifierFlags: 0
timestamp: 0
windowNumber: 0

Modified: openoffice/trunk/main/vcl/aqua/source/app/saltimer.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/aqua/source/app/saltimer.cxx?rev=1571189r1=1571188r2=1571189view=diff
==
--- openoffice/trunk/main/vcl/aqua/source/app/saltimer.cxx (original)
+++ openoffice/trunk/main/vcl/aqua/source/app/saltimer.cxx Mon Feb 24 09:08:02 
2014
@@ -71,9 +71,8 @@ void ImplSalStartTimer( sal_uLong nMS )
 {
 SalData::ensureThreadAutoreleasePool();
 // post an event so we can get into the main thread
-NSPoint aPt = { 0, 0 };
 NSEvent* pEvent = [NSEvent otherEventWithType: NSApplicationDefined
-   location: aPt
+   location: NSZeroPoint
modifierFlags: 0
timestamp: [NSDate 
timeIntervalSinceReferenceDate]
windowNumber: 0

Modified: openoffice/trunk/main/vcl/aqua/source/gdi/aquaprintaccessoryview.mm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/aqua/source/gdi/aquaprintaccessoryview.mm?rev=1571189r1=1571188r2=1571189view=diff
==
--- openoffice/trunk/main/vcl/aqua/source/gdi/aquaprintaccessoryview.mm 
(original)
+++ openoffice/trunk/main/vcl/aqua/source/gdi/aquaprintaccessoryview.mm Mon Feb 
24 09:08:02 2014
@@ -643,7 +643,7 @@ static void adjustViewAndChildren( NSVie
 
 NSArray* pSubViews = [pNSView subviews];
 unsigned int nViews = [pSubViews count];
-NSRect aUnion = { { 0, 0 }, { 0, 0 } };
+NSRect aUnion = NSZeroRect;
 
 // get the combined frame of all subviews
 for( unsigned int n = 0; n  nViews; n++ )
@@ -712,7 +712,7 @@ static void adjustTabViews( NSTabView* p
 static NSControl* createLabel( const rtl::OUString i_rText )
 {
 NSString* pText = CreateNSString( i_rText );
-NSRect aTextRect = { { 0, 0 }, {20, 15} };
+NSRect aTextRect = { NSZeroPoint, {20, 15} };
 NSTextField* pTextView = [[NSTextField alloc] initWithFrame: aTextRect];
 [pTextView setFont: [NSFont controlContentFontOfSize: 0]];
 [pTextView setEditable: NO];
@@ -1093,9 +1093,9 @@ static void addEdit( NSView* pCurParent,
 NSView* pCurParent = 0;
 long nCurY = 0;
 long nCurX = 0;
-NSRect aViewFrame = { { 0, 0 }, {600, 400 } };
+NSRect aViewFrame = { NSZeroPoint, {600, 400 } };
 NSRect aTabViewFrame = { { 190, 0 }, {410, 400 } };
-NSSize aMaxTabSize = { 0, 0 };
+NSSize aMaxTabSize = NSZeroSize;
 NSView* pAccessoryView = [[NSView alloc] initWithFrame: aViewFrame];
 NSTabView* pTabView = [[NSTabView alloc] initWithFrame: aTabViewFrame];
 [pAccessoryView addSubview: [pTabView autorelease]];

Modified: 

svn commit: r1571205 - in /openoffice/trunk/main/vcl: aqua/source/app/salinst.cxx aqua/source/app/vclnsapp.mm inc/aqua/vclnsapp.h

2014-02-24 Thread hdu
Author: hdu
Date: Mon Feb 24 09:49:19 2014
New Revision: 1571205

URL: http://svn.apache.org/r1571205
Log:
#i119006# delay AOO/Mac initial event until the app has finished lauching

delaying the initial event prevents complaints from OSX=10.7's windows 
restore
feature to recur infinitely. Apparently OSX cleans things up for us just before
we get the applicationDidFinishLaunching() callback. This should solve one of 
the
most popular support questions for AOO on Mac for good.

Modified:
openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx
openoffice/trunk/main/vcl/aqua/source/app/vclnsapp.mm
openoffice/trunk/main/vcl/inc/aqua/vclnsapp.h

Modified: openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx?rev=1571205r1=1571204r2=1571205view=diff
==
--- openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx (original)
+++ openoffice/trunk/main/vcl/aqua/source/app/salinst.cxx Mon Feb 24 09:49:19 
2014
@@ -209,23 +209,10 @@ static void initNSApp()
 sal_Bool ImplSVMainHook( sal_Bool * pbInit )
 {
gpbInit = pbInit;
-
-bNoSVMain = false;
-initNSApp();
-
-NSEvent* pEvent = [NSEvent otherEventWithType: NSApplicationDefined
-   location: NSZeroPoint
-   modifierFlags: 0
-   timestamp: 0
-   windowNumber: 0
-   context: nil
-   subtype: AquaSalInstance::AppExecuteSVMain
-   data1: 0
-   data2: 0 ];
-if( pEvent )
-{
-[NSApp postEvent: pEvent atStart: NO];
-
+
+   bNoSVMain = false;
+   initNSApp();
+
 rtl::OUString aExeURL, aExe;
 osl_getExecutableFile( aExeURL.pData );
 osl_getSystemPathFromFileURL( aExeURL.pData, aExe.pData );
@@ -239,11 +226,6 @@ sal_Bool ImplSVMainHook( sal_Bool * pbIn
 const char* pArgv[] = { aByteExe.getStr(), NULL };
 NSApplicationMain( 1, pArgv );
 #endif
-}
-else
-{
-DBG_ERROR( NSApplication initialization could not be done );
-}
 
 return TRUE;   // indicate that ImplSVMainHook is implemented
 }

Modified: openoffice/trunk/main/vcl/aqua/source/app/vclnsapp.mm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/aqua/source/app/vclnsapp.mm?rev=1571205r1=1571204r2=1571205view=diff
==
--- openoffice/trunk/main/vcl/aqua/source/app/vclnsapp.mm (original)
+++ openoffice/trunk/main/vcl/aqua/source/app/vclnsapp.mm Mon Feb 24 09:49:19 
2014
@@ -54,6 +54,22 @@
 @end
 
 @implementation VCL_NSApplication
+
+-(void)applicationDidFinishLaunching:(NSNotification*)aNotification
+{
+NSEvent* pEvent = [NSEvent otherEventWithType: NSApplicationDefined
+   location: NSZeroPoint
+   modifierFlags: 0
+   timestamp: 0
+   windowNumber: 0
+   context: nil
+   subtype: AquaSalInstance::AppExecuteSVMain
+   data1: 0
+   data2: 0 ];
+if( pEvent )
+[NSApp postEvent: pEvent atStart: NO];
+}
+
 -(void)sendEvent:(NSEvent*)pEvent
 {
 NSEventType eType = [pEvent type];

Modified: openoffice/trunk/main/vcl/inc/aqua/vclnsapp.h
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/inc/aqua/vclnsapp.h?rev=1571205r1=1571204r2=1571205view=diff
==
--- openoffice/trunk/main/vcl/inc/aqua/vclnsapp.h (original)
+++ openoffice/trunk/main/vcl/inc/aqua/vclnsapp.h Mon Feb 24 09:49:19 2014
@@ -40,6 +40,7 @@ class AquaSalFrame;
 @interface VCL_NSApplication : NSApplication
 {
 }
+-(void)applicationDidFinishLaunching:(NSNotification*)aNotification;
 -(void)sendEvent:(NSEvent*)pEvent;
 -(void)sendSuperEvent:(NSEvent*)pEvent;
 -(NSMenu*)applicationDockMenu:(NSApplication *)sender;




svn commit: r1571223 [1/2] - /openoffice/trunk/extras/l10n/source/pt/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 10:45:33 2014
New Revision: 1571223

URL: http://svn.apache.org/r1571223
Log:
#123593# merge final translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/pt/localize.sdf



svn commit: r1571228 [1/2] - /openoffice/trunk/extras/l10n/source/eu/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 10:51:00 2014
New Revision: 1571228

URL: http://svn.apache.org/r1571228
Log:
#123860# merge Basque translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/eu/localize.sdf



svn commit: r1571230 [1/2] - /openoffice/trunk/extras/l10n/source/hi/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 11:00:30 2014
New Revision: 1571230

URL: http://svn.apache.org/r1571230
Log:
#123968# merge Hindi translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/hi/localize.sdf



svn commit: r1571233 - /openoffice/trunk/extras/l10n/source/nb/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 11:05:27 2014
New Revision: 1571233

URL: http://svn.apache.org/r1571233
Log:
#123820# merge Norwegian Bokmal translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/nb/localize.sdf

Modified: openoffice/trunk/extras/l10n/source/nb/localize.sdf
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/extras/l10n/source/nb/localize.sdf?rev=1571233r1=1571232r2=1571233view=diff
==
--- openoffice/trunk/extras/l10n/source/nb/localize.sdf (original)
+++ openoffice/trunk/extras/l10n/source/nb/localize.sdf Mon Feb 24 11:05:27 2014
@@ -20688,7 +20688,7 @@ helpcontent2source\text\swriter\01\0115
 helpcontent2   source\text\swriter\01\0115.xhp 0   help
par_id3149691   8   0   nb  \ahelp 
hid=\SW:RADIOBUTTON:DLG_MAILMERGE:RB_ALL\\Behandler alle postene i 
databasen.\/ahelp\  20130618 17:22:18
 helpcontent2   source\text\swriter\01\0115.xhp 0   help
hd_id31551869   0   nb  Utvalgte poster 
20130618 17:22:18
 helpcontent2   source\text\swriter\01\0115.xhp 0   help
par_id3149483   10  0   nb  \ahelp 
hid=\SW:RADIOBUTTON:DLG_MAILMERGE:RB_MARKED\\Behandler bare de valgte 
postene i databasen. Dette er bare mulig hvis du allerede har valgt de ønskede 
postene i databasen.\/ahelp\ 20130618 17:22:18
-helpcontent2   source\text\swriter\01\0115.xhp 0   help
hd_id314981923  0   nb  From
20130618 17:22:18
+helpcontent2   source\text\swriter\01\0115.xhp 0   help
hd_id314981923  0   nb  Fra 
20130618 17:22:18
 helpcontent2   source\text\swriter\01\0115.xhp 0   help
par_id3149104   24  0   nb  \ahelp 
hid=\SW:RADIOBUTTON:DLG_MAILMERGE:RB_FROM\\Velg hvilke poster du vil ha med 
i brevflettingen.\/ahelp\  20130618 17:22:18
 helpcontent2   source\text\swriter\01\0115.xhp 0   help
hd_id315126011  0   nb  Fra:
20130618 17:22:18
 helpcontent2   source\text\swriter\01\0115.xhp 0   help
par_id3149034   12  0   nb  \ahelp 
hid=\SW:NUMERICFIELD:DLG_MAILMERGE:NF_FROM\\Angir nummeret på den første 
posten som skal skrives ut.\/ahelp\ 20130618 
17:22:18
@@ -20856,7 +20856,7 @@ helpcontent2source\text\swriter\01\0211
 helpcontent2   source\text\swriter\01\02110100.xhp 0   help
par_idN107AF0   nb  \ahelp hid=\.\ 
visibility=\hidden\\Bruk denne knappen til å bla gjennom 
OLE-objekter.\/ahelp\  20130618 17:22:18
 helpcontent2   source\text\swriter\01\02110100.xhp 0   help
par_idN107C60   nb  \ahelp hid=\.\ 
visibility=\hidden\\Bruk denne knappen til å bla gjennom 
overskrifter.\/ahelp\  20130618 17:22:18
 helpcontent2   source\text\swriter\01\02110100.xhp 0   help
par_idN107DD0   nb  \ahelp hid=\.\ 
visibility=\hidden\\Bruk denne knappen til å bla gjennom sider.\/ahelp\   
  20130618 17:22:18
-helpcontent2   source\text\swriter\01\02110100.xhp 0   help
par_idN107F40   nb  \ahelp hid=\.\ 
visibility=\hidden\\Select this icon to browse through comments.\/ahelp\   
  20130618 17:22:18
+helpcontent2   source\text\swriter\01\02110100.xhp 0   help
par_idN107F40   nb  \ahelp hid=\.\ 
visibility=\hidden\\Velg dette ikonet for å bla gjennom 
kommentarer.\/ahelp\20130618 17:22:18
 helpcontent2   source\text\swriter\01\02110100.xhp 0   help
par_idN1080B0   nb  \ahelp hid=\.\ 
visibility=\hidden\\Plasserer skrivemerket ved det forrige objektet av den 
valgte typen.\/ahelp\ 20130618 17:22:18
 helpcontent2   source\text\swriter\01\02110100.xhp 0   help
par_idN108290   nb  \ahelp hid=\.\ 
visibility=\hidden\\Bruk denne knappen til å bla gjennom bolker.\/ahelp\  
  20130618 17:22:18
 helpcontent2   source\text\swriter\01\02110100.xhp 0   help
par_idN108400   nb  \ahelp hid=\.\ 
visibility=\hidden\\Bruk denne knappen til å bla gjennom utvalg.\/ahelp\  
  20130618 17:22:18
@@ -20972,13 +20972,13 @@ helpcontent2  source\text\swriter\01\0214
 helpcontent2   

svn commit: r1571234 [1/2] - /openoffice/trunk/extras/l10n/source/th/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 11:05:55 2014
New Revision: 1571234

URL: http://svn.apache.org/r1571234
Log:
#123819# merge Thai translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/th/localize.sdf



svn commit: r1571236 - /openoffice/trunk/extras/l10n/source/sr/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 11:07:03 2014
New Revision: 1571236

URL: http://svn.apache.org/r1571236
Log:
#124196# merge Serbian translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/sr/localize.sdf

Modified: openoffice/trunk/extras/l10n/source/sr/localize.sdf
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/extras/l10n/source/sr/localize.sdf?rev=1571236r1=1571235r2=1571236view=diff
==
--- openoffice/trunk/extras/l10n/source/sr/localize.sdf (original)
+++ openoffice/trunk/extras/l10n/source/sr/localize.sdf Mon Feb 24 11:07:03 2014
@@ -1590,7 +1590,7 @@ officecfg registry\data\org\openoffice\O
 officecfg  registry\data\org\openoffice\Office\UI\CalcCommands.xcu 0   
value   ..CalcCommands.UserInterface.Commands..uno:DataFilterHideAutoFilter 
Label   0   sr  ~Сакриј аутоматски 
филтер 20130618 17:22:18
 officecfg  registry\data\org\openoffice\Office\UI\CalcCommands.xcu 0   
value   ..CalcCommands.UserInterface.Commands..uno:DataFilterRemoveFilter   
Label   0   sr  ~Уклони филтер  
20130618 17:22:18
 officecfg  registry\data\org\openoffice\Office\UI\CalcCommands.xcu 0   
value   ..CalcCommands.UserInterface.Commands..uno:DataFilterSpecialFilter  
Label   0   sr  ~Напредни филтер...   
20130618 17:22:18
-officecfg  registry\data\org\openoffice\Office\UI\CalcCommands.xcu 0   
value   ..CalcCommands.UserInterface.Commands..uno:DataFilterStandardFilter 
Label   0   sr  ~Уобичајени филтер...   
20130618 17:22:18
+officecfg  registry\data\org\openoffice\Office\UI\CalcCommands.xcu 0   
value   ..CalcCommands.UserInterface.Commands..uno:DataFilterStandardFilter 
Label   0   sr  ~Стандардни филтер...   
20130618 17:22:18
 officecfg  registry\data\org\openoffice\Office\UI\CalcCommands.xcu 0   
value   ..CalcCommands.UserInterface.Commands..uno:DataImport   Label   
0   sr  Увези податке   
20130618 17:22:18
 officecfg  registry\data\org\openoffice\Office\UI\CalcCommands.xcu 0   
value   ..CalcCommands.UserInterface.Commands..uno:DataPilotFilter  Label   
0   sr  Филтер пивот табеле
20130618 17:22:18
 officecfg  registry\data\org\openoffice\Office\UI\CalcCommands.xcu 0   
value   ..CalcCommands.UserInterface.Commands..uno:DataReImport Label   
0   sr  Освежи увоз података  
20130618 17:22:18
@@ -2964,7 +2964,7 @@ officecfg registry\data\org\openoffice\O
 officecfg  registry\data\org\openoffice\Office\UI\GenericCommands.xcu  
0   value   ..GenericCommands.UserInterface.Commands..uno:FillStyle Label   
0   sr  Стил подручја / 
попуњавање20130618 17:22:18
 officecfg  registry\data\org\openoffice\Office\UI\GenericCommands.xcu  
0   value   
..GenericCommands.UserInterface.Commands..uno:FillFloatTransparence Label   
0   sr  Провидност преливa  
20130618 17:22:18
 officecfg  registry\data\org\openoffice\Office\UI\GenericCommands.xcu  
0   value   ..GenericCommands.UserInterface.Commands..uno:FillTransparence  
Label   0   sr  Испуни провидношћу 
20130618 17:22:18
-officecfg  registry\data\org\openoffice\Office\UI\GenericCommands.xcu  
0   value   ..GenericCommands.UserInterface.Commands..uno:FilterCrit
Label   0   sr  Уобичајени филтер...
20130618 17:22:18
+officecfg  registry\data\org\openoffice\Office\UI\GenericCommands.xcu  
0   value   ..GenericCommands.UserInterface.Commands..uno:FilterCrit
Label   0   sr  Стандардни филтер...
20130618 17:22:18
 officecfg  registry\data\org\openoffice\Office\UI\GenericCommands.xcu  
0   value   ..GenericCommands.UserInterface.Commands..uno:FindText  Label   
0   sr  Пронађи текст   
20130618 17:22:18
 officecfg  registry\data\org\openoffice\Office\UI\GenericCommands.xcu  
0   value   ..GenericCommands.UserInterface.Commands..uno:FirstRecord   
Label   0   sr  Први запис 
20130618 17:22:18
 officecfg 

svn commit: r1571237 [1/2] - /openoffice/trunk/extras/l10n/source/tr/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 11:07:35 2014
New Revision: 1571237

URL: http://svn.apache.org/r1571237
Log:
#124195# merge Turkish translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/tr/localize.sdf



svn commit: r1571238 - /openoffice/trunk/extras/l10n/source/de/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 11:08:15 2014
New Revision: 1571238

URL: http://svn.apache.org/r1571238
Log:
#123821# merge German translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/de/localize.sdf

Modified: openoffice/trunk/extras/l10n/source/de/localize.sdf
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/extras/l10n/source/de/localize.sdf?rev=1571238r1=1571237r2=1571238view=diff
==
--- openoffice/trunk/extras/l10n/source/de/localize.sdf (original)
+++ openoffice/trunk/extras/l10n/source/de/localize.sdf Mon Feb 24 11:08:15 2014
@@ -10822,7 +10822,7 @@ cui source\options\optjava.src  0   errorbo
 cuisource\options\optjava.src  0   warningbox  
RID_SVX_MSGBOX_JAVA_RESTART 240 de  Damit 
die ausgewählte Java-Laufzeitumgebung richtig funktioniert, muss %PRODUCTNAME 
neu gestartet werden.\n Bitte starten Sie %PRODUCTNAME neu. 
   20130618 17:22:18
 cuisource\options\optjava.src  0   warningbox  
RID_SVX_MSGBOX_JAVA_RESTART2240 de  Damit 
die geänderten Werte benutzt werden, muss %PRODUCTNAME neu gestartet werden.\n 
Bitte starten Sie %PRODUCTNAME neu.   20130618 
17:22:18
 cuisource\options\optjsearch.src   0   fixedline   
RID_SVXPAGE_JSEARCH_OPTIONS FL_TREAT_AS_EQUAL   248 
de  Gleichwertig behandeln  20130618 17:22:18
-cuisource\options\optjsearch.src   0   checkbox
RID_SVXPAGE_JSEARCH_OPTIONS CB_MATCH_CASE   118 de  
Groß-/Kleinschreibung  20130618 17:22:18
+cuisource\options\optjsearch.src   0   checkbox
RID_SVXPAGE_JSEARCH_OPTIONS CB_MATCH_CASE   118 de  
~Groß-/Kleinschreibung 20130618 17:22:18
 cuisource\options\optjsearch.src   0   checkbox
RID_SVXPAGE_JSEARCH_OPTIONS CB_MATCH_FULL_HALF_WIDTH
118 de  ~Normale/halbbreite Formen  
20130618 17:22:18
 cuisource\options\optjsearch.src   0   checkbox
RID_SVXPAGE_JSEARCH_OPTIONS CB_MATCH_HIRAGANA_KATAKANA  
118 de  ~Hiragana/Katakana  20130618 
17:22:18
 cuisource\options\optjsearch.src   0   checkbox
RID_SVXPAGE_JSEARCH_OPTIONS CB_MATCH_CONTRACTIONS   118 
de  ~Kontraktionen (yo-on, sokuon)  20130618 
17:22:18
@@ -48772,40 +48772,40 @@ helpcontent2  source\text\shared\guide\sc
 helpcontent2   source\text\shared\guide\scripting.xhp  0   help
par_idN10B7F0   de  Klicken Sie mit der 
rechten Maustaste auf das Steuerelement und wählen Sie 
\emph\Eigenschaften\/emph\. 20130618 17:22:18
 helpcontent2   source\text\shared\guide\scripting.xhp  0   help
par_idN10B870   de  Klicken Sie im Dialog 
\emph\Eigenschaften\/emph\ auf das Register \emph\Ereignisse\/emph\.
  20130618 17:22:18
 helpcontent2   source\text\shared\guide\scripting.xhp  0   help
par_idN10B8B0   de  Klicken Sie auf eine 
der Schaltflächen \emph\...\/emph\. Dadurch wird ein Dialog geöffnet, mit 
dem Sie dem ausgewählten Ereignis ein Skript zuweisen können. 
   20130618 17:22:18
-helpcontent2   source\text\shared\guide\sidebar_window.xhp 0   help
tit 0   de  Symbolleisten Fenster   
20130618 17:22:18
-helpcontent2   source\text\shared\guide\sidebar_window.xhp 0   help
bm_id0010   0   de   
\bookmark_value\Randfenster\/bookmark_value\   
20130618 17:22:18
-helpcontent2   source\text\shared\guide\sidebar_window.xhp 0   help
hd_id0100   0   de  Randfenster 
20130618 17:22:18
-helpcontent2   source\text\shared\guide\sidebar_window.xhp 0   help
par_id0001  0   de \ahelp 
hid=\SFX2_HID_SIDEBAR_WINDOW\\Die Randleiste bietet oft genutzte Werkzeuge, 
gruppiert in Abschnitte. Klicken Sie auf einen Reiter in der vertikalen 
Reiterleiste, um den Abschnitt auszuwählen.\/ahelp\  
  20130618 17:22:18
-helpcontent2   source\text\shared\guide\sidebar_window.xhp 0   help
hd_id0200   0   de  Tabellenleiste  
20130618 17:22:18
+helpcontent2   source\text\shared\guide\sidebar_window.xhp 0   help
tit 

svn commit: r1571240 - /openoffice/trunk/extras/l10n/source/es/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 11:08:52 2014
New Revision: 1571240

URL: http://svn.apache.org/r1571240
Log:
#124194# merge Spanish translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/es/localize.sdf

Modified: openoffice/trunk/extras/l10n/source/es/localize.sdf
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/extras/l10n/source/es/localize.sdf?rev=1571240r1=1571239r2=1571240view=diff
==
--- openoffice/trunk/extras/l10n/source/es/localize.sdf (original)
+++ openoffice/trunk/extras/l10n/source/es/localize.sdf Mon Feb 24 11:08:52 2014
@@ -13725,10 +13725,10 @@ swext mediawiki\src\registry\data\org\op
 swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_EditSetting_UsernameLabel   
0   es  Nombre de ~usuario  
20130618 17:22:18
 swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_EditSetting_PasswordLabel   
0   es  ~Contraseña20130618 
17:22:18
 swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_SendTitle   0   
es  Enviar a MediaWiki  20130618 17:22:18
-swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_WikiArticle 0   
es  Articulo del wiki   20130618 17:22:18
+swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_WikiArticle 0   
es  Artículo del wiki  20130618 17:22:18
 swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_No  0   es  
No  20130618 17:22:18
-swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_OK  0   es  
OK  20130618 17:22:18
-swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_Yes 0   es  
Si  20130618 17:22:18
+swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_OK  0   es  
Aceptar 20130618 17:22:18
+swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_Yes 0   es  
Sí 20130618 17:22:18
 swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_AddButton   0   
es  ~Agregar... 20130618 17:22:18
 swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_EditButton  0   
es  ~Editar...  20130618 17:22:18
 swext  
mediawiki\src\registry\data\org\openoffice\Office\Custom\WikiExtension.xcu  
0   value   .WikiExtension.Strings  Dlg_SendButton  0   
es  ~Enviar 20130618 17:22:18
@@ -15473,7 +15473,7 @@ uui source\trylater.src 0   string  STR_TRY
 uuisource\trylater.src 0   string  STR_TRYLATER_SAVEAS_BTN 
0   es  ~Guardar como...
20130618 17:22:18
 uuisource\unknownauthdlg.src   0   pushbutton  
DLG_UUI_UNKNOWNAUTH PB_VIEW__CERTIFICATE70  es  
Examinando el Certificado...20130618 17:22:18
 uuisource\unknownauthdlg.src   0   helpbutton  
DLG_UUI_UNKNOWNAUTH PB_HELP 0   es  Ayuda   
20130618 17:22:18
-uuisource\unknownauthdlg.src   0   pushbutton  
DLG_UUI_UNKNOWNAUTH PB_OK   0   es  OK  
20130618 17:22:18
+uuisource\unknownauthdlg.src   0   pushbutton  
DLG_UUI_UNKNOWNAUTH PB_OK   0   es  Aceptar 
20130618 17:22:18
 uuisource\unknownauthdlg.src   0   radiobutton 
DLG_UUI_UNKNOWNAUTH RB_ACCEPT_1 182 es  Aceptar 
temporalmente este certificado para esta sesión 

svn commit: r1571241 - /openoffice/trunk/extras/l10n/source/nl/localize.sdf

2014-02-24 Thread jsc
Author: jsc
Date: Mon Feb 24 11:09:44 2014
New Revision: 1571241

URL: http://svn.apache.org/r1571241
Log:
#124120# merge Dutch translation update for AOO 4.1

Modified:
openoffice/trunk/extras/l10n/source/nl/localize.sdf

Modified: openoffice/trunk/extras/l10n/source/nl/localize.sdf
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/extras/l10n/source/nl/localize.sdf?rev=1571241r1=1571240r2=1571241view=diff
==
--- openoffice/trunk/extras/l10n/source/nl/localize.sdf (original)
+++ openoffice/trunk/extras/l10n/source/nl/localize.sdf Mon Feb 24 11:09:44 2014
@@ -6348,7 +6348,7 @@ scsource\ui\src\globstr.src   0   string  
RI
 sc source\ui\src\globstr.src   0   string  RID_GLOBSTR 
STR_HF_NONE_IN_BRACKETS 0   nl  (geen)  
20130618 17:22:18
 sc source\ui\src\globstr.src   0   string  RID_GLOBSTR 
STR_HF_OF   0   nl  van 
20130618 17:22:18
 sc source\ui\src\globstr.src   0   string  RID_GLOBSTR 
STR_HF_OF_QUESTION  0   nl  van ?   
20130618 17:22:18
-sc source\ui\src\globstr.src   0   string  RID_GLOBSTR 
STR_HF_CREATED_BY   0   nl  Gemaakt met 
20130618 17:22:18
+sc source\ui\src\globstr.src   0   string  RID_GLOBSTR 
STR_HF_CREATED_BY   0   nl  Gemaakt door
20130618 17:22:18
 sc source\ui\src\globstr.src   0   string  RID_GLOBSTR 
STR_HF_CONFIDENTIAL 0   nl  Vertrouwelijk   
20130618 17:22:18
 sc source\ui\src\globstr.src   0   string  RID_GLOBSTR 
STR_HF_CUSTOMIZED   0   nl  Aangepast   
20130618 17:22:18
 sc source\ui\src\globstr.src   0   string  RID_GLOBSTR 
STR_HF_CUSTOM_FOOTER0   nl  Aangepaste voettekst
20130618 17:22:18




svn propchange: r1571205 - svn:log

2014-02-24 Thread hdu
Author: hdu
Revision: 1571205
Modified property: svn:log

Modified: svn:log at Mon Feb 24 11:58:21 2014
--
--- svn:log (original)
+++ svn:log Mon Feb 24 11:58:21 2014
@@ -1,6 +1,6 @@
-#i119006# delay AOO/Mac initial event until the app has finished lauching
+#i119006# delay AOO/Mac initial event until the app has finished launching
 
 delaying the initial event prevents complaints from OSX=10.7's windows 
restore
-feature to recur infinitely. Apparently OSX cleans things up for us just before
-we get the applicationDidFinishLaunching() callback. This should solve one of 
the
-most popular support questions for AOO on Mac for good.
+feature from recurring infinitely. Apparently OSX cleans things up for us just
+before we get the applicationDidFinishLaunching() callback. This should solve
+one of the most popular support questions for AOO on Mac for good.



svn propchange: r1571189 - svn:log

2014-02-24 Thread hdu
Author: hdu
Revision: 1571189
Modified property: svn:log

Modified: svn:log at Mon Feb 24 13:18:54 2014
--
--- svn:log (original)
+++ svn:log Mon Feb 24 13:18:54 2014
@@ -1 +1 @@
-#i123840# prefer NSZero* constants over open coded altetnatives
+#i123840# prefer NSZero* constants over open coded alternatives



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

2014-02-24 Thread robweir
Author: robweir
Date: Mon Feb 24 14:28:24 2014
New Revision: 1571296

URL: http://svn.apache.org/r1571296
Log:
add link to latest blog post

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

Modified: openoffice/ooo-site/trunk/content/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/index.html?rev=1571296r1=1571295r2=1571296view=diff
==
--- openoffice/ooo-site/trunk/content/index.html (original)
+++ openoffice/ooo-site/trunk/content/index.html Mon Feb 24 14:28:24 2014
@@ -144,7 +144,8 @@ Apache OpenOffice/h1
  div class=campaign
 h2Recent Blog Posts/h2
   p
- 
+ em24 February:/embr /a 
href=https://blogs.apache.org/OOo/entry/international_mother_language_day_2014;
+International Mother Language Day 2014/abr/  
  em31 December:/embr /a 
href=https://blogs.apache.org/OOo/entry/apache_openoffice_in_2013_a;
 Apache OpenOffice in 2013: a year in review/abr/
  em15 November:/embr /a 
href=https://blogs.apache.org/OOo/entry/apache_openoffice_4_1_to;




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

2014-02-24 Thread buildbot
Author: buildbot
Date: Mon Feb 24 14:30:19 2014
New Revision: 899035

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 14:30:19 2014
@@ -1 +1 @@
-1571296
+1571297

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 14:30:19 2014
@@ -1 +1 @@
-1571296
+1571297

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 Feb 24 14:30:19 2014
@@ -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/IMLD_OO.png//a/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;
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=https://blogs.apache.org/OOo/entry/international_mother_language_day_2014;
 title=Read the announcement textWe celebrate International Mother Language 
Day/a/div
+  div id=announcea href=https://twitter.com/apacheoo; title=Read the 
announcement textFollow us on Twitter: @ApacheOO/a/div




svn commit: r1571297 - /openoffice/ooo-site/trunk/content/brand.mdtext

2014-02-24 Thread robweir
Author: robweir
Date: Mon Feb 24 14:29:42 2014
New Revision: 1571297

URL: http://svn.apache.org/r1571297
Log:
restore standard logo

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

Modified: openoffice/ooo-site/trunk/content/brand.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/brand.mdtext?rev=1571297r1=1571296r2=1571297view=diff
==
--- openoffice/ooo-site/trunk/content/brand.mdtext (original)
+++ openoffice/ooo-site/trunk/content/brand.mdtext Mon Feb 24 14:29:42 2014
@@ -2,10 +2,10 @@ home: home
 search:search
 name:  Apache OpenOffice
 tagline:   The Free and Open Productivity Suite
-logo:  AOO_logos/IMLD_OO.png
+logo:  AOO_logos/AOO4_website_logo.png
 domain:www.openoffice.org
 divid: bannera
-announce:  We celebrate International Mother Language Day
-announceurl:   
https://blogs.apache.org/OOo/entry/international_mother_language_day_2014
+announce:  Follow us on Twitter: @ApacheOO
+announceurl:   https://twitter.com/apacheoo
 announcetip:   Read the announcement text
 




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

2014-02-24 Thread buildbot
Author: buildbot
Date: Mon Feb 24 14:29:46 2014
New Revision: 899034

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 Feb 24 14:29:46 2014
@@ -1 +1 @@
-1570398
+1571296

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 14:29:46 2014
@@ -1 +1 @@
-1570398
+1571296

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 Feb 24 14:29:46 2014
@@ -160,7 +160,8 @@ Apache OpenOffice/h1
  div class=campaign
 h2Recent Blog Posts/h2
   p
- 
+ em24 February:/embr /a 
href=https://blogs.apache.org/OOo/entry/international_mother_language_day_2014;
+International Mother Language Day 2014/abr/  
  em31 December:/embr /a 
href=https://blogs.apache.org/OOo/entry/apache_openoffice_in_2013_a;
 Apache OpenOffice in 2013: a year in review/abr/
  em15 November:/embr /a 
href=https://blogs.apache.org/OOo/entry/apache_openoffice_4_1_to;




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

2014-02-24 Thread robweir
Author: robweir
Date: Mon Feb 24 14:31:07 2014
New Revision: 899036

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

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



buildbot success in ASF Buildbot on aoo-w7snap

2014-02-24 Thread buildbot
Hi! , The aoo-w7snap builder has just completed a run

STATUS: Success

 Build revision 1566593 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/118

 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: r1571333 - /openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java

2014-02-24 Thread hdu
Author: hdu
Date: Mon Feb 24 16:23:12 2014
New Revision: 1571333

URL: http://svn.apache.org/r1571333
Log:
#i124304# fix fvt.gui.sw.table.TableGeneral for the new colorpicker

Modified:
openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java

Modified: 
openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java?rev=1571333r1=1571332r2=1571333view=diff
==
--- openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java 
(original)
+++ openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java Mon 
Feb 24 16:23:12 2014
@@ -156,7 +156,8 @@ public class TableGeneral {
// set line style
swTableBorderLineStyle.select(8);
// set line color
-   swTableBorderLineColor.select(5);
+   final int nMagentaIndex = 16; // for AOO's colorpicker as of 
#i118828#
+   swTableBorderLineColor.select( nMagentaIndex);
// set spacing to content
swTableSTCLeft.focus();
typeKeys(ctrl a);
@@ -169,20 +170,20 @@ public class TableGeneral {
typeKeys(ctrl a);
typeKeys(delete);
typeKeys(2);
-   swTableShadowColor.select(5);
+   swTableShadowColor.select( nMagentaIndex);
swTableBorder.ok();
// verify the setting property of table
writer.focus();
app.dispatch(.uno:TableDialog);
swTableBorder.select();
assertEquals(2.60 pt, swTableBorderLineStyle.getItemText(8));
-   assertEquals(Magenta, swTableBorderLineColor.getItemText(5));
+   assertEquals(Magenta, swTableBorderLineColor.getItemText( 
nMagentaIndex));
assertEquals(0.50\, swTableSTCLeft.getText());
assertEquals(0.50\, swTableSTCRight.getText());
assertEquals(0.50\, swTableSTCTop.getText());
assertEquals(0.50\, swTableSTCBottom.getText());
assertEquals(1.97\, swTableShadowSize.getText());
-   assertEquals(Magenta, swTableShadowColor.getItemText(5));
+   assertEquals(Magenta, swTableShadowColor.getItemText( 
nMagentaIndex));
assertTrue(SWTableSTC_SYNC, swTableSTCSYNC.isChecked());
swTableBorder.close();
 




svn commit: r1571340 - /openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java

2014-02-24 Thread hdu
Author: hdu
Date: Mon Feb 24 16:33:47 2014
New Revision: 1571340

URL: http://svn.apache.org/r1571340
Log:
#i124304# adjust fvt.gui.sw.table.TableGeneral for space-before-unit changes

with the fixes for #i56998# a space gets added before unit symbols, so the
measurement text is changed and the autotest is adapted now too

Modified:
openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java

Modified: 
openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java?rev=1571340r1=1571339r2=1571340view=diff
==
--- openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java 
(original)
+++ openoffice/trunk/test/testgui/source/fvt/gui/sw/table/TableGeneral.java Mon 
Feb 24 16:33:47 2014
@@ -178,11 +178,11 @@ public class TableGeneral {
swTableBorder.select();
assertEquals(2.60 pt, swTableBorderLineStyle.getItemText(8));
assertEquals(Magenta, swTableBorderLineColor.getItemText( 
nMagentaIndex));
-   assertEquals(0.50\, swTableSTCLeft.getText());
-   assertEquals(0.50\, swTableSTCRight.getText());
-   assertEquals(0.50\, swTableSTCTop.getText());
-   assertEquals(0.50\, swTableSTCBottom.getText());
-   assertEquals(1.97\, swTableShadowSize.getText());
+   assertEquals(0.50 \, swTableSTCLeft.getText());
+   assertEquals(0.50 \, swTableSTCRight.getText());
+   assertEquals(0.50 \, swTableSTCTop.getText());
+   assertEquals(0.50 \, swTableSTCBottom.getText());
+   assertEquals(1.97 \, swTableShadowSize.getText());
assertEquals(Magenta, swTableShadowColor.getItemText( 
nMagentaIndex));
assertTrue(SWTableSTC_SYNC, swTableSTCSYNC.isChecked());
swTableBorder.close();
@@ -219,10 +219,10 @@ public class TableGeneral {
// verify the setting value of spacing to content for table
app.dispatch(.uno:TableDialog);
swTableBorder.select();
-   assertEquals(0.50\, swTableSTCLeft.getText());
-   assertEquals(0.80\, swTableSTCRight.getText());
-   assertEquals(1.00\, swTableSTCTop.getText());
-   assertEquals(1.97\, swTableSTCBottom.getText());
+   assertEquals(0.50 \, swTableSTCLeft.getText());
+   assertEquals(0.80 \, swTableSTCRight.getText());
+   assertEquals(1.00 \, swTableSTCTop.getText());
+   assertEquals(1.97 \, swTableSTCBottom.getText());
assertFalse(SWTableSTC_SYNC, swTableSTCSYNC.isChecked());
swTableBorder.close();
}
@@ -274,7 +274,7 @@ public class TableGeneral {
writer.openContextMenu();
swTableRowHeightMenu.select();
assertTrue(swTableSetRowHeightDialog.exists());
-   assertEquals(0.50\, swTableSetRowHeight.getText());
+   assertEquals(0.50 \, swTableSetRowHeight.getText());
swTableSetRowHeightDialog.close();
}
 
@@ -378,7 +378,7 @@ public class TableGeneral {
writer.focus();
writer.openContextMenu();
swTableColumnWidthMenu.select();
-   assertEquals(2.00\, swTableSetColumnWidth.getText());
+   assertEquals(2.00 \, swTableSetColumnWidth.getText());
 
}
 




svn commit: r1571353 - /openoffice/trunk/test/testgui/source/fvt/gui/sd/table/TableFontEffectsProperty.java

2014-02-24 Thread hdu
Author: hdu
Date: Mon Feb 24 17:06:30 2014
New Revision: 1571353

URL: http://svn.apache.org/r1571353
Log:
#i124305# adjust fvt.gui.sd.table.TableFontEffectsProperty to the standard 
color-palette

which was changed for #i121520#. The color black was moved from index 1 to 
index 12.

Modified:

openoffice/trunk/test/testgui/source/fvt/gui/sd/table/TableFontEffectsProperty.java

Modified: 
openoffice/trunk/test/testgui/source/fvt/gui/sd/table/TableFontEffectsProperty.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/test/testgui/source/fvt/gui/sd/table/TableFontEffectsProperty.java?rev=1571353r1=1571352r2=1571353view=diff
==
--- 
openoffice/trunk/test/testgui/source/fvt/gui/sd/table/TableFontEffectsProperty.java
 (original)
+++ 
openoffice/trunk/test/testgui/source/fvt/gui/sd/table/TableFontEffectsProperty.java
 Mon Feb 24 17:06:30 2014
@@ -70,7 +70,8 @@ public class TableFontEffectsProperty {
app.dispatch(.uno:TableDialog, 3);
effectsPage.select();
// select Font color
-   effectsPageColor.select(1);
+   final int nBlackIndex = 12; // according to standard.soc as of 
#i121520#
+   effectsPageColor.select( nBlackIndex);
assertEquals(EffectsPage_Color isn't black, 
effectsPageColor.getSelText(), Black);
 
// select Relief




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

2014-02-24 Thread marcus
Author: marcus
Date: Mon Feb 24 20:20:34 2014
New Revision: 1571425

URL: http://svn.apache.org/r1571425
Log:
Fixed possible error for 'div' tags and CSS styles

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

Modified: openoffice/ooo-site/trunk/content/download/test/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/index.html?rev=1571425r1=1571424r2=1571425view=diff
==
--- openoffice/ooo-site/trunk/content/download/test/index.html (original)
+++ openoffice/ooo-site/trunk/content/download/test/index.html Mon Feb 24 
20:20:34 2014
@@ -56,13 +56,12 @@ screen reader. --
   // Get the download URL for released install files (0 = release mode)
   var LINK= getLink(0);
 
-  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-  + LINK + '); + return false;\ );
-
   if ( hasMirrorLink() ) {
 if ( SOURCEFORGE ) {
   // If download URL contains sourceforge (- normal and correct 
download link),
   // then download from Sourceforge with displayed platform and language.
+  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
+  + LINK + '); + return false;\ );
   document.write( h2a href=' + LINK + ' title='Version  + VERSION + 
 | Milestone  + MILESTONE
   +  | Build ID  + BUILD +  | SVN  + SVN_REV +  | Released:  + 
REL_DATE + '
   + Download Apache OpenOffice  + VERSION + /a/h2
@@ -81,6 +80,8 @@ screen reader. --
 } else if ( ARCHIVE ) {
   // If download URL contains archive (- platform/OS is no longer 
supported),
   // then provide a download link to the previous version.
+  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
+  + LINK + '); + return false;\ );
   document.write( h2a href=' + LINK + ' title=' + LINK + '
   + Download Apache OpenOffice/a/h2
   + pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  + 
VERSION +  for 
@@ -89,6 +90,8 @@ screen reader. --
 }
   } else {
 // If browser language do not match with AOO languages, then download from 
an alternative webpage.
+document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
++ LINK + '); + return false;\ );
 document.write( h2a href=' + LANG_ARRAY[ 4 ] + ' title=' + 
LANG_ARRAY[ 4 ] + '
 + Download Apache OpenOffice/a/h2
 + pa href=' + LANG_ARRAY[ 4 ] + ' title=' + LANG_ARRAY[ 4 ] + 
'Apache OpenOffice  + VERSION +  for 
@@ -159,12 +162,11 @@ screen reader. --
 // Get the download URL for Beta releases (0 = beta mode)
 var LINK= getLink(1);
 
-// If a Beta Release is available for download, then download from 
Sourceforge with displayed platform and language.
-document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
-+ LINK + ') return false;\ );
-
 if ( hasMirrorLink() ) {
   if ( SOURCEFORGE ) {
+// If a Beta Release is available for download, then download from 
Sourceforge with displayed platform and language.
+document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
++ LINK + ') return false;\ );
 document.write( h2a href=' + LINK + ' title='Version  + 
BETA_NAME +  | Milestone  + BETA_MILESTONE
 +  | Build ID  + BETA_BUILD +  | SVN  + BETA_SVN_REV +  | 
Released:  + BETA_REL_DATE + '
 + Download Apache OpenOffice  + BETA_NAME + /a/h2
@@ -179,6 +181,8 @@ screen reader. --
 // then use all_beta.html as download link.
 LINK = http://www.openoffice.org/download/test/all_beta.html;;
 
+document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
++ LINK + ') return false;\ );
 document.write( h2a href=' + LINK + ' title=' + LINK + '
 + Download Apache OpenOffice  + BETA_NAME + /a/h2
 + pa href=' + LINK + ' title=' + LINK + 'The Beta release is 
not available for:br /
@@ -189,6 +193,8 @@ screen reader. --
   // If browser language do not match with AOO languages, then download 
from an alternative webpage.
   LINK = http://www.openoffice.org/download/test/all_beta.html;;
 
+  document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
+  + LINK + ') return false;\ );
   document.write( h2a href=' + LINK + ' title=' + LINK + '
   + Download Apache OpenOffice  + BETA_NAME + /a/h2
   + pa href=' + LINK + ' title=' + LINK + 'The Beta release is 
not available for:br /




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

2014-02-24 Thread buildbot
Author: buildbot
Date: Mon Feb 24 20:21:51 2014
New Revision: 899062

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 20:21:51 2014
@@ -1 +1 @@
-1571297
+1571425

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 20:21:51 2014
@@ -1 +1 @@
-1571297
+1571425

Modified: websites/staging/ooo-site/trunk/content/download/test/index.html
==
--- websites/staging/ooo-site/trunk/content/download/test/index.html (original)
+++ websites/staging/ooo-site/trunk/content/download/test/index.html Mon Feb 24 
20:21:51 2014
@@ -72,13 +72,12 @@ screen reader. --
   // Get the download URL for released install files (0 = release mode)
   var LINK= getLink(0);
 
-  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-  + LINK + '); + return false;\ );
-
   if ( hasMirrorLink() ) {
 if ( SOURCEFORGE ) {
   // If download URL contains sourceforge (- normal and correct 
download link),
   // then download from Sourceforge with displayed platform and language.
+  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
+  + LINK + '); + return false;\ );
   document.write( h2a href=' + LINK + ' title='Version  + VERSION + 
 | Milestone  + MILESTONE
   +  | Build ID  + BUILD +  | SVN  + SVN_REV +  | Released:  + 
REL_DATE + '
   + Download Apache OpenOffice  + VERSION + /a/h2
@@ -97,6 +96,8 @@ screen reader. --
 } else if ( ARCHIVE ) {
   // If download URL contains archive (- platform/OS is no longer 
supported),
   // then provide a download link to the previous version.
+  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
+  + LINK + '); + return false;\ );
   document.write( h2a href=' + LINK + ' title=' + LINK + '
   + Download Apache OpenOffice/a/h2
   + pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  + 
VERSION +  for 
@@ -105,6 +106,8 @@ screen reader. --
 }
   } else {
 // If browser language do not match with AOO languages, then download from 
an alternative webpage.
+document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
++ LINK + '); + return false;\ );
 document.write( h2a href=' + LANG_ARRAY[ 4 ] + ' title=' + 
LANG_ARRAY[ 4 ] + '
 + Download Apache OpenOffice/a/h2
 + pa href=' + LANG_ARRAY[ 4 ] + ' title=' + LANG_ARRAY[ 4 ] + 
'Apache OpenOffice  + VERSION +  for 
@@ -175,12 +178,11 @@ screen reader. --
 // Get the download URL for Beta releases (0 = beta mode)
 var LINK= getLink(1);
 
-// If a Beta Release is available for download, then download from 
Sourceforge with displayed platform and language.
-document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
-+ LINK + ') return false;\ );
-
 if ( hasMirrorLink() ) {
   if ( SOURCEFORGE ) {
+// If a Beta Release is available for download, then download from 
Sourceforge with displayed platform and language.
+document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
++ LINK + ') return false;\ );
 document.write( h2a href=' + LINK + ' title='Version  + 
BETA_NAME +  | Milestone  + BETA_MILESTONE
 +  | Build ID  + BETA_BUILD +  | SVN  + BETA_SVN_REV +  | 
Released:  + BETA_REL_DATE + '
 + Download Apache OpenOffice  + BETA_NAME + /a/h2
@@ -195,6 +197,8 @@ screen reader. --
 // then use all_beta.html as download link.
 LINK = http://www.openoffice.org/download/test/all_beta.html;;
 
+document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
++ LINK + ') return false;\ );
 document.write( h2a href=' + LINK + ' title=' + LINK + '
 + Download Apache OpenOffice  + BETA_NAME + /a/h2
 + pa href=' + LINK + ' title=' + LINK + 'The Beta release is 
not available for:br /
@@ -205,6 +209,8 @@ screen reader. --
   // If browser language do not match with AOO languages, then download 
from an alternative webpage.
   LINK = http://www.openoffice.org/download/test/all_beta.html;;
 
+  document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
+  + LINK + ') return false;\ );
   

svn commit: r1571426 - /openoffice/trunk/main/oox/source/core/xmlfilterbase.cxx

2014-02-24 Thread alg
Author: alg
Date: Mon Feb 24 20:25:26 2014
New Revision: 1571426

URL: http://svn.apache.org/r1571426
Log:
i118640 force early destruction of last FragmentHandler to not let it use an 
already destroyed RelationsMap instance

Modified:
openoffice/trunk/main/oox/source/core/xmlfilterbase.cxx

Modified: openoffice/trunk/main/oox/source/core/xmlfilterbase.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/oox/source/core/xmlfilterbase.cxx?rev=1571426r1=1571425r2=1571426view=diff
==
--- openoffice/trunk/main/oox/source/core/xmlfilterbase.cxx (original)
+++ openoffice/trunk/main/oox/source/core/xmlfilterbase.cxx Mon Feb 24 20:25:26 
2014
@@ -87,6 +87,7 @@ struct XmlFilterBaseImpl
 TextFieldStack  maTextFieldStack;
 
 explicitXmlFilterBaseImpl( const Reference XComponentContext 
 rxContext ) throw( RuntimeException );
+~XmlFilterBaseImpl();
 };
 
 // 
@@ -121,6 +122,10 @@ XmlFilterBaseImpl::XmlFilterBaseImpl( co
 maFastParser.registerNamespace( NMSP_markupCompat );// i123528
 }
 
+XmlFilterBaseImpl::~XmlFilterBaseImpl()
+{
+}
+
 // 
 
 XmlFilterBase::XmlFilterBase( const Reference XComponentContext  rxContext 
) throw( RuntimeException ) :
@@ -133,6 +138,14 @@ XmlFilterBase::XmlFilterBase( const Refe
 
 XmlFilterBase::~XmlFilterBase()
 {
+// #118640# Reset the DocumentHandler at the FastSaxParser manually; this 
is
+// needed since the mechanism is that instances of FragmentHandler execute
+// their stuff (creating objects, setting attributes, ...) on being 
destroyed.
+// They get destroyed by setting a new DocumentHandler. This also happens 
in
+// the following implicit destruction chain of ~XmlFilterBaseImpl, but in 
that 
+// case it's member RelationsMap maRelationsMap will be destroyed, but 
maybe 
+// still be used by ~FragmentHandler - crash.
+mxImpl-maFastParser.setDocumentHandler( 0 );
 }
 
 // 




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

2014-02-24 Thread marcus
Author: marcus
Date: Mon Feb 24 20:29:07 2014
New Revision: 1571427

URL: http://svn.apache.org/r1571427
Log:
Fixed link

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

Modified: openoffice/ooo-site/trunk/content/download/test/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/index.html?rev=1571427r1=1571426r2=1571427view=diff
==
--- openoffice/ooo-site/trunk/content/download/test/index.html (original)
+++ openoffice/ooo-site/trunk/content/download/test/index.html Mon Feb 24 
20:29:07 2014
@@ -253,7 +253,7 @@ screen reader. --
   div class=sub-yellow
 pa href=all_beta.html title=Get all platforms, languages, language 
packs to download
 bGet all platforms, languages, language packs/b/a |
-a href=http://www.openoffice.org/development/releases/dev_index.html;
+a href=../../development/releases/dev_index.html
 title=What is new, what has been improved in Apache 
OpenOffice?bRelease Notes/b/a/p
   /div
   /noscript




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

2014-02-24 Thread buildbot
Author: buildbot
Date: Mon Feb 24 20:29:49 2014
New Revision: 899064

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 20:29:49 2014
@@ -1 +1 @@
-1571425
+1571427

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 20:29:49 2014
@@ -1 +1 @@
-1571425
+1571427

Modified: websites/staging/ooo-site/trunk/content/download/test/index.html
==
--- websites/staging/ooo-site/trunk/content/download/test/index.html (original)
+++ websites/staging/ooo-site/trunk/content/download/test/index.html Mon Feb 24 
20:29:49 2014
@@ -269,7 +269,7 @@ screen reader. --
   div class=sub-yellow
 pa href=all_beta.html title=Get all platforms, languages, language 
packs to download
 bGet all platforms, languages, language packs/b/a |
-a href=http://www.openoffice.org/development/releases/dev_index.html;
+a href=../../development/releases/dev_index.html
 title=What is new, what has been improved in Apache 
OpenOffice?bRelease Notes/b/a/p
   /div
   /noscript




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

2014-02-24 Thread marcus
Author: marcus
Date: Mon Feb 24 21:07:37 2014
New Revision: 1571439

URL: http://svn.apache.org/r1571439
Log:
Fixed possible error for 'div' tags and CSS styles

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

Modified: openoffice/ooo-site/trunk/content/download/test/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/index.html?rev=1571439r1=1571438r2=1571439view=diff
==
--- openoffice/ooo-site/trunk/content/download/test/index.html (original)
+++ openoffice/ooo-site/trunk/content/download/test/index.html Mon Feb 24 
21:07:37 2014
@@ -61,44 +61,49 @@ screen reader. --
   // If download URL contains sourceforge (- normal and correct 
download link),
   // then download from Sourceforge with displayed platform and language.
   document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-  + LINK + '); + return false;\ );
-  document.write( h2a href=' + LINK + ' title='Version  + VERSION + 
 | Milestone  + MILESTONE
-  +  | Build ID  + BUILD +  | SVN  + SVN_REV +  | Released:  + 
REL_DATE + '
-  + Download Apache OpenOffice  + VERSION + /a/h2
-  + pa href=' + LINK + ' title='Version  + VERSION +  | Milestone 
 + MILESTONE +  | Build ID  + BUILD
-  +  | SVN  + SVN_REV +  | Released:  + REL_DATE + 'Click here to 
download for:br /
-  + b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] + /b | ~ + 
FILESIZE + nbsp;MByte | Released:nbsp;
-  + REL_DATE + br //a/p );
++ LINK + '); + return false;\
++ h2a href=' + LINK + ' title='Version  + VERSION +  | 
Milestone  + MILESTONE
++  | Build ID  + BUILD +  | SVN  + SVN_REV +  | Released:  + 
REL_DATE + '
++ Download Apache OpenOffice  + VERSION + /a/h2
++ pa href=' + LINK + ' title='Version  + VERSION +  | 
Milestone  + MILESTONE +  | Build ID  + BUILD
++  | SVN  + SVN_REV +  | Released:  + REL_DATE + 'Click here to 
download for:br /
++ b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] + /b | ~ 
+ FILESIZE + nbsp;MByte | Released:nbsp;
++ REL_DATE + br //a/p
+  + /div );
 } else if ( OTHER ) {
   // If download URL contains other (- platform, OS or package manager 
was not recognized),
   // then use other.html as download link.
-  document.write( h2a href=' + LINK + ' title=' + LINK + '
-  + Download Apache OpenOffice/a/h2
-  + pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  + 
VERSION +  for 
-  + b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] +  ( + 
LANG_ARRAY[ 1 ] + )/b is not available. Click 
-  + here to choose from the alternative download webpage./a/p );
+  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
++ LINK + '); + return false;\
++ h2a href=' + LINK + ' title=' + LINK + '
++ Download Apache OpenOffice/a/h2
++ pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  
+ VERSION +  for 
++ b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] +  ( + 
LANG_ARRAY[ 1 ] + )/b is not available. Click 
++ here to choose from the alternative download webpage./a/p
+  + /div );
 } else if ( ARCHIVE ) {
   // If download URL contains archive (- platform/OS is no longer 
supported),
   // then provide a download link to the previous version.
   document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-  + LINK + '); + return false;\ );
-  document.write( h2a href=' + LINK + ' title=' + LINK + '
-  + Download Apache OpenOffice/a/h2
-  + pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  + 
VERSION +  for 
-  + b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] +  ( + 
LANG_ARRAY[ 1 ] + )/b is not available. Click 
-  + here for the previous version  + PRE_VERSION + ./a/p );
++ LINK + '); + return false;\
++ h2a href=' + LINK + ' title=' + LINK + '
++ Download Apache OpenOffice/a/h2
++ pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  
+ VERSION +  for 
++ b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] +  ( + 
LANG_ARRAY[ 1 ] + )/b is not available. Click 
++ here for the previous version  + PRE_VERSION + ./a/p
+  + /div );
 }
   } else {
 // If browser language do not match with AOO languages, then download from 
an alternative webpage.
 document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-+ LINK + '); + return false;\ );
-document.write( h2a href=' + LANG_ARRAY[ 4 ] + ' title=' + 
LANG_ARRAY[ 4 ] + '
-+ Download Apache OpenOffice/a/h2
-+ pa href=' + LANG_ARRAY[ 4 ] + ' title=' + LANG_ARRAY[ 4 ] + 
'Apache OpenOffice  + VERSION +  for 
-+ b + LANG_ARRAY[ 2 ] +  ( + LANG_ARRAY[ 1 ] + )/b is not 
available. Please choose another build 

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

2014-02-24 Thread buildbot
Author: buildbot
Date: Mon Feb 24 21:08:12 2014
New Revision: 899065

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 21:08:12 2014
@@ -1 +1 @@
-1571427
+1571439

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 21:08:12 2014
@@ -1 +1 @@
-1571427
+1571439

Modified: websites/staging/ooo-site/trunk/content/download/test/index.html
==
--- websites/staging/ooo-site/trunk/content/download/test/index.html (original)
+++ websites/staging/ooo-site/trunk/content/download/test/index.html Mon Feb 24 
21:08:12 2014
@@ -77,44 +77,49 @@ screen reader. --
   // If download URL contains sourceforge (- normal and correct 
download link),
   // then download from Sourceforge with displayed platform and language.
   document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-  + LINK + '); + return false;\ );
-  document.write( h2a href=' + LINK + ' title='Version  + VERSION + 
 | Milestone  + MILESTONE
-  +  | Build ID  + BUILD +  | SVN  + SVN_REV +  | Released:  + 
REL_DATE + '
-  + Download Apache OpenOffice  + VERSION + /a/h2
-  + pa href=' + LINK + ' title='Version  + VERSION +  | Milestone 
 + MILESTONE +  | Build ID  + BUILD
-  +  | SVN  + SVN_REV +  | Released:  + REL_DATE + 'Click here to 
download for:br /
-  + b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] + /b | ~ + 
FILESIZE + nbsp;MByte | Released:nbsp;
-  + REL_DATE + br //a/p );
++ LINK + '); + return false;\
++ h2a href=' + LINK + ' title='Version  + VERSION +  | 
Milestone  + MILESTONE
++  | Build ID  + BUILD +  | SVN  + SVN_REV +  | Released:  + 
REL_DATE + '
++ Download Apache OpenOffice  + VERSION + /a/h2
++ pa href=' + LINK + ' title='Version  + VERSION +  | 
Milestone  + MILESTONE +  | Build ID  + BUILD
++  | SVN  + SVN_REV +  | Released:  + REL_DATE + 'Click here to 
download for:br /
++ b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] + /b | ~ 
+ FILESIZE + nbsp;MByte | Released:nbsp;
++ REL_DATE + br //a/p
+  + /div );
 } else if ( OTHER ) {
   // If download URL contains other (- platform, OS or package manager 
was not recognized),
   // then use other.html as download link.
-  document.write( h2a href=' + LINK + ' title=' + LINK + '
-  + Download Apache OpenOffice/a/h2
-  + pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  + 
VERSION +  for 
-  + b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] +  ( + 
LANG_ARRAY[ 1 ] + )/b is not available. Click 
-  + here to choose from the alternative download webpage./a/p );
+  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
++ LINK + '); + return false;\
++ h2a href=' + LINK + ' title=' + LINK + '
++ Download Apache OpenOffice/a/h2
++ pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  
+ VERSION +  for 
++ b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] +  ( + 
LANG_ARRAY[ 1 ] + )/b is not available. Click 
++ here to choose from the alternative download webpage./a/p
+  + /div );
 } else if ( ARCHIVE ) {
   // If download URL contains archive (- platform/OS is no longer 
supported),
   // then provide a download link to the previous version.
   document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-  + LINK + '); + return false;\ );
-  document.write( h2a href=' + LINK + ' title=' + LINK + '
-  + Download Apache OpenOffice/a/h2
-  + pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  + 
VERSION +  for 
-  + b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] +  ( + 
LANG_ARRAY[ 1 ] + )/b is not available. Click 
-  + here for the previous version  + PRE_VERSION + ./a/p );
++ LINK + '); + return false;\
++ h2a href=' + LINK + ' title=' + LINK + '
++ Download Apache OpenOffice/a/h2
++ pa href=' + LINK + ' title=' + LINK + 'Apache OpenOffice  
+ VERSION +  for 
++ b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] +  ( + 
LANG_ARRAY[ 1 ] + )/b is not available. Click 
++ here for the previous version  + PRE_VERSION + ./a/p
+  + /div );
 }
   } else {
 // If browser language do not match with AOO languages, then download from 
an alternative webpage.
 

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

2014-02-24 Thread marcus
Author: marcus
Date: Mon Feb 24 21:09:48 2014
New Revision: 1571440

URL: http://svn.apache.org/r1571440
Log:
Fixed possible error for 'div' tags and CSS styles

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

Modified: openoffice/ooo-site/trunk/content/download/test/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/index.html?rev=1571440r1=1571439r2=1571440view=diff
==
--- openoffice/ooo-site/trunk/content/download/test/index.html (original)
+++ openoffice/ooo-site/trunk/content/download/test/index.html Mon Feb 24 
21:09:48 2014
@@ -55,7 +55,6 @@ screen reader. --
   var NL_LANGUAGE = ;
   // Get the download URL for released install files (0 = release mode)
   var LINK= getLink(0);
-
   if ( hasMirrorLink() ) {
 if ( SOURCEFORGE ) {
   // If download URL contains sourceforge (- normal and correct 
download link),
@@ -104,7 +103,6 @@ screen reader. --
   + alternative  + LANG_ARRAY[ 1 ] +  download webpage./a/p
 + /div );
   }
-
   // Show some helpful links for SDK, source, checksums, release notes, legacy 
version.
   document.write( div class=\sub-green\ );
   document.write( p );
@@ -132,7 +130,6 @@ screen reader. --
 + a href='../legacy/index.html' title='Get the legacy version of 
OpenOffice.org 
 + LEGACYVERSION + 'b + LEGACYVERSION + /b/a/p
   + /div );
-
   entourage.initialize();
   //--
   /script
@@ -166,7 +163,6 @@ screen reader. --
 var NL_LANGUAGE = ;
 // Get the download URL for Beta releases (0 = beta mode)
 var LINK= getLink(1);
-
 if ( hasMirrorLink() ) {
   if ( SOURCEFORGE ) {
 // If a Beta Release is available for download, then download from 
Sourceforge with displayed platform and language.
@@ -186,7 +182,6 @@ screen reader. --
 // If download URL contains other (- platform, OS or package 
manager was not recognized),
 // then use all_beta.html as download link.
 LINK = http://www.openoffice.org/download/test/all_beta.html;;
-
 document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
   + LINK + ') return false;\
   + h2a href=' + LINK + ' title=' + LINK + '
@@ -199,7 +194,6 @@ screen reader. --
 } else {
   // If browser language do not match with AOO languages, then download 
from an alternative webpage.
   LINK = http://www.openoffice.org/download/test/all_beta.html;;
-
   document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
 + LINK + ') return false;\
 + h2a href=' + LINK + ' title=' + LINK + '
@@ -209,7 +203,6 @@ screen reader. --
 + Click here to choose from the alternative download webpage./a/p
   + /div );
 }
-
 // Show some helpful links for SDK, source, checksums, release notes.
 document.write( div class=\sub-yellow\ );
 document.write( p );
@@ -227,21 +220,18 @@ screen reader. --
   + bGet all platforms, languages, language packs/b/a | 
   + a href='all_beta.html#source' title='Get the source code and SDK to 
download'Source code and SDK/a/p
 + /div );
-
 //  } else {
-
 // Yellow: Beta Release coming soon
 var ANN_LINK  = https://blogs.apache.org/OOo/;;
 var ANN_TITLE = Official blog of Apache OpenOffice;
-
 document.write( div class=\button yellow_wo_icon\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
-+ ANN_LINK + ') return false;\ );
-document.write( h2a href=' + ANN_LINK + ' title=' + ANN_TITLE + '
-+ Get Apache OpenOffice  + BETA_NAME + br /small(planned for:  + 
BETA_REL_DATE + )/small/a/h2
-+ pa href=' + ANN_LINK + ' title=' + ANN_TITLE + 'br /
-+ The Beta release is not yet available. Please make sure to come back on 
the release date to download and test the 
-+ new version./a/p );
-document.write( /div );
+  + ANN_LINK + ') return false;\
+  + h2a href=' + ANN_LINK + ' title=' + ANN_TITLE + '
+  + Get Apache OpenOffice  + BETA_NAME + br /small(planned for:  + 
BETA_REL_DATE + )/small/a/h2
+  + pa href=' + ANN_LINK + ' title=' + ANN_TITLE + 'br /
+  + The Beta release is not yet available. Please make sure to come back 
on the release date to download and test the 
+  + new version./a/p
++ /div );
   }
   //--
   /script




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

2014-02-24 Thread buildbot
Author: buildbot
Date: Mon Feb 24 21:10:19 2014
New Revision: 899066

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 21:10:19 2014
@@ -1 +1 @@
-1571439
+1571440

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 24 21:10:19 2014
@@ -1 +1 @@
-1571439
+1571440

Modified: websites/staging/ooo-site/trunk/content/download/test/index.html
==
--- websites/staging/ooo-site/trunk/content/download/test/index.html (original)
+++ websites/staging/ooo-site/trunk/content/download/test/index.html Mon Feb 24 
21:10:19 2014
@@ -71,7 +71,6 @@ screen reader. --
   var NL_LANGUAGE = ;
   // Get the download URL for released install files (0 = release mode)
   var LINK= getLink(0);
-
   if ( hasMirrorLink() ) {
 if ( SOURCEFORGE ) {
   // If download URL contains sourceforge (- normal and correct 
download link),
@@ -120,7 +119,6 @@ screen reader. --
   + alternative  + LANG_ARRAY[ 1 ] +  download webpage./a/p
 + /div );
   }
-
   // Show some helpful links for SDK, source, checksums, release notes, legacy 
version.
   document.write( div class=\sub-green\ );
   document.write( p );
@@ -148,7 +146,6 @@ screen reader. --
 + a href='../legacy/index.html' title='Get the legacy version of 
OpenOffice.org 
 + LEGACYVERSION + 'b + LEGACYVERSION + /b/a/p
   + /div );
-
   entourage.initialize();
   //--
   /script
@@ -182,7 +179,6 @@ screen reader. --
 var NL_LANGUAGE = ;
 // Get the download URL for Beta releases (0 = beta mode)
 var LINK= getLink(1);
-
 if ( hasMirrorLink() ) {
   if ( SOURCEFORGE ) {
 // If a Beta Release is available for download, then download from 
Sourceforge with displayed platform and language.
@@ -202,7 +198,6 @@ screen reader. --
 // If download URL contains other (- platform, OS or package 
manager was not recognized),
 // then use all_beta.html as download link.
 LINK = http://www.openoffice.org/download/test/all_beta.html;;
-
 document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
   + LINK + ') return false;\
   + h2a href=' + LINK + ' title=' + LINK + '
@@ -215,7 +210,6 @@ screen reader. --
 } else {
   // If browser language do not match with AOO languages, then download 
from an alternative webpage.
   LINK = http://www.openoffice.org/download/test/all_beta.html;;
-
   document.write( div class=\button yellow\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
 + LINK + ') return false;\
 + h2a href=' + LINK + ' title=' + LINK + '
@@ -225,7 +219,6 @@ screen reader. --
 + Click here to choose from the alternative download webpage./a/p
   + /div );
 }
-
 // Show some helpful links for SDK, source, checksums, release notes.
 document.write( div class=\sub-yellow\ );
 document.write( p );
@@ -243,21 +236,18 @@ screen reader. --
   + bGet all platforms, languages, language packs/b/a | 
   + a href='all_beta.html#source' title='Get the source code and SDK to 
download'Source code and SDK/a/p
 + /div );
-
 //  } else {
-
 // Yellow: Beta Release coming soon
 var ANN_LINK  = https://blogs.apache.org/OOo/;;
 var ANN_TITLE = Official blog of Apache OpenOffice;
-
 document.write( div class=\button yellow_wo_icon\ id=\optionitem2\ 
onclick=\openItem('optionitem2','
-+ ANN_LINK + ') return false;\ );
-document.write( h2a href=' + ANN_LINK + ' title=' + ANN_TITLE + '
-+ Get Apache OpenOffice  + BETA_NAME + br /small(planned for:  + 
BETA_REL_DATE + )/small/a/h2
-+ pa href=' + ANN_LINK + ' title=' + ANN_TITLE + 'br /
-+ The Beta release is not yet available. Please make sure to come back on 
the release date to download and test the 
-+ new version./a/p );
-document.write( /div );
+  + ANN_LINK + ') return false;\
+  + h2a href=' + ANN_LINK + ' title=' + ANN_TITLE + '
+  + Get Apache OpenOffice  + BETA_NAME + br /small(planned for:  + 
BETA_REL_DATE + )/small/a/h2
+  + pa href=' + ANN_LINK + ' title=' + ANN_TITLE + 'br /
+  + The Beta release is not yet available. Please make sure to come back 
on the release date to download and test the 
+  + new version./a/p
++ /div );
   }
   //--
   /script




buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

2014-02-24 Thread buildbot
Hi! , The openoffice-fbsd-nightly builder has just completed a run

STATUS: Failure

 Build revision 1571557 on branch openoffice/trunk

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

 Build using the ASF buildslave: bb-fbsd2_64bit

 Build results at: 
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/192

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


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

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