Re: anyone care to clarify difference between struts and JSTL?

2002-04-03 Thread David M. Karr
he same time, it allows people to fully experiment with both alternatives. This would only be worthwhile during the transition. Later releases wouldn't need this. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: strust.taglib.bean proposal

2002-04-03 Thread David M. Karr
new Object[] {getBodyContent().getString()} ); I believe the functionality in this block is basically what "BeanUtils.populate()" does, although with a little more overhead. -- === David M. Karr ; Java/J2EE/XML/

Working with 1.1b1 (TC404b2), but can't find MESSAGE in latest CVS

2002-04-04 Thread David M. Karr
cent mention of this problem in either list. I tried changing the installed file to not have the locale suffix, but that had no effect. -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-ma

Re: anyone care to clarify difference between struts and JSTL?

2002-04-06 Thread David M. Karr
Craig> Doing this would seem to avoid the need for dual libraries. Does that Craig> make sense? One reason I thought dual libraries would be logical is that the JSTL requires JSP 1.2 (correct?). In order for Struts to still allow using JSP 1.1, don't we need to have a library av

Re: TR: Multi Device application with STRUTS

2002-04-08 Thread David M. Karr
pecific infrastructure to "make the choice", by soft-coding the choices into the application configuration. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Subclass Struts tags to work with JSTL?

2002-07-16 Thread David M. Karr
String.class, this, pageContext)); } catch (NullAttributeException ex) { setArg1(null); } ...; // Others } } -- An example usage would be: -- ------ -- =

Re: Subclass Struts tags to work with JSTL?

2002-07-16 Thread David M. Karr
>>>>> "Craig" == Craig R McClanahan <[EMAIL PROTECTED]> writes: Craig> On 16 Jul 2002, David M. Karr wrote: >> I don't know how much thought has yet gone into how Struts and JSTL can work >> together. I haven't noticed muc

Re: Subclass Struts tags to work with JSTL?

2002-07-17 Thread David M. Karr
for what would make sense. Many of the attributes that would take EL values won't even have to have their name changed. For instance, the "key" attribute of "bean:message" is fine as it is. In the case of this tag, the "name" and "property" attribut

Re: Subclass Struts tags to work with JSTL?

2002-07-17 Thread David M. Karr
, as opposed to being an entirely separate library. We should be able to release it as a standalone library later. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Subclass Struts tags to work with JSTL?

2002-07-17 Thread David M. Karr
, which is called from the derived "doStartTag()" method. Even that code will be mostly boilerplate. The more difficult cases will be where I really have to change what the base "doStartTag()" or "doEndTag()" methods do. -- ===

Status of Struts-EL contrib project

2002-07-22 Thread David M. Karr
won't be used for generating the tag libraries, only for documentation generation. I'll provide more information as I get closer to completion (or what looks like completion to me). Any comments or questions? -- ==

Re: Status of Struts-EL contrib project

2002-07-22 Thread David M. Karr
>>>>> "Craig" == Craig R McClanahan <[EMAIL PROTECTED]> writes: Craig> On 22 Jul 2002, David M. Karr wrote: >> It's occurred to me that if I'm building a tag library that would be used >> alongside the JSTL, there's not

Re: Status of Struts-EL contrib project

2002-07-22 Thread David M. Karr
which provides all that is needed for that. I specifically needed to include Xalan, however, as JDK1.4 doesn't make the Xalan "XPathAPI" classes visible, which I'm using for accessing generated attributes (sort of heavyweight for that, but it makes it very straightforward). --

Re: Status of Struts-EL contrib project

2002-07-22 Thread David M. Karr
at at your code when I get a chance. Thanks for the pointer. You'll hear about it on struts-dev. Hopefully, it will be integrated into Struts as a contrib project. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Status of Struts-EL contrib project

2002-07-22 Thread David M. Karr
r library to get the functionality I'm not porting. I believe that can work, although I'm not directly testing for that. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Struts-EL: Ideas about "name" and indexed "name" attributes?

