buildbot success in ASF Buildbot on aoo-win7

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

STATUS: Success

 Build revision 1423271 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/427

 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






svn commit: r1423520 - /openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm

2012-12-18 Thread hdu
Author: hdu
Date: Tue Dec 18 16:25:42 2012
New Revision: 1423520

URL: http://svn.apache.org/viewvc?rev=1423520view=rev
Log:
#i121406# support the OSX=10.7 fullscreen mode based on OSX Spaces

Modified:
openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm

Modified: openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm?rev=1423520r1=1423519r2=1423520view=diff
==
--- openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm (original)
+++ openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm Tue Dec 18 
16:25:42 2012
@@ -37,6 +37,14 @@
 
 #define WHEEL_EVENT_FACTOR 1.5
 
+// for allowing fullscreen support on deployment targets  OSX 10.7
+#if !defined(MAC_OS_X_VERSION_10_7)
+#define NSWindowCollectionBehaviorFullScreenPrimary   (1  7)
+#define NSWindowCollectionBehaviorFullScreenAuxiliary (1  8)
+//  #define NSFullScreenWindowMask (1  14)
+#endif
+
+
 static sal_uInt16 ImplGetModifierMask( unsigned int nMask )
 {
 sal_uInt16 nRet = 0;
@@ -153,6 +161,17 @@ static AquaSalFrame* getMouseContainerFr
 pFrame-VCLToCocoa( aRect );
 NSWindow* pNSWindow = [super initWithContentRect: aRect styleMask: 
mpFrame-getStyleMask() backing: NSBackingStoreBuffered defer: NO ];
 [pNSWindow useOptimizedDrawing: YES]; // OSX recommendation when there are 
no overlapping subviews within the receiver
+
+bool bAllowFullScreen = (0 == (mpFrame-mnStyle  (SAL_FRAME_STYLE_DIALOG 
| SAL_FRAME_STYLE_TOOLTIP | SAL_FRAME_STYLE_SYSTEMCHILD | SAL_FRAME_STYLE_FLOAT 
| SAL_FRAME_STYLE_TOOLWINDOW | SAL_FRAME_STYLE_INTRO)));
+bAllowFullScreen = (0 == (~mpFrame-mnStyle  
(SAL_FRAME_STYLE_SIZEABLE)));
+bAllowFullScreen = (mpFrame-mpParent == NULL);
+const SEL setCollectionBehavior = @selector(setCollectionBehavior:);
+if( bAllowFullScreen  [pNSWindow respondsToSelector: 
setCollectionBehavior])
+{
+NSNumber* bMode = [NSNumber numberWithInt:(bAllowFullScreen ? 
NSWindowCollectionBehaviorFullScreenPrimary : 
NSWindowCollectionBehaviorFullScreenAuxiliary)];
+[pNSWindow performSelector:setCollectionBehavior withObject:bMode];
+}
+
 return pNSWindow;
 }
 
@@ -324,6 +343,50 @@ static AquaSalFrame* getMouseContainerFr
 return bRet;
 }
 
+#if 0 // windowWillEnterFullScreen doesn't do anything useful yet
+-(void)windowWillEnterFullScreen: (NSNotification*)pNotification
+{
+YIELD_GUARD;
+
+if( !mpFrame || !AquaSalFrame::isAlive( mpFrame ) )
+return;
+// TODO: implement something useful
+(void)pNotification;
+}
+#endif
+
+#if 0 // windowWillExitFullScreen doesn't do anything useful yet
+-(void)windowWillExitFullScreen: (NSNotification*)pNotification
+{
+YIELD_GUARD;
+
+if( !mpFrame || !AquaSalFrame::isAlive( mpFrame ) )
+return;
+// TODO: implement something useful
+(void)pNotification;
+}
+#endif
+
+-(void)windowDidEnterFullScreen: (NSNotification*)pNotification
+{
+YIELD_GUARD;
+
+if( !mpFrame || !AquaSalFrame::isAlive( mpFrame))
+return;
+mpFrame-mbFullScreen = true;
+(void)pNotification;
+}
+
+-(void)windowDidExitFullScreen: (NSNotification*)pNotification
+{
+YIELD_GUARD;
+
+if( !mpFrame || !AquaSalFrame::isAlive( mpFrame))
+return;
+mpFrame-mbFullScreen = false;
+(void)pNotification;
+}
+
 -(void)dockMenuItemTriggered: (id)sender
 {
 (void)sender;




svn commit: r1423523 - /openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm

2012-12-18 Thread hdu
Author: hdu
Date: Tue Dec 18 16:28:31 2012
New Revision: 1423523

URL: http://svn.apache.org/viewvc?rev=1423523view=rev
Log:
#i121406# remove willEnter/willExit-FullScreen methods until they become more 
useful

Modified:
openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm

Modified: openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm?rev=1423523r1=1423522r2=1423523view=diff
==
--- openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm (original)
+++ openoffice/trunk/main/vcl/aqua/source/window/salframeview.mm Tue Dec 18 
16:28:31 2012
@@ -343,30 +343,6 @@ static AquaSalFrame* getMouseContainerFr
 return bRet;
 }
 
