Re: version support question

2022-05-17 Thread Paul Libbrecht
Interesting question… Where do you see “Support” offered within the Apache Commons website? I see rather “no warranty” written in most places… as is the case in most open-source softwares. Paul On 17 May 2022, at 10:01, Ian wrote: > Hi, may I know if the versions listed below are still

Re: Parsing and solving algebraic equation from string

2014-07-28 Thread Paul Libbrecht
Send an announce to www-m...@w3.org? I'm happy to do that. Aim at ASCIIIMath syntax? paul On 28 juil. 2014, at 16:16, William Speirs wspe...@apache.org wrote: So here is an idea, let's not worry about where said project would live, but focus on implementing/working on it. I'm happy to host

Re: Parsing and solving algebraic equation from string

2014-07-21 Thread Paul Libbrecht
Coool. License? paul On 21 juil. 2014, at 14:26, William Speirs wspe...@apache.org wrote: It's certainly incomplete, but I started working on a CAS (Computer Algebra System: http://en.wikipedia.org/wiki/Computer_algebra_system) that was backed by commons-math:

Re: Parsing and solving algebraic equation from string

2014-07-20 Thread Paul Libbrecht
Mansour, aren't you looking for a computer-algebra system? There's a broad amount out there, but not many in Java. Also, parsers for formulæ exist in numerous fashions. You may want to look at the content-mathml-oriented processors listed in the MathML software list. It's full of old things too,

Re: [Jelly] XML ForEach tag hangs

2011-05-03 Thread Paul Libbrecht
Martin, your x namespace prefix is not properly bound. Somewhere up in your script, you should have xmlns:x=jelly:xml hope it helps. paul Le 3 mai 2011 à 22:59, Martin Gainty a écrit : org.apache.commons.jelly.JellyException: file:/C:/maven-plugin/jelly/commons-jel

Re: [Jelly] XML ForEach tag hangs

2011-04-30 Thread Paul Libbrecht
Csaba, As Martin has suggested, the underlying XML parser could be guilty. I would rather suspect an overly old dom4j or jaxen (that would be in the container's classpath hence overriding the webapp's). Are you able to find their version? Otherwise I can dig out a form of jwhich in jelly. paul

Re: [Jelly] XML ForEach tag hangs

2011-04-30 Thread Paul Libbrecht
Here's a little script that will tell you the URL of classes of interest: j:jelly trim=false xmlns:j=jelly:core j:new var=x className=org.dom4j.tree.DefaultDocument/ class ${x.getClass()} loaded from ${x.getClass().getResource('DefaultDocument.class')} j:new var=x

Re: [Jelly] XML ForEach tag hangs

2011-04-30 Thread Paul Libbrecht
and Settings/usr/Desktop/commons-jelly-1.0/lib/dom4j-1.5.2.jar!/org/dom4j/tree/DefaultDocument.class class org.xml.sax.helpers.DefaultHandler loaded from jar:file:/C:/Program%20Files/ibm/WebSphere/AppServer1/java/jre/lib/xml.jar!/org/xml/sax/helpers/DefaultHandler.class 2011/4/30 Paul Libbrecht p

Re: [Jelly] XML ForEach tag hangs

2011-04-30 Thread Paul Libbrecht
Le 30 avr. 2011 à 22:35, Csaba Győrffy a écrit : does it also spin 100%? Yes, it is:/ Actually that's good news to my eyes. The guilty is probably jaxen then. Try removing the last line, just keep: x:set select=$doc/a/b var=x/ it should still spin 100%. If not, we need to try more things.

Re: [Jelly] XML ForEach tag hangs

2011-04-30 Thread Paul Libbrecht
Le 30 avr. 2011 à 23:27, Csaba Győrffy a écrit : That is very dark indeed! Can you use find to see where that jaxen is? I have jaxen-1.1-beta-4.jar in my {jelly}\lib folder. I also have jaxen-1.1-beta-8.jar and jaxen-1.1.1.jar in two locations which are definitely not on the

Re: [Jelly] XML ForEach tag hangs

2011-04-30 Thread Paul Libbrecht
Csaba, googling around about websphere and old jars should ring some bells, I've heard lots about jdom in this respect. Just for fun, you could try to replace all jaxen's by the beta and see if it also works. It would then be something that classes are loaded here and there and end-up be

Re: [Jelly] Is development still in progress

2011-03-27 Thread Paul Libbrecht
Csaba, jelly is not in active development. I am still scheduling to address at least the dangling issues but I have never been able to find the right time. If you look at issues you'll see that contributions could still be made in a way that is easier to apply than what is available. The