2002-07-22 Thread David M. Karr
quot; attribute and others could still use the EL engine, just not the "name/property" functionality. Does anyone have any ideas about this? -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Struts-EL: Ideas about "name" and indexed "name" attributes?

2002-07-22 Thread David M. Karr
things, one in JSP, and the other in HTML). Unfortunately, a change like this will require changing the base Struts tag. In the case of "CheckboxTag" (and probably others), the current value lookup is done directly in its "doStartTag()" method, with no comparison of "value" against null check to bypass it (which is the case in other tags, like "size" and "message", for instance). -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: upgrading to 1.1 nightly

2002-07-23 Thread David M. Karr
dhay> all this made it easier to plug stuff in? ;-) dhay> Or am I missing something...? Look at the "struts-config_1_1.dtd". You'll see a "processorClass" attribute in the "controller" element. This removes the need to subclass ActionServlet. --

Re: Struts-EL: Ideas about "name" and indexed "name" attributes?

2002-07-23 Thread David M. Karr
bute was present. The old meaning if "name" was present, and the new meaning if "name" is not present. The "indexed" attribute could only be present if the "name" attribute was present. This would provide a transitional strategy, even while using the Strut

Re: Struts-EL: Ideas about "name" and indexed "name" attributes?

2002-07-26 Thread David M. Karr
>>>>> "David" == David M Karr <[EMAIL PROTECTED]> writes: >>>>> "Jing" == Jing Zhou <[EMAIL PROTECTED]> writes: Jing> The convention (see JSTL spec 2.2.1) is to use the name "var" for attributes Jing> that

Tags: write private "init()" method to init. vars from cons. and release

2002-07-28 Thread David M. Karr
()" method and a new no-args constructor (I would guess that none of the tags have a defined constructor). Is there a good reason for how this currently works? -- =========== David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROT

Re: Tags: write private "init()" method to init. vars from cons. and release

2002-07-28 Thread David M. Karr
>>>>> "Craig" == Craig R McClanahan <[EMAIL PROTECTED]> writes: Craig> On 28 Jul 2002, David M. Karr wrote: >> Is there some reason the Struts custom tags have redundant initializations of >> their instance variables, once as implicit in

Any tool for directly formatting existing code in Apache format?

2002-07-28 Thread David M. Karr
is there a predefined "style" in XEmacs that matches the Apache coding format? -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For a

MessageResources.messageKey("", "foo") returns ".foo"?

2002-07-29 Thread David M. Karr
test resources in memory, as opposed to using an external file. I had an error tag of "error.misc", but in order to get this to work, I had to store a key of ".error.misc" in my MessageResources. -- === David M. K

Re: MessageResources.messageKey("", "foo") returns ".foo"?

2002-07-29 Thread David M. Karr
erstand. I've adjusted my HMMR class to reflect this, so usage of it is a little clearer. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Any tool for directly formatting existing code in Apache form at?

2002-07-29 Thread David M. Karr
45216 I was just about to write a reply to myself saying that Jalopy works fine for this. It has some pretty interesting optional features, but it does exactly what I need out of the box. -- ======= David M. Karr ; Java/J2E

Quick guide to using debug logging in unit tests?

2002-07-30 Thread David M. Karr
put on stdout. I added a "" element specifying this class (with a "verbosity" of "4"), in ADDITION to the "FileLogger". The result was that I saw lots more information coming to stdout, but not my "log.debug(...)" lines. -- =

Re: Tags: write private "init()" method to init. vars from cons. and release

2002-07-30 Thread David M. Karr
, the method that it sends them to, "RequestUtils.message()", does check for null. There's probably lots of cases like this that still work, even though "release()" leaves them in a different state than initial construction. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Struts-EL: Ideas about "name" and indexed "name" attributes?

2002-08-01 Thread David M. Karr
; original Jing> beauty of Struts and even the design could enhance the current html tags Jing> without Jing> having to create a "parallel" library in the end (Did someone say that Jing> before?) The only constant is change. There is movement towards using the JSTL. The goal is to eventually have a Struts tag library that works cleanly with the JSTL. This "parallel" library is only a transition strategy. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Status on Struts-EL

2002-08-18 Thread David M. Karr
he "collection" attribute of some tags. Since from the point of view of JSP, an EL expression is just a string, that wouldn't map directly to a javabeans set method that takes a Collection. In these cases, I believe I'd have to implement a BeanInfo class that specifies a method in my subclass, like "setCollectionExpr()" or something like that, which I can map into the base class "setCollection()" method. I'd appreciate any useful comments or suggestions. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Question about proper taglib URI for Struts-EL libraries

2002-08-25 Thread David M. Karr
'm not exactly certain what purposes this value is applied to. If that's just a symbolic value that will be used as the taglib URI, and it doesn't have to really exist, then that'll probably be fine. -- === David

Struts-EL: Status and moving forward

2002-09-04 Thread David M. Karr
CVS, and is based on the 1.1-b2 code base. I'd like to get this "out there" in the hands of people who can use it, and who can help to evolve it forward. Advice? Help? Direction? -- === David M. Karr ; Java

Re: Struts-EL: Status and moving forward

2002-09-05 Thread David M. Karr
en, I just didn't want that to be another reason to delay getting this to other people. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Help getting remote CVS set up

2002-09-20 Thread David M. Karr
ng to do with "tunnelling" not being properly set up, but I'm unsure. -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Help getting remote CVS set up

2002-09-21 Thread David M. Karr
s, will that cause any problem? -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Details of "cvs import" for creating "contrib/struts-el"

2002-09-21 Thread David M. Karr
uld be ready to commit, unless someone can point out something else I should do before I commit. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Details of "cvs import" for creating "contrib/struts-el"

2002-09-24 Thread David M. Karr
>>>>> "David" == David M Karr <[EMAIL PROTECTED]> writes: David> Once I get various administrative details straightened out in my local David> repository, is it reasonable to assume that I would move forward with creating David> a "con

Re: Details of "cvs import" for creating "contrib/struts-el"

2002-09-24 Thread David M. Karr
hat the ASL header is in the sources files before Martin> committing them. Yes, I was going to add the file headers before committing, along with at least basic javadoc. I assume I can just copy the header from one of the Struts source files? -- =

Done with initial commit of Struts-EL into "contrib/struts-el"

2002-09-25 Thread David M. Karr
tests completed. I'll start on making standardization changes tomorrow evening. Hopefully none of the changes I make in the next few days will have any real effect on the resulting code. -- ======= David M. Karr ; Java/J2EE/

Location of STANDARD file header for Jakarta Struts java files?

2002-09-27 Thread David M. Karr
eally supposed to go here? -- =========== David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Struts-EL: Finished with copyright header and javadoc

2002-09-30 Thread David M. Karr
get to a Struts release (1.1-b3, or 1.1)? -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: cvs commit: jakarta-struts/contrib/struts-el build.xml

2002-10-01 Thread David M. Karr
date the main build.xml file to include struts-el in the new "contrib" craigmcc> directory, so that the binaries will be included with nightly builds. Oh, yeah, I forgot about that :) . That'll be sort of important. -- =====

Re: cvs commit: jakarta-struts/contrib/struts-el build.xml

2002-10-01 Thread David M. Karr
" file, just like the top-level build. Will someone create that manually, or what? -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: cvs commit: jakarta-struts/contrib/struts-el build.xml

2002-10-01 Thread David M. Karr
happen if someone tries to build it with a 2.2 servlet.jar? -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: cvs commit: jakarta-struts/contrib/struts-el build.xml

2002-10-01 Thread David M. Karr
>>>>> "Craig" == Craig R McClanahan <[EMAIL PROTECTED]> writes: Craig> On 1 Oct 2002, David M. Karr wrote: >> Date: 01 Oct 2002 21:14:26 -0700 >> From: David M. Karr <[EMAIL PROTECTED]> >> Reply-To: Struts Devel

Re: cvs commit: jakarta-struts/contrib/struts-el build.xml

2002-10-01 Thread David M. Karr
>>>>> "Craig" == Craig R McClanahan <[EMAIL PROTECTED]> writes: Craig> On 1 Oct 2002, David M. Karr wrote: >> Date: 01 Oct 2002 21:14:26 -0700 >> From: David M. Karr <[EMAIL PROTECTED]> >> Reply-To: Struts Devel

Re: [GUMP] Build Failure - jakarta-struts

2002-10-02 Thread David M. Karr
nal tasks. I think this isn't useful here. I'll remove that and check it back in. -- =========== David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Struts-EL: Finished with copyright header and javadoc

2002-10-02 Thread David M. Karr
the base Struts tags to see if there are any attributes they should be handling, but are not. I don't plan on doing this, as that would be too mentally punishing :) . -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: cvs commit: jakarta-struts/contrib/struts-el/src/share/org/apache/strutsel/taglib/html ELRadioTag.java

2002-10-02 Thread David M. Karr
uot;onmouseup" handler >> is still commented out, as the bug in the base tag isn't fixed yet. Craig> You're more than welcome to fix the bug in the base tag :-). I thought it was likely I would do this, I just wanted to get the bug logged first. -- =

Re: Nested taglib with EL?

2002-10-04 Thread David M. Karr
, boolean, or float. Then I have to write a BeanInfo class, as the attribute in the "-el" class has to be a String (int, boolean, and float are apparently automagically translated). This doesn't happen very often. The only cases in Struts-EL occurred with "collection" att

Process for checking in files and resolving bugs

2002-10-04 Thread David M. Karr
umber that I'm submitting code against, what is a reasonable process for verifying the bug is "fixed" so I can resolve it? I can easily test it in my distribution, but do I have to install and test it in the next nightly build, or what? -- ===

Funny one: "accesskey" on "html:hidden"

2002-10-05 Thread David M. Karr
ute on "html:hidden". Yes, I'm easily amused. -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Need help figuring out how I broke Struts-EL unit tests

2002-10-09 Thread David M. Karr
ot; files are almost identical between the old version and the CVS version. Any particular local configuration files that might shed some light? -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubsc

Re: Need help figuring out how I broke Struts-EL unit tests

2002-10-10 Thread David M. Karr
>>>>> "David" == David M Karr <[EMAIL PROTECTED]> writes: David> I could use a hand figuring out what I did to break my Struts-EL unit test David> process. David> I decided to get back to building some more unit tests for Struts-EL tags, but

Re: Need help figuring out how I broke Struts-EL unit tests

2002-10-13 Thread David M. Karr
>>>>> "Ted" == Ted Husted <[EMAIL PROTECTED]> writes: Ted> Are you using Ant 1.5? Yes. -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail

Re: DO NOT REPLY [Bug 12344] - Seems like you can only save ActionErrors in request scope...

2002-10-13 Thread David M. Karr
cope. How do you get them into any scope but "request"? The "Action.saveErrors()" method doesn't appear to have an overloaded version taking a "scope" key. Also note that it would be good if any changes to how "errors" works would also be done in the &q

checkbox name "org.apache.struts.taglib.html.BEAN[0].stringProperty"?

2002-10-13 Thread David M. Karr
I've been adding more "exercises" to the Struts-EL exercise-taglib app, and I'm finding some behavior I don't quite understand. In the same JSP page, I have two "logic-el:iterate" loops, both of which iterate through the same collection, the page attributes map ("${pageScope}"). One loop has an "

Re: Constructing Binary Distribution

2002-10-16 Thread David M. Karr
such), and I am working through it, but James> wondering if I missed an email somewhere ?!?!?!? What is happening? -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto

Re: Suggestions for placement of Struts-EL information in the user gu ide?

2002-10-18 Thread David M. Karr
hort run, it might be more practical to do this. -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>

Re: Suggestions for placement of Struts-EL information in the user gu ide?

2002-10-18 Thread David M. Karr
do more of the "Developer Guide" kid of thing, and link more into the JavaDocs. Ted> Right now, we're getting into a lot of dual maintenance. But first things first. I'm not sure what you mean here. -- =

Re: DO NOT REPLY [Bug 12027] - bean;size should throw clear exception if neither "name" or "collection" are set

