[GitHub] [struts] yasserzamani merged pull request #525: [WW-5117] Evaluates dynamic attributes - cherrypick

2022-01-17 Thread GitBox
yasserzamani merged pull request #525: URL: https://github.com/apache/struts/pull/525 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr

[GitHub] [struts] lukaszlenart opened a new pull request #525: [WW-5117] Evaluates dynamic attributes - cherrypick

2022-01-13 Thread GitBox
lukaszlenart opened a new pull request #525: URL: https://github.com/apache/struts/pull/525 Cherry picks #524 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscrib

[GitHub] [struts] lukaszlenart merged pull request #524: [WW-5117] Evaluates dynamic attributes

2022-01-12 Thread GitBox
lukaszlenart merged pull request #524: URL: https://github.com/apache/struts/pull/524 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr

[GitHub] [struts] lukaszlenart opened a new pull request #524: [WW-5117] Evaluates dynamic attributes

2022-01-04 Thread GitBox
lukaszlenart opened a new pull request #524: URL: https://github.com/apache/struts/pull/524 Reverts changes in #475 and fixes [WW-5117](https://issues.apache.org/jira/browse/WW-5117) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to

[GitHub] [struts] yasserzamani merged pull request #502: [WW-5129] Supports dynamic attributes in second control

2021-11-11 Thread GitBox
yasserzamani merged pull request #502: URL: https://github.com/apache/struts/pull/502 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr

[GitHub] [struts] lukaszlenart opened a new pull request #502: [WW-5129] Supports dynamic attributes in second control

2021-11-09 Thread GitBox
lukaszlenart opened a new pull request #502: URL: https://github.com/apache/struts/pull/502 Implements [WW-5129](https://issues.apache.org/jira/browse/WW-5129) Follows up of #495 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to G

[GitHub] [struts] lukaszlenart closed pull request #495: [WW-5129] Supports dynamic attributes in second control

2021-11-09 Thread GitBox
lukaszlenart closed pull request #495: URL: https://github.com/apache/struts/pull/495 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr

[GitHub] [struts] lukaszlenart opened a new pull request #495: [WW-5129] Supports dynamic attributes in second control

2021-07-04 Thread GitBox
lukaszlenart opened a new pull request #495: URL: https://github.com/apache/struts/pull/495 Implements [WW-5129](https://issues.apache.org/jira/browse/WW-5129) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL a

Re: dynamic interceptor insertion

2014-07-10 Thread Lukasz Lenart
2014-07-09 20:01 GMT+02:00 Gildas de Cadoudal : > thanks Lukasz, but ActionProxy#getConfig()#getInterceptors() lists the > interceptors but not the name of the stack used by the action You can always @Inject Configuration and traverse over it, anyway without large changes inside S2 it isn't possib

Re: dynamic interceptor insertion

2014-07-09 Thread Gildas de Cadoudal
thanks Lukasz, but ActionProxy#getConfig()#getInterceptors() lists the interceptors but not the name of the stack used by the action /** * Gildas de Cadoudal * 115, rue Mazarin * 33000 Bordeaux * (+33) (0)6 60 13 80 90 * (+33) (0)9 50 15 62 40 * gildas.de.cadou...@gmail.com **/ On Wed, Jul

Re: dynamic interceptor insertion

2014-07-09 Thread Lukasz Lenart
2014-07-08 15:30 GMT+02:00 Gildas de Cadoudal : > ActionInvocation.getStack () does not give the interceptor stack, at > least that's what I think No it doesn't > I want to know the stack to insert an interceptor to the execution of > actions using particular stack. ActionProxy#getConfig()#getIn

Re: dynamic interceptor insertion

2014-07-08 Thread Gildas de Cadoudal
3) (0)9 50 15 62 40 * gildas.de.cadou...@gmail.com **/ On Tue, Jul 8, 2014 at 2:06 PM, Martin Gainty wrote: > > > >> From: gildas.de.cadou...@gmail.com >> Date: Tue, 8 Jul 2014 12:36:14 +0200 >> Subject: Re: dynamic interceptor insertion >> To: dev@stru

RE: dynamic interceptor insertion

2014-07-08 Thread Martin Gainty
> From: gildas.de.cadou...@gmail.com > Date: Tue, 8 Jul 2014 12:36:14 +0200 > Subject: Re: dynamic interceptor insertion > To: dev@struts.apache.org > > I look towards the ActionInvocation or ActionProxyFactory but the > problem with this solution is that we do n

Re: dynamic interceptor insertion

2014-07-08 Thread Gildas de Cadoudal
no i don't have problems with jar detection, thanks /** * Gildas de Cadoudal * 115, rue Mazarin * 33000 Bordeaux * (+33) (0)6 60 13 80 90 * (+33) (0)9 50 15 62 40 * gildas.de.cadou...@gmail.com **/ On Tue, Jul 8, 2014 at 12:39 PM, Lukasz Lenart wrote: > 2014-07-08 12:36 GMT+02:00 Gildas d

Re: dynamic interceptor insertion

2014-07-08 Thread Lukasz Lenart
2014-07-08 12:36 GMT+02:00 Gildas de Cadoudal : > To clarify, my need: I want to allow the inclusion of a library in the > classpath enable features brought by it without changing the > configuration of the main project. If just want to detect a jar on classpath take a look on LoggerFactory - it d

Re: dynamic interceptor insertion

2014-07-08 Thread Gildas de Cadoudal
ping an eye on >> > the action as part of the debug process, (values before and after >> > interceptor)... >> > >> > So in short no there isn't anything that can't be done with non dynamic >> > stacks, but in the name of learning this web framework

Re: dynamic interceptor insertion

2014-07-03 Thread Greg Huber
uld dynamically build > an > > interceptor stack, and you could step though the stack keeping an eye on > > the action as part of the debug process, (values before and after > > interceptor)... > > > > So in short no there isn't anything that can't be done wi

Re: dynamic interceptor insertion

2014-07-02 Thread Paul Benedict
tep though the stack keeping an eye on > the action as part of the debug process, (values before and after > interceptor)... > > So in short no there isn't anything that can't be done with non dynamic > stacks, but in the name of learning this web framework and making things

RE: dynamic interceptor insertion

2014-07-02 Thread Martin Gainty
> Date: Wed, 2 Jul 2014 18:16:11 -0600 > Subject: Re: dynamic interceptor insertion > From: ken.mcwilli...@gmail.com > To: dev@struts.apache.org > > Thank you Lukasz I'll put it on my todo list ;) > > Martin, interceptor stacks are efficient I think the scope stru

Re: dynamic interceptor insertion

2014-07-02 Thread Ken McWilliams
d you could step though the stack keeping an eye on the action as part of the debug process, (values before and after interceptor)... So in short no there isn't anything that can't be done with non dynamic stacks, but in the name of learning this web framework and making things more effici

Re: dynamic interceptor insertion

2014-07-02 Thread Lukasz Lenart
2014-07-02 19:38 GMT+02:00 Ken McWilliams : > This is somethings I've wanted to do (dynamically change the interceptor > stack), I'm not at a development machine so have not checked the > plausibility of the following but would like input: > > Is it possible to create a custom ActionInvocation obje

RE: dynamic interceptor insertion

2014-07-02 Thread Martin Gainty
> Date: Wed, 2 Jul 2014 11:38:13 -0600 > Subject: Re: dynamic interceptor insertion > From: ken.mcwilli...@gmail.com > To: dev@struts.apache.org > > This is somethings I've wanted to do (dynamically change the interceptor > stack), I'm not at a development

Re: dynamic interceptor insertion

2014-07-02 Thread Ken McWilliams
This is somethings I've wanted to do (dynamically change the interceptor stack), I'm not at a development machine so have not checked the plausibility of the following but would like input: Is it possible to create a custom ActionInvocation object, for this purpose? Is it possible to essentially r

Re: dynamic interceptor insertion

2014-07-02 Thread Lukasz Lenart
2014-06-27 10:44 GMT+02:00 Gildas de Cadoudal : > Hi all, > > I would like to dynamically insert an interceptor to a specific place > in existing stack. > Of course I also like the stacks referencing the one where I insert > the interceptor also take advantage of this configuration change. > > Prac

dynamic interceptor insertion

2014-06-27 Thread Gildas de Cadoudal
Hi all, I would like to dynamically insert an interceptor to a specific place in existing stack. Of course I also like the stacks referencing the one where I insert the interceptor also take advantage of this configuration change. Practicable to do this? I started to look on the side of PackagePr

Re: Portlet Plugin Problem w/Dynamic Actions Using the URL Tag

2012-05-30 Thread umeshawasthi
t: Portlet Plugin Problem w/Dynamic Actions Using the URL Tag I have just upgraded to struts 2.3.4 for an existing application, and found a potential issue. This issue seems to only happen when the application is run as a portlet and does not occur when I run it as a standalone web application. I am u

Portlet Plugin Problem w/Dynamic Actions Using the URL Tag

2012-05-30 Thread Todd Kofford
I have just upgraded to struts 2.3.4 for an existing application, and found a potential issue. This issue seems to only happen when the application is run as a portlet and does not occur when I run it as a standalone web application. I am using a URL tag in my JSP, and the action attribute is an e

Re: dynamic list in struts 2

2011-01-18 Thread clockdva242
solved using a s:iterator inside a display:table thanks -- View this message in context: http://old.nabble.com/dynamic-list-in-struts-2-tp30676156p30699617.html Sent from the Struts - Dev mailing list archive at Nabble.com

Re: dynamic list in struts 2

2011-01-18 Thread Dave Newton
Presumably you know at *some* point and can either craft JSON or other JavaScript or JSP or etc. to produce valid view layer markup. What have you tried so far? Dave On Tuesday, January 18, 2011, clockdva242 wrote: > > how can i use it in a dynamic way? > i don't know the numb

Re: dynamic list in struts 2

2011-01-18 Thread clockdva242
how can i use it in a dynamic way? i don't know the number and name of columns thanks Dave Newton-6 wrote: > > Have you considered the display:table custom tags provided by the > displaytag > project [1]? > > IIRC there were issues with some of its links being exec

Re: dynamic list in struts 2

2011-01-16 Thread Dave Newton
like DataTables [2]. Dave [1] http://www.displaytag.org/1.2/ <http://www.displaytag.org/1.2/>[2] http://www.datatables.net/ On Sun, Jan 16, 2011 at 11:17 AM, clockdva242 wrote: > > i'm using s:iterator e display:table to view my list > > now i have a problem > > there i

dynamic list in struts 2

2011-01-16 Thread clockdva242
i'm using s:iterator e display:table to view my list now i have a problem there is a dynamic list for which i don't know the number and the name of columns so i have to build the table when i get the info; a solution could be write a dynamic table using code java in the jsp it'

Re: Dynamic add new properiest file with languages

2008-12-04 Thread Nils-Helge Garli Hegvik
ne level with WEB-INF) with application_pt.properties. How can I apply > translate from this file to my application? > Any ideas? > Than you! > -- > View this message in context: > http://www.nabble.com/Dynamic-add-new-properiest-file-with-languages-tp20831018p20831018.html > Sent from the

Dynamic add new properiest file with languages

2008-12-04 Thread integral_ua
level with WEB-INF) with application_pt.properties. How can I apply translate from this file to my application? Any ideas? Than you! -- View this message in context: http://www.nabble.com/Dynamic-add-new-properiest-file-with-languages-tp20831018p20831018.html Sent from the Struts - Dev mailing list

Re: dynamic

2008-07-24 Thread Ted Husted
d to created dynamic components like in my jsp, is it > possible to create using action class without using javascript > -- > View this message in context: > http://www.nabble.com/dynamic-tp18625957p18625957.html > Sent from the Struts - Dev mailing

dynamic

2008-07-23 Thread allwin
i wanted to created dynamic components like in my jsp, is it possible to create using action class without using javascript -- View this message in context: http://www.nabble.com/dynamic-tp18625957p18625957.html Sent from the Struts - Dev mailing list archive at Nabble.com

Re: How to pass dynamic value to the logic:equal tag?

2008-06-06 Thread Dave Newton
Please ask questions on the struts-user list; struts-dev is for the development of Struts itself. Thanks, Dave --- On Fri, 6/6/08, VenkatBabu <[EMAIL PROTECTED]> wrote: > From: VenkatBabu <[EMAIL PROTECTED]> > Subject: How to pass dynamic value to the logic:eq

How to pass dynamic value to the logic:equal tag?

2008-06-06 Thread VenkatBabu
st string from the vector. So i need to check it dynamically whether the vector is reached the last but one. I need to solve this issue as soon as possible. Any help would be very grateful. -- View this message in context: http://www.nabble.com/How-to-pass-dynamic-value-to-the-logic%3Aequal

[S2.1] Proposal for additional attribute on s:tree for dynamic trees.

2008-01-31 Thread Al Sutton
I'm throwing this idea out there for comments, so please let me know what you think. Problem : As things currently stand you can specify a child icon for a static tree node using childIconSrc. If you're creating a dynamic tree there is no method of specifying the icon for

Re: [S2] Dynamic Results

2007-04-11 Thread Dave Newton
--- Ted Husted <[EMAIL PROTECTED]> wrote: > * http://struts.apache.org/2.x/docs/result-configuration.html#ResultConfiguration-DynamicResults > > Do we have an example of Dynamic Results in the > Showcase, or does anyone have an example to donate? The "skill&quo

[S2] Dynamic Results

2007-04-11 Thread Ted Husted
* http://struts.apache.org/2.x/docs/result-configuration.html#ResultConfiguration-DynamicResults Do we have an example of Dynamic Results in the Showcase, or does anyone have an example to donate? -Ted. - To unsubscribe, e

[jira] Moved: (SHALE-140) [shale] Remoting should set cache-disabling headers on dynamic calls

2006-04-25 Thread Craig McClanahan (JIRA)
: (was: Nightly Build) Assign To: (was: Struts Developer Mailing List) > [shale] Remoting should set cache-disabling headers on dynamic calls > > > Key: SHALE-140 > URL: http://issues.ap

[jira] Closed: (STR-1339) Dynamic Message Resources

2006-04-25 Thread Don Brown (JIRA)
[ http://issues.apache.org/struts/browse/STR-1339?page=all ] Don Brown closed STR-1339: -- Resolution: Won't Fix > Dynamic Message Resources > - > > Key: STR-1339 > URL: http://issues.apache.o

[jira] Reopened: (STR-1339) Dynamic Message Resources

2006-04-25 Thread Don Brown (JIRA)
[ http://issues.apache.org/struts/browse/STR-1339?page=all ] Don Brown reopened STR-1339: Assign To: (was: Struts Developer Mailing List) > Dynamic Message Resources > - > > Key: STR-1339 >

[jira] Closed: (STR-842) Handling of HTML-Checkboxes and (dynamic) FormBeans result in false values

2006-04-25 Thread Don Brown (JIRA)
[ http://issues.apache.org/struts/browse/STR-842?page=all ] Don Brown closed STR-842: - Resolution: Fixed > Handling of HTML-Checkboxes and (dynamic) FormBeans result in false val

[jira] Reopened: (STR-842) Handling of HTML-Checkboxes and (dynamic) FormBeans result in false values

2006-04-25 Thread Don Brown (JIRA)
[ http://issues.apache.org/struts/browse/STR-842?page=all ] Don Brown reopened STR-842: --- Assign To: (was: Struts Developer Mailing List) > Handling of HTML-Checkboxes and (dynamic) FormBeans result in false val

DO NOT REPLY [Bug 39191] New: - [shale] Remoting should set cache-disabling headers on dynamic calls

2006-04-03 Thread bugzilla
gzilla/show_bug.cgi?id=39191 Summary: [shale] Remoting should set cache-disabling headers on dynamic calls Product: Struts Version: Nightly Build Platform: Other OS/Version: other Status: NEW Severity: enhan

DO NOT REPLY [Bug 37301] - Allow dynamic interface implementation by ActionForms using CGLib

2006-01-17 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 22600] - Defining inheritance for dynamic action forms in struts-config

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 22600] - Defining inheritance for dynamic action forms in struts-config

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35806] - [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35806] - [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 37832] - dynamic loading of run time generated validation.xml file

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 12573] - Handling of HTML-Checkboxes and (dynamic) FormBeans result in false values

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 18289] - Dynamic Message Resources

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 17751] - Dynamic de-coupled mapping of DynaForm properties to Model properties

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 37301] - Allow dynamic interface implementation by ActionForms using CGLib

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 12573] - Handling of HTML-Checkboxes and (dynamic) FormBeans result in false values

2005-12-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 37832] New: - dynamic loading of run time generated validation.xml file

2005-12-07 Thread bugzilla
gzilla/show_bug.cgi?id=37832 Summary: dynamic loading of run time generated validation.xml file Product: Struts Version: 1.1 Final Platform: All OS/Version: Windows XP Status: NEW Severity: enhan

DO NOT REPLY [Bug 37301] - Allow dynamic interface implementation by ActionForms using CGLib

2005-11-22 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 37301] - Allow dynamic interface implementation by ActionForms using CGLib

2005-10-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 37301] - Allow dynamic interface implementation by ActionForms using CGLib

2005-10-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 37301] New: - Allow dynamic interface implementation by ActionForms using CGLib

2005-10-28 Thread bugzilla
gzilla/show_bug.cgi?id=37301 Summary: Allow dynamic interface implementation by ActionForms using CGLib Product: Struts Version: 1.3.0 Platform: Other OS/Version: other Status: NEW Severity: enhan

DO NOT REPLY [Bug 35806] - [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript

2005-08-23 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35806] - [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript

2005-08-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35806] - [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript

2005-07-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35806] - [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript

2005-07-20 Thread bugzilla
gzilla/show_bug.cgi?id=35806 --- Additional Comments From [EMAIL PROTECTED] 2005-07-21 01:14 --- The patch for 33238 (which is applied in 1.2.7) escapes double quotes only. It can be easily enhanced to escape single quotes. It is tougher to handle line breaks, due to the way of dynamic java

DO NOT REPLY [Bug 35806] - [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript

2005-07-20 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35806] - [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript

2005-07-20 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35806] New: - [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript

2005-07-20 Thread bugzilla
gzilla/show_bug.cgi?id=35806 Summary: [taglib/validator] quotes not properly escaped in dynamic client side validation JavaScript Product: Struts Version: Nightly Build Platform: Other OS/Version: other Statu

DO NOT REPLY [Bug 22600] - Defining inheritance for dynamic action forms in struts-config

2005-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 22600] - Defining inheritance for dynamic action forms in struts-config

2005-04-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: Dynamic MessageResources ???

2005-01-07 Thread Craig McClanahan
On Fri, 7 Jan 2005 10:47:34 -0800, Dakota Jack <[EMAIL PROTECTED]> wrote: > What is the reason why ModuleConfigImpl freezes mrconfig? Would there > be some difficulty in making message resources dynamic? Same reason as for freezing all the other config objects ... so that, at runtime

Dynamic MessageResources ???

2005-01-07 Thread Dakota Jack
What is the reason why ModuleConfigImpl freezes mrconfig? Would there be some difficulty in making message resources dynamic? Jack -- -- "You can lead a horse to water but you cannot make it float on its back." ~Dakota Jack~ "You can't

FacesClient Components [Was Re: JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]])]

2004-11-04 Thread dhay
elopers List <[EMAIL PROTECTED]>, Martin Cooper <[EMAIL PROTECTED]> | | cc: | | Subject: Re: JSF and highly dynamic apps (was Re: Struts-B

Re: JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]])

