Re: -D and Maven

2003-06-04 Thread dIon Gillard
... -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Where can i get the latest jelly installable

2004-05-21 Thread Dion Gillard
The core jelly jar that maven uses is of the form: commons-jelly/jars/commons-jelly-timestamp.jar on ibiblio. That should contain the core tags. On Fri, 21 May 2004 22:31:29 +0530, Jagannathan Veeraraghavan [EMAIL PROTECTED] wrote: Hi guys, I am a jelly fan using it for the past 3 months.

Re: [jelly] Expression/Test syntax

2004-07-04 Thread Dion Gillard
Try: core:if test=${var != null} /core:if See http://www.multitask.com.au/people/dion/archives/000188.html for more. On Sat, 03 Jul 2004 21:25:04 +0200, Peter Nabbefeld [EMAIL PROTECTED] wrote: Hello, can anybody tell me, how to write test conditions for core:if etc.? I've been looking

Re: [jelly] Expression/Test syntax

2004-07-04 Thread Dion Gillard
use ${empty(var)} rather than != null. On Sun, 04 Jul 2004 19:50:15 +0200, Peter Nabbefeld [EMAIL PROTECTED] wrote: Dion Gillard schrieb: Try: core:if test=${var != null} /core:if Thank You for Your answer, but it doesn't work. In the following fragment I've changed

Re: [Jelly] Problems with XML schema using Jelly and Avalon

2004-07-24 Thread Dion Gillard
Sounds like a dom4j bug we're exposing. On Fri, 23 Jul 2004 15:05:00 -0500, Jon Brisbin [EMAIL PROTECTED] wrote: I can't find anything in the archives about this, even though I'm sure something like this is in there. Call me stupid... Anyway, I have this XML configuration file that I'm

Re: [jelly] disable escaping of and

2004-07-29 Thread Dion Gillard
Use this: http://jakarta.apache.org/commons/jelly/libs/xml/tags.html#xml:doctype On Fri, 30 Jul 2004 14:27:58 +1200, Jason Lea [EMAIL PROTECTED] wrote: I am having some trouble with having characters xml encoded in my jelly script. I am trying to generate an XHTML web page, which I send

Re: [Jelly/Jexl] How to add two int values?

2004-08-01 Thread Dion Gillard
What types are x and y? On Sun, 01 Aug 2004 14:27:08 +0200, Peter Nabbefeld [EMAIL PROTECTED] wrote: Hi, I'm trying to write a Jelly script for Maven. I've tried ${x + y} and ${x} + ${y} as the value argument, both don't work for me. I don't know, if this is a problem with the archaic

Re: [Jelly/Jexl] How to add two int values?

2004-08-01 Thread Dion Gillard
=${line.substring(_cpos, _cpos + _pos)}/ !-- j:invoke var=_lineDir method=substring on=${line} j:arg type=int value=${_cpos)}/ j:arg type=intj:expr value=_cpos + _pos//j:arg /j:invoke -- Peter Dion Gillard schrieb: What types are x and y? On Sun, 01 Aug 2004 14

Re: [Jelly] Define Beans

2004-08-12 Thread Dion Gillard
On Fri, 13 Aug 2004 00:39:35 +0200, Stefan Kleineikenscheidt [EMAIL PROTECTED] wrote: Hello, I would like to create a bean, which has a complex property. My Jelly script looks something like that, but it doesn't work: ---% define:taglib

Re: [Jelly] pom.id.substring(33) in jelly-tags/tag-project.xml

2004-08-15 Thread Dion Gillard
id == groupId + : artifactId groupId == commons-jelly artifactId = commons-jelly-tags-swt id = commons-jelly:commons-jelly-tags-swt On Sun, 15 Aug 2004 14:10:35 +0800, Rice Yeh [EMAIL PROTECTED] wrote: Hi, I am new to maven and jelly. When i study project.xml in jelly-tags/tag-project.xml,

Re: [Jelly] no swt-win32-2128 in java.library.path in Win 2000

2004-08-15 Thread Dion Gillard
Are the swt 2.1 binaries on the path? On Sun, 15 Aug 2004 14:35:38 +0800, Rice Yeh [EMAIL PROTECTED] wrote: Hi, My Os is windows 2000. I meet the error 'no swt-win32-2128 in java.library.path' when running maven demo in swt tag subproject. I check the project.xml, it says win32-2.1.0 is

Re: [Jelly] pom.id.substring(33) in jelly-tags/tag-project.xml

2004-08-15 Thread Dion Gillard
like it too much and it would be nice to have needed accessors on the pom, if that would be possible. paul Le 15 août 04, à 11:44, Dion Gillard a écrit : id == groupId + : artifactId groupId == commons-jelly artifactId = commons-jelly-tags-swt id = commons-jelly:commons-jelly

Re: [Jelly] no swt-win32-2128 in java.library.path in Win 2000

2004-08-15 Thread Dion Gillard
On Mon, 16 Aug 2004 02:24:32 +0800, Rice Yeh [EMAIL PROTECTED] wrote: Hi, swt 2.1 binaries is not on the path. Why it says win32-2.1.0 is depended on in project.xml, but swt-win32-2128 is needed when running. The swt-2.1.jar uses native code in swt-win32-2128.dll. Maven doesn't handle

Re: Jelly applicable? / Current Status? / Need help installing Jelly

2004-08-16 Thread Dion Gillard
FWIW, I'm hoping we get to do a new release of Jelly very soon. On Mon, 16 Aug 2004 22:11:11 +0200, Mariano Kamp [EMAIL PROTECTED] wrote: Paul, thanks very much for taking the time to share your insights. I now believe to understand that the original maintainer retired, but there

JEXL and a release

2004-08-17 Thread Dion Gillard
Jexl currently has one outstanding issue in bugzilla ( the ability to reference statics ), and is well overdue for a release. My proposal is that we give this issue a go and if it's not too much effort, include it in a 1.0 release. The 1.0 release should be also be accompanied by a little more

Re: [VOTE] JEXL and a release

2004-08-23 Thread Dion Gillard
On Tue, 24 Aug 2004 10:52:28 +0900, Geoff Waggott [EMAIL PROTECTED] wrote: Hi, I'm using JEXL in a XMLC-like XML transformation library I'm writing. Cool. Overall it seems very stable. There are a couple issues I've come across: - The overloaded + string concatenation operator only seems to

Re: [VOTE] JEXL and a release

2004-08-23 Thread Dion Gillard
On Tue, 24 Aug 2004 10:52:28 +0900, Geoff Waggott [EMAIL PROTECTED] wrote: Hi, I'm using JEXL in a XMLC-like XML transformation library I'm writing. Overall it seems very stable. There are a couple issues I've come across: - The overloaded + string concatenation operator only seems to work

Re: [VOTE] JEXL and a release

2004-08-23 Thread Dion Gillard
) at org.apache.commons.jexl.parser.ASTAddNode.value(ASTAddNode.java:83) at org.apache.commons.jexl.parser.ASTExpression.value(ASTExpression.java:47) at org.apache.commons.jexl.ExpressionImpl.evaluate(ExpressionImpl.java:83) Anyway thanks again for your quick action on this. Geoff Dion Gillard wrote

Re: [VOTE] JEXL and a release

