Re: [dev] Re:[dev] Question regarding unused code removal

2005-03-18 Thread Jens-Heiner Rechtien
: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] CWS creation

2005-03-22 Thread Jens-Heiner Rechtien
PROTECTED]) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe

Re: [dev] compiler warnings: STLport; doubunder; OSL_VERIFY

2005-08-31 Thread Jens-Heiner Rechtien
Speaking of STLPort: It seems that these incredible number of ANACHRONISM warnings regarding missing typenames on unxsols4 and unxsoli4 can be fixed with a single line of change in STLPort. I'll suggest that we fix this one in another CWS which has a chance to get in OOo 2.0, if Martin

[dev] Help needed / STLport debug mode

2005-10-11 Thread Jens-Heiner Rechtien
operations should be much slower in debug mode than in product mode. In practice I didn't notice a real slowdown of OOo. Thanks, Heiner Jens-Heiner Rechtien Technical Lead Release Engineering, StarOffice OpenOffice Release Engineer [EMAIL PROTECTED

Re: [dev] Error compiling OO.o

2005-10-24 Thread Jens-Heiner Rechtien
/OOo_2.0.0rc3_src/vcl/source/src dmake: Error code 1, while making 'build_instsetoo_native' '---* tg_merge.mk *---' This is not my first problem but it is the first I can't find a fix for the other is discribed here with a fix http://qa.openoffice.org/issues/show_bug.cgi?id=44027 -- Jens-Heiner

Re: [dev] CWS for non-Domain Developer

2006-01-02 Thread Jens-Heiner Rechtien
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [dev] why making compiling OO such a secret?

2006-02-06 Thread Jens-Heiner Rechtien
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien OpenOffice.org release engineer [EMAIL PROTECTED

Re: [dev] why making compiling OO such a secret?

2006-02-06 Thread Jens-Heiner Rechtien
is a set of prebuild binaries, so the stuff is not committed to CVS. They are not regularly provided, due to their size. If there is a solver you can find it here: http://oootranslation.services.openoffice.org/pub/OpenOffice.org/ Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] why making compiling OO such a secret?

2006-02-08 Thread Jens-Heiner Rechtien
Johannes Walther wrote: --- Jens-Heiner Rechtien [EMAIL PROTECTED] schrieb: Well to me it looks like your checkout is broken because you definitely missing at least two required modules. You can check them out by name, for example cvs -d ... co epm. It's no wonder your build broke ... Ok

Re: [dev] portable pack directive?

2006-03-31 Thread Jens-Heiner Rechtien
. Solaris compiler support #pragma pack(n) which works similar to the gcc #pragma. The documentation is here: http://docs.sun.com/source/817-5070/Pragmas_App.html, B.2.12 Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] x86 osl/interlck.h performance

2006-04-21 Thread Jens-Heiner Rechtien
the mainstream. Heiner Function call overhead for a simple increment appears somewhat disproportionate to me... Apart from that, with the integration of the UNO threading framework, there's opportunity to bin thread-safe implementations at tons of places, isn't there? Cheers, -- Jens-Heiner

Re: [dev] x86 osl/interlck.h performance

2006-04-24 Thread Jens-Heiner Rechtien
Ross Johnson wrote: On Fri, 2006-04-21 at 18:32 +0200, Jens-Heiner Rechtien wrote: Ross Johnson wrote: On Fri, 2006-04-21 at 15:09 +0200, Stephan Bergmann wrote: Hi all, Someone recently mentioned that osl_increment/decrementInterlockedCount would show up as top scorers with certain

Re: [dev] x86 osl/interlck.h performance

2006-04-24 Thread Jens-Heiner Rechtien
Ross Johnson wrote: On Fri, 2006-04-21 at 18:22 +0200, Jens-Heiner Rechtien wrote: I can't see what we could do about the costs of the lock instruction on x86. I mean, if we need an atomic increment/decrement for our reference counter we can't work with non-atomic instructions here

Re: [dev] x86 osl/interlck.h performance

2006-04-26 Thread Jens-Heiner Rechtien
Thorsten Behrens wrote: Jens-Heiner Rechtien [EMAIL PROTECTED] writes: BTW, on newer processors (P4, Xeon etc) the lock prefix shouldn't be that expensive, because if the target memory of the instruction is cacheable the CPU will not assert the Lock# signal (which locks the bus) but only lock

Re: [dev] x86 osl/interlck.h performance

2006-04-26 Thread Jens-Heiner Rechtien
wrote: On Mon, 2006-04-24 at 16:19 +0200, Jens-Heiner Rechtien wrote: Ross Johnson wrote: The timings for the Interlocked routine calling and for the inlined non- locked asm using MSVC 6 were almost identical, whereas the inlined locked asm was much slower. The same tests using GCC showed

Re: [dev] x86 osl/interlck.h performance

2006-04-26 Thread Jens-Heiner Rechtien
on vacation...) -Stephan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] Completely lost in the building process...

