Re: tool to produce a sitemap from struts-config

2004-10-07 Thread Xavier Noria
On Oct 7, 2004, at 17:53, Emmanouil Batsis wrote: I remember someone posted about a tool that reads struts-config and produces some kind of sitemap but i cant find it by searching... can someone please refresh my memory? Maybe you mean VisualStruts? http://visualstruts.sourceforge.net/ -- fxn

Re: System.out.println

2004-08-05 Thread Xavier Noria
On Aug 5, 2004, at 18:54, Woodchuck wrote: what i thought was, if possible, it would be nice if we could somehow get the debug flag to read (poll) from some configuration file or something, so that we can change this configuration file to enable/disable logging (or even level of logging) in the app

Re: System.out.println

2004-08-05 Thread Xavier Noria
On Aug 5, 2004, at 12:32, Shinobu Kawai wrote: Without a benchmark, I would say that in a typical response there are *lots* of method calls from the ones in your code passing through Struts/Hibernate/etc. down to the Java library. Some of them non-trivial as the ones regarding persistence. If the c

Re: System.out.println

2004-08-05 Thread Xavier Noria
On Aug 5, 2004, at 11:22, Aditya Athalye wrote: I agree with u that those many if statements will clutter code. But a method call everytime is also expensive in terms of performance. So it is really a trade off between performance and Is the difference in performance really significative in a web

Re: System.out.println

2004-08-05 Thread Xavier Noria
On Aug 5, 2004, at 10:58, Aditya Athalye wrote: U shld use a flag say debug. so the code will look like boolean debug = true; if(debug) System.out.println(" "); In production make the flag as false. Just out of curiosity. I see that pattern often, and find that "if" for every single debug mes

interface prototyping

2004-07-16 Thread Xavier Noria
What do you guys use to prototype interfaces? Is there some visual way to write dumb pages with forms that let you think about possible website layouts and execution flows? -- fxn - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: regular expression

2004-07-16 Thread Xavier Noria
On Jul 16, 2004, at 7:21, [EMAIL PROTECTED] wrote: I want to validate an attribute, the rule is that the input should not start with 'Test', how to write the regular expression for this validation. Please help me guys. If you validate by code you can negate that it does start that way:

dynamic forms

2004-06-29 Thread Xavier Noria
We have some forms whose fields are unknown until runtime. How would you implement them so that they worked within the framework smoothly? -- fxn - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

struts-html in Velocity?

2004-06-24 Thread Xavier Noria
Is there something like the html taglib for Velocity templates? -- fxn - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

basic questions about the request cycle

2004-06-23 Thread Xavier Noria
Hello, I am just doing a landing in Struts, reading documentation and online articles, and trying to get the big picture. I have some background in web development and I know the MVC paradigm in web programming. I see actions related normally to forms in what I read. Do actions serve requests