2004-08-23 Thread Dion Gillard
This looks like a bug in the grammar, in that size is always followed by (. I've added a commented out assertion to the test cases, and an extra check to ensure getSize() works. I'd rather leave the grammar changes, such as this to post 1.0. On Mon, 23 Aug 2004 23:22:45 -0500, Jacob Kjome

JEXL and a release - distribution

2004-08-24 Thread Dion Gillard
Whichever the outcome of the vote for either a beta or an RC, I've placed the Maven distribution that I'm planning to use at: http://cvs.apache.org/~dion/commons-jexl-1.0-beta-3-SNAPSHOT.zip http://cvs.apache.org/~dion/commons-jexl-1.0-beta-3-SNAPSHOT-src.zip

JEXL 1.0-RC1

2004-08-26 Thread Dion Gillard
The commons-jexl team is pleased to announce the Commons JEXL 1.0-RC1 release! http://jakarta.apache.org/commons/jexl/ Jexl is an implementation of the JSTL Expression Language with extensions. Changes in this version include: New Features: o Handle any size() method that returns an int

Re: RE : [ANNOUNCEMENT] Commons Validator 1.1.3 Released

2004-08-27 Thread Dion Gillard
Go for it. On Fri, 27 Aug 2004 11:20:53 -0400, James Mitchell [EMAIL PROTECTED] wrote: Would you like me to take care of that? Martin? -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: Dion

Jelly and a new beta release

2004-08-30 Thread Dion Gillard
From JIRA there is one issue remaining for beta 4 : http://issues.apache.org/jira/browse/JELLY-47 which seems to be a dom4j related issue. I'd like to do a new release of Jelly ASAP and start planning the next beta. If anyone has bugs they'd like fixed for the beta or *urgent* new

JEXL and ant like properties

2004-08-31 Thread Dion Gillard
I know this is an issue for Maven and Jelly, specifically http://issues.apache.org/jira/browse/JELLY-87 I've got a solution that allows JEXL to handle the following: JexlContext jc = JexlHelper.createContext(); String value = Stinky Cheese;

Re: JEXL and ant like properties

2004-08-31 Thread Dion Gillard
meant to ask before was is this something people would like for the 1.0 release? All the JEXL tests work with this new feature, and it could make Jelly's life a little easier as well. On Tue, 31 Aug 2004 17:32:59 +1000, Dion Gillard [EMAIL PROTECTED] wrote: I know this is an issue for Maven

Re: Jelly and a new beta release

2004-09-01 Thread Dion Gillard
that they can be released independently. On Tue, 31 Aug 2004 14:46:24 +1000, Dion Gillard [EMAIL PROTECTED] wrote: From JIRA there is one issue remaining for beta 4 : http://issues.apache.org/jira/browse/JELLY-47 which seems to be a dom4j related issue. I'd like to do a new release of Jelly

[VOTE] JEXL 1.0

2004-09-05 Thread Dion Gillard
The JEXL release candidate has been in the wild for a week or so now, and there have been no new issues raised. I'd like to cut the 1.0 release from CVS HEAD in the next few days. Here's my +1. [ ] +1 - Yes, Release the current code as 1.0. [ ] +0 - Can't see why not [ ] -1 - Please don't.

Re: Jelly and a new beta release

2004-09-07 Thread Dion Gillard
On Tue, 7 Sep 2004 09:29:29 -0700 (PDT), S Schrem [EMAIL PROTECTED] wrote: [x] -1 - No, don't release! Here's why I've been developing with Jelly b3 (in isolation) for a while and have encountered and fixed various problems. These problems occur in the core implementation, core tags,

Re: [Jelly] How to do multi-document xpath selections

2004-09-08 Thread Dion Gillard
Could you re-phrase the question or give us a more concrete example? On Wed, 8 Sep 2004 17:54:01 +0200, Marc DEXET [EMAIL PROTECTED] wrote: Hello. I'm trying to use jelly (once again) to run xpath selection on several document input, but I don't succeed. Anybody have a trail to follow ?

Re: Jelly and a new beta release

2004-09-08 Thread Dion Gillard
of the above in more detail. --- Dion Gillard [EMAIL PROTECTED] wrote: Ok, all known issues for beta-4 have been completed. I'd like to do a beta release in the next day or so. Please vote on the beta release: [ ] +1 - Yes release [ ] +0 - Release, I have minor issues which can

Re: [jelly] defined tags and attributes

2004-09-09 Thread Dion Gillard
That sounds like a bug to me. If you could come up with a failing test case, that'd be great. On Thu, 9 Sep 2004 10:21:34 +0200, Paul Libbrecht [EMAIL PROTECTED] wrote: Dear Jellyers, If I have defined a tag named t using the jelly-define tag-library I can invoke t attribute=value

Re: Jelly and a new beta release

2004-09-09 Thread Dion Gillard
, they seem to be either fixed, require that I check the beta candidate, or explain/justify them more seriously/thoroughly and which shouldn't hold up the beta since I can't do it in a short period of time. Serge --- Dion Gillard [EMAIL PROTECTED] wrote: I'm figuring by the silence and lack

Jelly 1.0 Beta 4 Release

2004-09-09 Thread Dion Gillard
The commons-jelly team is pleased to announce the commons-jelly 1.0-beta-4 release! http://jakarta.apache.org/commons/jelly/ The distributions are currently available at: http://www.apache.org/dist/java-repository/commons-jelly/distributions/?C=M;O=D and will be available on the usual mirrors

Re: [jelly][jelly:xml] problem adding attributes to elements in jelly:xml

2004-09-14 Thread Dion Gillard
Trim all the whitespace before the x:attribute tag On Tue, 14 Sep 2004 10:53:25 -0400, Dan Yoder [EMAIL PROTECTED] wrote: The following jelly xml is generating an exception. I've tried both Jelly:XML 20040613 and 1.0 in the Maven repository. I haven't been able to find an example so I'm not

Re: [jelly] escape quote in litteral xpath.

2004-09-14 Thread Dion Gillard
Did you try this: ${wrapper.select(/path/to/[EMAIL PROTECTED] = 'attribute_name'])} On Tue, 14 Sep 2004 17:06:03 +0200, Marc DEXET [EMAIL PROTECTED] wrote: Hello everybody. I would create tag that wrap dom4j document. Because I want all select to be trap by this object, I would use jexl

Re: JEXL

2004-09-15 Thread Dion Gillard
Sure, it's being maintained. We've just done a long needed 1.0 release. What did you have in mind? How specifically would you change and or? On Wed, 15 Sep 2004 16:41:43 +0100, Emmanuel Wurth [EMAIL PROTECTED] wrote: Hi Does anybody knows if jexl is still maintained, i would like to

Re: JEXL AND or OR node.

2004-09-16 Thread Dion Gillard
, and have the same kind of faster behavior for the or. Thanks. Emmanuel Wurth Software Engineer Rational Software IBM Software Group 6, rue Brindejonc - Parc Grande Plaine 31505 TOULOUSE CEDEX Officel : +33 5.62.16.56.35 Office Fax: +33 5.62.88.42.99 Dion Gillard [EMAIL PROTECTED] 09/16