2006-05-08 Thread Jens-Heiner Rechtien
'how-to' if the one I've been using is not right? Some additional notes are here: http://wiki.services.openoffice.org/wiki/Windows -- Jens-Heiner Rechtien OpenOffice.org Release Engineer Technical Lead Release Enginering, StarOffice [EMAIL PROTECTED

Re: [dev] x86 osl/interlck.h performance

2006-05-12 Thread Jens-Heiner Rechtien
, they are of course no substitute for doing some real profiling with the office code. Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] CFLAGS= -I. -fPIC -O2 -Wall -DINLINE -DCHECKSMP #CFLAGS= -I. -fPIC -O2 -Wall -DINLINE #CFLAGS= -I. -fPIC -O2 -Wall -DCHECKSMP #CFLAGS= -I. -fPIC -O2 -Wall intrlock: intrlock.o

Re: [dev] x86 osl/interlck.h performance

2006-05-30 Thread Jens-Heiner Rechtien
10% per call to the reference counter. The overall influence of inlining on the performance is thus probably not measurable on this platform. Heiner Jens-Heiner Rechtien wrote: Hi, I did some measurements with a copy of SRC680 m164 and one of the more pathological calc documents, and found

Re: [dev] CWS warnings01 Integrated

2006-06-20 Thread Jens-Heiner Rechtien
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [dev] workspace handling

2006-07-03 Thread Jens-Heiner Rechtien
disappeared in the meanwhile :-( C. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] Re-opening a milestone that has been announced as ready for CWS usage?

2006-08-02 Thread Jens-Heiner Rechtien
Hi, regarding position _B) below: one should point out that the milestone will be delayed for more than 2-3 days in case something is wrong with the milestone. Creating a CWS, fixing the bug, rebuilding, repackaging, doing again the automated tests can possibly delay the milestone by a week

Re: [dev] Re-opening a milestone that has been announced as ready for CWS usage?

2006-08-09 Thread Jens-Heiner Rechtien
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] Bounty for performance improvements

2006-11-03 Thread Jens-Heiner Rechtien
PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] Bounty for performance improvements

2006-11-06 Thread Jens-Heiner Rechtien
Hi Michael, With UTF2 you mean Uno Threading Framework 2? I can see how it helps the performance if we reduce mutex locking (especially Solar-Mutex, of course) but naively I would assume that reference counter as programming concept are mostly independent from that effort? Does UTF2

Re: [dev] Bounty for performance improvements

2006-11-06 Thread Jens-Heiner Rechtien
Hi Thorsten, Thorsten Behrens wrote: Jens-Heiner Rechtien [EMAIL PROTECTED] writes: With UTF2 you mean Uno Threading Framework 2? I can see how it helps the performance if we reduce mutex locking (especially Solar-Mutex, of course) but naively I would assume that reference counter

Re: [dev] In the Works: New OOo C++ Coding Standards

2006-12-20 Thread Jens-Heiner Rechtien
Stephan Bergmann wrote: Jens-Heiner Rechtien wrote: Jan Holesovsky wrote: Hi Thorsten, On Monday 18 December 2006 11:46, Thorsten Behrens wrote: Aah. Let me rephrase. Are -you- really sure the external include guard optimization provides enough benefit on all the compilers we are using

Re: [dev] External header guards

