[dom4j-dev] Patch for DOMElement and DOMDocument

2001-12-20 Thread Maarten Coene
Hi, I had some problems using a custom DocumentFactory (extending the DOMDocumentFactory) and DOM4J. The problem was that DOM4J wasn't realy using my DocumentFactory, but the default factory (in this case the DOMDocumentFactory) or didn't use a factory at all! I have fixed this with the 2

Re: [dom4j-dev] Problem with UserData{Element,Attribute}

2002-01-21 Thread Maarten Coene
than I thought. https://sourceforge.net/mailarchive/forum.php?thread_id=98464forum_id=2702 Thanks Vivek -- Maarten Coene Katholieke Universiteit Leuven Dept. Computerwetenschappen Tel: ++32 (0)16/32 78 25 Celestijnenlaan 200A B-3001 Heverlee

Re: [dom4j-dev] (Maybe) Bug found in elementIterator()...

2002-10-17 Thread Maarten Coene
I've fixed this temporarily in CVS by throwing an UnsupportedOperationException when the remove() operation is called on the Iterator returned by the Element.elementIterator(...) methods. This Iterator was an instance of FilterIterator (which uses another Iterator and filters away unwanted

Re: [dom4j-dev] Problem with NodeList

2004-02-27 Thread Maarten Coene
Hi Henner, I've committed your fix to CVS. thanks Maarten Henner Kollmann wrote: Hi all, I have a little problem with the NodeList implementation. If i use node.getElementsByTagName(test).item(0) and no node named test exist this function should return null - see NodeList definition of w3c

Re: [dom4j-dev] namespace bug in dom4j 1.4?

2004-02-27 Thread Maarten Coene
Hi, there is a patch available for this problem which might solve your problem. You can find it at http://sourceforge.net/tracker/index.php?func=detailaid=828966group_id=16035atid=316035 . I'll take a look at as soon as I have the time and commit it to CVS Maarten [EMAIL PROTECTED] wrote: I

Re: [dom4j-dev] Build of dom4j on gump

2004-02-27 Thread Maarten Coene
done ! thanks for reporting this Maarten Antoine Lévy-Lambert wrote: Hi, the build of dom4 on gump is failing every day. (see [1]) Could someone of the dom4j team have a look at the compilation errors and fix the code ? 128 projects are dependent upon dom4j in gump. Cheers, Antoine

[dom4j-dev] [announce] RefactorIT OpenSource Community License for dom4j

2004-03-15 Thread Maarten Coene
Hi, RefactorIT has added dom4j to it's list of featured open source projects. This means that all the power of RefactorIT is available for the dom4j sources. You can fine more information about RefatorIT at http://www.refactorit.com More information about the OpenSource Community License can

Re: [dom4j-dev] occasional bug in selectNodes method?

2004-03-22 Thread Maarten Coene
Hi Donald, this seems like a Jaxen problem to me. I've updated the sources recently to use the latest jaxen release, so your problem could be solved by this. Also, the quote-problem you mention with the attributes values should also has been fixed with the current CVS sources. Could you

Re: [dom4j-dev] current cvs does not build

2004-03-22 Thread Maarten Coene
try build jar or maven jar Maarten Donald Ball wrote: I cannot build the latest cvs. I get multiple javac errors when I run ant package, mostly related to the xml pull parser library not being found. erm? - donald --- This SF.Net email

Re: [dom4j-dev] occasional bug in selectNodes method?

2004-03-23 Thread Maarten Coene
Donald, Could you provide a failing code-example or junit-test ? regards, Maarten Donald Ball wrote: Maarten Coene wrote: this seems like a Jaxen problem to me. yeah, sure does I've updated the sources recently to use the latest jaxen release, so your problem could be solved by this. Also

[dom4j-dev] [announce] dom4j 1.5 beta1 released

2004-03-26 Thread Maarten Coene
Hi all, a first beta of the new dom4j has been released and can be downloaded from http://www.dom4j.org/index.html . This release contains several bugfixes and patches, like: - Fixed encoding bug in Document.asXML() and DocumentHelper.parseText(). - Fixed bug in SAXReader that caused problems

Re: [dom4j-dev] [announce] dom4j 1.5 beta1 released

2004-03-26 Thread Maarten Coene
, Maarten Coene wrote: - Fixed bug in XMLWriter where namespace declarations were duplicated. --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn

Re: [dom4j-dev] [announce] dom4j 1.5 beta1 released

2004-03-26 Thread Maarten Coene
Hi Paul, Paul Libbrecht wrote: Mmmh, OK, but if you said there has been some revisions, I'll have to test it before... my issues were related to indented-html-output which was inserting spurious spaces between text-elements... (and this comes into jelly and maven) I don't think HTML related

Re: [dom4j-dev] [announce] dom4j 1.5 beta1 released

2004-03-26 Thread Maarten Coene
Paul Libbrecht wrote: On 26-Mar-04, at 12:50 Uhr, Maarten Coene wrote: I don't think HTML related code has been changed, so your problems will probably still exist. If you could post a bug report (and a patch if you have one), I can work on it to get is resolved in the next release. Good

Re: [dom4j-dev] Flight simulator in dom4j?

2004-03-26 Thread Maarten Coene
hehe, you've discovered my secret plans ;-) thanks for reporting, I'll remove them in the next release ... thanks Maarten Mike Skells wrote: Hi I was browsing the reports for the 1.5b1 and spotted a reference to http://www.dom4j.org/xref/org/FlightSim.html Is this a new direction for the

[dom4j-dev] syncmail

2004-04-30 Thread Maarten Coene
Hi, I have enabled the CVS syncmail script to send CVS changes to '[EMAIL PROTECTED]' . This means: - if you are an (active) developer of dom4j: you should subscribe to that list - if you are no developer, but you are interested in seeing the dom4j changes: subscribe to that list - if you

Re: [dom4j-dev] Nested exception: Could not initialize a SAX Parser

2004-05-20 Thread Maarten Coene
Michael, Could you give some more information? - what dom4j version are you using? - is there a stack-trace of your error? regards, Maarten On Wed, 19 May 2004 [EMAIL PROTECTED] wrote: While parsing XML received from MQSeries start getting this error: Nested exception: Could not initialize a

Re: [dom4j-dev] One more test for HTMLWriter

2004-06-04 Thread Maarten Coene
Paul, I've committed a new XMLWriter class to CVS to solve your issue. I hope it's finally fixed now, could you check it out? If it still doesn't work as expected, could you provide some additional junit tests that illustrate the possible problem(s)? thanks, Maarten On Fri, 4 Jun 2004, Paul

Re: [dom4j-dev] Document deep copy

2004-06-23 Thread Maarten Coene
This should create a deep copy of the whole XML tree. If this isn't the case, please submit a bug report. Maarten Grosman wrote: Hello , Document doc2 = doc1.clone(); will this deep copy the whole XML tree or just the document instance ? if not, how would i implement a deep copy of a

[dom4j-dev] [GUMP@brutus]: dom4j/dom4j success

2004-07-25 Thread Maarten Coene
To whom it may satisfy... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact folk at [EMAIL PROTECTED] Project dom4j *no longer* has an issue. Project State : 'Success' Full details are

Re: [dom4j-dev] Cookbook fixes

2004-08-17 Thread Maarten Coene
Patch applied! The website will be updated when dom4j 1.5 final is released (should be very soon now). Thanks a log Andriy :-) Maarten Andriy Palamarchuk wrote: Style, misspellings fixes. Note, I speak US English (not natively). Regards, Andriy PS: I'm not subscribed to the list, so contact me

[dom4j-dev] [announcement] dom4j 1.5 released!