Re: Jelly : Is Jelly still active

2004-10-14 Thread Dion Gillard
Andre, where did you send the emails? I haven't seen them. The answer is that JellySwt and the swt jars need the swt binaries in the path (LD_LIBRARY_PATH?). I believe the swt jars that are provided are using the windows native code. Replace the swt jars with the appropriate ones for eclipse

Re: [jelly] maven dist fails - javadoc-1.3.jar not downloaded

2004-10-14 Thread Dion Gillard
I don't see where javadoc is listed as a dependency for Jelly. Are you sure this isn't a maven issue? On Thu, 14 Oct 2004 21:56:33 -0500, Spiegs [EMAIL PROTECTED] wrote: Using the latest code from cvs, doing a maven dist results in the following error: .

Re: Jelly : no swt-win32-2128 in java.library.path

2004-10-15 Thread Dion Gillard
On Fri, 15 Oct 2004 09:09:12 +0300, A Leg [EMAIL PROTECTED] wrote: I Hans is right I found this in build.xml : get dest=${libdir}/swt-win32-2.1.0.jar usetimestamp=true ignoreerrors=true src=http://www.ibiblio.org/maven/swt/jars/swt-win32-2.1.0.jar; and from that I found : The build.xml

Re: [Jelly] Anybody using jellySwt on Linux?

2004-10-15 Thread Dion Gillard
See my other posts. On Fri, 15 Oct 2004 09:04:01 +0300, A Leg [EMAIL PROTECTED] wrote: Hi I try to run jellySwt demo on linux and it fails : no swt-win32-2128 in java.library.path Any body succeed to do it ? Andre

Re: no swt-win32-2128 in java.library.path in LINUX

2004-10-18 Thread Dion Gillard
This was discussed recently. By default JellySWT comes with a windows specific jar. You'll need the linux jar and it's runtime dependencies. On Thu, 14 Oct 2004 11:51:26 +0300, A Leg [EMAIL PROTECTED] wrote: Hi I am interested to use jetty swt for our project.

Re: no swt-win32-2128 in java.library.path in LINUX

2004-10-19 Thread Dion Gillard
On Tue, 19 Oct 2004 07:26:52 +0300, A Leg [EMAIL PROTECTED] wrote: Hi Dion Thank's for answer. Yes and linux jar are in ibiblio, and I can change hardcode for this, I have done it and went one step ahead. Use your own installed libraries. But the problem at the end is natives library

Re: no swt-win32-2128 in java.library.path in LINUX

2004-10-19 Thread Dion Gillard
~/build.properties specify: maven.jar.override=on maven.jar.swt=PATH TO YOUR LIBRARY HERE Hope this helps, On Tue, 19 Oct 2004 10:39:07 +0300, A Leg [EMAIL PROTECTED] wrote: Hi Dion Gillard wrote: On Tue, 19 Oct 2004 07:26:52 +0300, A Leg [EMAIL PROTECTED] wrote: Hi Dion Thank's

Re: [Jelly] Email tags not there, so can you use Commons email

2004-10-20 Thread Dion Gillard
Huh? The email taglib is still there... look in jakarta-commons/jelly/jelly-tags/email On Tue, 19 Oct 2004 09:47:49 +0100, David Wynter [EMAIL PROTECTED] wrote: Hi, I checked CVS and it seems that the email tablib was reomved abotu 20 months ago. But then I found this patch file referring

Util tag library 1.1 released.

2004-10-26 Thread Dion Gillard
The jelly team is pleased to announce the commons-jelly-tags-util 1.1 release! http://jakarta.apache.org/commons/jelly/libs/util/index.html This is a set of Jelly utility tags. Changes in this version include: New Features: o Add util:sort to sort lists, including sorting by bean

Re: JEXL and instanceof

2004-10-26 Thread Dion Gillard
Hmmm not that I know of. instanceof is not a supported operator ATM in JEXL. On Tue, 26 Oct 2004 12:57:28 -0700, Andy Depue [EMAIL PROTECTED] wrote: Does the JEXL expression language have any way to determine if a particular variable is an instance of a particular class? For example:

Re: RE : [Jelly] How to create and use custom scope with standard tag libr ary ?

2004-10-28 Thread Dion Gillard
Ok, I understand. Is there anything on JSL scoping I can read? On Thu, 28 Oct 2004 08:55:06 +0200, Marc DEXET [EMAIL PROTECTED] wrote: Dion Gillard wrote: What about using the scope tag? Because of ScopeTag has a local scoping, and I want to use scoping in a JSL way : first define, run

[VOTE] Jelly and a release

2004-10-28 Thread Dion Gillard
We've covered most of the issues in Jira for Jelly to make a 1.0 release. I'd like to go ahead and make the current code a release candidate, 1.0-RC1. If anyone has changes or bugs that need to be addressed in 1.0, *please* raise them now, so that we can decide to either include them or wait.