2006-12-21 Thread Jens-Heiner Rechtien
7.1 Go ahead with the script (I'd take that anyway, once we switch to 8.0) - I can do the timings. Please remember to do the timings against remote volumes. Thanks Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] compile error on Solaris 10

2007-01-02 Thread Jens-Heiner Rechtien
no problem with SunStudio 8/Solaris 8. A quick workaround would be to modify Python.h to include limits.h unconditionally. Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [dev] Extending the binfilter Module

2007-02-02 Thread Jens-Heiner Rechtien
Thorsten Behrens wrote: Caolan McNamara [EMAIL PROTECTED] writes: On Fri, 2007-02-02 at 14:18 +0100, Pavel Janík wrote: What about making binfilter SO only module? ;-) -1 Unfortunately .sdw etc documents exist and are a fact of life, we do still need to import them. e.g. my performance

Re: [dev] .Doc importer performance

2007-03-20 Thread Jens-Heiner Rechtien
Gregoire Gentil wrote: Hello, When I big import a Microsoft Word .doc document with the Sun binaries ooo 2.1, the document opens in 20s. When I import it with my own compilation of ooo (Gentoo, gcc 4.1, a set of coherent/optimized flags), it takes more then two minutes. Can anyone tell

Re: [dev] How to check whether nas is working?

2007-03-27 Thread Jens-Heiner Rechtien
if there are, well, unexpected dependencies in the code base and than it will take a source code janitor to removed it from the code. Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [dev] Re: [qa-dev] Can we do more regression testing?

2007-05-30 Thread Jens-Heiner Rechtien
Jörg Jahnke wrote: Hi, the reason why the Wiki page speaks of mandatory tests I have mentioned in a previous mail: Jörg Jahnke schrieb: The problem with such tests not being mandatory is that, sooner or later, some tests would break. That again would lead to a state where the user of

Re: [dev] $Author$

2007-10-10 Thread Jens-Heiner Rechtien
/DevelopersGuide/GUI): it answers some questions I had for a long time! Thanks hr (I don't know your real name!)! Hehe. hr (Jens-Heiner Rechtien) is a release engineer, who integrated the child workspace where this was introduced. While he, as all our release engineers, surely deserves thanks

Re: [dev] building OOO on solaris 10 x86

2007-10-15 Thread Jens-Heiner Rechtien
] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] building OOO on solaris 10 x86

2007-10-15 Thread Jens-Heiner Rechtien
Hi, looks like the top level makefile is broken for Solaris (looks like it wants a gmake). Please place gmake in PATH before /usr/ccs/bin/make (can be found in /usr/sfw/bin nowadays) Heiner Gérard Henry wrote: Jens-Heiner Rechtien wrote: Hi Gérard, I'm wondering which version

Re: [dev] building ooo failed with sun studio 12

2007-10-16 Thread Jens-Heiner Rechtien
Hi, this exact problem is not exactly new and got already forgotten twice because we (well I) were to lazy to write an issue. Please write me (hr) an issue, and I'll include a fix in my next CWS. Here is a possible way to fix the problem. --- _stdio_file.hFri Sep 7 13:33:27 2007 +++

Re: [dev] linux environement fo official Open Office 2.4 builds

2008-06-04 Thread Jens-Heiner Rechtien
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e

Re: [dev] Problems with system vs. OOo libstdc++.so.6 mismatch on Linux

2008-06-09 Thread Jens-Heiner Rechtien
/Compiler_versions_used_by_port_maintainers_and_release_engineers Heiner, yes. This is the current status quo. And sb wants to change it... I do not agree with the change. -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [dev] Compile error: external/common/apache-ant[...] not found @ OpenSolaris snv 95

2008-08-20 Thread Jens-Heiner Rechtien
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [dev] Compile error: external/common/apache-ant[...] not found @ OpenSolaris snv 95

2008-08-20 Thread Jens-Heiner Rechtien
Hi Ulf, Ulf Wendel wrote: Moin Heiner! Jens-Heiner Rechtien schrieb: - we had a former version of OOo on Solaris Sparc which was buildable with gcc but this port hasn't been maintained for a long time. Currently you'll need SunStudio (8, 10-12 or Sun Studio Express) to build OOo on Solaris

Re: [dev] At the end of the OpenSolaris 2008.05 adventure tour...

2008-08-25 Thread Jens-Heiner Rechtien
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[dev] Re: [tools-dev] Re: [council-esc] Re: [tools-dev] OOo SCM project

2008-08-27 Thread Jens-Heiner Rechtien
Martin Hollmichel wrote: Jens-Heiner Rechtien wrote: Hi Martin, since almost all OOO300 CWSs (for the RC) will be integrated into DEV300 as well it makes sense to have most of them already integrated into DEV300 before starting the migration. Also there are some quite huge CWSs currently

