> -Original Message-
> From: Dave Newton [mailto:[email protected]]
> Sent: Wednesday, February 16, 2011 12:24
> To: Struts Developers List
> Cc: Jason Pyeron
> Subject: Re: Regression in s:url tag
>
> Is dynamic method invocation turned on?
It left as default, which should be on. g
Is dynamic method invocation turned on? Is there a method attribute?
Dave
On Wed, Feb 16, 2011 at 11:58 AM, Jason Pyeron wrote:
> The execution used to produce (in 2.1.6)
> http://host/app/action!method and now produces http://host/app/action.xhtml
> droping the method in 2.2.1.1
>
> (sent from
The execution used to produce (in 2.1.6)
http://host/app/action!method and now produces http://host/app/action.xhtml
droping the method in 2.2.1.1
(sent from my blackberry, sorry for the lack of a JIRA ticket)
-jason
--
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-
On Tue, Feb 15, 2011 at 9:00 PM, xiaoming shi wrote:
> In the file
> ./struts-2.2.1/src/plugins/embeddedjsp/src/main/java/org/apache/struts2/jasper/compiler/JspUtil.java
> line: 100
>
> In the function "escapeQuotes", it keeps on searching the input string
> repeatedly. The complexity is O(N**2) w
On Tue, Feb 15, 2011 at 9:00 PM, xiaoming shi wrote:
> How can I report a bug?
File a JIRA: https://issues.apache.org/jira/browse/WW
(Although I'd classify this as an enhancement, not a bug.)
Attaching a patch (and maybe a unit test) is the quickest way to get
something fixed :)
Dave
-
2011/2/16 xiaoming shi :
> Hi Guys,
>
> How can I report a bug?
Fill an issue here [1] with path would be the best :-)
[1] https://issues.apache.org/jira/browse/WW
Regards
--
Łukasz
+ 48 606 323 122 http://www.lenart.org.pl/
Kapituła Javarsovia http://javarsovia.pl
---
Hi Guys,
How can I report a bug?
In the file
./struts-2.2.1/src/plugins/embeddedjsp/src/main/java/org/apache/struts2/jasper/compiler/JspUtil.java
line: 100
In the function "escapeQuotes", it keeps on searching the input string
repeatedly. The complexity is O(N**2) which can be O(N).
I think th