Re: [jelly] How work application, session et request scopes in jellyContext

2004-10-28 Thread Dion Gillard
There's currently no way to register scopes like those below without subclassing JellyContext. Even 'systemScope' is not really a defined scope, it's an omnipresent variable. This is something we should consider for Jelly 1.1. On Thu, 28 Oct 2004 10:06:18 +0200, Marc DEXET [EMAIL PROTECTED]

Re: Last HEAD Jelly is going mad ?

2004-10-29 Thread Dion Gillard
Sounds like a bug how is the script being loaded. fileName should be some sort of URL On Fri, 29 Oct 2004 17:03:47 +0200, Marc DEXET [EMAIL PROTECTED] wrote: I've checked out the HEAD branch from CVS and I get a new kind of problem : where I want to run my old buddy jelly script I

Re: [Jelly] More accessible general examples?

2004-11-07 Thread Dion Gillard
Or you could use the dist:install goal. On Sun, 7 Nov 2004 09:01:29 +0100, Paul Libbrecht [EMAIL PROTECTED] wrote: org.apache.commons.jelly.Jelly is runnable on the command-line. However, you need a huge classpath! There's two ways for you in the maven.xml maven pack-fat-jar will (by

Re: [jelly] How is managed class loading for embeded script

2004-11-08 Thread Dion Gillard
On Mon, 08 Nov 2004 17:51:43 +0200, A Leg [EMAIL PROTECTED] wrote: Hi Paul Does that mean if user put any tag in the script he has to adapt build and recompile application ? No. The required jars need to be in the classpath. This question can seems stupid, but one advantage of script

[ANN] Commons Jelly 1.0 Release Candidate 1 released.

2004-11-22 Thread Dion Gillard
The commons-jelly team is pleased to announce the commons-jelly 1.0-RC1 release! http://jakarta.apache.org/commons/jelly/ Jelly is a Java and XML based scripting engine. Jelly combines the best ideas from JSTL, Velocity, DVSL, Ant and Cocoon all together in a simple yet powerful scripting

Re: patch for jelly-tags-interaction

2004-12-09 Thread Dion Gillard
The use of LGPL software in Apache software is still being sorted out. Since we don't actually distribute the taglibs with the required jars, we should have a look at this. On Thu, 9 Dec 2004 15:18:07 -0800, Ryan Christianson [EMAIL PROTECTED] wrote: No, I haven't talked to him. Do we need

Re: Jelly and XML Namespace Problem

2004-12-16 Thread Dion Gillard
Personally, I've got no idea why. Could you please file a JIRA issue? Thanks, On Thu, 16 Dec 2004 03:39:36 -0800 (PST), L. Yeung [EMAIL PROTECTED] wrote: Hi! I've an xml element with an assigned namespace and embedded inside it i called jelly:xml import another jelly file. The resulting xml

Re: JEXL: Is there a way to register functions?

2004-12-24 Thread Dion Gillard
Not in the current version of JEXL. It is on the wishlist however. You might want to file an enhancement request against JEXL to ensure it's remembered. On Thu, 23 Dec 2004 18:06:52 -0400, Néstor Boscán [EMAIL PROTECTED] wrote: Hi Is there a way to register functions?. I would like to have

Re: [jelly] define:jellyBean with nested properties

2004-12-28 Thread Dion Gillard
The ant taglibrary provides facilities for doing this style of nested tag evaluation with beans. On Tue, 28 Dec 2004 18:35:15 +, Tim Dudgeon [EMAIL PROTECTED] wrote: I see how to define a jellybean using simple properties that can be defined as atributes of the tag e.g. define:taglib

[jelly] Re: executing dynamically created scripts

2005-01-05 Thread Dion Gillard
This is a bug in Jelly. Could you please raise a bug in the issue tracking system for Jelly: http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10012 so that we can fix and track it. Thanks On Wed, 5 Jan 2005 21:53:32 -0800 (PST), Jeff Gregory [EMAIL PROTECTED] wrote: Hello, I'm

Re: [commons-jexl]

2005-01-10 Thread Dion Gillard
With JDK1.4 you can do this already with methods like String.matches(String regexp). You should be able to call those directly from JEXL. Does that help? On Mon, 10 Jan 2005 14:08:07 -0600, Norm Deane [EMAIL PROTECTED] wrote: Can jexl be extended to do regexp evaluation against strings? If

Re: JEXL

2005-02-03 Thread Dion Gillard
Noone yet. Feel free to post it as an enhancement. I'm assuming you mean binary operators for 'or, not, and' ? On Thu, 3 Feb 2005 15:50:41 -0700, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I got JEXL installed. I was using IntelliJ and setting the classpath in the project properties rather

Re: JEXL syntax question pt 2