Re: [dev] Re: [tools-dev] Re: [council-esc] Re: [tools-dev] OOo SCM project

2008-08-27 Thread Jens-Heiner Rechtien
Stephan Bergmann wrote: On 08/27/08 16:00, Jens-Heiner Rechtien wrote: Please note that we have a soft dependency on the RC. Since CWSs which are meant for OOO300 can only be opened in CVS, we'll need to manually merge then into SVN for DEV300. The simple double integration trick we usually

Re: [dev] Re: [tools-dev] Re: [council-esc] Re: [tools-dev] OOo SCM project

2008-08-29 Thread Jens-Heiner Rechtien
Jahnke wrote: Hi, Jens-Heiner Rechtien schrieb: Martin Hollmichel wrote: Jens-Heiner Rechtien wrote: Hi Martin, since almost all OOO300 CWSs (for the RC) will be integrated into DEV300 as well it makes sense to have most of them already integrated into DEV300 before starting the migration. Also

[dev] OOo SVN migration

2008-09-01 Thread Jens-Heiner Rechtien
Hi, last weekend I managed to hurt myself with the kick starter of a bike and as a result I'm out of office for probably a week. This means that the Subversion migration will probably be delayed for a few days. Sorry for that. I keep you posted about when exactly we will do the migration. Heiner

[dev] Migration to Subversion

2008-09-08 Thread Jens-Heiner Rechtien
with CVS (at least for now), thus the Openoffice.org 3.0 release is not affected at all. The migration will take about a week. Please find the details here: http://wiki.services.openoffice.org/wiki/OOo_and_Subversion Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED

[dev] [tools-dev] Migration to Subversion

2008-09-12 Thread Jens-Heiner Rechtien
: http://wiki.services.openoffice.org/wiki/OOo_and_Subversion#Create_a_OOo_repository_mirror Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[dev] OpenOffice.org subversion repository R/W enabled on Tuesday

2008-09-28 Thread Jens-Heiner Rechtien
Hi, just a little status update: We plan to write enable the subversion based OOo repository on Tuesday if nothing to serious shows up until then. There will be a separate announcement on the developer mailing list when this happens. Actually the repository is already write enabled for those

Re: [dev] VCS Keywords in License Headers

2008-09-30 Thread Jens-Heiner Rechtien
Hi +1 for the proposal Heiner Stephan Bergmann wrote: After the switch to Subversion, the license headers in all the OOo source files (taken from the templates http://www.openoffice.org/dev_docs/source/templates/code and http://www.openoffice.org/dev_docs/source/templates/makefile) still

[dev] ANNOUNCEMENT: OpenOffice.org migrates to Subversion

2008-09-30 Thread Jens-Heiner Rechtien
ANNOUNCEMENT: OpenOffice.org migrates to Subversion === The OOo subversion source code repository is now write enabled for all domain developers, thus we are officially migrated to Subversion. The details of the migration can be found here:

Re: [dev] VCS Keywords in License Headers

2008-10-01 Thread Jens-Heiner Rechtien
probably not m33, but at some time in the near future. Another huge change which could be done in the same milestone is to convert tabs to 4 spaces, something I know Kendy and some others are advocating. Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] VCS Keywords in License Headers

2008-10-01 Thread Jens-Heiner Rechtien
-x -b' is your friend ... Could be done, and the earlier the better I guess. Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] VCS Keywords in License Headers

2008-10-01 Thread Jens-Heiner Rechtien
stuff to a SVN based branch @m32 and then rebase with svn merge to something newer ... = problem solved. Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: [dev] VCS Keywords in License Headers

2008-10-08 Thread Jens-Heiner Rechtien
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [dev] SVN-ignored files

2008-10-16 Thread Jens-Heiner Rechtien
bjoern michaelsen - Sun Microsystems - Hamburg Germany wrote: On 10/16/08 11:00, Malte Timmermann wrote: In short: Can we please add the platform-dependent output tree names as svn:ignore property to all modules? +1 +1 -1 Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] SVN-ignored files

2008-10-16 Thread Jens-Heiner Rechtien
anyway. Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] SVN-ignored files

2008-10-16 Thread Jens-Heiner Rechtien
-- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] Re: [allsvn] r262317 - tags/DEV300_m33/vcl/source/gdi

