RE: development issues

2001-03-28 Thread David Winterfeldt
5:01 PM > > To: [EMAIL PROTECTED] > > Subject: Re: development issues > > > > > > Tahir, > > > > David Winterfeldt has a very nice approach to > regex > > validation that just > > plugs into the framework, without modifying the > code.

Re: development issues

2001-03-28 Thread Ted Husted
As I understand it, the automatic properties feature is a way to avoid the menial work of writing assessors and mutators for your form beans. There really isn't any "logic" involved. The ActionForm bean has a standard reset method that you can use to populate your beans with default values. Tahir

Re: development issues

2001-03-28 Thread Martin Cooper
> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 2:40 PM Subject: RE: development issues > Just looked into David's validator framework and it looks like a javascript > solution. > Can someone confirm this? > > Tahir > > > -Original Message

RE: development issues

2001-03-28 Thread Tahir Awan
Just looked into David's validator framework and it looks like a javascript solution. Can someone confirm this? Tahir > -Original Message- > From: Ted Husted [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 28, 2001 5:01 PM > To: [EMAIL PROTECTED] > Subject: Re

Re: development issues

2001-03-28 Thread Martin Cooper
#x27;s been on the backburner. My "real" job seems to take up so much time these days... :-} -- Martin Cooper - Original Message - From: "Ted Husted" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 2:00 PM Subject: Re: develo

RE: development issues

2001-03-28 Thread Tahir Awan
ustom logic per page is out of question and it has to be part of the framework somehow. Thanks, Tahir Awan > -Original Message- > From: Ted Husted [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 28, 2001 5:01 PM > To: [EMAIL PROTECTED] > Subject: Re: development

Re: development issues

2001-03-28 Thread Ted Husted
Tahir, David Winterfeldt has a very nice approach to regex validation that just plugs into the framework, without modifying the code. Check it out at < http://home.earthlink.net/~dwinterfeldt/ > This extends the current Struts validation, and works on both the client and server side. This gets

Re: development issues

2001-03-28 Thread Ted Husted
Martin Cooper wrote: > 3) There is at least one other implementation of Struts form validation > using regular expressions that I am aware of, which was written by David > Winterfeldt, and is based on the Jakarta Regexp package. I'm getting very good use out of this in my current project. < htt

RE: development issues

