Re: [VOTE] Release Velocity Engine 1.6.3

2009-12-14 Thread Adrian A.
+1 Adrian. Let's push this one out soon folks. The release candidate is available here: http://people.apache.org/~nbubna/velocity/engine/1.6.3/ [ ] +1 Let's do it [ ] +0 Have fun; i don't care. [ ] -0 Not sure about this, but i won't stop you. [ ] -1 No, because __ I would

Re: [VOTE] Release Velocity Engine 1.7-beta1

2010-04-13 Thread Adrian A.
+1. Please vote regarding your support for releasing this new test build as Velocity Engine 1.7-beta1: [ ] +1 Let's do it [ ] +0 Have fun; i don't care. [ ] -0 Not sure about this, but i won't stop you. [ ] -1 No, because __ The voting period is typically 72 hours, putting

A 1.7.x Branch?

2013-11-20 Thread Adrian A.
Hi Any news on a 1.7.x branch? https://issues.apache.org/jira/browse/VELOCITY-846 Thanks in advance, Adrian. - To unsubscribe, e-mail: dev-unsubscr...@velocity.apache.org For additional commands, e-mail: dev-h

Issue changes not sent by JIRA to the dev list !

2013-11-20 Thread Adrian A.
The Issue changes made in JIRA by users does not seem to be sent to the dev list too. This makes it harder to follow the project. This functionality was working before. Any chance of getting it back? (it's just a simple JIRA setting) Thanks in advance, Adrian

Fix ANT build in 1.7.x branch?

2013-11-21 Thread Adrian A.
Hi, The ANT build.xml isn't working in the 1.7.x branch due to the download task not being able to get files from the old repos. https://issues.apache.org/jira/browse/VELOCITY-847 Please apply the patch from the ticket to the 1.7.x branch to fix this. Thanks in advance, Adrian

Re: Spring is deprecating Velocity

2016-07-01 Thread Adrian A.
+1 On Fri, Jul 1, 2016 at 9:16 AM, Perry Tew wrote: > Agreed. > > -Original Message- > From: Claude Brisson [mailto:cla...@renegat.net] > Sent: Friday, July 01, 2016 3:14 AM > To: Velocity Developers List > Subject: Spring is deprecating

Re: Call a velocity macro

2008-02-19 Thread Adrian Tarau
://velocity.apache.org/engine/devel/vtl-reference-guide.html#aevaluate_-_dynamically_evaluates_a_string_or_reference). Etienne -Message d'origine- De : Adrian Tarau [mailto:[EMAIL PROTECTED] Envoyé : mardi 19 février 2008 07:29 À : dev@velocity.apache.org Objet : Call a velocity macro Hello, I have

Re: Call a velocity macro

2008-02-19 Thread Adrian Tarau
. Christopher Schultz wrote: Adrian, Adrian Tarau wrote: I have the following problem : I would like to call a macro but the macro name must be a variable. This is more of a question for the user's list, not the dev list. In the future, please post there. Ex: instead of #renderLabel($component

Re: Call a velocity macro

2008-02-19 Thread Adrian Tarau
('#render' + $component.type + '($component)') If the evaluate directive really performs poorly, then maybe it should be a good idea to speed it up other than create a new and specialized one ? -Message d'origine- De : Adrian Tarau [mailto:[EMAIL PROTECTED] Envoyé : mardi 19 février 2008

Re: Call a velocity macro

2008-02-19 Thread Adrian Tarau
Schultz wrote: Adrian, Adrian Tarau wrote: I have the following problem : I would like to call a macro but the macro name must be a variable. This is more of a question for the user's list, not the dev list. In the future, please post there. Ex: instead of #renderLabel($component) to have #call

Re: Call a velocity macro

2008-02-19 Thread Adrian Tarau
the function way. I will do a benchmark to see how much overhead I will add with this approach. Thanks for your support. Christopher Schultz wrote: Adrian, Adrian Tarau wrote: I think it is a question for the dev's list, since it involves creating a new feature - a new directive - (or asking about

Re: Call a velocity macro

2008-02-20 Thread Adrian Tarau
Thanks, I think I will implement a different directive, based on #parse but passing the parameters having all the variables local to the function. I'm not aware of any directive called #local. What do you mean? [EMAIL PROTECTED] wrote: Hi Adrian, in a similar scenario I use the #parse

Re: Call a velocity macro

2008-02-29 Thread Adrian Tarau
dynamically a macro is the first exception in years, usually I have anything I need in Velocity, I don't need to think about another library(not that the Velocity is the only good template engine, but I got used with it). Jonathan Revusky wrote: Adrian Tarau wrote: I've always used #if to implement

RE: Call a velocity macro

2008-03-08 Thread Adrian Tarau
will not be one who will turn you to the light :), that's my personal feeling. My personal advice is let the community to grow around you and let others live with their projects. In the end, everybody will win. Best wishes, Adrian Tarau. PS. It was not my intention to reveal your private message