2008-10-20 Thread Jens-Heiner Rechtien
PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] Subversion precommit hook

2008-10-20 Thread Jens-Heiner Rechtien
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL

Re: [dev] Removing a module

2008-10-22 Thread Jens-Heiner Rechtien
reference and in case somebody wants to file an issue against an old version of jut? Good question. I makes sense to keep it there for a while, but it's hard to determine when this while should end :) Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] application/octet-stream files in SVN repository

2008-10-27 Thread Jens-Heiner Rechtien
-- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] SVN and lineends

2008-10-28 Thread Jens-Heiner Rechtien
wouldn't know). Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dev] SVN and lineends

2008-10-29 Thread Jens-Heiner Rechtien
Hi, Eike Rathke wrote: Hi Frank, On Tuesday, 2008-10-28 10:57:39 +0100, Frank Schönheit wrote: modifying a .cxx file on Windows, and committing it to SVN, followed by a svn diff -r PREV file, shows me that *the complete* file changed with the commit. Doing a svn diff -r PREV -x

[dev] Update of the SVN server to 1.5.4

2008-11-27 Thread Jens-Heiner Rechtien
Hi, on Friday evening (19:00) I plan to update the SVN server on svn.services.openoffice.org to version 1.5.4. Please avoid having open svn connections then. Thank you, Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED

Re: [dev] Update of the SVN server to 1.5.4

2008-11-27 Thread Jens-Heiner Rechtien
To be more precise: Friday, Nov 28th, 19:00 CET (GMT+1) Thanks, heiner Jens-Heiner Rechtien wrote: Hi, on Friday evening (19:00) I plan to update the SVN server on svn.services.openoffice.org to version 1.5.4. Please avoid having open svn connections then. Thank you, Heiner

Re: [dev] Update of the SVN server to 1.5.4

2008-11-28 Thread Jens-Heiner Rechtien
Hi, the server upgrade to SVN 1.5.4 is completed. Have a nice weekend Heiner Jens-Heiner Rechtien wrote: To be more precise: Friday, Nov 28th, 19:00 CET (GMT+1) Thanks, heiner Jens-Heiner Rechtien wrote: Hi, on Friday evening (19:00) I plan to update the SVN server

[dev] Please do not use Subversion-1.5.1, update to 1.5.4

2008-12-04 Thread Jens-Heiner Rechtien
you Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[dev] cancel [EMAIL PROTECTED]

2008-12-04 Thread Jens-Heiner . Rechtien
This message was cancelled from within Mozilla. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[dev] Please do not use Subversion-1.5.1, update to 1.5.4

2008-12-04 Thread Jens-Heiner Rechtien
as well. Thank you Heiner -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [dev] Moving files in a Subversion CWS

2008-12-08 Thread Jens-Heiner Rechtien
. Which is a pity, as this is *the* feature of SVN which made it worth suffering the additional complexity introduced with it. Ciao Frank -- Jens-Heiner Rechtien [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL

Re: [dev] Re: Moving files in a Subversion CWS

2008-12-08 Thread Jens-Heiner Rechtien
bjoern michaelsen - Sun Microsystems - Hamburg Germany wrote: Jens-Heiner Rechtien wrote: Hi, I wouldn't call for a complete ban but it looks like one has to be extra careful. Restructuring should be done in CWS which lives only a very short time. Best, say, opened on one milestone

Re: [dev] Build problems with updated cws 0dff05

2008-12-19 Thread Jens-Heiner Rechtien
? kind regards Regina - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org -- Jens-Heiner Rechtien recht...@sun.com

Re: [dev] cws sync m38 problems.

2009-01-05 Thread Jens-Heiner Rechtien
that too. Maybe better wait .. Regards, Eric -- Jens-Heiner Rechtien recht...@sun.com - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

Re: [dev] cws sync m38 problems.

2009-01-06 Thread Jens-Heiner Rechtien
Jürgen, thanks for pointing this out. The problem is caused by SVN fooling up on resurrected items. I found this in the change log for SVN 1.5.5 * fixed: broken merge if target's history includes resurrections (r34385, -93) Heiner PS: svn 1.5.5 fixes a number of svn:mergeinfo related

Re: [dev] Open Office on HP UX

2009-02-03 Thread Jens-Heiner Rechtien
...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org -- Jens-Heiner Rechtien recht...@sun.com - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

Re: [dev] [ClassRoom] Log available : introduction to git tool

2009-06-12 Thread Jens-Heiner Rechtien
this :-) We can setup a mercurial classroom as well, after I'm back from vacation (July, 6th). Let's say at sometime in mid July? Tschues, Heiner -- Jens-Heiner Rechtien recht...@sun.com - To unsubscribe, e-mail: dev

