svn commit: r227161 - in /struts/shale/trunk/test-framework/src/java/org/apache/shale/test: base/AbstractJsfTestCase.java base/AbstractViewControllerTestCase.java mock/MockServletContext.java

2005-08-02 Thread craigmcc
Author: craigmcc Date: Tue Aug 2 22:03:33 2005 New Revision: 227161 URL: http://svn.apache.org/viewcvs?rev=227161&view=rev Log: Make it possible for a test case to define the "document root" directory to MockServletContext, so that getRealPath() calls can be resolved correctly. Also, add warnings

DO NOT REPLY [Bug 35988] New: - Problem with validation in MailReader example app

2005-08-02 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: [moved] HTML labels and Struts

2005-08-02 Thread Frank W. Zammetti
The situation is actually even a little more complicated... I would have sworn before that you could include a query string when you called ActionMapping.findForward(), but you cannot... after the fact I remembered that you have to play some games with adding it to the path on the returned for

[Struts Wiki] Update of "StrutsUpgradeNotes12to13" by FrankZammetti

2005-08-02 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by FrankZammetti: http://wiki.apache.org/struts/StrutsUpgradeNotes12to13

Re: [Proposal] Struts Ti

2005-08-02 Thread Don Brown
Joe Germuska wrote: I agree that the EL support, especially if designed to be pluggable, should be as consistent as possible between projects. I'd like to see how Don has set up the configurability in Struts-Ti (btw, how is that pronounced anyway? Is it like "Titantium"? or like "tie"? or lik

Re: [Proposal] Struts Ti

2005-08-02 Thread Joe Germuska
At 3:41 PM -0500 8/2/05, Michael Rasmussen wrote: I wrote a patch for Chain a couple weeks ago that created support for an EL. It uses JSTL-EL by default and was designed with the idea that it would be pluggable. The patch is just sitting there, I don't know what you are using for Struts-Ti, b

Re: DO NOT REPLY [Bug 35933] - [apps] Source code missing from example apps

2005-08-02 Thread James Mitchell
DO NOT REPLY [Bug 35933] - [apps] Source code missing from example apps --- Additional Comments From [EMAIL PROTECTED] 2005-08-02 03:57 --- Added source code to struts-mailreader, struts-examples, and struts-blank webapps. Fixed in 20050802 nightly build. James, does the nightly build p

[Struts Wiki] Update of "StrutsShale" by WendySmoak

2005-08-02 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by WendySmoak: http://wiki.apache.org/struts/StrutsShale The comment on the change is: Fixed link to Validation article & typo -

Re: [moved] HTML labels and Struts

2005-08-02 Thread Frank W. Zammetti
Laurie Harper wrote: The only thing that occurs to me is: are anchors guaranteed to be at the end of the URL? I.e. is this valid: http://.../myAction.do#anchor?query=... That's a good point, I don't know the answer off the top of my head... have to do some looking around... Come to think of

Re: [Proposal] Struts Ti

2005-08-02 Thread Laurie Harper
I've also seen at least one JVM stack for .Net, allowing you to mix-and-match Java and C# in the same application. L. netsql wrote: Michael, in esence, one could just cut and paste the code from "org.struts.api" to C#, fixing syntax as needed. Then in esence people that use it in one or the

Re: Documenting wildcard action mapping behaviour

2005-08-02 Thread Laurie Harper
Excellent, thanks :) Don Brown wrote: I added the patch to Struts core. Thanks again for the patch! Don Laurie Harper wrote: I got bitten once too many times by unexpected behaviour using wildcard action paths so I dug out my debugger and figured out what was going on. Attached is some ext

Re: [moved] HTML labels and Struts

2005-08-02 Thread Laurie Harper
The only thing that occurs to me is: are anchors guaranteed to be at the end of the URL? I.e. is this valid: http://.../myAction.do#anchor?query=... Come to think of it, it may not make any difference; is the 'name' argument to findForward pre-processed to strip request parameters? L. Frank

Re: [Proposal] Struts Ti

2005-08-02 Thread Michael Rasmussen
On 8/2/05, Don Brown <[EMAIL PROTECTED]> wrote: > Key Features > * Pluggable EL for data binding defaulting to JSP 2.0 EL but > allowing OGNL or even BeanUtils > > Design Goals > > Implementation > > * Built on the backbone of commons-chain Don, I wrote a patch for Chain a coupl

[Struts Wiki] Update of "StrutsRelease130" by HubertRabago

2005-08-02 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by HubertRabago: http://wiki.apache.org/struts/StrutsRelease130 The comment on the change is: Changed Bug 35604 to enhancement -

DO NOT REPLY [Bug 35956] - Updated CheckStyle rules file

2005-08-02 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: [shale] Possible Shale Enhancement

2005-08-02 Thread Sean Schofield
> With a bit of effort, you can gain access to the *submitted* values of > other components (because the validator receives a reference to the > component being validated and the FacesContext, so you can navigate > around the tree) ... but, your fundamental issue is that Process > Validations happe

Re: [Proposal] Struts Ti

2005-08-02 Thread netsql
Michael, in esence, one could just cut and paste the code from "org.struts.api" to C#, fixing syntax as needed. Then in esence people that use it in one or the other have the same signature. Some users may never know how it's implemented. The issue is more interesting on iBatis, where they hav

DO NOT REPLY [Bug 35956] - Updated CheckStyle rules file

2005-08-02 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: [shale] Possible Shale Enhancement