2004-09-03 Thread Maarten Coene
The dom4j team is pleased to announce the dom4j 1.5 release! http://dom4j.org dom4j: the flexible XML framework for Java Changes in this version include: New Features: o Added initial JAXB support. Thanks to Wonne Keysers. o Added getXMLEncoding() method to org.dom4j.Document which returns the

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) success

2004-10-12 Thread Maarten Coene
To whom it may satisfy... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j *no longer* has an issue. The current state of this project is 'Success',

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) failed

2004-10-15 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j has an issue affecting its community integration. This issue affects 31

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) success

2004-10-16 Thread Maarten Coene
To whom it may satisfy... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j *no longer* has an issue. The current state of this project is 'Success'.

[dom4j-dev] [ANN] dom4j 1.5.1 has been released !

2004-10-29 Thread Maarten Coene
The dom4j team is pleased to announce the dom4j 1.5.1 maintenance release! You can find a download link on http://www.dom4j.org Changes in this version include: New Features: o Added support for the XPP3 parser. Thanks to Pelle Braendgaard. Fixed bugs: o Fixed problem where the namespace prefix

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) failed

2004-11-12 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j has an issue affecting its community integration. This issue affects 94

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) failed

2004-11-13 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j has an issue affecting its community integration. This issue affects 94

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) failed

2004-11-14 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j has an issue affecting its community integration. This issue affects 85

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) success

2004-11-15 Thread Maarten Coene
To whom it may satisfy... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j *no longer* has an issue. The current state of this project is 'Success'.

[dom4j-dev] [ANN] dom4j 1.5.2 released!

2004-11-16 Thread Maarten Coene
The dom4j team is pleased to announce the dom4j 1.5.2 release! http://dom4j.org dom4j: the flexible XML framework for Java Changes in this version include: New Features: o Added a SAXEventRecorder that can replay SAX events at a later time. This provides an alternative serialization approach.

Re: [dom4j-dev] XUpdate update

2004-11-17 Thread Maarten Coene
Hi Robert, it would be great if you could create a feature request on SF and upload thezip file over there. If that doesn't work, you can send the zip file directly to me. thanks, MaartenRobert McIntosh [EMAIL PROTECTED] wrote: Ok, I have a first cut of the xupdate extension ready, with junit

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) success

2004-12-06 Thread Maarten Coene
To whom it may satisfy... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j *no longer* has an issue. The current state of this project is 'Success'.

[dom4j-dev] coding conventions dom4j sources

2004-12-09 Thread Maarten Coene
Hi all, I'm busy with creating a checkstyle configuration for the dom4j sources. It will be based on the SUN coding conventions, but with some modifications to the SUN configuration that comes with checkstyle becasue there were more than 25000 errors. I already have reformatted all sourcefiles

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) failed

2005-01-15 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j has an issue affecting its community integration. This issue affects 76

Re: [dom4j-dev] 1.5.2 - Unable to clone Namespace nodes?

2005-02-22 Thread Maarten Coene
This seems like a bug to me. The only workaround I can think of at the moment is to write your DOMDocument as XML to a String and parse that String again to obtain a copy of your document. thanks for the report regards, Maarten [EMAIL PROTECTED] schreef: Hello there, I'm new to this mailing

RE: [dom4j-dev] 1.5.2 - Unable to clone Namespace nodes?

2005-02-25 Thread Maarten Coene
- Unable to clone Namespace nodes? From: "Maarten Coene" <[EMAIL PROTECTED]> Date: Tue, February 22, 2005 11:30 am To: [EMAIL PROTECTED] Cc: dom4j-dev@lists.sourceforge.net This seems like a bug to me. The only workaround I can think of at the moment is to write your DOMDocument as

Re: [dom4j-dev] Document.getXMLEncoding / Document.asXML () buggy

2005-03-04 Thread Maarten Coene
Carlo, this seems like a bug to me. you can create bug reports at the following link: http://sourceforge.net/tracker/?group_id=16035atid=116035 regards, MaartenCarlo Dapor [EMAIL PROTECTED] wrote: First off, thanks for providing this open source XML library.I have been using with pleasure for a