Re: Call a velocity macro

2008-03-10 Thread Adrian Tarau
with ... everything... Jonathan Revusky wrote: Adrian Tarau wrote: Jonathan, I must confess you are above my expectations/past experiences. When I post your nice words on the mailing list(development list by the way) I didn't knew who you are. I thought you are just a regular user(or even a FreeMarker

Re: Call a velocity macro

2008-03-10 Thread Adrian Tarau
, March 10, 2008, 3:46:39 AM, Adrian Tarau wrote: Jonathan, I must confess you are above my expectations/past experiences. When I post your nice words on the mailing list(development list by the way) I didn't knew who you are. I thought you are just a regular user(or even a FreeMarker commiter) who

Re: Results from a security audit

2008-07-02 Thread Adrian Tarau
I agree with Will Nathan. I don't know what tool they used, but it doesn't know Java's internals for sure. Validating user input(when they call the API) is a must but rather than that is just insane to check what they suggested. Of course, when some (user) parameters are used to allocate

Re: [SURVEY] IntrospectorCache(Listener)

2008-07-29 Thread Adrian Tarau
The best way to implement listeners (as you may see in EventListenerList) is to work with arrays.They are immutable and have the lowest memory footprint(instead of HashSet/ArrayList or any concurrent class). Eventually you can skip copying the listeners array if you manage everything locally

Re: [SURVEY] IntrospectorCache(Listener)

2008-07-29 Thread Adrian Tarau
Actually I forgot something : addListener and removeListener needs to be synchronized(we don't want to loose a change), but not fireEvent(we just use the current array). Nathan Bubna wrote: On Tue, Jul 29, 2008 at 12:36 PM, Adrian Tarau [EMAIL PROTECTED] wrote: The best way to implement

Re: [SURVEY] IntrospectorCache(Listener)

2008-08-01 Thread Adrian Tarau
= this.listeners; foreach(Listener listener : listeners) { listener.onChange(event); } } Jon Seymour wrote: Of course the modification proposed here is not thread safe in its current form. Jon. On 7/30/08, Adrian Tarau [EMAIL PROTECTED] wrote: The best way to implement

Re: Change report link issue

2008-10-13 Thread Adrian Tarau
This problem was fixed but probably the website was not updated. Serge Knystautas wrote: The links on the change report for the latest release are linking to the wrong URLs in JIRA. Specifically on http://velocity.apache.org/engine/devel/changes-report.html links to

Re: Velocity 1.6 test build available

2008-11-27 Thread Adrian Tarau
The message is truncated : [INFO] The skin does n -- something is missing here. Except that I had to increase maven memory for findbugs, everything worked fine. Please use mvn -e to produce a detailed report of the problem/exception. Will Glass-Husain wrote: Hi, I took a look -- looks

Re: Velocity 1.6 test build available

2008-11-28 Thread Adrian Tarau
Velocity Site Tools is not present in any repository. If you build it locally Velocity site will work(you may still need to increase Maven maximum memory for FindBugs - Xmx256M seems to work fine). Since the Maven build is not the primary build system, lots of things are not finalized.

Re: looking forward...