Re: Redirect shell output

2010-10-24 Thread Paul Libbrecht
Johan, which project are you asking this from? commons-exec? Please read the netiquette of this list... you need to make this clear otherwise you don't reach the right people. paul On 24 oct. 2010, at 10:56, Johan Hertz wrote: Hi, I am trying to redirect output using something like this:

[dbcp] query timeout?

2010-07-22 Thread Paul Libbrecht
Hello list, could there be a way for me to set a DBCP configuration stopping a query if it takes too long? Ideally, this should be in the database (MySQL in my case) but I see not place to put that in MySQL. thanks in advance paul

Re: [jexl] custom expressions / registering functions

2010-05-25 Thread Paul Libbrecht
Le 25-mai-10 à 06:40, Adrian Herscu a écrit : On 24/05/2010 22:52, Paul Libbrecht wrote: Jexl containers allow you to add objects. Can you, please, send a link for more info? At least jelly does. Jelly is at... commons-jelly: http://commons.apache.org/jelly/ some other projects

Re: [jexl] custom expressions / registering functions

2010-05-24 Thread Paul Libbrecht
Jexl containers allow you to add objects. At least jelly does. And invoking methods on these functions sounds like an easy thing. paul Le 23-mai-10 à 15:39, Adrian Herscu a écrit : Hi all, I am looking for an expression language to using in a testing framework that I am designing. The

Re: [Jelly] Escaping variables

2010-01-04 Thread Paul Libbrecht
Oliver, an answer for you on: http://commons.apache.org/jelly/faq.html #escapingJexl the answer says to use double dollar signs. paul Le 04-janv.-10 à 22:35, Oliver Heger a écrit : Hi, I could not find the answer to the following question: Jelly tags per default evaluate variables

Re: Jelly Question/Issue - XML with namespace in template??

2009-07-21 Thread Paul Libbrecht
Jason, I still don't understand your point. If you want this kind of arbitrary text generation than you cannot avoid leaving the cute world of SAX pipelines which is where jelly lives. You can easily use the disablement of output escaping if you wish but this can only happen at the final

Re: New Tag - Looking for Comments (Maintain user code during regeneration of files)

2009-07-21 Thread Paul Libbrecht
Jason, A matter of protocol: what you describe is somewhat out of the world of any applicable library, I feel... or is it for jelly? please put the right subject and do not steal threads by answering a mail into another topic. The thing you describe seems to be somewhat of a possibly

Re: Jelly Question/Issue - XML with namespace in template??

2009-07-16 Thread Paul Libbrecht
Jason, Le 16-juil.-09 à 22:45, Jason Weinstein a écrit : How does Jelly handle xml in the template?? as is Is it a good option for content with a lot of xml namespaces not referencing taglibs. definitely. What about if validation is turned off? jelly has forgotten schemas since

Re: [Digester] HTML entity decoding?

2009-04-22 Thread Paul Libbrecht
Le 22-avr.-09 à 06:06, Otis Gospodnetic a écrit : I'm no XML guru, so some of this stuff is fuzzy. Please see my comments/questions below. I'm happy to help ;-) XML files I'm trying to parse do have links to DTDs in the header (sometimes with a full http://... URL, and sometimes with

Re: Trying to write data on separate lines of email sent by jelly script

2008-11-10 Thread Paul Libbrecht
Bill, have you tried trim=no at each child of email? That is generally the way to go in jelly but plain-text-formatting is always difficult in jelly. My experience was you end up having a slightly unreadable code (but a readable output!). paul Le 10-nov.-08 à 20:18, Cappoli, William a

Re: [Jelly] how is the Jelly development status?

2008-03-14 Thread Paul Libbrecht
Le 14 mars 08 à 20:57, Henri Yandell a écrit : On Fri, Mar 14, 2008 at 1:26 AM, T. H. Lin [EMAIL PROTECTED] wrote: from the website I can see only release 1.0 (from year 2005) On JIRA there are another release 1.0.1 or even 1.1 in plan. but I can not find out the time line. I don't think

Re: [Jelly] undefined tag is just ignored

2008-03-13 Thread Paul Libbrecht
T.H., no, it is not ignored... it is output... This is part of a strength and the good way to mergeprocessing- elements and xml-elements-to-be-output. It has been often said, though, that unknown tag in jelly-taglibs- namespaces should trigger an exception, there's an issue about it but