Re: [dom4j-dev] [ dom4j-Bugs-1156909 ] Buggy Document.getXMLEncoding / Document.asXML

2005-03-11 Thread Maarten Coene
"David J. M. Karlsen" [EMAIL PROTECTED] wrote: SourceForge.net wrote:Bugs item #1156909, was opened at 2005-03-04 11:50 Is this fixed in CVS? No, but you don't have this problem if you use Xerces as XML parser. If so I'm quite tempted to run a CVS-version if bugIDs: 1156909, 1088314,

[dom4j-dev] IntelliJ IDEA open-source licenses

2005-03-16 Thread Maarten Coene
Hi, JetBrains was so kind to provide an open-source license of its famous IntelliJ IDEA product. If you don't know what IntelliJ IDEA is, take a look at the following link: http://www.jetbrains.com/idea/index.html If you are a dom4j developer and want to use IntelliJ IDEA for your development

Re: [dom4j-dev] DefaultElement.setContent(List content) destroys parent-relationship?

2005-03-16 Thread Maarten Coene
Hi Peter, I've applied your patch. Thanks! :-) regards, Maarten Peter Schaefer schreef: Hi all, is this a bug or a feature? public void testParentAfterSetContent() throws Exception { Document doc = DocumentHelper.parseText(root + aa/a + bb/b + xx/x + dd/d + /root); Node

Re: [dom4j-dev] On Jaxen/dom4j relationship

2005-03-31 Thread Maarten Coene
Paul, I think it's a good idea to move jaxens dom4j implementation to the dom4j project. I've suggested this some time ago on the jaxen mailling lists, but I didn't get much response. Remark that since dom4j version 1.5, jaxenclasses areno longer included in the dom4j-* jars. regards,

Re: [dom4j-dev] On Jaxen/dom4j relationship

2005-04-01 Thread Maarten Coene
31, 2005, at 3:44 AM, Maarten Coene wrote: Paul, I think it's a good idea to move jaxens dom4j implementation to the dom4j project. I've suggested this some time ago on the jaxen mailling lists, but I didn't get much response. Remark that since dom4j version 1.5, jaxenclasses areno longer

Re: [dom4j-dev] version without threadlocal dependency ?

2005-04-02 Thread Maarten Coene
Max, I hope to release a new dom4j version within the next 2 weeks. regards, MaartenMax Rydahl Andersen [EMAIL PROTECTED] wrote: Hi guys,I have been hit a number of times now in the hibernateteam by users that runs out of memory because of the threadlocalcache strategy used in latest dom4j

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) failed

2005-04-12 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j has an issue affecting its community integration. This issue affects 118

[dom4j-dev] [announcement] dom4j 1.6 released!

2005-04-15 Thread Maarten Coene
The dom4j team is pleased to announce the dom4j 1.6 release! http://dom4j.org dom4j: the flexible XML framework for Java Changes in this version include: New Features: o Added a methods to SAXReader allowing to specify the encoding used when reading XML sources. Thanks to Filip Jirsak. o Added a

Re: [dom4j-dev] XPath-changes in 1.6

2005-04-18 Thread Maarten Coene
David, I'm forwarding this to the jaxen mailinglist, I hope they can answer question 2 and 3 regards, Maarten David J. M. Karlsen wrote: While upgrading from 1.52 to 1.6 I've discovered these changes: 1) Document doc2 = document.selectSingleNode(/some/xpath).getDocument(); now returnes the whole

[dom4j-dev] dom4j 1.x and dom4j 2.0

2005-05-05 Thread Maarten Coene
Hi, I've started with the dom4j 2.0 development. The biggest change will be a major refactoring of the current implementation and a new project structure. This will hopefully make a. the sources better maintainable b. it easier to write new extensions I will try to keep the dom4j interfaces as