Re: [dev] [ClassRoom] Log available : introduction to git tool

2009-06-12 Thread Jens-Heiner Rechtien
Hi Malte, Malte Timmermann wrote: Jens-Heiner Rechtien wrote, On 06/12/09 15:33: Gi Eric, eric.bachard wrote: Hi, FYI, we had a nice ClassRoom, about git introduction, made by Jérémie Laval (from UTBM). As usual the log is available at : http://wiki.services.openoffice.org/wiki

Re: [dev] cws rebase failed

2009-07-13 Thread Jens-Heiner Rechtien
, e-mail: dev-h...@openoffice.org -- Jens-Heiner Rechtien recht...@sun.com - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

Re: [dev] cws rebase failed

2009-07-14 Thread Jens-Heiner Rechtien
- To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org -- Jens-Heiner Rechtien recht...@sun.com

Re: [dev] cws rebase failed

2009-07-16 Thread Jens-Heiner Rechtien
-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org -- Jens-Heiner Rechtien recht...@sun.com - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail

[dev] Please read: DSCMs, Mercurial Pilot and Performance

2009-07-24 Thread Jens-Heiner Rechtien
hastily add that I don't blame the author of the CWS for doing this, he hadn't much choice due to the (required) format change. But often we do have a choice, please keep this in mind. Thanks for your consideration Heiner -- Jens-Heiner Rechtien recht...@sun.com

Re: [dev] cws rebase failed

2009-07-27 Thread Jens-Heiner Rechtien
with your SVN distribution. Does this sequence of events match your experience? Heiner -- Jens-Heiner Rechtien recht...@sun.com - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h

Re: [dev] How to kill your CWS with svn rebase

2009-07-28 Thread Jens-Heiner Rechtien
-- Jens-Heiner Rechtien recht...@sun.com - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

[dev] Mercurial Pilot Feedback, Results

2009-07-29 Thread Jens-Heiner Rechtien
of the pilot we move over to next phase: the implementation of a full scale migration to Mercurial. I'll keep you posted about the details. Thanks: === I would like to thank all the pilot participants for their work and their valuable discussions and insights. Regards, Heiner -- Jens-Heiner Rechtien

Re: [dev] Mercurial Pilot Feedback, Results

2009-07-31 Thread Jens-Heiner Rechtien
Hi Rene, please see my comments inline, Rene Engelhard wrote: Jens-Heiner Rechtien wrote: Scalability: - overall perceived good performance, some were even quite enthusiastic about it (SVN users are easy to please ...). - there were three mentions of sub-par performance

Re: [dev] Re: [tools-tinderbox] Moving to bost 1.3?

2009-08-19 Thread Jens-Heiner Rechtien
Hi Thorsten, Thorsten Behrens wrote: [Cc to tinderbox removed] Frank Schönheit - Sun Microsystems Germany wrote: As an additional note, it has been suggested to not commit the boost*.tar.gz to boost/download, but make it a pre-requisite which needs to be downloaded before building. This would

Re: [dev] Re: [tools-tinderbox] Moving to bost 1.3?

2009-08-19 Thread Jens-Heiner Rechtien
Hi Rene, Rene Engelhard wrote: Hi, On Wed, Aug 19, 2009 at 04:53:28PM +0200, Jens-Heiner Rechtien wrote: Or invent a nice solution that does auto-downloads, and switch a few other huge external libs to that (like icu). ;) That would be a problem for some builders unless you don't download

Re: [dev] Important Process for Mercurial Users

2009-08-26 Thread Jens-Heiner Rechtien
Hi Jan, Jan Holesovsky wrote: Hi Heiner, On Wednesday 26 August 2009, Jens-Heiner Rechtien wrote: Everyone using a mercurial based CWS MUST enter the new milestone in EIS manually after rebasing the CWS to a new milestone using mercurial commandline or gui tools. Cannot this be automated