2005-02-03 Thread Dion Gillard
Not yet :-) Assignment, e.g a = 1.2 + b * 5, is available as a patch and planned for 1.1 of JEXL. On Thu, 3 Feb 2005 17:16:10 -0700, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: In the syntax document http://jakarta.apache.org/commons/jexl/reference/syntax.html about 4/5 of the way down pg 1

Re: Email

2005-03-10 Thread Dion Gillard
It's just going through some final packaging before the 1.0 release. It should be RSN. On Thu, 10 Mar 2005 14:50:40 -0800, Dylan Stamat [EMAIL PROTECTED] wrote: That's a great question Mark ! I asked the same question about a month ago and didn't get any word back !! On Wed, 9 Mar 2005

Re: Jexl if statement

2005-04-02 Thread Dion Gillard
On Apr 3, 2005 4:34 PM, Misha Stankovic [EMAIL PROTECTED] wrote: Hi, Could someone clarify for me please whether the jexl library supports if statements. It does not. It appears that theere is a placeholder for this statement in the language syntax, but the statement does not seem to be

Re: [JEXL] Syntax information

2005-04-04 Thread Dion Gillard
if, foreach and while are defined in the grammar, but not implemented in 1.0. If you need that sort of expression language, something like Rhino from Mozilla would be great. On Apr 5, 2005 9:49 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I've recently been using JEXL in an attempt to

Re: Building feedParser with Maven.. nospam

2005-04-26 Thread Dion Gillard
I'd guess it's in Jaxen. On 4/26/05, Marco Mistroni [EMAIL PROTECTED] wrote: Hello all, Sorry to spam the list...but I can't find anyone On this list which is dealing with FeedParser... I have downloaded sources of feedparser and I am trying to Build it using Maven. I am

Re: 0.6.1-dev and PropertySuppressionStrategy

2005-05-09 Thread Dion Gillard
A 'dev' jar is usually built from version control. On 5/10/05, Bernard, Shawn [EMAIL PROTECTED] wrote: Where is betwixt-0.6.1-dev.jar? I see all the documentation for it, but I don't see it anywhere? None of the other jar's (including 1.0-beta and SNAPSHOT) have

Re: jelly:jms tag library

2005-05-11 Thread Dion Gillard
If it takes getting messenger out of the sandbox and fixing bugs in it to make Jelly releasable, we'll do it. BTW, what do you mean by 'EL support' below?? On 5/12/05, Ben Lindahl [EMAIL PROTECTED] wrote: Hi all, I see that the JMS tag library has been enveloped into Jelly, but it relies on

Re: jelly:jms tag library

2005-05-12 Thread Dion Gillard
having support for EL in its attributes (e.g., to use an object from request scope to populate the contents of an object message). Please correct me if I'm wrong. -Original Message- From: Dion Gillard [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 7:22 PM To: Jakarta

Re: jelly:jms tag library

2005-05-12 Thread Dion Gillard
not remember JMS Taglib having support for EL in its attributes (e.g., to use an object from request scope to populate the contents of an object message). Please correct me if I'm wrong. -Original Message- From: Dion Gillard [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 7:22 PM

Re: getting the current date in jelly

2005-05-13 Thread Dion Gillard
An FAQ sounds good. On 5/13/05, Paul Libbrecht [EMAIL PROTECTED] wrote: Tom, I am unclear wether it would be useful to make a util tag for this... it's one of the very many facets where the wealth of java is coming at hand so I'd rather put this in some FAQ... or ? paul Le 12 mai 05, à

Re: XML Validation Tag Library

2005-05-17 Thread Dion Gillard
Which part of commons is this? Jelly? On 5/15/05, Adrian Herscu [EMAIL PROTECTED] wrote: Hi all, Where can I find an example for using the XML Validation Tag Library? Thanks for your time, Adrian. - To unsubscribe,

Re: [Jelly] Executable XML vs. Rich Configuration

2005-05-18 Thread Dion Gillard
On 5/19/05, Dan Madoni [EMAIL PROTECTED] wrote: [snip] I can actually go along with the explanation of Jelly being molded into any shape, although that's a bit of a stretch of the word Jelly, as people don't really think of jelly as something you mold around something else. That is, I'll put

Re: [Jelly] Executable XML vs. Rich Configuration

2005-05-23 Thread Dion Gillard
There are quite a few articles on my blog On 5/24/05, Hans Gilde [EMAIL PROTECTED] wrote: I happen to agree with you, except that I think my take is different than yours. Jelly could definitely use an upgrade to the documentation. Actually, the current docs are all good, but we could

[vfs] site missing javadoc

2005-06-06 Thread Dion Gillard
I've noticed that the vfs site after promotion from the sandbox is missing the API docs, e.g. http://jakarta.apache.org/commons/vfs/apidocs/org/apache/commons/vfs/package-summary.html is a 404. Is this just a 'needs to be published again' problem? -- http://www.multitask.com.au/people/dion/ You