Re: [dom4j-dev] dom4j 1.x and dom4j 2.0

2005-05-09 Thread Maarten Coene
David, could you enter an RFE for this on the dom4j sourceforge page? This ensures we won't forget it... You can create an RFE from here: http://www.sf.net/projects/dom4j thanks Maarten"David J. M. Karlsen" [EMAIL PROTECTED] wrote: Maarten Coene wrote: I've started with the dom4j 2.0 d

Re: [dom4j-dev] XPP2 part assumes outdated version

2005-05-14 Thread Maarten Coene
Wolfgang, I've upgraded dom4j to use the latest XPP2 version. If you want to try it out, check out the DOM4J_1_X_BRANCH branch from CVS, or you can wait for the new 1.6.1 release next week. thanks! Maarten Wolfgang Baer wrote: Hi all, in the process of packaging dom4j for the debian project I

[dom4j-dev] [GUMP@brutus]: Project dom4j (in module dom4j) failed

2005-05-19 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j has an issue affecting its community integration. This issue affects 128

[dom4j-dev] [announcement] dom4j 1.6.1 released!

2005-05-20 Thread Maarten Coene
The dom4j team is pleased to announce the dom4j 1.6.1 release! Changes in this version include: Fixed bugs: o Fixed a problem with XMLWriter that was causing too many new lines to be written to the resulting XML. Thanks to Thomas Fromm. Changes: o Updated the XPP2 implementation to version

[dom4j-dev] [GUMP@vmgump]: Project dom4j (in module dom4j) failed

2005-06-07 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j has an issue affecting its community integration. This issue affects 1

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-06-20 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-06-27 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-06-29 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-06-30 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-01 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-02 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-03 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-04 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-05 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-06 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-07 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-08 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [GUMP@vmgump]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-09 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-11 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-14 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-20 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-23 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2005-07-24 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2005-10-18 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2006-07-09 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2006-10-01 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2006-10-06 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2006-10-07 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2006-10-08 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2006-10-10 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2006-10-11 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2006-10-12 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

Re: [dom4j-dev] Is dom4j still maintained?

2006-10-21 Thread Maarten Coene
Hi Richard,dom4j is currently not being actively maintained. The main reason is that I don't have the time to do it at the moment (and this won't change in the near future). It should be better if someone else did this job, but no-one has volunteered yet...regards,Maarten- Original Message

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-tests (in module dom4j) failed

2006-12-16 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-tests has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2006-12-28 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD-tests (in module dom4j-HEAD) failed

2006-12-28 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD-tests has an issue affecting its community integration. This issue

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2006-12-29 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD-tests (in module dom4j-HEAD) failed

2006-12-29 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD-tests has an issue affecting its community integration. This issue

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2006-12-30 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2006-12-31 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD-tests (in module dom4j-HEAD) failed

2006-12-31 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD-tests has an issue affecting its community integration. This issue

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD-tests (in module dom4j-HEAD) failed

2007-01-01 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD-tests has an issue affecting its community integration. This issue

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD-tests (in module dom4j-HEAD) failed

2007-01-03 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD-tests has an issue affecting its community integration. This issue

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD-tests (in module dom4j-HEAD) failed

2007-01-04 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD-tests has an issue affecting its community integration. This issue

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2007-01-05 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2007-01-06 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2007-01-07 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD-tests (in module dom4j-HEAD) failed

2007-01-07 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD-tests has an issue affecting its community integration. This issue

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2007-01-08 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD-tests (in module dom4j-HEAD) failed

2007-01-08 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD-tests has an issue affecting its community integration. This issue

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD (in module dom4j-HEAD) failed

2007-01-09 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD has an issue affecting its community integration. This issue affects

[dom4j-dev] [EMAIL PROTECTED]: Project dom4j-HEAD-tests (in module dom4j-HEAD) failed

2007-01-09 Thread Maarten Coene
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dom4j-HEAD-tests has an issue affecting its community integration. This issue

  1   2   >