Re: [configuration] accessing emvironment variable (not java system)

2007-09-21 Thread nicolas de loof
It is currently tied to the ant Execution task infrastructure, but the idea of detecting the platform to build the process invocation may be moved to lang. This would simply require to find a way in lang to cleanly invoke a process... Maybe with a dependency on commons-exec ? 2007/9/21, sebb <[EMA

Re: [configuration] accessing emvironment variable (not java system)

2007-09-21 Thread sebb
On 21/09/2007, nicolas de loof <[EMAIL PROTECTED]> wrote: > Copying ant code requires many classes to be duplicated ( > Execute, Os, CommandLauncher and it's implementations, Process, > ExecuteStreamHandler, ExecuteWatchdog ...) > > I've attached a simplier implementation to > http://issues.apache.

Re: [configuration] accessing emvironment variable (not java system)

2007-09-21 Thread nicolas de loof
Copying ant code requires many classes to be duplicated ( Execute, Os, CommandLauncher and it's implementations, Process, ExecuteStreamHandler, ExecuteWatchdog ...) I've attached a simplier implementation to http://issues.apache.org/jira/browse/CONFIGURATION-284 that delegates to ant, addidn an op

Re: [configuration] accessing emvironment variable (not java system)

2007-09-20 Thread nicolas de loof
I'll look at this and attach a patch to Jira. thanks. 2007/9/20, Oliver Heger <[EMAIL PROTECTED]>: > nicolas de loof wrote: > > Could you please tell me what would be better : > > > > - copy/paste code from ANT to avoid a new dependency just for some methods > > - use the ant code as a new (option

Re: [configuration] accessing emvironment variable (not java system)

2007-09-20 Thread Oliver Heger
nicolas de loof wrote: Could you please tell me what would be better : - copy/paste code from ANT to avoid a new dependency just for some methods - use the ant code as a new (optional) dependency Nico. I would prefer not to add an additional dependency. If we talk about one or two classes, s

Re: [configuration] accessing emvironment variable (not java system)

2007-09-20 Thread nicolas de loof
Could you please tell me what would be better : - copy/paste code from ANT to avoid a new dependency just for some methods - use the ant code as a new (optional) dependency Nico. 2007/9/20, nicolas de loof <[EMAIL PROTECTED]>: > Your right, I was reading javadoc to fast > > 2007/9/19, sebb <[EMA

Re: [configuration] accessing emvironment variable (not java system)

2007-09-19 Thread nicolas de loof
Your right, I was reading javadoc to fast 2007/9/19, sebb <[EMAIL PROTECTED]>: > On 19/09/2007, nicolas de loof <[EMAIL PROTECTED]> wrote: > > Looking at > > http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Execute.java?view=markup > > procEnvironment() > > > > N

Re: [configuration] accessing emvironment variable (not java system)

2007-09-19 Thread sebb
On 19/09/2007, nicolas de loof <[EMAIL PROTECTED]> wrote: > Looking at > http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Execute.java?view=markup > procEnvironment() > > Netware, os/2, z/os, unixes and windows are supported. OpenVMS and > MacOS <= 9 seems to be u

Re: [configuration] accessing emvironment variable (not java system)

2007-09-19 Thread nicolas de loof
My idea was simply to copy/paste code from the ant Property class. AFAIK this one has been largely tested and works on many (if not all ?) platforms. Nico. 2007/9/19, Oliver Heger <[EMAIL PROTECTED]>: > nicolas de loof wrote: > > Hello, > > > > Did anyone allready ask for support in commons-confi

Re: [configuration] accessing emvironment variable (not java system)

2007-09-19 Thread nicolas de loof
Looking at http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Execute.java?view=markup procEnvironment() Netware, os/2, z/os, unixes and windows are supported. OpenVMS and MacOS <= 9 seems to be unsupported platforms. MacOS <=9 has no environment variable at all !

Re: [configuration] accessing emvironment variable (not java system)

2007-09-19 Thread Oliver Heger
nicolas de loof wrote: My idea was simply to copy/paste code from the ant Property class. AFAIK this one has been largely tested and works on many (if not all ?) platforms. Nico. This sounds reasonable. We should only ensure that nothing of this code for accessing environment variables leaks

Re: [configuration] accessing emvironment variable (not java system)

2007-09-19 Thread Oliver Heger
nicolas de loof wrote: Hello, Did anyone allready ask for support in commons-configuration to acces environement variables, the same way it is available with ant ? I'll need it and can contribute for this. Nico. There is an enhancement ticket about this topic [1] with a longer discussion.

[configuration] accessing emvironment variable (not java system)

2007-09-19 Thread nicolas de loof
Hello, Did anyone allready ask for support in commons-configuration to acces environement variables, the same way it is available with ant ? I'll need it and can contribute for this. Nico. - To unsubscribe, e-mail: [EMAIL PROT