[dev] Mercurial-Implementation: automatic generation of outgoing repositories

2009-08-27 Thread Jens-Heiner Rechtien
Hi OOo Mercurial users, Automatic creation of outgoing repositories = The mechanism for the server side creation of the outgoing CWS repositories on hg.services.openoffice.org is in now place. An outgoing repository is automatically created for every

[dev] Mercurial-Implementation: OOo domain developer public keys

2009-08-28 Thread Jens-Heiner Rechtien
Hi OOo Mercurial users, OOo domain developers public keys = The SVN public keys of all OOo domain developers can now be used to r/w access the outgoing mercurial repositories on hg.services.openoffice.org via SSH (ssh://h...@hg.services.openoffice.org/cws/*).

[dev] Re: [tools-dev] Line-endings in source files

2009-08-31 Thread Jens-Heiner Rechtien
Hi, Christian Lohmaier wrote: Hi *, it seems to me that lately a huge amount of lineend-changes did occur. Maybe it is just a bad impression because many of the cws I had a look at lately did cause so many unrelated changes, but still: *Please* take care of lineendings before you commit.

[dev] Re: [porting-dev] MinGW port build guide

2009-09-30 Thread Jens-Heiner Rechtien
Hi Takashi, the OpenOffice.org build guide in the Wiki is licensed under PDL, you can do with it pretty much what you want as long as the resulting document stays under PDL and it's clear where it did come from and what your modification are. Of course, IANAL. The exact terms can be found

[dev] Re: [tools-dev] should we drop gcc3 support ?

2009-09-30 Thread Jens-Heiner Rechtien
Hi, there is not yet a need to drop gcc-3.4 support I think, the usual compile problems happen with gcc-3.3 or older versions. GCC made a major (and very necessary) parser update from 3.3 to 3.4 and should have bumped up the major version at that time. We have discussed dropping gcc-3.3

[dev] Re: [tools-dev] should we drop gcc3 support ?

2009-09-30 Thread Jens-Heiner Rechtien
Hi Yuri, thanks for the update! Bye Heiner Yuri Dario wrote: Hi, We have discussed dropping gcc-3.3 support for quite some time now, but we refrained from officially obsoleting it because OS/2 and MACOSX 10.3 support still depend on gcc-3.3, at least according to this list:

[dev] Re: [tools-dev] should we drop gcc3 support ?

2009-10-01 Thread Jens-Heiner Rechtien
Hi Christian, Christian Lohmaier wrote: Hi *, On Wed, Sep 30, 2009 at 8:45 PM, Jens-Heiner Rechtien jens-heiner.recht...@sun.com wrote: there is not yet a need to drop gcc-3.4 support I think, the usual compile problems happen with gcc-3.3 or older versions. GCC made a major (and very

[dev] Announcement: OpenOffice.org development switches to Mercurial as SCM

2009-10-14 Thread Jens-Heiner Rechtien
to Mercurial: - where to find documentation - which will be the last svn based milestone - conversion of child workspaces to hg - conventions which we will use Regards Heiner -- Jens-Heiner Rechtien OpenOffice.org release engineer h...@openoffice.org jens-heiner.recht...@sun.com

[dev] Announcement: Migration to Mercurial

2009-10-25 Thread Jens-Heiner Rechtien
technical errors but also embarrassing spelling and grammar mistakes, please feel free to correct them. It's a Wiki after all. Regards, Heiner -- Jens-Heiner Rechtien OpenOffice.org release engineer h...@openoffice.org jens-heiner.recht...@sun.com

Re: [dev] Announcement: Migration to Mercurial

2009-10-27 Thread Jens-Heiner Rechtien
Hi Eric, looks fine and I'm looking forward to that ClassRoom. Regards, Heiner eric.bachard wrote: Hello Heiner, Jens-Heiner Rechtien a écrit : Migration to Mercurial == OpenOffice.org developers, here - as promised - some information about the migration

Re: [dev] Announcement: Migration to Mercurial

2009-10-27 Thread Jens-Heiner Rechtien
bjoern michaelsen - Sun Microsystems - Hamburg Germany wrote: [...] As shown, theres a way to do that. However, this local repository now contains multiple heads. Do NOT DARE to hg push --force these multiple heads to an outgoing repository or the wrath of RelEng will be upon you. You have

  1   2   >