2001-03-28 Thread Craig R. McClanahan
committers. But there are only so many hours in the day at this point ... Craig > > -Original Message- > > From: Martin Cooper [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, March 28, 2001 1:22 PM > > To: [EMAIL PROTECTED] > > Subject: Re: development iss

RE: development issues

2001-03-28 Thread Tahir Awan
ssage- > From: Martin Cooper [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 28, 2001 3:31 PM > To: [EMAIL PROTECTED] > Subject: Re: development issues > > > I'm sure you could find all the addresses in the archives, > but I agree that > that is not too convenie

Re: development issues

2001-03-28 Thread Martin Cooper
t I'm not a committer, just an "interested party".) -- Martin Cooper - Original Message - From: "Tahir Awan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 11:55 AM Subject: RE: development issues > Sorry Martin but I

RE: development issues

2001-03-28 Thread Tahir Awan
riginal Message- > From: Martin Cooper [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 28, 2001 1:22 PM > To: [EMAIL PROTECTED] > Subject: Re: development issues > > > > Any idea how to wake up committers for struts-dev? > > What makes you think they are asleep?

Re: development issues

2001-03-28 Thread Martin Cooper
ahir Awan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 7:13 AM Subject: RE: development issues > That's the exact intention I had while putting in regex validation i.e., to > provide basic validation. > > btw, I havn't seen any co

RE: development issues

2001-03-28 Thread Tahir Awan
is done by framework without any custom coding in JSP or beans. Any idea how to wake up committers for struts-dev? Tahir Awan -Original Message- From: Cook, Levi [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 27, 2001 10:46 AM To: '[EMAIL PROTECTED]' Subject: RE: development is

Re: development issues

2001-03-27 Thread Incze Lajos
On Wed, Mar 28, 2001 at 12:11:37AM +1000, Jim Richards wrote: > > >In Dec-2000 issue of Javaworld, there was an article by "Thor Kristmundsson" > >about enhancing Struts framework with regex validation and automatic > >properties. Though the article is outdated due to recent development in > >Str

RE: development issues

2001-03-27 Thread Cook, Levi
Title: RE: development issues Surely I'm reiterating the obvious here, but Javascript alone cannot/should not be relied upon for validation. It does play a useful and important role, however its scope should normally be limited to improving the users experience with supplying input tha

Re: development issues

2001-03-27 Thread Mike Oliver
ike Oliver - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 27, 2001 8:03 AM Subject: Re: development issues > >>Yes, it is true that regex cannot do everything. It's like perl and > >java. > >>Perl is good

Re: development issues

2001-03-27 Thread Mike Oliver
We too are in favor of regex validation in Struts and will participate in development and testing. Mike Oliver Morningstar Systems. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 27, 2001 7:36 AM Subject: RE: development issues

RE: development issues

2001-03-27 Thread Jim Richards
>But its not bad either for basic form validation (null, range checks & like) >and much better than using Javascript. I dont think any backend will rely >upon JSP validation and wont perform its own tests prior to saving the data. Well, one of the 1.1 discussions is client side validation using

Re: development issues

2001-03-27 Thread Michael Gerdau
>Yes, it is true that regex cannot do everything. It's like perl and java. >Perl is good for performing regex's on text files with a bit of logic here >and there but for use in a content management system I find it just too >limiting. A bit of Java would do this much better. I don't want to sta

RE: development issues

2001-03-27 Thread Tahir Awan
e to call custom methods for extended validation. The idea is not to clutter JSP pages only for basic form validation etc. Tahir -Original Message- From: Taylor Cowan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 27, 2001 9:44 AM To: [EMAIL PROTECTED] Subject: Re: development issues Yes

RE: development issues

2001-03-27 Thread Tahir Awan
ubject: RE: development issues I agree that it can't handle everything, but you also can't write custom validation everywhere. The design also allows the validation to be modified in the JSP, a requirement of some of our customers. (we always re-validate in our transaction services layer) I a

Re: development issues

2001-03-27 Thread Taylor Cowan
. Taylor - Original Message - From: "Jim Richards" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 27, 2001 9:11 AM Subject: Re: development issues > > >In Dec-2000 issue of Javaworld, there was an article by "Thor Kristmundsson" > >a

RE: development issues

2001-03-27 Thread Young, Wayne
vor of the addition of regex validation to Struts. Wayne [EMAIL PROTECTED] -Original Message- From: Jim Richards [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 27, 2001 8:12 AM To: [EMAIL PROTECTED] Subject: Re: development issues >In Dec-2000 issue of Javaworld, there was an art

Re: development issues

2001-03-27 Thread Jim Richards
>In Dec-2000 issue of Javaworld, there was an article by "Thor Kristmundsson" >about enhancing Struts framework with regex validation and automatic >properties. Though the article is outdated due to recent development in >Struts but I liked the idea and spent some time implementing it. I'm not k

Re: development issues

2001-03-26 Thread Rob Leland
Tahir Awan wrote: > What's the process of submitting those tags to be > part of the struts framework. I am sure there are many ways to do this. Here are my thoughts: Like you said you want to get users comments so you can refine the implementation so: 1) Post the changes on a Web site descr

development issues

2001-03-26 Thread Tahir Awan
Hi, In Dec-2000 issue of Javaworld, there was an article by "Thor Kristmundsson" about enhancing Struts framework with regex validation and automatic properties. Though the article is outdated due to recent development in Struts but I liked the idea and spent some time implementing it. In order