2010-04-11 Thread Adrian Tarau
+1 for Maven, I offered my services in the past...without success...maybe 2010 is a lucky year ;) Antonio Petrelli wrote: 2010/4/10 Claude Brisson cla...@renegat.net: Sorry to jump in as an intruder, but if Maven was used, isolating non stable or experimental code is very easy. Long time

Re: [Engine 2.0] Moving to Commons Configuration?

2010-11-29 Thread Adrian Tarau
I would really like to see the configuration as an interface and provide factories to create a configuration based on a simple Map or Jakarta Commons Configuration(or something else). This would allow any developer to inject their own configuration into Velocity without the need to pass

Re: [Engine 2.0] Moving to Commons Configuration?

2010-11-29 Thread Adrian Tarau
then storing bools(is feature A enabled/disabled), ints, strings and list of strings for Velocity. On 11/29/2010 02:05 PM, Antonio Petrelli wrote: 2010/11/29 Adrian Tarauadrian.ta...@gmail.com: I would really like to see the configuration as an interface and provide factories to create

Re: [Engine 2.0] Moving to Commons Configuration?

2010-11-29 Thread Adrian Tarau
antonio.petre...@gmail.com wrote: 2010/11/29 Adrian Tarauadrian.ta...@gmail.com: What I wanted to say is to follow the model and not to include any dependency. Ok A minimal functionality should be to set/get primitive types and work with lists and store everything behind

Re: [Engine 2.0] Moving to Commons Configuration?

2010-11-30 Thread Adrian Tarau
), getList(key), getDouble(key) will be better I would say. On 11/30/2010 03:48 AM, Antonio Petrelli wrote: 2010/11/29 Adrian Tarauadrian.ta...@gmail.com: If you would start doing specific gets/sets then you might want to do the whole configuration like that otherwise it will become a hard mix

Re: [Engine 2.0] Moving to Commons Configuration?

2010-11-30 Thread Adrian Tarau
on anything else except J2SE. On 11/30/2010 09:51 AM, Antonio Petrelli wrote: 2010/11/30 Adrian Tarauadrian.ta...@gmail.com: Since it is an interface adding getUserDirectives2 will break my application. That's the downside with interfaces, if you add stuff things will not compile anymore

[jira] Created: (VELOCITY-600) #foreach velocityCount

2008-06-09 Thread Adrian Tarau (JIRA)
#foreach velocityCount Key: VELOCITY-600 URL: https://issues.apache.org/jira/browse/VELOCITY-600 Project: Velocity Issue Type: Improvement Components: Engine Reporter: Adrian Tarau

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-09 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12603671#action_12603671 ] Adrian Tarau commented on VELOCITY-600: --- .. current value of the loop counter

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-09 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12603681#action_12603681 ] Adrian Tarau commented on VELOCITY-600: --- Looks fine, but I think something like

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-09 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12603683#action_12603683 ] Adrian Tarau commented on VELOCITY-600: --- context.localPut(hasNextName , i.hasNext

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-09 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12603703#action_12603703 ] Adrian Tarau commented on VELOCITY-600: --- I agree, looks better is subjective

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-09 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12603706#action_12603706 ] Adrian Tarau commented on VELOCITY-600: --- By the way, any suggestion for a default

[jira] Updated: (VELOCITY-600) #foreach velocityCount

2008-06-09 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Tarau updated VELOCITY-600: -- Attachment: VELOCITY-600.patch Works like a charm :) #foreach velocityCount

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-10 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12603863#action_12603863 ] Adrian Tarau commented on VELOCITY-600: --- It is, this patch follows the same

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-10 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12603896#action_12603896 ] Adrian Tarau commented on VELOCITY-600: --- I don't think there is any solution other

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-10 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12603989#action_12603989 ] Adrian Tarau commented on VELOCITY-600: --- Not sure now to re-unresolve :) #foreach

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-10 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12604012#action_12604012 ] Adrian Tarau commented on VELOCITY-600: --- Got it #foreach velocityCount

[jira] Commented: (VELOCITY-600) #foreach velocityCount

2008-06-11 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12604221#action_12604221 ] Adrian Tarau commented on VELOCITY-600: --- I agree

[jira] Created: (VELOCITY-611) Pretty printer/code layout/reformat/minify

2008-08-15 Thread Adrian Tarau (JIRA)
Environment: Cross platform Reporter: Adrian Tarau Priority: Minor I've always wanted to be able to re-layout a piece of generated text. It was a dream of mine since I was a little boy:) Even if you generate HTML most of the time the result is pretty ugly(not readable) and when

[jira] Commented: (VELOCITY-102) Add Support for Static Utility Classes

2008-08-15 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-102?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12622926#action_12622926 ] Adrian Tarau commented on VELOCITY-102: --- It's fine with me, anyway the users can

[jira] Commented: (VELOCITY-531) Some user feedback / wishes from the O'Reilly blog

2008-08-21 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-531?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12624447#action_12624447 ] Adrian Tarau commented on VELOCITY-531: --- I personally don't like the idea

[jira] Commented: (VELOCITY-102) Add Support for Static Utility Classes

2008-08-21 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-102?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12624550#action_12624550 ] Adrian Tarau commented on VELOCITY-102: --- Looks ok to me. Thanks Nathan. Add

[jira] Commented: (VELOCITY-467) Throw more exceptions and log less errors

2008-08-31 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12627360#action_12627360 ] Adrian Tarau commented on VELOCITY-467: --- Logging distinguished by category would

[jira] Commented: (VELOCITY-467) Throw more exceptions and log less errors

2008-08-31 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12627363#action_12627363 ] Adrian Tarau commented on VELOCITY-467: --- One more thing : I agree, warn should

[jira] Commented: (VELOCITY-467) Throw more exceptions and log less errors

2008-09-01 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12627442#action_12627442 ] Adrian Tarau commented on VELOCITY-467: --- Because your logging level in production

[jira] Commented: (VELOCITY-467) Throw more exceptions and log less errors

2008-09-02 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12627775#action_12627775 ] Adrian Tarau commented on VELOCITY-467: --- I would say it is wrong, but how much? I

[jira] Commented: (VELOCITY-466) Look into maven plugins for ant to use automatic deployment to maven repositories

2008-09-23 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12633996#action_12633996 ] Adrian Tarau commented on VELOCITY-466: --- I have experience with Maven, but I'm

[jira] Commented: (VELOCITY-466) Look into maven plugins for ant to use automatic deployment to maven repositories

2008-09-23 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12633998#action_12633998 ] Adrian Tarau commented on VELOCITY-466: --- The project seems to have a Maven 2 POM, I

[jira] Commented: (VELOCITY-466) Look into maven plugins for ant to use automatic deployment to maven repositories

2008-09-23 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634005#action_12634005 ] Adrian Tarau commented on VELOCITY-466: --- You don't trust how Maven 2 runs JUnit

[jira] Commented: (VELOCITY-466) Look into maven plugins for ant to use automatic deployment to maven repositories

2008-09-23 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634018#action_12634018 ] Adrian Tarau commented on VELOCITY-466: --- I agree is not perfect, but still far away

[jira] Commented: (VELOCITY-613) Wrong Velocity 1.5 POM file in Maven repository

2008-09-24 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-613?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634319#action_12634319 ] Adrian Tarau commented on VELOCITY-613: --- If I remember correctly there was a bug

[jira] Commented: (VELOCITY-613) Wrong Velocity 1.5 POM file in Maven repository

2008-09-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-613?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634381#action_12634381 ] Adrian Tarau commented on VELOCITY-613: --- Done. You can download the POM from

[jira] Commented: (VELOCITY-613) Wrong Velocity 1.5 POM file in Maven repository

2008-09-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-613?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634482#action_12634482 ] Adrian Tarau commented on VELOCITY-613: --- Based on Maven 2 Super POM, central

[jira] Commented: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2008-09-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634514#action_12634514 ] Adrian Tarau commented on VELOCITY-554: --- We should use Maven for everything else

[jira] Commented: (VELOCITY-613) Wrong Velocity 1.5 POM file in Maven repository

2008-09-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-613?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634580#action_12634580 ] Adrian Tarau commented on VELOCITY-613: --- Files are not accessible : You don't have