2002-10-19 Thread David M. Karr
fish to fry for 1.1.0] I do have other things to do, but I might be able to get this done. I'll leave it like this for now. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e

Re: Suggestions for placement of Struts-EL information in the use r gu ide?

2002-10-19 Thread David M. Karr
o cover not only the Struts-EL tags, but also the Struts tags which were NOT ported to Struts-EL, and which JSTL tags and functionality can be used instead. Presently, I'm putting this information into the "package.html" file at "org/apache/strutsel", as opposed to in the info

Re: DO NOT REPLY [Bug 13787] New: - Struts-EL: Roles functionality of "logic:present" not in logic-el

2002-10-20 Thread David M. Karr
vailable in the JSTL (not to mention that attaching "role-checking" features to "logic:present" just seems odd). However, when I look at it from a pragmatic viewpoint, I realize that's less important than simple convenience. --

Re: [struts-el] HTML taglib

2002-10-23 Thread David M. Karr
t tag. Could you trace this in the debugger? I assume you've recently cvs updated? -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>

Re: Suggestions for placement of Struts-EL information in the use r gu ide?

2002-10-23 Thread David M. Karr
d committing rough drafts of the top-level, bean-el, logic-el, and html-el package.html files. They don't attempt to use any external links yet. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>

Re: cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/html JavascriptValidatorTag.java

2002-10-24 Thread David M. Karr
quest to the group, to make management of Struts-EL a little easier. Whenever you make a change which adds, deletes, or changes the type of, a custom tag attribute, could you submit a bug report indicating that the corresponding tag in Struts-EL needs to change? -- ======

Re: [struts-el] HTML taglib

2002-10-24 Thread David M. Karr
at, and just using the Manager to "reload" your application, after you added the references to "html-el:html"? If so, do a "remove" on the application and reinstall it. If that works, I think this might be a bug/feature in Tomcat, wrt reflection, classloading, and Be

Re: [struts-el] HTML taglib

2002-10-24 Thread David M. Karr
beanInfoClass = ELHtmlTagBeanInfo.class; and retest. -- =========== David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>

Re: Accessing DynaActionForm objects in JSTL tags?

2002-10-29 Thread David M. Karr
ood someone will want to use a plain DynaBean with this? One person who was looking for this feature (who thought it was already supported in the JSTL) used as his example JSP scriptlet code using plain BasicDynaBeans. Any thoughts? -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>

Re: DO NOT REPLY [Bug 14116] New: - Add "getMap()" method to DynaActionForm to let JSTL EL reference DynaActionForms

2002-10-30 Thread David M. Karr
MAIL PROTECTED] bugzilla> ReportedBy: [EMAIL PROTECTED] I'll commit this in a day or so when I can finish the doc changes and additions to the strutsel-exercise-taglib. -- === David M. Karr ; Java/J2E

Re: FW: Struts 1.0.2, Nested 1.0 and Standard Tags 1.0.2

2002-11-06 Thread David M. Karr
not running 1.1b with JSTL. Edgar> The only workaround I could find was to re-write the c:set as a very simple Edgar> tag. Did you post the exact code you're trying to compile, along with the exact stack trace? -- =====

javadoc & Weird state of org/apache/struts/util/AppException.java

2002-11-07 Thread David M. Karr
ly, I don't see any way to provide this option to the "javadoc" task in Ant, so I can at least (easily) see what it does. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] ; SCJP -- To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>

Minor typo in Struts User Guide

2001-09-14 Thread David M. Karr
y the JSP again to re-populate the form fields. In the case of validation errors, Struts has a shared mechanism for raising and displaying error messages. -- ======= David M. Karr ; Best Consulting [EMAIL PROTECTED] ; Java/Uni

Re: Minor typo in Struts User Guide

2001-09-15 Thread David M. Karr
h I'm genetically incapable of), which would require considerable initial setup, is this the best place to direct these?) -- ======= David M. Karr ; Best Consulting [EMAIL PROTECTED] ; Java/Unix/XML/C++/X ; BrainBench CJ12P (#12004)

