You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by "Vincent Belaïche (JIRA)" <ji...@apache.org> on 2012/12/09 19:13:20 UTC

[jira] [Created] (IVY-1393) Ant task exec arg value does not quote properly for MSWindows

Vincent Belaïche created IVY-1393:
-------------------------------------

             Summary: Ant task exec arg value does not quote properly for MSWindows
                 Key: IVY-1393
                 URL: https://issues.apache.org/jira/browse/IVY-1393
             Project: Ivy
          Issue Type: Bug
          Components: Ant
         Environment: MSWindows
            Reporter: Vincent Belaïche


I want to pass to some application the following string:\\
{noformat}
<link rel="icon" type="image/png" size="48x48" href="path/to/my/favion.png" />
{noformat}

So I use the following:\\
{noformat} 
<exec executable="some_executable.exe">
<arg value="&lt;link rel=&quote;icon&quote; type=&quote;image/png&quote; size=&quote;48x48&quote; href=&quote;path/to/my/favion.png&quote; /&gt;"/>
</exec>
{noformat}

However, the application gets this instead:\\
{noformat}
<link rel=icon type=image/png size=48x48 href=path/to/my/favion.png />
{noformat}

Double quotes were stripped by MSWindows because they were not properly escaped in the command line by Ant.

I wrote a piece of code to do escaping of double quotes properly, and I will try to attach it to the issue later on if I can.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira