Re: Struts 2 protlet plugin. Validation errors.

2008-10-29 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html Tim wrote: Hi. I have some errors while validating my form. [b]struts.xml[/b] package

Re: Struts 2 Ajax DateTime Picker compatibility with FireFox 3

2008-09-30 Thread Laurie Harper
Abhinav Sharma wrote: I am using inbuilt struts 2 ajax date time picker for my web application. It works fine with FireFox 2 but I face issues with rendering of these controls in FireFox 3. FireFox 3 is really unpredictable in rendering date picker and time picker. Sometime it does not renders

Re: Struts 2, dojo, cascade select fields

2008-09-29 Thread Laurie Harper
ReadOnly wrote: Hi.. May be someone can help me:)..I start use struts 2.0.11, spring, hibernate. I need create cascading select fields.. For example: first select: city second select: streets .. When you are choosing city in the first one select second one need show streets only for this city...

Re: Known bug?

2008-09-01 Thread Laurie Harper
Marcelo Salhab Brogliato wrote: Hi, I'm using Struts 2 with Spring 2 and Hibernate. Today I got something strange: I have an action that receive some parameters from post, and it was working fine. But when I put the annotation @Transactional in this action, it started getting NPE. The

Re: 2.1.2 and JSON

2008-05-27 Thread Laurie Harper
Frans Thamura wrote: hi alll for S2 2.1.2, which will become beta do this release make the JSON Plugins will be bundled and any idea for JSON Plugins? The JSON Plugin is an external project and I don't think there has been any discussion of bringing it into Struts. I'm afraid I don't

Re: STRUTS with JSF

2008-05-27 Thread Laurie Harper
khalod85 wrote: I've an application the first module is implemented by STRUTS and the second module needs to be implemented by JSF I'm working with myEclipse as my IDE and JBoss as a web server when I added the JSF capabilities to my project and tried to launch the web application I noticed that

Re: about GPL/Apache license compatibility ...

2008-05-15 Thread Laurie Harper
Giovanni Azua wrote: hi, I was researching a bit alternatives to dojo e.g. YUI or separate widgets like a tooltip developed and distributed under GPL license and found some comments from Struts contributors mentioning that because of those widgets being GPL they could not be considered ...

Re: about GPL/Apache license compatibility ...

2008-05-15 Thread Laurie Harper
Laurie Harper wrote: Giovanni Azua wrote: hi, I was researching a bit alternatives to dojo e.g. YUI or separate widgets like a tooltip developed and distributed under GPL license and found some comments from Struts contributors mentioning that because of those widgets being GPL they could

Re: Issue WW-2107 question - Is JSTL disable or not?

2008-03-05 Thread Laurie Harper
Felipe Rodrigues wrote: Hi guys, Sorry, but it is not quite clear for me if the JSP EL is disable in struts2 tags or not. I'vev seen that static methods calls is disabled. As of Struts 2.0.11 yes, EL expressions are disabled in Struts tags. In future, please post questions about using Struts

Re: Struts tags and Filter Dispatcher Url Pattern-struts 2.1.1

2008-02-01 Thread Laurie Harper
[The answer to your question is yes, Struts tags will only work within the context of a request processed by Struts (i.e. through the filter). However, in the future:] Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development

Re: XSS and the encode attribute of s:url ...

2008-01-13 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html GF wrote: Can someone explain me the use of the encode attribute of s:url .. ? I'm trying to do

Re: Running Struts 2.0.11 on Weblogic 8.1 SP5

2008-01-01 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html LesleyT wrote: Hi all, Am trying to run our application built using: Struts 2.0.11, Spring 2.0,

Re: Struts Token help

2007-12-20 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html Indresh Chadha wrote: Hi, I need to stop: 1. multiple post to an action 2. refresh of a page

Re: Result types for S1

2007-12-13 Thread Laurie Harper
Frank W. Zammetti wrote: Hi Antonio, Antonio Petrelli wrote: 2007/12/13, Frank W. Zammetti [EMAIL PROTECTED]: return mapping.findForward(JSONResultType); I don't like this syntax, because it mixes the concept of forward (to a page) with the rendering of the ActionForm. Probably a more

Re: Disable validate interceptor while executeAndWant in wait phase

2007-10-15 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html Igor Vlasov wrote: Hello. I recieve an validation exception while wait phase of executeAndWant.

Re: Indexed and Nested properties

2007-10-01 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html L. Radha Krishna wrote: Hi, i am working on indexed,nested properties. i have following

Re: s:include tag

2007-09-18 Thread Laurie Harper
Sairam01 wrote: I'm unable to include a jsp dynamically. The include tag doesn't evaluate VALUE the expression. s:include value==%{someName}.jsp/ someName is a attribute on my action code. Should this work..? Please post questions about using Struts to the Struts Users list only. The

Re: Mapping select multiple to collention

2007-08-20 Thread Laurie Harper
jpedro wrote: Hi, I have this code in my jsp: html:select property=selectedList multiple=true html:optionsCollection property=oList value=id label=description/ /html:select the property oList is a typed List in the form and it works fine. The problem is that i can only map the

Re: OGNL and JSP 2.1 - are there plans to fix?

2007-08-03 Thread Laurie Harper
mraible wrote: On another note (to quote the article above): With version 2.1 or later, the character sequence #{ represents a deferred expression, assuming the attribute has been declared to support deferred expressions in the TLD. If the attribute does not support deferred expressions, then

Re: radio Button in Struts2

2007-07-25 Thread Laurie Harper
merryba wrote: Hi, Please I am newbie to Sruts2. I want the radio button to display Male as the default one. s:radio name=registration.gender list=#{'M':'Male','F':'Female'} / How can I do it? Please help me. Thanks Please post questions about using Struts to the Struts Users list only.

Re: Please help, donot validate a field when cancel button is click

2007-07-25 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html [a hint re. your problem: see the html:cancel tag.] L. cvu wrote: Hi Gurus, please help

Re: newbie: struts 1.2

2007-07-16 Thread Laurie Harper
ojasrege wrote: As part of an ActionForward.execute(), I am forwarding to a JSP page using a global forward name. The jsp page corresponding to the global forward is called. However, its form validate() and ActionForward.execute() methods are called before the jsp page is displayed. Is this

Re: Replacing WebMacro

2007-07-16 Thread Laurie Harper
Gerardo Corro wrote: Hi, I'm in the middle of replacing an old application written with WebMacro in the presentation layer, our team is thinking about struts like the MVC to be used, however we wonder what could be used besides Struts in order to create nice GUIs as the ones you can create

Re: javacript and logic:forward

2007-06-29 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html thenameless20 wrote: What comes firsta documents body onload=function(...) or

Re: How to set label position with a select tag

2007-06-29 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html TonyD wrote: Hi, Someone knows how to set a blank before a label of a select tag? State: and

Re: Null pointer exception in action class - file upload form file problem URGENT!!! HELP

2007-06-26 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html vbharath19 wrote: Hi, I have a jsp from which i upload a file. this field is of Formfile type.

Re: [S2] struts-tags.tld broken

2007-06-19 Thread Laurie Harper
James Holmes wrote: It appears that the generated struts-tags.tld file is broken in the 2.0.8, 2.0.6 and possibly other builds. The URI being generated and used inside the uri/uri tags should be http://struts.apache.org/tags; instead of /struts-tags unless I'm confused. Also, the display-name

Re: java.lang.IllegalArgumentException: No bean specified

2007-05-31 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html L. Vijay KS wrote: onfig form-beans form-bean name=FileUpload

Re: struts-faces integration problem with existing struts based application?

2007-05-24 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html vijendra wrote: I am trying to integrate struts-faces in my previous struts based application. i

Re: AutoComplete Option turn off in struts 1.1

2007-05-14 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html Tirumalasetty, Jyotsna (Consultant) wrote: Hi, I am developing an application in which I

Re: FileUploadInterceptor problem

2007-05-08 Thread Laurie Harper
Please post questions about using Struts to the Struts Users list only. The Struts Dev list is for discussing the development and enhancement of Struts itself. http://struts.apache.org/mail.html L. Michał Letyński wrote: Hi. I want to set a maximumSize parameter to FileUploadInterceptor. In

Re: Some parameters from Struts2 to Struts1

2007-05-08 Thread Laurie Harper
Michał Letyński wrote: Hi. I have actions in struts1 and struts2 in one application. Those struts1 actions will be re-writed in near future to struts2. But i need one thing for now. In struts2 (Test.action ) i have some parameters - collection of id's which i want to transmit to struts1

Re: extending AuthorizeAction command in the composable request processor chain

2007-04-07 Thread Laurie Harper
This is a question for the users list. The dev list is for the discussion of developing Struts itself. Please re-post to the users list. L. [EMAIL PROTECTED] wrote: Hello Everyone, I've been working on a web application here and I've come up with a situation where I feel that extending the

Re: How to get ActionForm

2007-04-07 Thread Laurie Harper
Start by asking on the appropriate mailing list ;-) Questions like this belong on the users list, not the dev list. Please re-post your question there. L. Radha Krishna wrote: Hi, I want to use the instance of ActionForm associated with current Action in Tag libraries(doEndTag()

Re: weblogic 8.1 sp3 with struts2

2007-03-22 Thread Laurie Harper
Please post questions like this to the users@ list. dev@ is for discussion of the development of Struts. Questions about using it belong on [EMAIL PROTECTED] Thanks, L. hfaouaz wrote: I am getting a NPE after the action return a success. My struts.xml has the location but

Re: Migrating from 2.0.1 to 2.0.6

2007-03-02 Thread Laurie Harper
This is really a question for the user list. Please follow-up there if you have additional questions. That said, you will find the information you need in the release notes. Unfortunately there isn't a single, consolidated source for 2.0.1 to 2.0.6, so you'll need to look at the release notes

Re: Blank Struts page after submit

2007-02-04 Thread Laurie Harper
Please post questions like this to the users list rather than the devel list; this list is for discussion of the development of Struts itself. Also, you should include your relevant config (form bean definitions and action mappings, etc.) and, if possible, simplify the code down as much as

Re: per-method validations for annotations

2007-01-30 Thread Laurie Harper
David Rupp wrote: Hi, all. I've submitted a patch to the XWork project (issue XW-470) that enables per-method validations when using annotations. This is, IMO, an improvement over the current behavior, with which all validations are attached to the class, and *all* fire when *any* method is

s2 Code Behind bug?

2007-01-14 Thread Laurie Harper
I'm trying to get a project running with the Zero Config and Code Behind Plugin features of S2 and I'm seeing something which looks like a bug. I thought I'd raise it here before posting it to JIRA and/or trying to dig through the plugin code to track it down, in case this is 'by design' or

cwiki karma

2007-01-04 Thread Laurie Harper
Could someone grant me karma for the S2 wiki (username laurieh)? I want to fix the broken snippet macros in the tag ref as I come across them so I can actually read the documentation ;-) Thanks, L. - To unsubscribe, e-mail:

Re: [VOTE] Tiles TLP

2006-12-04 Thread Laurie Harper
David H. DeWolf wrote: [x] +1 = Yes, let's ask the board to establish the Tiles TLP - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: change the presentation of struts validator framework errors on jsp page?

2006-11-02 Thread Laurie Harper
This is really a discussion for the Struts Users list, rather than the dev list; please follow up with any further questions there. However, in brief, there is currently no support for displaying client-side validation errors as in-line HTML like you show server-side validation errors. Simply

Re: [VOTE] Promote Struts 1.3.5 to General Availability

2006-09-14 Thread Laurie Harper
Wendy Smoak wrote: [X ] +1Yes, Struts 1.3.5 should be promoted to GA quality. [ ] +/- 0 [ ] -1 No, let it remain Beta quality - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [s1] Commons-Lang

2006-08-22 Thread Laurie Harper
Don Brown wrote: In this case, yes, we need to log, however, as a library, the only messages the user will care about are those that are from the library as a whole. If the user needs to filter at a package level a library's log messages, that library has problems :) Agreed, *up to* the point

Re: Whose log is this anyway? (was Re: [s1] Commons-Lang)

2006-08-22 Thread Laurie Harper
The var-args log message construction is definitely a nice bit of syntactic sugar, but removing the guard seems unwise; sure, there's no string concatenation in the call to log.debug, but there's an implicit Object[] instantiation, which isn't much better. There's a reason every major logging

Re: [VOTE] Struts 1.3.5 Quality - RESULT

2006-08-01 Thread Laurie Harper
Wendy Smoak wrote: On 8/1/06, Ted Husted [EMAIL PROTECTED] wrote: My copy of mvn doesn't seem to think that download sources is an option :( You try it with -U to see if you've got the latest IDEA plugin. I forget when that was added. If not, depending on how much time you have to spend on

Re: OGNL - Getter and setter types must match

2006-06-28 Thread Laurie Harper
The restriction comes from the Java relection API semantics, not OGNL. A property can only have one type, so it makes sense that the getter and setter for a JavaBean property must agree on that type. Changing this would break compatibility with the JavaBean specification, at the least... L.

Re: SAF1 Checkstyle

2006-06-19 Thread Laurie Harper
Frank W. Zammetti wrote: Ted Husted wrote: You might at least want to start those discussions about the checkstyle settings, so that we can develop a strategy about how they would be fixed the next time there is a window of opportunity. Fair enough... I saw two issues that seem to account

Re: [VOTE] Accept and Graduate WebWork 2 Podling to Struts

2006-04-28 Thread Laurie Harper
+0 (non-binding) with the same caveat. L. Greg Reddin wrote: +0. I'd say +1, but it looks like it will be a bit before I have a chance to get more involved. Greg On Apr 28, 2006, at 1:19 PM, Don Brown wrote: I call a vote that the Struts PMC accept the WebWork 2 podling as having met the

Re: [action2] Switching to Dojo widgets

2006-04-15 Thread Laurie Harper
Martin Cooper wrote: When you build (or download) a specific profile, the dojo.js file contains only what is defined for that profile. However, everything else is still available. Any code that is dojo.required that is not part of the profile will be dynamically fetched by Dojo when that

Re: [WebWork2] TODO

2006-03-27 Thread Laurie Harper
Joe Germuska wrote: At 7:39 AM -0500 3/27/06, Ted Husted wrote: Walter Zorns tooltip library for all UI Tags * Is there a Dojo equivalent? I'm pretty sure there is not. I haven't looked at the Walter Zorn tooltips, but Dojo does have a tooltip widget:

Re: [ANNOUNCE] Struts Action 1.3.1 Test Build available

2006-03-12 Thread Laurie Harper
Wendy Smoak wrote: On 3/11/06, Laurie Harper [EMAIL PROTECTED] wrote: Wendy Smoak wrote: As a reminder, Struts Action Library 1.3_00, which contains the version 1.3.0 test builds of all Struts Action sub-projects, can be downloaded from this location: http://cvs.apache.org/dist/struts

Re: [ANNOUNCE] Struts Action 1.3.1 Test Build available

2006-03-11 Thread Laurie Harper
Wendy Smoak wrote: As a reminder, Struts Action Library 1.3_00, which contains the version 1.3.0 test builds of all Struts Action sub-projects, can be downloaded from this location: http://cvs.apache.org/dist/struts/action-lib/ Is that useful in this context, given that it contains 1.3.0?

Re: Struts Action Friends 1.3.0 MVC

2006-02-25 Thread Laurie Harper
Ted Husted wrote: I'd like to nominate Wendy Smoak as the Most Valuable Committer in making the release of the new 1.3.0 builds possible. Along with James Mitchell, Wendy did the thankless scutwork of taking the Maven builds from prototype to production. Without her tireless efforts, we'd still

Re: [VOTE] Confirm the Struts Action Library 1.3.0 release plan

2006-02-17 Thread Laurie Harper
Another way of looking at it is that such a tag would be capturing the same information as the Maven POM... The main value of a tag is to allow someone to check out all the code for a given release at once. Checking out just action and letting Maven pull the release jars for the other

Re: [VOTE] Confirm the Struts Action Library 1.3.0 release plan

2006-02-16 Thread Laurie Harper
Ted Husted wrote: If some people feel these patches are a problem, then we can always keep Action 1.3.0 as a test-build, until someone has time to apply them and roll an Action 1.3.1 (note that the other six subprojects would *not* have to tagged and rolled again, only the one we change). The

Re: [VOTE] Confirm the Struts Action Library 1.3.0 release plan

2006-02-16 Thread Laurie Harper
Ted Husted wrote: On 2/16/06, Martin Cooper [EMAIL PROTECTED] wrote: If we think this is serious enough to warrant a 1.2.9 release, then it makes little sense to me to tag 1.3.0 without it. Otherwise, all we're saying is hurrah, we tagged the tree, but oh, you probably don't want to use this

