Kenichi Naito created CB-13496:
----------------------------------

             Summary: the plugin config-file tag for iOS plist array behaves 
unnaturally.
                 Key: CB-13496
                 URL: https://issues.apache.org/jira/browse/CB-13496
             Project: Apache Cordova
          Issue Type: Bug
          Components: cordova-common
    Affects Versions: 2.1.0
         Environment: Mac OSX
            Reporter: Kenichi Naito
            Priority: Trivial


In the src/util/plist-helpers.js, in the nodeEqual function,
```
node2 = escapeRE(node2).replace(/\\\$\S+/gm, '(.*?)');
```
seems the strange behavior.
For example, the escaped node2 "$(ABC)Hello" becomes "(.*?)".

In the previous version of this code is
```
node2 = escapeRE(node2).replace(new RegExp('\\$[a-zA-Z0-9-_]+','gm'),'(.*?)');
```
in this case, the escaped node2 "$(ABC)Hello" is unchaned.





--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to