[jira] Commented: (VELOCITY-613) Wrong Velocity 1.5 POM file in Maven repository

2008-09-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-613?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634604#action_12634604 ] Adrian Tarau commented on VELOCITY-613: --- Ok, missed changes but it makes sense

[jira] Commented: (VELOCITY-613) Wrong Velocity 1.5 POM file in Maven repository

2008-09-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-613?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634624#action_12634624 ] Adrian Tarau commented on VELOCITY-613: --- After that, meanwhile I will prepare all

[jira] Commented: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2008-09-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12634735#action_12634735 ] Adrian Tarau commented on VELOCITY-554: --- I'll have a look Velocity sources

[jira] Created: (VELOCITY-617) Jakarta Commons ORO at runtime

2008-09-26 Thread Adrian Tarau (JIRA)
, 1.6 Reporter: Adrian Tarau There is a misleading information on the dependency page(http://velocity.apache.org/engine/releases/velocity-1.5/dependencies.html , These dependencies are required to compile and run the application) about oro. The most common case is the integration

[jira] Updated: (VELOCITY-617) Jakarta Commons ORO at runtime

2008-09-26 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-617?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Tarau updated VELOCITY-617: -- Priority: Minor (was: Major) Jakarta Commons ORO at runtime

[jira] Commented: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2008-09-27 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12635178#action_12635178 ] Adrian Tarau commented on VELOCITY-554: --- Ant 1.7 I presume? Velocity sources

[jira] Commented: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2008-09-28 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12635223#action_12635223 ] Adrian Tarau commented on VELOCITY-554: --- Nathan, Which version do you prefer

[jira] Commented: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2008-10-01 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12636062#action_12636062 ] Adrian Tarau commented on VELOCITY-554: --- I've changed download.xml to add support

[jira] Commented: (VELOCITY-596) Changes report JIRA links don't work

2008-10-01 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-596?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12636272#action_12636272 ] Adrian Tarau commented on VELOCITY-596: --- ViewIssue.jspa is probably not available

[jira] Updated: (VELOCITY-596) Changes report JIRA links don't work

2008-10-01 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-596?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Tarau updated VELOCITY-596: -- Attachment: VELOCITY-596.patch Changes report JIRA links don't work

[jira] Commented: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2008-10-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12642776#action_12642776 ] Adrian Tarau commented on VELOCITY-554: --- Attached is the second patch which should

[jira] Updated: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2008-10-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Tarau updated VELOCITY-554: -- Attachment: VELOCITY-554-2.patch Velocity sources and javadocs missing in the maven

[jira] Commented: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2008-10-25 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12642778#action_12642778 ] Adrian Tarau commented on VELOCITY-554: --- ... and the repository : http

[jira] Commented: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2008-10-27 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12643060#action_12643060 ] Adrian Tarau commented on VELOCITY-554: --- Yes, I forgot to remove it after splitting

[jira] Commented: (VELTOOLS-101) Use Maven Ant tasks (particularly for deploying releases to the main repo)

2008-10-27 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELTOOLS-101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12643118#action_12643118 ] Adrian Tarau commented on VELTOOLS-101: --- Nathan, I tried to install Velocity Tools

[jira] Commented: (VELTOOLS-110) An OGNL Tool, perhaps

2008-11-30 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELTOOLS-110?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12651911#action_12651911 ] Adrian Tarau commented on VELTOOLS-110: --- There is another project which is similar

[jira] Commented: (VELOCITY-666) RFC: new directive: #call

2009-01-16 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-666?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12664577#action_12664577 ] Adrian Tarau commented on VELOCITY-666: --- I think #@ it better RFC: new directive

[jira] Issue Comment Edited: (VELOCITY-666) RFC: new directive: #call

2009-01-16 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-666?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12664577#action_12664577 ] adrian.tarau edited comment on VELOCITY-666 at 1/16/09 9:32 AM:

[jira] Reopened: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2009-01-18 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Tarau reopened VELOCITY-554: --- Assignee: Nathan Bubna I just noticed a small problem with 1.6.X release. If you

[jira] Updated: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2009-01-18 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Tarau updated VELOCITY-554: -- Attachment: VELOCITY-554-3.patch Some maven related tasks didn't had depends=maven-prepare

[jira] Issue Comment Edited: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2009-01-18 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12665000#action_12665000 ] adrian.tarau edited comment on VELOCITY-554 at 1/18/09 12:59 PM:

[jira] Issue Comment Edited: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2009-01-18 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12664999#action_12664999 ] adrian.tarau edited comment on VELOCITY-554 at 1/18/09 1:02 PM:

[jira] Commented: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2009-01-18 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12665034#action_12665034 ] Adrian Tarau commented on VELOCITY-554: --- It would, but I didn't want to change

[jira] Reopened: (VELOCITY-554) Velocity sources and javadocs missing in the maven repository

2009-03-22 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-554?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Tarau reopened VELOCITY-554: --- Velocity sources in main Maven repository(http://repo1.maven.org/maven2/org/apache/velocity

[jira] Commented: (VELTOOLS-93) Missing infos on tools creation

2009-07-18 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELTOOLS-93?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12732951#action_12732951 ] Adrian Tarau commented on VELTOOLS-93: -- Mark, are you high or something? Missing

[jira] Commented: (VELOCITY-660) consider moving logging (and errors?) to an event/monitor approach

2010-12-02 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12966147#action_12966147 ] Adrian Tarau commented on VELOCITY-660: --- I like this one...one thing is the logging

[jira] Commented: (VELOCITY-789) Reorganize dependencies in Velocity Engine Core

2010-12-04 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12966891#action_12966891 ] Adrian Tarau commented on VELOCITY-789: --- For a library that has ~500kb bringing

[jira] Commented: (VELOCITY-789) Reorganize dependencies in Velocity Engine Core

2010-12-05 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12966980#action_12966980 ] Adrian Tarau commented on VELOCITY-789: --- I'm pro-shading since you are linked

[jira] Commented: (VELOCITY-790) Improve configuration facility

2010-12-05 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12966983#action_12966983 ] Adrian Tarau commented on VELOCITY-790: --- Any suggestions for the configuration

[jira] Commented: (VELOCITY-790) Improve configuration facility

2010-12-05 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12966989#action_12966989 ] Adrian Tarau commented on VELOCITY-790: --- Well, 2.0 might be the version where

[jira] Commented: (VELOCITY-790) Improve configuration facility

2010-12-05 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12967074#action_12967074 ] Adrian Tarau commented on VELOCITY-790: --- Usually it is worth it...Code gets dirty

[jira] Commented: (VELOCITY-790) Improve configuration facility

2010-12-05 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12967090#action_12967090 ] Adrian Tarau commented on VELOCITY-790: --- During the implementation I started

[jira] Commented: (VELOCITY-790) Improve configuration facility

2010-12-05 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12967093#action_12967093 ] Adrian Tarau commented on VELOCITY-790: --- Any need for BigDecimal and BigInteger

[jira] Commented: (VELOCITY-789) Reorganize dependencies in Velocity Engine Core

2010-12-05 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12967095#action_12967095 ] Adrian Tarau commented on VELOCITY-789: --- Shading :) I'm thinking to add

[jira] Commented: (VELOCITY-790) Improve configuration facility

2010-12-06 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12968554#action_12968554 ] Adrian Tarau commented on VELOCITY-790: --- I'm thinking to add a dependency

[jira] Commented: (VELOCITY-790) Improve configuration facility

2010-12-08 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12969619#action_12969619 ] Adrian Tarau commented on VELOCITY-790: --- Only the configuration...for now. I

[jira] Commented: (VELOCITY-790) Improve configuration facility

2010-12-08 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12969620#action_12969620 ] Adrian Tarau commented on VELOCITY-790: --- Also does it make sense for Velocity

[jira] Commented: (VELOCITY-790) Improve configuration facility

2010-12-11 Thread Adrian Tarau (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12970577#action_12970577 ] Adrian Tarau commented on VELOCITY-790: --- It seems like ResourceManagerImpl uses