Re: [VOTE] Confirm the Struts Action Library 1.3.0 release plan

2006-02-16 Thread Laurie Harper
Laurie Harper wrote: Ted Husted wrote: On 2/16/06, Martin Cooper [EMAIL PROTECTED] wrote: If we think this is serious enough to warrant a 1.2.9 release, then it makes little sense to me to tag 1.3.0 without it. Otherwise, all we're saying is hurrah, we tagged the tree, but oh, you probably

[OT] ASF legal

2006-02-05 Thread Laurie Harper
What's the best way of getting hold of an ASF legal maven? I've been doing a bunch of work with Dojo recently and one fly in the ointment is that they require filing a CLA before they'll accept patches, even for minor bug fixes. The reason they do that is they want to be absolutely safe,

Re: Help adding Struts to AJAX impl

2006-02-01 Thread Laurie Harper
Sounds like it'd be a lot easier to just fire the first request with a handler function that fires the next request, and so on, using onreadystatechange. L. Frank W. Zammetti wrote: No Wendy, you are correct in your explanation :) I see Ajax in Action is serving you well :) I wouldn't

Re: [VOTE] Accept WebWork 2 Merger Incubator Proposal

2006-01-25 Thread Laurie Harper
+1 non-binding Don Brown wrote: http://wiki.apache.org/struts/WebWork2Incubator = PROJECT PROPOSAL = WebWork 2: A Java web application development framework A proposal to merge the WebWork 2 community and codebase into the Apache Struts project. The new codebase is slated to become Struts

Re: Validation Security Hole?

2006-01-24 Thread Laurie Harper
Paul Benedict wrote: Laurie, Do we have a proprosed solution? I volunteer to write it, whatever we decide on, unless a committer feels it is more appropriate for him/her to write it. I believe we have several proposed solutions: - add an action-mapping config option to enable cancel

Re: Validation Security Hole?

2006-01-23 Thread Laurie Harper
Joe Germuska wrote: At 11:38 AM -0500 1/23/06, Frank W. Zammetti wrote: Joe, I think Rick is correct, I too do not see how this will solve the problem. Recall that the way it works today, you can bypass validate() being fired for *any* Action, not just those which are designed to handle a

Re: Validation Security Hole?