Building Struts 1.0.1rc1: Missing xalan

2002-01-01 Thread David M. Karr
Is it just supposed to be in the CLASSPATH (I sort of doubt this)? -- =========== David M. Karr ; Best Consulting [EMAIL PROTECTED] ; Java/Unix/XML/C++/X ; BrainBench CJ12P (#12004) -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Building Struts 1.0.1rc1: Missing xalan

2002-01-02 Thread David M. Karr
>>>>> "Steven" == Steven D Wilkinson <[EMAIL PROTECTED]> writes: Steven> "David M. Karr" wrote: David> David> I'd like to experiment with some ideas for modifying the "html:radio" tag. David> Before I ma

Proposal: Add "nameValue" and "checkedProperty" to "radio" (and "checkbox"?)

2002-01-02 Thread David M. Karr
x" component (although I'm not familiar with the latter component yet). I would assume I would also need to provide documentation and unit test patches. I would also make the patches against the latest in CVS, instead of the 1.0.1rc1 source release. What do you think? -- === David M. Karr ; Best Consulting [EMAIL PROTECTED] ; Java/Unix/XML/C++/X ; BrainBench CJ12P (#12004) -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Proposal: Add "nameValue" and "checkedProperty" to "radio" (and "checkbox"?)

2002-01-02 Thread David M. Karr
>>>>> "David" == David M Karr <[EMAIL PROTECTED]> writes: David> I've often been frustrated by some details of the "radio" and "checkbox" tags. David> I have some issues with the rules for producing the "name" of

Re: Size of nightly builds

2002-11-24 Thread David M. Karr
x27;m taking a look at the contents of those builds, but there's one thing I want to know: Is there some place where the console output from Ant for those builds is stored, so I can see if something went wrong? -- ======= David M.

Re: Size of nightly builds

2002-11-24 Thread David M. Karr
7;ve confirmed the binary on the 17th has struts-el included, and the binary on the 18th does not. So how do we track what really happened on a build for a particular day? -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMA

Re: b3 minus 27? (or so)

2002-11-24 Thread David M. Karr
rking on some documentation which I hope to put in the user guide, concerning indexed properties, mapped properties, indexed tags, and indexed/mapped properties in Struts-EL. -- ======= David M. Karr ; Java/J2EE/XML/Unix/

Adding doc to user guide on indexed/mapped properties/tags

2002-11-24 Thread David M. Karr
. Much of this length is from several versions of a simple JSP page showing usage of this. I'd like to add this as section 3.3.6, in the "Forms and FormBean Interactions" section, titled "Indexed & Mapped Properties". Any comments? -- =======

Re: b3 minus 27? (or so)

2002-11-24 Thread David M. Karr
heck for "AssignedTo" being equal to "[EMAIL PROTECTED]" (in the box just above the "Sort By" box). This will get you to a manageable list. Then click "Submit Query" and browse through the results. --

Re: [VOTE] Struts 1.1 Beta 3 Release Plan

2002-12-12 Thread David M. Karr
This will be my first release, and I'm willing to do what I can, although I'm not sure what that will be. -- ======= David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] ; SCJP -- To unsubscribe

Re: 20M vs. 23M downloads

2002-12-17 Thread David M. Karr
ppeared from the 8th to the 14th, and appears to be alternating every other day. The last nightly had it. -- =========== David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] ; SCJP -- To unsubscribe, e-mail: <mailto:[E

Re: [VOTE] Struts 1.1 Beta 3 Release Plan (revised)

2002-12-23 Thread David M. Karr
ugh being new to this exact sort of thing, I'm not quite sure what that will be. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] ; SCJP -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: cvs commit: jakarta-struts/doc/userGuide struts-html.xml

2002-12-23 Thread David M. Karr
th for slightly different reasons. On that subject, wouldn't it be possible to write a tag library validator class which could verify this? I've wondered whether some of these hard to understand errors we get from the framework could be prevented by a tag library validator class. -- =

Re: Proposed: logic:else clause

2003-01-03 Thread David M. Karr
" tags. This doesn't help people who are forced to use containers only supporting Servlet 2.2. Hopefully that set is becoming smaller and smaller. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] ;

Re: Proposed: logic:else clause

2003-01-03 Thread David M. Karr
pports if/elseif/else. The >> expression language in JSTL makes logic easy that would be nasty with the >> various logic tags. >> >> >> ... >> >> >> ... >> >> -- ==

Re: Another bright idea, make "indexed" work with JSTL forEach and friends

2003-01-04 Thread David M. Karr
usage). Writing a version of "findAncestorWithClass" that takes a string instead of a Class is the first step. You'd also have to deal with allowing subclasses of the tag types. That's probably the ugliest part. At this point, I really don't see the urgency. -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] ; SCJP; SCWCD -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Another bright idea, make "indexed" work with JSTL forEach and friends