2004-11-04 Thread Craig McClanahan
On Tue, 2 Nov 2004 21:43:41 -0800, Martin Cooper <[EMAIL PROTECTED]> wrote: > This is a really interesting statement. Perhaps I'm wrong, but I've > always thought the whole point of JSF was visual components. Yet the > statement above clearly indicates that JSF goes well beyond that > charter, and

Re: JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]])

2004-11-04 Thread Craig McClanahan
In order to meet the spec requirements for handling server side events related to the view tier components, JSF also provides a front controller responsible for handling the server side request processing lifecycle, with event listeners and other plug-in points for either application code or contro

Re: JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]])

2004-11-03 Thread Michael Rasmussen
> statement above clearly indicates that JSF goes well beyond that > charter, and clearly suggests that there are facets of JSF that should > not be a part of that JSR. > >From the original design goals of JSR 127 (JSF) "Provide a JavaBeans model for dispatching events from client-side GUI contro

Re: JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]])

2004-11-02 Thread Martin Cooper
On Sun, 31 Oct 2004 23:00:41 -0700, Craig McClanahan <[EMAIL PROTECTED]> wrote: > On Sun, 31 Oct 2004 21:30:22 -0600, Eddie Bush <[EMAIL PROTECTED]> wrote: > > > > Unless Martin is incorrect about the way JSF handles requests, I'm inclined > > to believe (despite the fact JSF will be a part of the

Re: JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]])

2004-10-31 Thread Craig McClanahan
On Sun, 31 Oct 2004 21:30:22 -0600, Eddie Bush <[EMAIL PROTECTED]> wrote: > > Unless Martin is incorrect about the way JSF handles requests, I'm inclined > to believe (despite the fact JSF will be a part of the next specification) > we might want to consider using something else under the covers i

Re: JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]])

2004-10-31 Thread Eddie Bush
ist" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, October 31, 2004 7:03 PM Subject: Re: JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]]) Martin, you make an interesting comment that I thi

Re: JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]])

2004-10-31 Thread Frank W. Zammetti
nderstanding what capabilities they already have without adding all the outside stuff. -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com Martin Cooper wrote: I hear what you're saying, Craig. However, I still feel that JSF doesn't buy me

JSF and highly dynamic apps (was Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]])

2004-10-31 Thread Martin Cooper
I hear what you're saying, Craig. However, I still feel that JSF doesn't buy me much when building highly dynamic apps. Some points to consider: * Since one of the goals of such apps is to minimise the number of full page refreshes, relatively little of the app can be constructed using

DO NOT REPLY [Bug 22600] - Defining inheritance for dynamic action forms in struts-config

2004-09-09 Thread bugzilla
gzilla/show_bug.cgi?id=22600 Defining inheritance for dynamic action forms in struts-config --- Additional Comments From [EMAIL PROTECTED] 2004-09-09 21:20 --- Created an attachment (id=12687) patch for the nightly build --

DO NOT REPLY [Bug 22600] - Defining inheritance for dynamic action forms in struts-config

2004-09-09 Thread bugzilla
gzilla/show_bug.cgi?id=22600 Defining inheritance for dynamic action forms in struts-config --- Additional Comments From [EMAIL PROTECTED] 2004-09-09 21:20 --- I have add some changes to my patch from yesterday (see BUG#31023). Now you get a exception on startup (init modul config) if you

DO NOT REPLY [Bug 22600] - Defining inheritance for dynamic action forms in struts-config

2004-09-08 Thread bugzilla
gzilla/show_bug.cgi?id=22600 Defining inheritance for dynamic action forms in struts-config --- Additional Comments From [EMAIL PROTECTED] 2004-09-08 21:31 --- I have attached a patch to BUG#31023 (I know, was the wrong BUG for the patch ;-) ) for dealing with inheritance of forms in

Re: images or dynamic buttons

2004-08-31 Thread Michael McGrady
Sorry, should have put buttons in the subject Michael McGrady wrote: PROJECT I am trying to build an imaging "module" for Struts, etc, buttons. What this does is to use dynamic data on buttons, e.g. color, size, style, font, language, etc., and to create the buttons on the fly. T