-#if 0 // windowWillEnterFullScreen doesn't do anything useful yet
--(void)windowWillEnterFullScreen: (NSNotification*)pNotification
-{
-YIELD_GUARD;
-
-if( !mpFrame || !AquaSalFrame::isAlive( mpFrame ) )
-return;
-// TODO: implement something useful
-(void)pNotification;
-}
-#endif
-
-#if 0 // windowWillExitFullScreen doesn't do anything useful yet
--(void)windowWillExitFullScreen: (NSNotification*)pNotification
-{
-YIELD_GUARD;
-
-if( !mpFrame || !AquaSalFrame::isAlive( mpFrame ) )
-return;
-// TODO: implement something useful
-(void)pNotification;
-}
-#endif
-
 -(void)windowDidEnterFullScreen: (NSNotification*)pNotification
 {
 YIELD_GUARD;




svn commit: r1423676 - in /openoffice/trunk/main: l10ntools/scripts/tool/ sc/workben/celltrans/ scripting/source/pyprov/ testtools/source/bridgetest/pyuno/ toolkit/src2xml/source/ ucb/source/ucp/ftp/

2012-12-18 Thread pfg
Author: pfg
Date: Tue Dec 18 21:36:34 2012
New Revision: 1423676

URL: http://svn.apache.org/viewvc?rev=1423676view=rev
Log:
#i121496# - [PyUNO] Python3 support

Add initial python 3 compatibility to native scripts now that
pyuno supports python3.

This is the result of running the python 2to3 script with
conservative settings.

Still more porting work may be required and any regression
with the default Python 2.7.3 should be considered a bug.

Modified:
openoffice/trunk/main/l10ntools/scripts/tool/const.py
openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py
openoffice/trunk/main/l10ntools/scripts/tool/pseudo.py
openoffice/trunk/main/l10ntools/scripts/tool/sdf.py
openoffice/trunk/main/l10ntools/scripts/tool/xtxex.py
openoffice/trunk/main/sc/workben/celltrans/parse.py
openoffice/trunk/main/scripting/source/pyprov/mailmerge.py
openoffice/trunk/main/testtools/source/bridgetest/pyuno/core.py
openoffice/trunk/main/toolkit/src2xml/source/boxer.py
openoffice/trunk/main/toolkit/src2xml/source/expression.py
openoffice/trunk/main/toolkit/src2xml/source/globals.py
openoffice/trunk/main/toolkit/src2xml/source/macroexpander_test.py
openoffice/trunk/main/toolkit/src2xml/source/macroparser.py
openoffice/trunk/main/toolkit/src2xml/source/src2xml.py
openoffice/trunk/main/toolkit/src2xml/source/srclexer.py
openoffice/trunk/main/toolkit/src2xml/source/srcparser.py
openoffice/trunk/main/ucb/source/ucp/ftp/test.py

Modified: openoffice/trunk/main/l10ntools/scripts/tool/const.py
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/l10ntools/scripts/tool/const.py?rev=1423676r1=1423675r2=1423676view=diff
==
--- openoffice/trunk/main/l10ntools/scripts/tool/const.py (original)
+++ openoffice/trunk/main/l10ntools/scripts/tool/const.py Tue Dec 18 21:36:34 
2012
@@ -23,8 +23,8 @@
 class _const:
 class ConstError(TypeError): pass
 def __setattr__(self, name, value):
-if self.__dict__.has_key(name):
-raise self.ConstError, Can't rebind const(%s)%name
+if name in self.__dict__:
+raise self.ConstError(Can't rebind const(%s)%name)
 self.__dict__[name] = value
 
 import sys

Modified: openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py?rev=1423676r1=1423675r2=1423676view=diff
==
--- openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py (original)
+++ openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py Tue Dec 18 
21:36:34 2012
@@ -123,7 +123,7 @@ class AbstractL10nTool:
 try:
 shutil.copy(inputfilename, outputfilename)
 except IOError:
-print ERROR: Can not copy file ' + inputfilename + ' to  + ' 
+ outputfilename + '
+print(ERROR: Can not copy file ' + inputfilename + ' to  + ' 
+ outputfilename + ')
 sys.exit(-1)
 
 def extract(self):
@@ -131,7 +131,7 @@ class AbstractL10nTool:
 f = open(self._options.outputfile, w+)
 f.write(self.extract_file(self._options.inputfile))
 except IOError:
-print ERROR: Can not write file  + self._options.outputfile
+print(ERROR: Can not write file  + self._options.outputfile)
 else:
 f.close()
 
@@ -173,7 +173,7 @@ class AbstractL10nTool:
 dir = filename[:filename.rfind('/')]
 if os.path.exists(dir):
 if os.path.isfile(dir):
-print ERROR: There is a file '+dir+' where I want create a 
directory
+print(ERROR: There is a file '+dir+' where I want create a 
directory)
 sys.exit(-1)
 else:
 return
@@ -181,7 +181,7 @@ class AbstractL10nTool:
 try:
 os.makedirs(dir)
 except IOError:
-print Error: Can not create dir  + dir
+print(Error: Can not create dir  + dir)
 sys.exit(-1)
 
 def test_options(self):
@@ -191,7 +191,7 @@ class AbstractL10nTool:
 ( is_valid(opt.inputfile) and (( is_valid(opt.path_prefix) and 
is_valid(opt.path_postfix) ) or is_valid(opt.outputfile)) and \
 ( ( is_valid(opt.input_sdf_file) and ( 
is_valid(opt.outputfile) or  ( is_valid(opt.path_prefix) and 
is_valid(opt.path_postfix) ) or \
 ( is_valid(opt.inputfile) and is_valid(opt.outputFile)) 
-print Strange options ...
+print(Strange options ...)
 sys.exit( -1 )
 
 def read_inputfile_list(self):
@@ -201,7 +201,7 @@ class AbstractL10nTool:
 f = open(self._options.inputfile[1:], r)
 lines = [line.strip('\n') for line in f.readlines()]
 except IOError:
-print ERROR: Can not read file list  + 

[CONF] Apache OpenOffice Community Directory of Volunteers

2012-12-18 Thread confluence
Space: Apache OpenOffice Community 
(https://cwiki.apache.org/confluence/display/OOOUSERS)
Page: Directory of Volunteers 
(https://cwiki.apache.org/confluence/display/OOOUSERS/Directory+of+Volunteers)

Change Comment:
-
add claudio filho, from Brazil

Edited by Claudio F Filho:
-
Please keep in alphabetical order by given name.

| *Name* | *Home* | *Skills/Interests* |
| [Alexandro Colorado|http://jza.me] | Cancun, Mexico | 
l10n,ODF,Documentation,Marketing,Community Mgmnt,Python,XML,User |
| [Albino Biasutti Neto|http://www.albino.ws] | Vila Velha, ES, Brazil | l10n, 
Documentation, Marketing, User, Community AOOBr, ODF |
| [Andrew Pitonyak|http://www.pitonyak.org] | Columbus, Ohio, USA | 
Documentation, Macros, Community, General Use, C++, Java, Perl |
| Andrew Rist | Menlo Park, CA, USA | ODF, OpenOffice.org, C/C++, Java, UX  
user activity flows |
| [Andre Fischer|http://wiki.openoffice.org/wiki/User:Andre] | Hamburg, Germany 
| C++, Java, Perl, Impress, build system |
| Andrea Pescetti | Parma, Italy | Localization, QA, Web technologies, C+\+ |
| [Andrew Allen|http://www.dreamkota.com] | Arizona, US | Web Design, Business 
Management, Marketing |
| Andy Brown | Dublin, GA, USA | User, Documentation, Distribution, Marketing |
| Annapoornima Koppad | Bangalore, India | C/C++, Python, PHP, Quality 
Assurance, Marketing, Tutorials, Documentation |
| Antón Méixome | Pontevedra (Galicia), Spain | Galician localization, 
documentation, education, marketing, user support |
| Ariel Constenla-Haile | La Plata, Argentina | C/C++, Java, Python, UNO, API, 
Extensions, Application Framework |
| Bruno Santa | Torino, Italy | Localization |
| Carl Marcum | Dayton, OH, USA | Java, Groovy, SDK API's, XML |
| Carlo Pucillo | Udine, Italy | Localization |
| Cheng Jian Hong | Beijing,China | C/C++, Java, UNO, WordProcessor |
| Cinzia Cernitore | Bari, Italy | Localization |
| [Claudio F Filho|http://claudiocomputing.wordpress.com] | Brasilia, Brazil | 
l10n, AOOBr |
| Colin McDermott | Sydney, Australia | Linux, C++, Python, Word Processing, 
visual accessibility |
| Dave Barton | Milan, Italy | User Support, Tutorials, Documentation, HTML, 
CSS, PHP, Javascript, C/C++, Distribution. |
| Dave McKay | North East Wales, UK | C/C++, Technical Writer, User Forum |
| David Fisher | San Francisco, CA, USA | Website, Document Generation and 
Workflow, Java, Postscript, PDF, Apache POI, Web Services |
| [Dennis E. Hamilton|http://nfoworks.org/diary/] | Seattle, WA, USA | C/C++, 
Java, Interoperability, ODF, security, architecture, web |
| Don Harbison | Chelmsford, MA USA | Trademark, Branding, Communications, 
Community Development |
| Dongbin Peng | Vancouver, Canada | C/C++, java |
| Elena Lombardo | Milano, Italy | Localization |
| [Eike Rathke|http://www.erack.de/] | Hamburg, Germany | Calc spreadsheet 
core, number parser/formatter, i18n, locale data, ODF, OpenFormula, performance 
tuning |
| [Eric Bachard|http://eric.bachard.org/news] | Audincourt  France | C/C++, 
ObjectiveC, vcl and Impress hacker, All ports and build systems, Education 
Project, Student mentoring |
| floris v | Apeldoorn, Netherlands | User support forum (English and Dutch) |
| Gabriele Chiarini | San Pietro in Casale, Bologna, Italy | Localization |
| Giorgio Gentili | Busto Arsizio Italy | QA |
| Graham Lauder | Waikato,New Zealand | Training, Marketing, Migration 
Management, Website, HTML, CSS, PHP |
| [Greg Stein|http://prng.blogspot.com/] | Virginia, USA | Apache, Subversion, 
Python |
| Guy Waterval | Fribourg, Suisse | Documentation, Education, Training |
| Hagar Delest | Paris, France | User Support Forum (English) |
| [Håkon Vågsether|http://linkedin.com/in/hkonv] | Ålesund, Norway | C/C++, 
Python, Linux, FOSS, Norwegian Localization |
| Ian Cunningham | Perth, Australia | C/C++, Java, XML, ODF, Testing |
| [Ian Lynch|https://theingots.org] | Tamworth,UK | Certification of user 
skills, Marketing, Business Models to sustain FOSS development |
| [imacat|http://www.imacat.idv.tw/] | Taipei, Taiwan | UNO API, OpenOffice 
BASIC, Java, Localization, C++, Perl, PHP, C |
| Ingrid von der Mehden | Hamburg, Germany | C++, Java, UNO, ODF, Chart and 
surrounding areas, Layout, User Interface |
| Jan Iversen | Alora, spain (but danish) | C/C++, HTML, Protocols, multi 
platform issues, l10n, building process, marketing |
| Jan Jełowicki | Wrocław. Poland | Users support forum in Poland |
| [Jean Hollis Weber|http://taming-openoffice-org.com/] | Townsville, QLD, 
Australia | Technical writing/editing/publishing of end-user documentation |
| [Jeongkyu Kim|http://openoffice.or.kr/] | GwangJu, Korea | Localization |
| Jim Grenier | Boston, USA | Marketing, Social Media, Edtech, Moodle, 
OpenOffice, OpenSim/Virtual Worlds |
| Jin Hua Chen | Beijing, China | C/C++, Java, UNO, Impress, programmability |
| Johnathan Snyder | 

buildbot success in ASF Buildbot on openoffice-linux32-nightly

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

STATUS: Success

 Build revision 1423724 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/345

 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






buildbot success in ASF Buildbot on openoffice-linux64-nightly

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

STATUS: Success

 Build revision 1423757 on branch openoffice/trunk

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

 Build using the ASF buildslave: tethys_ubuntu

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

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


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

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