2006-01-22 Thread Laurie Harper
captured all the pertinent information clearly and concisely. I just suggested to Paul to open a ticket for this as well, that should probably be mentioned (with a ticket # if available when you post). Two minor comments below... Frank Laurie Harper wrote: [Moved to a top-level thread

Re: Checkstyle (was svn commit: r360442 [1/3] )

2006-01-18 Thread Laurie Harper
If the goal is to be able to run a tool to get checkstyle 'conformance' wouldn't it be better to tailer checkstyle to a tool anyone could grab, rather than tailoring it to what IDEA can do? Don't get me wrong, I love IDEA and I'd be quite happy to be able to use it for this, but not everyone

Re: Non-discussion emails

2006-01-18 Thread Laurie Harper
Just to point out the obvious: directing wiki/commit/issue logs to separate lists in no way precludes having everything show up on the dev list as well. We could have dev-svn@, dev-wiki@, dev-issues@, etc plus dev-discuss@ and simply subscribe dev@ to each of those to obtain an aggregate.

Re: 1.3.0 Release - Next Steps

2006-01-17 Thread Laurie Harper
request to me... I don't think it should prevent a release. So we just need to resolve Bug #37730 (serialization) one way or the other. Laurie, any comments on all this? -- Laurie Harper Open Source advocate, Java geek: http://www.holoweb.net/laurie Founder, Zotech Software: http

Re: Removing CGLIB enhancement from struts-action

2006-01-16 Thread Laurie Harper
I only saw Ted's message on this in my personal inbox, not here on the list, so in case my reply to that doesn't get through to here: +1 -- I unfortunately wont have time to address #37730 in the 1.3.0 timeframe :-( I'll revisit the feature when I have some spare cycles [I get away with using

Re: Struts/WebWork Merger Tasks (was Q)

2006-01-05 Thread Laurie Harper
Ex-party sidebar: how much value do DyanBeans add in WW given that, if I understand correctly, it can already work directly with POJOs? The thing that dyna action forms are there to avoid (writing boilerplate action forms) isn't needed in WW is it? L. Don Brown wrote: Off the top of my

[shale] DefaultViewControllerMapper limitations

2006-01-05 Thread Laurie Harper
Thanks to my unusual use of view identifiers carrying path-extra-info information, I've discovered a bit of a limitation with DefaultViewControllerMapper: if the result of applying the mapping algorithm isn't legal as a value binding expression, you get an ugly stack trace. I triggered this

Re: [shale] DefaultViewControllerMapper limitations

2006-01-05 Thread Laurie Harper
Craig McClanahan wrote: On 1/5/06, Laurie Harper [EMAIL PROTECTED] wrote: Thanks to my unusual use of view identifiers carrying path-extra-info information, I've discovered a bit of a limitation with DefaultViewControllerMapper: if the result of applying the mapping algorithm isn't legal

Re: [shale] DefaultViewControllerMapper limitations

2006-01-05 Thread Laurie Harper
Craig McClanahan wrote: On 1/5/06, Laurie Harper [EMAIL PROTECTED] wrote: Craig McClanahan wrote: On 1/5/06, Laurie Harper [EMAIL PROTECTED] wrote: Thanks to my unusual use of view identifiers carrying path-extra-info information, I've discovered a bit of a limitation

Re: Rép : [shale] Proposal: mak ing view controllers easier to access

2005-12-31 Thread Laurie Harper
Gary VanMatre wrote: From: Alexandre Poitras [EMAIL PROTECTED] Ok but I still don't get it. From what I understand, you couldn't not use for example @a or @ab because they share the first same letter. That what I found when I took a quick look in the sources but I could be wrong. And since

Re: Rép : [shale] Proposal: mak ing view controllers easier to access

2005-12-31 Thread Laurie Harper
Gary VanMatre wrote: From: Laurie Harper [EMAIL PROTECTED] Gary VanMatre wrote: From: Alexandre Poitras Ok but I still don't get it. From what I understand, you couldn't not use for example @a or @ab because they share the first same letter. That what I found when I took a quick look

Re: [shale] Proposal: making view controllers easier to access

2005-12-31 Thread Laurie Harper
Craig McClanahan wrote: On 12/31/05, Laurie Harper [EMAIL PROTECTED] wrote: Craig McClanahan wrote: On 12/29/05, Laurie Harper [EMAIL PROTECTED] wrote: One thing I'm finding a little ugly using Shale is referencing the view controller using EL expressions. Due to the way Shale maps view IDs

[shale] Proposal: making view controllers easier to access

2005-12-29 Thread Laurie Harper
One thing I'm finding a little ugly using Shale is referencing the view controller using EL expressions. Due to the way Shale maps view IDs to backing bean names, I end up with ugly EL expressions like #{pages$user$profile$general.whatever}. Would it make sense to store the view controller

Re: A hint in html:select

2005-12-15 Thread Laurie Harper
Lotfi Ramdani wrote: HI all, I want to use hint to Show some text when my mouse over an itel of my Select liste. How can I do it. Is there a solution with javascript. Firstly, this sort of question should be asked on the user list; the dev list is for discussion of the development of

Re: [OT] Appropriate logging (was IDE Haters (Was Re: Logging in MailReader 1.3))

2005-12-09 Thread Laurie Harper
Is this taking the discussion further off topic or bringing it back towards it's starting point? ;-) Frank's comments below go more to the heart of what logging should or shouldn't be used for, which has been a bug-bear of mine for a while... The key thing is to remember, when writing log

Re: [ti] Struts Action 1.x migration tools

2005-12-04 Thread Laurie Harper
Don Brown wrote: I've gone back and forth how and to what level of detail Struts Ti can/should support Struts Action 1.x applications. When I say Struts Ti, at this point, I'm referring to WebWork 2.2 since we haven't imported the code yet. Below is my thoughts that I invite comments on.

Re: Milestones proposal: Step 1

2005-12-01 Thread Laurie Harper
There does need to be a distinction, though, between 'probably never' and new tickets, not yet assigned to a milestone. I'm not that familiar with Bugzilla, though; maybe the Status field is enough to handle that? L. Don Brown wrote: In my opinion, it would be simpler to assign those tickets

Re: [Standalone Tiles] Major Refactoring (Long)

2005-12-01 Thread Laurie Harper
Wendy Smoak wrote: I'm planning to work on the Maven build. Some combination of getting the version number into the filename (I think right now it should be tiles-core-0.2-SNAPSHOT) and possibly adding a third piece to the version number should allow us to publish snapshots that don't get

Re: [VOTE] Confirm Shale 1.0.0 Test Build Release Plan

2005-12-01 Thread Laurie Harper
+1 (non-binding) L. Craig McClanahan wrote: All of the outstanding issues have been accounted for -- it's time to release the initial test build of Shale! Given the amount of time since the 1.0.0 release plan was first proposed, I'd like to call for a vote confirming it:

Re: CGLib DynaActioForm problem (was [VOTE] Confirm the Struts Action Library 1.3.0 release plan)

2005-11-30 Thread Laurie Harper
Niall Pemberton wrote: On 11/30/05, Laurie Harper [EMAIL PROTECTED] wrote: Niall Pemberton wrote: On 11/29/05, Niall Pemberton [EMAIL PROTECTED] wrote: On 11/29/05, Laurie Harper [EMAIL PROTECTED] wrote: Niall Pemberton wrote: Also looked like the property types were the wrong way round

Re: CGLib DynaActioForm problem (was [VOTE] Confirm the Struts Action Library 1.3.0 release plan)

2005-11-30 Thread Laurie Harper
Niall Pemberton wrote: On 11/30/05, Laurie Harper [EMAIL PROTECTED] wrote: Niall Pemberton wrote: On 11/29/05, Niall Pemberton [EMAIL PROTECTED] wrote: On 11/29/05, Laurie Harper [EMAIL PROTECTED] wrote: Niall Pemberton wrote: Also looked like the property types were the wrong way round

Re: svn commit: r350142 - /struts/action/trunk/src/java/org/apache/struts/action/DynaActionFormClass.java

2005-11-30 Thread Laurie Harper
Wendy Smoak wrote: On 11/30/05, Martin Cooper [EMAIL PROTECTED] wrote: There was a thread somewhere recently (I'm afraid I don't recall where) about going in the opposite direction, for a good reason that I don't recall. I'm hoping someone else here saw the same thing and has a better memory.

Re: [PROPOSAL] Target tickets to milestones and use as roadmap

2005-11-30 Thread Laurie Harper
+1 (non-binding). Definitely a good way to add a lot more clarity about where things stand and what needs doing. L. Don Brown wrote: I propose we use an automated, easy to understand roadmap that relies on Bugzilla tickets marked against Milestones. With all the action in the Struts project

Re: [shale?] mimicking wildcard action mapping paths

2005-11-28 Thread Laurie Harper
Craig McClanahan wrote: On 11/26/05, Laurie Harper [EMAIL PROTECTED] wrote: I suspect that Shale doesn't provide anything over-and-above the standard JSF navigation management in this area, in which case this may be more of a general JSF question: Well, it does offer above-and-beyond

Re: [shale?] mimicking wildcard action mapping paths

2005-11-28 Thread Laurie Harper
. You could try something similar. sean On 11/28/05, Laurie Harper [EMAIL PROTECTED] wrote: Craig McClanahan wrote: On 11/26/05, Laurie Harper [EMAIL PROTECTED] wrote: I suspect that Shale doesn't provide anything over-and-above the standard JSF navigation management in this area, in which

Re: DO NOT REPLY [Bug 36794] - Enhance DynaActionForm and sub-classes to allow normal property access in JSPs

2005-11-28 Thread Laurie Harper
Wendy Smoak wrote: On 11/26/05, Laurie Harper [EMAIL PROTECTED] wrote: Ted, where do I edit the release notes for 1.3.0? The only likely candidate looked to be action/xdocs/userGuide/release-notes.xml but that looks like it's the 1.2.8 release notes... Are 1.3.0 release notes being

Re: [VOTE] Confirm the Struts Action Library 1.3.0 release plan

2005-11-28 Thread Laurie Harper
Niall Pemberton wrote: Also looked like the property types were the wrong way round for indexed methods, so I also switched them. Hmm, with that change, accessing a List property is broken. Without the change, all my tests are working. You can deploy the exercises app with the addition I

Re: DO NOT REPLY [Bug 36794] - Enhance DynaActionForm and sub-classes to allow normal property access in JSPs

2005-11-26 Thread Laurie Harper
Ted, where do I edit the release notes for 1.3.0? The only likely candidate looked to be action/xdocs/userGuide/release-notes.xml but that looks like it's the 1.2.8 release notes... Are 1.3.0 release notes being aggregated somewhere else? L. [EMAIL PROTECTED] wrote: DO NOT REPLY TO THIS

Re: [VOTE] Confirm the Struts Action Library 1.3.0 release plan

2005-11-26 Thread Laurie Harper
Niall Pemberton wrote: project rather than core. At the moment I'm -0 on this feature because it doesn't have any JUnit tests - if tests are added I'd change that to a +0! Niall, are you comfortable with just a test page in the exercises app? I have that almost ready to commit; I just have to

[shale?] mimicking wildcard action mapping paths

2005-11-26 Thread Laurie Harper
I suspect that Shale doesn't provide anything over-and-above the standard JSF navigation management in this area, in which case this may be more of a general JSF question: I use wildcard action mapping paths extensively, which of course continues to work unchanged with struts-faces, but I'm

Re: [shale] starting points and Use Cases issues

2005-11-20 Thread Laurie Harper
Craig McClanahan wrote: And, as to dialogs, yes ... in the current implementation, back buttons are death (as well as multiple simultaneous dialogs). That's very high on my priority list for *after* the whole darn thing is stable enough for a 1.0.0alpha-quality milestone. The more I play with

Re: DynaActionForm enhancement

2005-11-19 Thread Laurie Harper
Ryan Stewart wrote: Original Message From: [EMAIL PROTECTED] Date: Nov 13, 2005 5:58:15 AM To: dev@struts.apache.org Subj: DynaActionForm enhancement I've just committed my proposed enhancement for DynaActionForm, described in #36794 [1], together with documentation updates to reflect

Re: DynaActionForm enhancement

2005-11-19 Thread Laurie Harper
Michael Jouravlev wrote: On 11/12/05, Laurie Harper [EMAIL PROTECTED] wrote: I've just committed my proposed enhancement for DynaActionForm, described in #36794 [1], together with documentation updates to reflect the changes. I'd like to extend this to include Ryan Stewart's enhancement

[shale] starting points and Use Cases issues

2005-11-18 Thread Laurie Harper
I couldn't sleep, so I've been spending the night looking at a few things, amoung them Shale. I was wondering what a good starting place would be to get up to speed quickly, since I haven't really looked at JSF or Shale before now. I thought I'd start by checking out the Use Cases sample app,

Re: [shale] starting points and Use Cases issues

2005-11-18 Thread Laurie Harper
Wendy Smoak wrote: On 11/18/05, Laurie Harper [EMAIL PROTECTED] wrote: I couldn't sleep, so I've been spending the night looking at a few things, amoung them Shale. I was wondering what a good starting place would be to get up to speed quickly, since I haven't really looked at JSF or Shale

Re: [shale] starting points and Use Cases issues

2005-11-18 Thread Laurie Harper
Craig McClanahan wrote: On 11/18/05, Greg Reddin [EMAIL PROTECTED] wrote: On Nov 18, 2005, at 6:04 AM, Laurie Harper wrote: I couldn't sleep, so I've been spending the night looking at a few things, amoung them Shale. I was wondering what a good starting place would be to get up to speed

Re: svn commit: r345179 - in /struts/core/trunk: conf/java/struts-config_1_3.dtd src/java/org/apache/struts/action/DynaActionFormClass.java src/java/org/apache/struts/config/FormBeanConfig.j

2005-11-18 Thread Laurie Harper
Christian Meder wrote: On Thu, 2005-11-17 at 16:29 -0500, Laurie Harper wrote: Christian Meder wrote: On Thu, 2005-11-17 at 03:40 +, [EMAIL PROTECTED] wrote: /** + * pThe CGLIB codeEnhancer/code which we will use to dynamically + * add getters/setters if 'enhanced' is true

  1   2   >