Re: [email] ... *cough*releaseit*cough*...

2005-06-07 Thread Dion Gillard
Someone was part way through the release On 6/7/05, Matthijs Wensveen [EMAIL PROTECTED] wrote: Is there any chance commons-email is released anytime soon? It's been out of the sandbox for a while now and I want to use it in production projects. M

Re: jelly : future far from Maven 2 ?

2005-06-24 Thread Dion Gillard
On 6/24/05, A Leg [EMAIL PROTECTED] wrote: Hi I am using jelly for our project : http://compiere-mfgscm.sourceforge.net/ We made a plugin layer similar to maven plugins layer. Our plugins are working good. We currently use them from Jini services and it is quite nice. Our question is

Re: daemon - how can I set a multiple jar classpath as an argument?

2005-06-30 Thread Dion Gillard
Prefix it with ^ on the windows command prompt? On 6/30/05, Mark [EMAIL PROTECTED] wrote: I am using the commons-daemon procrun tool to start a java program. The only way I seem to be able to get my program running is to set the StartMode=exe. I have no problem with this, except for the fact

Re: [Digester] Problems setting a bean property

2005-06-30 Thread Dion Gillard
I'd say that's intended. How is the Beans/Introspector supposed to know if it's a read/write property of type String or a read-only property of type boolean? On 6/30/05, Martin Burger [EMAIL PROTECTED] wrote: Hello, in a nutshell: after adding a method called isproperty name that returns a

Re: [Digester] Problems setting a bean property

2005-07-03 Thread Dion Gillard
On 6/30/05, Martin Burger [EMAIL PROTECTED] wrote: Dion Gillard schrieb am 30.06.2005 08:57: How is the Beans/Introspector supposed to know if it's a read/write property of type String or a read-only property of type boolean? If there's a setter setting a value of type O, and there's

Re: [email] progress on 1.0 release?

2005-07-04 Thread Dion Gillard
Is everyone ok with me doing a distribution for 1.0-RC5 and placing it up for public consumption on people.apache.org/~dion ? I'm currently going through http://jakarta.apache.org/commons/releases/prepare.html and making sure it's all ready. On 7/4/05, Simon Kitching [EMAIL PROTECTED] wrote: Hi

Re: [jelly]: Escaping output of JEXL expression

2005-07-06 Thread Dion Gillard
could you use a whitespace tag with escapeXML true and trim false? On 7/6/05, Christian Kalkhoff [EMAIL PROTECTED] wrote: Hi Paul, sorry about that. See: myTag content${myVariable.firstname}/content /myTag If myVariable.getFirstname returns a string containing one of the xml

Re: JELLY: Escaping output of JEXL expression

2005-07-06 Thread Dion Gillard
The tags all have an escapeText attribute that tells Jelly whether or not to escape XML. See http://jakarta.apache.org/commons/jelly/tags.html#core:whitespace for an example. On 7/6/05, Christian Kalkhoff [EMAIL PROTECTED] wrote: Hi, i ran into the problem, that jelly outputs invalid xml if

Re: [jelly] Schema validation problems

2005-07-06 Thread Dion Gillard
On 7/7/05, Adrian Herscu [EMAIL PROTECTED] wrote: Hi all, I am trying to build a Maven plugin for validating XML. Currently I have this code: !-- assume ${schema.type.uri} is http://www.w3.org/2001/XMLSchema -- core:set var=verifierFactory value=

Re: [Jelly/JEXL] String concatenation

2005-07-19 Thread Dion Gillard
Hmmmmust fix that examples link. On 7/20/05, Grant Ingersoll [EMAIL PROTECTED] wrote: Thanks, although I must confess, I thought I was doing java under the hood when I used the + operator to concatenate what I thought were strings! Especially since the JEXL front page has an

[beanutils] Unmaintained? was Re: [Commons] Unmaintained projects

2005-07-21 Thread Dion Gillard
Why do you assume that BeanUtils is unmaintained? On 7/22/05, Bernard, Shawn [EMAIL PROTECTED] wrote: I never got an answer to my below question, and I just saw the question about one of the Sandbox projects. Is there a list of unmaintained/abandoned Commons projects? Is there anything

Re: [beanutils] Unmaintained? was Re: [Commons] Unmaintained projects

2005-07-21 Thread Dion Gillard
, Simon -- A. Because it breaks the logical sequence of discussion Q. Why is top posting bad? On Fri, 2005-07-22 at 10:28 +1000, Dion Gillard wrote: Why do you assume that BeanUtils is unmaintained? On 7/22/05, Bernard, Shawn [EMAIL PROTECTED] wrote: I never got an answer to my below

Re: [email] progress on 1.0 release?

2005-07-22 Thread Dion Gillard
Yes. I have the source at a point where I'm happy to build an RC and make it available, however I have very limited time at that moment, as I'm spending a large amount of time with my father who is in critical care in hospital. Once I have the dist process automated with md5 and gpg signing, and