2005-08-02 Thread Craig McClanahan
On 8/2/05, Sean Schofield <[EMAIL PROTECTED]> wrote: > We're having some difficulties writing complex validators in JSF. In > many cases we have a field whose validation depends on the value of > another field. JSF doesn't really handle this situation very well in > the processValidations phase b

Re: [Proposal] Struts Ti

2005-08-02 Thread Don Brown
Michael Jouravlev wrote: * POJO-based action that combines an Action and ActionForm in a similar manner to JSF backing beans and WebWork 2 Commands I am all in for this, but preserving compatibility with current Action/ActionForm Struts Ti and particularly its underlying workhorse XWork

DO NOT REPLY [Bug 35956] - Updated CheckStyle rules file

2005-08-02 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: [Proposal] Struts Ti

2005-08-02 Thread Michael Jouravlev
On 8/2/05, Don Brown <[EMAIL PROTECTED]> wrote: > Struts Ti is a simplified Model 2 framework for developing webapps which > allows the developer better access to the underlying servlet/portlet > environment. This is I agree with. > It serves a niche of web applications that don't want the > addi

Re: [shale] JSF/Shale Usecase

2005-08-02 Thread Craig McClanahan
On 8/2/05, Sean Schofield <[EMAIL PROTECTED]> wrote: > Craig, > > Thanks for the feedback. There is a slight twist to my usecase that I > don't think I mentioned. We have created a LookupDialog which takes a > 'start' and 'stop' attribute. It allows you to use a portion of > another dialog. I

DO NOT REPLY [Bug 35956] - Updated CheckStyle rules file

2005-08-02 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

[shale] Possible Shale Enhancement

2005-08-02 Thread Sean Schofield
We're having some difficulties writing complex validators in JSF. In many cases we have a field whose validation depends on the value of another field. JSF doesn't really handle this situation very well in the processValidations phase because you don't have access to the other values. I've run i

Re: [shale] JSF/Shale Usecase

2005-08-02 Thread Sean Schofield
Craig, Thanks for the feedback. There is a slight twist to my usecase that I don't think I mentioned. We have created a LookupDialog which takes a 'start' and 'stop' attribute. It allows you to use a portion of another dialog. I know there is but that is to cumbersome when you have a dialog o

Re: [Proposal] Struts Ti

2005-08-02 Thread Don Brown
netsql wrote: Don Brown wrote: * No servlet dependency in core framework, portlet and JSF support out of the box 1. + Ajax, Jax-WS, Axis/DocLit... JDNC, XUL, for us lunies doing UI layer rendering on the client. There has to be a "process request" signature that lets us do all. E

Re: [Proposal] Struts Ti

2005-08-02 Thread Michael Rasmussen
netsql wrote: >3. And to make it C# possible... all user exposed classes should be an >interface (so that same interface could be reimplemented). I don't get this. maybe I missed something here, (entirely possible) but how are you going to write an underlying implementation in C# that can be call

Re: [Proposal] Struts Ti

2005-08-02 Thread netsql
Don Brown wrote: * No servlet dependency in core framework, portlet and JSF support out of the box 1. + Ajax, Jax-WS, Axis/DocLit... JDNC, XUL, for us lunies doing UI layer rendering on the client. There has to be a "process request" signature that lets us do all. Ex: List proce

[Proposal] Struts Ti

2005-08-02 Thread Don Brown
I'd been waiting to announce/propose this until I could write up a decent proposal and have the code in a better state, but with all the talk about Struts 2.0, "good" now is better than "better" tomorrow I suppose. The following is a proposal for Struts Ti, a possible successor to Struts class

RE: [moved] HTML labels and Struts

2005-08-02 Thread Frank W. Zammetti
Moved to the dev list, I think it's more appropriate there now... Hmm... interesting... seems like there might be more than one related issue here. Trying to tackle just the issue of being able to do in an Action: mapping.findForward("myForward#myAnchor"); I can't seem to check out from SVN fro

Re: Maven build issues

2005-08-02 Thread Frank W. Zammetti
ell me whether this is expected and can be ignored or I need to do something to resolve it, that'd be great... Compare yours to... http://svn.apache.org/builds/struts/maven/trunk/nightly/logs/maven-build-20050802.log (That's the log file from the nightly builds that run on James

Re: [STRUTS 2X]: Ideas

2005-08-02 Thread Ted Husted
Moving this to the dev@ . On 8/2/05, Pilgrim, Peter <[EMAIL PROTECTED]> wrote: > > But any proposals for a new Struts subproject or revolution have to be > > based on an existing codebase. Discussions and debates will never be > > enough. Someone has to show us the code, and more importantly, the

Re: DO NOT REPLY [Bug 35933] - [apps] Source code missing from example apps

2005-08-02 Thread Wendy Smoak
--- Additional Comments From [EMAIL PROTECTED] 2005-08-02 03:57 --- Added source code to struts-mailreader, struts-examples, and struts-blank webapps. Fixed in 20050802 nightly build. James, does the nightly build process include updating from svn? I don't see the source code i

Re: Maven build issues

2005-08-02 Thread Wendy Smoak
somewhere is a known issue with JUnit tests and Maven? Here's the snippet, if anyone can tell me whether this is expected and can be ignored or I need to do something to resolve it, that'd be great... Compare yours to... http://svn.apache.org/builds/struts/maven/trunk/nightly/logs/ma

[Struts Wiki] Update of "StrutsMaintenanceMaven" by WendySmoak

2005-08-02 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by WendySmoak: http://wiki.apache.org/struts/StrutsMaintenanceMaven The comment on the change is: Added link to possible fix for tests running twice