2003-01-04 Thread David M. Karr
anyone envision any other situations in the Struts code where indirect references to the JSTL would be convenient? That, at least, could give us some additional perspective on this. -- === David M. Karr ; Java/J2EE/XML/

Re: Another bright idea, make "indexed" work with JSTL forEach and friends

2003-01-04 Thread David M. Karr
>>>>> "Craig" == Craig R McClanahan <[EMAIL PROTECTED]> writes: Craig> On 4 Jan 2003, David M. Karr wrote: >> Can anyone envision any other situations in the Struts code where indirect >> references to the JSTL would be c

Re: Struts and JMX

2003-01-05 Thread David M. Karr
nt interfaces to those MBeans, either as another web application, or through other interfaces (command-line, etcetera). -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL PROTECTED] ; SCJP; SCWCD -- To unsubscribe, e-

Re: Proposal: Use java2html to generate browseable source code.

2003-01-06 Thread David M. Karr
ing the tradeoffs, I like what java2html does, but I guess I don't see enough value to making the output part of the distribution. The primary value of this project is what you can do with it, not what's in the source code. -- ========

Re: [VOTE] Declare Struts 1.1b3 as Struts 1.1 RC1

2003-01-18 Thread David M. Karr
so I wasn't able to get the associated Struts-EL changes in until after 1.1b3 was tagged. I don't think that is a real problem, but it will be a real problem if something like this happens for the real release. -- ===

Re: [VOTE] Declare Struts 1.1b3 as Struts 1.1 RC1

2003-01-18 Thread David M. Karr
>>>>> "David" == David M Karr <[EMAIL PROTECTED]> writes: >>>>> "David" == David Graham <[EMAIL PROTECTED]> writes: David> The only added attribute was "cdata" that defaults to true on the javascript David>

Re: [VOTE] Declare Struts 1.1b3 as Struts 1.1 RC1

2003-01-18 Thread David M. Karr
>>>>> "David" == David Graham <[EMAIL PROTECTED]> writes: David> Is that a -1 for 1.1 or -1 for any release? David> Dave I very much want to see a 1.1 release very soon, I just don't think the release candidate should be the 1.1b3 release.

Re: [VOTE] Declare Struts 1.1b3 as Struts 1.1 RC1

2003-01-19 Thread David M. Karr
>>>>> "David" == David M Karr <[EMAIL PROTECTED]> writes: David> Is there an easy way to get the diffs or comments of all elements with commits David> since the 1.1b3 tagging? If it's useful, I figured out how to get the diffs listing, at

Re: [VOTE] Declare Struts 1.1b3 as Struts 1.1 RC1

2003-01-19 Thread David M. Karr
ting changes to the Struts nightly build (after 1.1), then we'd have the situation of a Struts-EL release which had to be used with a nightly build of Struts, and not the latest release. -- === David M. Karr ; Java/J2EE/

Re: [VOTE (RESTATED FOR CLARITY]: Release Nightly Build as RC1

2003-01-19 Thread David M. Karr
want another beta before RC1 James> Question 2: James> +1 means you want struts-el included in RC1 and the final release. James> +0 Who cares James> -1 You want struts-el packages seperates with it's own release cycle Q1: +1 Q2: +1 -- ===

  1   2   >