Re: [email] progress on 1.0 release?

2005-07-23 Thread Dion Gillard
On 7/24/05, robert burrell donkin [EMAIL PROTECTED] wrote: hi dion On Fri, 2005-07-22 at 21:13 +1000, Dion Gillard wrote: Yes. I have the source at a point where I'm happy to build an RC and make it available, however I have very limited time at that moment, as I'm spending a large

Re: [email] progress on 1.0 release?

2005-07-27 Thread Dion Gillard
Hi, I filed an enhancement in Bugzilla today from Sigfried Goeschl that would be great to get in before the 1.0 release. It's a very minor API enhancement to make commons email more usable in environments like fulcrum. What do you think? On 7/24/05, Dion Gillard [EMAIL PROTECTED] wrote: On 7

Re: [betwixt] Sample code not working

2005-08-04 Thread Dion Gillard
Sure. Do you know if the tests work or not? On 8/4/05, Kirill Grouchnikov [EMAIL PROTECTED] wrote: Isn't anybody worried that the new Betwixt release doesn't work on examples provided with it (not to speak of the real objects)? --- Kirill Grouchnikov [EMAIL PROTECTED] wrote: Date: Sat,

Re: Help! I need a jar for the Commons E-mail library. If anyone is out there? Can you please send back. Thanks, T-SIRM

2005-08-18 Thread Dion Gillard
Please use a recent Release Candidate, e.g. http://people.apache.org/~rdonkin/commons-email/ On 8/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thomas A. Sirmans Philippians 3:13-14 UDit Computer Operator Phone: 937.229.3843 Fax: 937.229.4044 E-mail: [EMAIL PROTECTED] +

Re: Commons - [email] Help

2005-08-29 Thread Dion Gillard
Whether the mail server you're sending to fails on a bad user immediately or not, depends entirely on the mail server. As far as the actual underlying communications go, commons-email is simply propagating up what the mail server is telling it. Its quite likely that the other services aren't

Fwd: [email] commons-email 1.0-RC8 available

2005-09-07 Thread Dion Gillard
FYI all. -- Forwarded message -- From: Henning P. Schmiedehausen [EMAIL PROTECTED] Date: Sep 7, 2005 10:11 PM Subject: [email] commons-email 1.0-RC8 available To: commons-dev@jakarta.apache.org Due to the requests from Stephen, Niall and some remarks on the users list about

Re: [jelly] How to get length of object array in jelly script?

2005-09-10 Thread Dion Gillard
Have you tried size(myArray) ? On 9/10/05, Guo, Jiaqi [EMAIL PROTECTED] wrote: Hi, It seems ${myArray.length} doesn't work. I'm using 1.0 verison from ibiblio.org. Thanks. Regards Jiaqi Guo www.cyclopsgroup.com

Re: [email] HTML Emails with images don't display in Outlook 2000

2005-10-18 Thread Dion Gillard
How does it look when sent to other email clients? On 10/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am having a problem sending HTML Emails with inline image attachments against the client Microsoft Outlook 2000 SP-3. I am using commons-email-1.0.jar With an HtmlEmail I am embedding

Re: [jelly] roadmap

2005-10-30 Thread Dion Gillard
Was tag caching on by default before 1.0? I know that caught a few people out by surprise and had some unexpected side affects in maven 1.1 On 10/31/05, Hans Gilde [EMAIL PROTECTED] wrote: Now that Jelly has reached 1.0 (actually, is it ready for 1.0.1 with the full memory leak fix?), I'd say

Re: [email] HTML Emails with images don't display in Outlook 2000

2005-11-03 Thread Dion Gillard
Thanks for that. It looks like I'll need to spend a little time digesting it all :-) On 11/3/05, Andrew [EMAIL PROTECTED] wrote: At 16:39 18/10/2005, I wrote: I am having a problem sending HTML Emails with inline image attachments against the client Microsoft Outlook 2000 SP-3. If anyone

Re: [jelly] swing example

2005-11-03 Thread Dion Gillard
Huh?? CardLayout has been in java since 1.0, See http://java.sun.com/j2se/1.3/docs/api/java/awt/CardLayout.html On 11/4/05, Hans Gilde [EMAIL PROTECTED] wrote: Jelly is officially still JDK 1.3 compliant and thus doesn't include CardLayout. However, it is trivial to implement it as a tag.

Re: [jexl] how to implement variable replacement in expressions

2005-11-04 Thread Dion Gillard
On 11/3/05, sean liu [EMAIL PROTECTED] wrote: Hi guys: I want to use jexl to implement variable replacement in expressions. For example: expression: Hello: ${person.name http://person.name/}, your age is ${ Try with the following Expression in double quotes: 'Hello ' + person.name + '

  1   2   >