[ 
http://issues.apache.org/jira/browse/JELLY-194?page=comments#action_57468 ]
     
Felipe Leme commented on JELLY-194:
-----------------------------------

Ok, here is how to implement it using "pure" Jelly tags:
<j:file name="${toFile}" 
   prettyPrint="true"
   outputMode="xml" 
   omitXmlDeclaration="true">
    <j:import file="${fromFile}" inherit="true"/>
</j:file>  


I still think a tag would be useful though (or at least a FAQ entry somewhere 
:-)

-- Felipe


> New tag that copy text files replacing Jelly properties
> -------------------------------------------------------
>
>          Key: JELLY-194
>          URL: http://issues.apache.org/jira/browse/JELLY-194
>      Project: jelly
>         Type: New Feature
>   Components: taglib.util
>     Versions: 1.0
>     Reporter: Felipe Leme

>
> Hi,
> It would be nice if there was a Jelly tag similar to <ant:copy> that would 
> copy text files replacing the Jelly properties.
> For instance, I need to copy a datasource XML definition to JBoss before 
> running Cactus (on maven), but each developer in my project has its own 
> database schema. So, I could have a XML file like this:
>  
> <datasource>
>       <username>${ds.username}</username>
>       <password>${ds.password}</password>
> </datasource>
> And then something like this on maven.xml:
> <preGoal name="cactus:test">
>    <util:copyAndReplace file="datasource.xml" 
>          toFile="${env.JBOSS_HOME}/server/default/deploy"/> 
> </preGoal>
> If you think such tag is useful (and hence would be incorporated on Jelly), I 
> could write the tag and test cases and then submit a patch (I'm just not sure 
> what's the best name for it).
> -- Felipe

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to