Re: [OS-webwork] OT: Javablogs is down... how about this?

2004-02-10 Thread Joseph Ottinger
Robert, this is a WEBWORK list, not a javablogs list. That said, javablogs does that so it can track the popular entries. On Tue, 10 Feb 2004, Robert Nicholson wrote: Like a lot of other people I get java.blogs daily update however I believe it would be a lot more helpful to publish the links

Re: [OS-webwork] Portlet API

2004-01-28 Thread Joseph Ottinger
The Portlet API is in final draft, hardly swimming through JSR. Any changes are likely to be minor at best, and pluto is a workable reference implementation, even if it's certainly got that jakarta smell to it. On Wed, 28 Jan 2004, Konstantin Priblouda wrote: --- Marino [EMAIL PROTECTED]

RE: [OS-webwork] Obtaining Xwork action name in JSP

2003-12-16 Thread Joseph Ottinger
I'd like to propose that a shortcut method for this should be added to the ActionContext. :) On Tue, 16 Dec 2003, Daniel Pfeifer wrote: %=ActionContext.getContext().getActionInvocation().getProxy().getActionName ()% -Original Message- From: Patrick Holzmann [mailto:[EMAIL PROTECTED]

Re: [OS-webwork] OT: what do I need to use to never have to restart the app server to test changes?

2003-12-08 Thread Joseph Ottinger
I use Orion. I deploy in an .ear, and it works fine for me... On Mon, 8 Dec 2003, Francisco Hernandez wrote: i've been using orionserver for development but im so tired of having to restart to test things (yes, development mode is turned on), what app server are you guys using or tools to

Re: [OS-webwork] OT: what do I need to use to never have to restart the app server to test changes?

2003-12-08 Thread Joseph Ottinger
, just compiling classes into the webapp's classes dir. Joseph Ottinger wrote: I use Orion. I deploy in an .ear, and it works fine for me... On Mon, 8 Dec 2003, Francisco Hernandez wrote: i've been using orionserver for development but im so tired of having to restart to test things (yes

Re: [OS-webwork] OT: what do I need to use to never have to restart the app server to test changes?

2003-12-08 Thread Joseph Ottinger
On Mon, 8 Dec 2003, Anoop Ranganath wrote: Yeah. It's not a big task, after all. (Maybe it is and I just don't notice, since it's so trivial to do with ant.) The latter is the case. It is a very big task, and you could easily increase your development efficiency by 100% if you worked with

Re: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread Joseph Ottinger
Yes, it will. Again, try it. On Thu, 4 Dec 2003, remigijus wrote: Ok I figured that. Now evrything works. But still have a quesion if I'm going to add a new objet to session map will it be available in the session. --- This SF.net email

Re: [OS-webwork] OGNL madness - evaluated tag attributes

2003-11-23 Thread Joseph Ottinger
What would be realy nice is if the JSTL's EL had ben written with extensibility in mind to begin with, a lot like what Joe Walnes ended up putting into the FormTags project. What worked there is that you had a ww: prefix to specify that the formtags were to use the expression language for webwork,

[OS-webwork] Small patch for WW2 build

2003-11-19 Thread Joseph Ottinger
This patch removes the warning from the war task from the inclusion of a web.xml in the .war. If we end up putting a sample web.xml that's actually meant for inclusion as content, we'll need to change the exclude slightly. --- Joseph

[OS-webwork] DTD not on opensymphony?

2003-11-19 Thread Joseph Ottinger
Shouldn't the DTD for xwork be on the opensymphony site? --- Joseph B. Ottinger http://enigmastation.com IT Consultant[EMAIL PROTECTED] J2EE Editor - Java Developer's Journal

Re: [OS-webwork] WebWork 2.0 beta2/RC Released

2003-11-19 Thread Joseph Ottinger
Lars, WHAT about the taglib.tld doesn't work? I filed one JIRA issue myself today about it, but I have no idea if your issue was the same as mine. On Wed, 19 Nov 2003, Lars Fischer wrote: I'm not pleased to announce that this version does not work with WebLogic (taglib.tld). Maybe the final

[OS-webwork] IRC channel?

2003-11-19 Thread Joseph Ottinger
Is there an IRC channel dedicated to webwork anywhere, where one could bring up issues and questions without annoying the struts/GUI/etc people? --- Joseph B. Ottinger http://enigmastation.com IT Consultant

RE: [OS-webwork] IRC channel?

2003-11-19 Thread Joseph Ottinger
Yeah, but that'll annoy everyone else. :) On Wed, 19 Nov 2003, Wayland Chan wrote: Your best bet is #java on EFNet and hope one of the developers are online. Hani, Pat and a couple of others are on there quite often. Is there an IRC channel dedicated to webwork anywhere, where one could

[OS-webwork] WW2 RC?

2003-11-17 Thread Joseph Ottinger
Is there a possibility that a beta 2 download could be made for WW2? --- Joseph B. Ottinger http://enigmastation.com IT Consultant[EMAIL PROTECTED] J2EE Editor - Java

Re: [OS-webwork] Re: Change in exception handling suggestion

2003-11-04 Thread Joseph Ottinger
of thing, outside of letting it bubble up to the caller? On Mon, 3 Nov 2003, Hani Suleiman wrote: ExceptionAware! Chris Nokleberg wrote: Joseph Ottinger wrote: What I'd thought of was adding an extra method to Action and ActionSupport. The Action method's signature might look like

[OS-webwork] Change in exception handling suggestion

2003-11-03 Thread Joseph Ottinger
A client of mine has been trying out WW1.3 and the exception handling around execute() yielded a question and suggestion. The issue is that throwing exceptions either bubbles up to the webapp layer, or involves a pattern where a common ActionSupport derivative wraps a method call in various

Re: [OS-webwork] Change in exception handling suggestion

2003-11-03 Thread Joseph Ottinger
an existing wheel. Sure, it's maybe a bit more convenient to use than the built-in mechanism in the servlet container, but it's still stepping on its toes and making things that little bit murkier. Joseph Ottinger wrote: A client of mine has been trying out WW1.3 and the exception handling

RE: [OS-webwork] Change in exception handling suggestion

2003-11-03 Thread Joseph Ottinger
- makes it sound like it's something common enough to be normalizable. On Mon, 3 Nov 2003, James Cook wrote: -Original Message- Behalf Of Joseph Ottinger What I'd thought of was adding an extra method to Action and ActionSupport. The Action method's signature might look like

Re: [OS-webwork] Re: Change in exception handling suggestion

2003-11-03 Thread Joseph Ottinger
Well, the original context was in that of WW1.3 as opposed to WW2, but that would work as well, and certainly be more flexible, I suppose, with nicer behaviour towards those who already implemented the pattern in their own actions. On Mon, 3 Nov 2003, Chris Nokleberg wrote: Joseph Ottinger

Re: [OS-webwork] Exception handler proposal

2003-11-02 Thread Joseph Ottinger
Then wouldn't it be the invoker's responsibility, rather than the framework's? I'd say that exceptions should be delegated to the most responsible party, not the framework. Thus, the web app exception handler, or the caller's, in the case of XWork's. On Sun, 2 Nov 2003, Francisco Hernandez wrote:

Re: [OS-webwork] Old wounds!

2003-11-01 Thread Joseph Ottinger
Maybe add somthing to the deprecation messages that suggest what you should be using instead? On Sat, 1 Nov 2003, Hani Suleiman wrote: Well, the deprecation serves as a marker to indicate 'this is not a recommended approach', sure it'll never go away (nothing deprecated in the JDK has gone

Re: [OS-webwork] webwork 1.3

2003-10-31 Thread Joseph Ottinger
Wouldn't it be a better use of your time to work on WW2? On Fri, 31 Oct 2003, Hani Suleiman wrote: Would anyone mind terribly if I had shuffled things around in ww 1.3? The directory structure is annoying, the changes I'd like to make are to bring it more inline with other os projects,

RE: [OS-webwork] Hyperlink best practices - use of actions

2003-09-23 Thread Joseph Ottinger
I do it. I have a url attribute in a base action, and my browse.action uses it from the valuestack, as it's set by non-terminals that *act* like terminals. On Tue, 23 Sep 2003, Robert Douglass wrote: I have another question on how people organize the navigation within their apps. First a use

[OS-webwork] Thought concerning HTML form rendering

2003-09-22 Thread Joseph Ottinger
Would it be better to have something like this: ww:field name=foo.bar label='Bar' / instead of ww:text name=foo.bar label='Bar' / Consider: the rendering engine can see that the field is a String, so it can generally figure out the rendering type. Maybe String isn't a brilliant idea - maybe

Re: [OS-webwork] INPUT view

2003-09-16 Thread Joseph Ottinger
Create conditions that cause the action to return INPUT. On Tue, 16 Sep 2003, Chris Widhelm wrote: In WW1 how do I get to a specific view via a URL? For example: when I use the link a href=my.actionlink/a that will take me to the SUCCESS view of the action called 'my'. How would I get to

[OS-webwork] Docs

2003-08-19 Thread Joseph Ottinger
Okay, now that WW2 is in beta, I finally decided I'd give it the old college try... and decided that, hey, I didn't go to college, maybe I should wait. However... I'd still like to take a shot at it. The docs, as usual, blow, so here's my continuing (and standing) offer: I'll be glad to help

Re: [OS-webwork] Simplicity of WW2 - Practical ideas

2003-08-18 Thread Joseph Ottinger
On Sun, 17 Aug 2003, Hani Suleiman wrote: A whole big bunch of people. If you want to show progress of batch processes, a web app is probably the absolutely stupidest way of doing it. A request/response paradigm is a pretty foolish way of providing continuous feedback. A swing client would be

Re: [OS-webwork] XW/WW2 press release text for review

2003-08-18 Thread Joseph Ottinger
After it's done, I'll put it in JDJ :) On Tue, 19 Aug 2003, Mike Cannon-Brookes wrote: I agree with Hani's points - but must add that on the whole this is awesome! Very solid, lots of text, good points made throughout. I know Hani meant to commend you on the overall quality, but forgot (or

Re: [OS-webwork] Simplicity of WW2

2003-08-17 Thread Joseph Ottinger
On Sun, 17 Aug 2003, Rene Gielen wrote: On Sunday 17 August 2003 21:59, boxed wrote: Jason Carreira wrote: You should try out the FQN plugin for IDEA... It makes it as easy as CTRL-SHIFT-Q to get the fully qualified name. On the other hand, if you need a tool to do it, it's obviously

RE: [OS-webwork] Simplicity of WW2 - Practical ideas

2003-08-17 Thread Joseph Ottinger
On Sun, 17 Aug 2003, Jason Carreira wrote: So who's building full J2EE apps without a web front end (at least for the adminsitration)? Even someone doing big batch processes needs to see how they're progressing sometimes... I am. TechNews.

[OS-webwork] Webwork and tool support, etc.

2003-08-14 Thread Joseph Ottinger
A few hours ago, I got out of a meeting discussing the merits of WebWork 1.3 vs. Struts. I'm officially really discouraged about it (sorry, Bob) because of a comment someone made: Struts tools support is there, it's sort of usable (his example didn't actually work), and it has pretty icons. This

[OS-webwork] Re: [Opensymphony-developers] A Proposal: Opensymphony Conductor

2003-08-14 Thread Joseph Ottinger
Jason, Snowwolf Wagner and I suggested something very much like this two years ago. Its time may have come, but it's certainly not a new idea. On Wed, 13 Aug 2003, Jason Carreira wrote: I'd like to create an opensource web application framework built on the pieces we have and some outside

RE: [OS-webwork] how long has webwork been going?

2003-07-24 Thread Joseph Ottinger
Try using either one. The one you're able to use without blowing your cookies on your shoes is the one you should use. (If you're sensible, that won't be struts.) On Thu, 24 Jul 2003, Butt, Dudley wrote: this is such a tough decision, I've been researching for almost a week now, and I cant

Re: [OS-webwork] Sourceforge CVS down all the time?

2003-07-21 Thread Joseph Ottinger
Well, I personally find SF's anonymous CVS highly annoying - move WW 1.x too, and let's get a new release out. On Tue, 22 Jul 2003, Dick Zetterberg wrote: If it is not possible to get the complete history then I agree with Bill and think that WW1.x CVS should stay at SF. Since the original

Re: [OS-webwork] Sourceforge CVS down all the time?

2003-07-18 Thread Joseph Ottinger
On Fri, 18 Jul 2003, Lars Fischer wrote: As someone once said, I could shit on your doorstep then proclaim that I did it for free. i will then sit back and wait for you to express gratitude for my free gift. Maybe you're using the OS counterpart of sf.net: Windows ? Never had any

Re: [OS-webwork] Resource Groups

2003-07-18 Thread Joseph Ottinger
As I was abruptly told by ... um... someone, use ActionContext to get the session stuff: ActionContext.getContext().getSession(); // etc On Fri, 18 Jul 2003 [EMAIL PROTECTED] wrote: Figured it out, my action class wasn't implementing SessionAware... SessionAware seems to be deprecated

Re: [OS-webwork] Webwork with Tiles

2003-07-13 Thread Joseph Ottinger
On Sun, 13 Jul 2003, John Patterson wrote: Joseph, With Tiles multiple components (or values) to be placed into a template can be defined in an XML file or in a jsp page. This allows complex pages to be composed by specifying what components you want and in what order. You can

[OS-webwork] WW2

2003-06-12 Thread Joseph Ottinger
Okay, I've finally gotten around to playing with WW2, and... uh... things are still a little dark. Partially it's because I'm doing too much at one time: I'm learning Velocity and starting WW2 at the same time. That said... that's more or less what you might be able to expect. How do I invoke an

Re: [OS-webwork] Different views based on action status

2003-03-29 Thread Joseph Ottinger
Yes. The strign returned is JUST a string; the SUCCESS, INPUT, ERROR codes are merely standard, not required. For example, I return notloggedin, nopermission, and others in my actions as I need to. On Sun, 30 Mar 2003, [ISO-8859-2] Ale¹[ISO-8859-2] Kracík wrote: Hi Is there an easy way how to

Re: [OS-webwork] FrameWork Details

2003-03-28 Thread Joseph Ottinger
On Fri, 28 Mar 2003, Hariharan wrote: Hi I would like to know in-depth about the Framework of Webwork.Pls explain about the Webwork Model Components. As I understand it, WebWork model components are actually composites, build through a stack, called the ValueStack. Models are

[OS-webwork] More apps using webwork

2003-03-23 Thread Joseph Ottinger
Since I've spoken of it to some of the WW developers and on the list, I'd like to mention that I have my wiki-with-bloglike features (or maybe blog-with-wikilike features) online. It's still undergoing some fairly important revisions, but the rate of change has decreased enormously. There's still

Re: [OS-webwork] WW in BlogLand

2003-03-21 Thread Joseph Ottinger
Heh, lots of blogs being written with webwork lately: perhaps we could call it blogwork to leverage such a common use. For what it's worth, my blog using webwork, sitemesh, and portalwizard is almost done: it's got about 5% of noncritical functionality to finish and it'll be deployable. :) On

Re: [OS-webwork] WW in BlogLand

2003-03-21 Thread Joseph Ottinger
-Pat - Original Message - From: Joseph Ottinger [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 21, 2003 9:15 AM Subject: Re: [OS-webwork] WW in BlogLand Heh, lots of blogs being written with webwork lately: perhaps we could call it blogwork to leverage

RE: [OS-webwork] WW in BlogLand

2003-03-21 Thread Joseph Ottinger
It's easy to do. I've done it. :) On Fri, 21 Mar 2003, Jason Carreira wrote: Speaking of Blog / Wiki... Patrick and I have been discussing what Xroller should be... We've both agreed that using Radeox, from the SnipSnap project, as an entry / rendering engine would be good. Patrick wants

Re: [OS-webwork] hidden fields

2003-03-14 Thread Joseph Ottinger
input type=hidden name=foo value=ww:property value='foo' / Note that hidden elements don't have a user interface component. On Fri, 14 Mar 2003, Snehal K.Gandhi wrote: is there any option of having hidden fields in my page, there is no such attribute ui:hidden./ how do i use that.

Re: [OS-webwork] webwork tutorial and the wiki

2003-03-14 Thread Joseph Ottinger
On Fri, 14 Mar 2003 [EMAIL PROTECTED] wrote: Over to blog-city? .. :) ? What does a blog have to do with it? Really I wish you come back to this community with your 'older' self, or shall I say 'other' self? Along with ideas, code contributions, and the much loved doc. Ghosh did I say doc?

Re: [OS-webwork] Prevent access to .jsp

2003-03-01 Thread Joseph Ottinger
Yes. What I do is put my jsps in $WEBAPP/WEB-INF/jsp/foo.jsp (for example), which prevents the client from requesting it directly. Views can be mapped like that, so: login.action=LoginAction login.success=/WEB-INF/jsp/login/loggedin.jsp login.input=/WEB-INF/jsp/login/loginform.jsp

RE: [OS-webwork] Programmatic configuration

2003-02-26 Thread Joseph Ottinger
How about ConfigurableAndDeployableThingy? That way, nobody will EVER fool with it, so it's pretty safe to deploy. On Wed, 26 Feb 2003, Jason Carreira wrote: Well, it's supposed to provide an interface to allow the configuration to be modified and then deployed to runtime. I'm not sure how

Re: [OS-webwork] Re: Webwork 2.0 example app

2003-02-25 Thread Joseph Ottinger
I think this is a good idea, no need to reinvent the wheel. On Tue, 25 Feb 2003, Dave Johnson wrote: That certainly sounds cool. I'll be watch and learn from the masters. Another approach might be to build around Blojsom (http://blojsom.sourceforge.net), a light-weight Java blogging

RE: [OS-webwork] Re: Webwork 2.0 example app

2003-02-25 Thread Joseph Ottinger
Using blojsom or Roller, something like that. When you use someone else's front- and back-ends, it saves a lot of potential work, and speeds up implementation time. On Tue, 25 Feb 2003, Jason Carreira wrote: -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED] Sent

RE: [OS-webwork] Re: Webwork 2.0 example app

2003-02-25 Thread Joseph Ottinger
. -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 3:09 PM To: [EMAIL PROTECTED] Subject: RE: [OS-webwork] Re: Webwork 2.0 example app Using blojsom or Roller, something like that. When you use someone else's front- and back

Re: [OS-webwork] ActionForward or some sort of forward type thing

2003-02-21 Thread Joseph Ottinger
Actually, it's code that just implements ActionSupport, since ActionSupport's doExecute() already returns SUCCESS, if memory serves. On Fri, 21 Feb 2003, [iso-8859-1] Hai Pham wrote: Hi, -1 IMO, this is extra code which isn't necessary at all. --- Andre Mermegas [EMAIL PROTECTED] wrote:

RE: [OS-webwork] a question about actions

2003-02-18 Thread Joseph Ottinger
/document.action?id=12124 ? Maybe it's possible... We'd have to use regex or somesuch when looking up action configs... Could be a lot of overhead (as opposed to a quick map lookup). -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18

RE: [OS-webwork] a question about actions

2003-02-18 Thread Joseph Ottinger
Actually, when I saw this, a huge light went off in my head. This would be PERFECT for a CMS-type system: imagine an action like: http://localhost/cms/12124.action ... where 12124 was actually a document key! On Tue, 18 Feb 2003, Jason Carreira wrote: Not currently. What's the case where

RE: [OS-webwork] Webwork 2.0

2003-02-14 Thread Joseph Ottinger
Inline... On Fri, 14 Feb 2003, Kelvin Tan wrote: See inline reply. On Fri, 14 Feb 2003 05:01:12 -0500 (EST), Joseph Ottinger said: I'm one of those against extra dependencies. As I said in the mailing list previously (see http://sourceforge.net/mailarchive/message.php?msg_id=3757306

RE: [OS-webwork] Webwork 2.0

2003-02-13 Thread Joseph Ottinger
On Thu, 13 Feb 2003, Jason Carreira wrote: I guess that depends on how much help we get :-) It would be good if someone besides Patrick and I were to work on things (hint hint). Patrick and I were talking about releasing a first Alpha of XW1.0 / WW2.0. What features from WW1.x need to be

Re: [OS-webwork] Commons Jelly

2003-02-08 Thread Joseph Ottinger
? On Fri, 7 Feb 2003 03:40:57 -0500 (EST), Joseph Ottinger said: Depends on the use. I don't think there'd be a problem eventually allowing Jelly's use, but depending on Jelly would be a Bad Thing. On Fri, 7 Feb 2003, Kelvin Tan wrote: Did a search in the archives and didn't find anything

Re: [OS-webwork] Commons Jelly

2003-02-07 Thread Joseph Ottinger
Depends on the use. I don't think there'd be a problem eventually allowing Jelly's use, but depending on Jelly would be a Bad Thing. On Fri, 7 Feb 2003, Kelvin Tan wrote: Did a search in the archives and didn't find anything noteworthy re: WW + Jelly, so thought I'd bring it up. Has this

Re: [OS-webwork] Velocity Views

2003-02-07 Thread Joseph Ottinger
On Fri, 7 Feb 2003, Kelvin Tan wrote: Interesting. flamebaitI happen to come from the Turbine + hardcore Velocity (JSP sucks, mostly) camp, so would be interested to know why you choose JSP + Velocity, and not either. /flamebait Does it have anything to do with WebWork support for either?

Re: [OS-webwork] Velocity as the UI widgets [WW 2.0]

2003-02-04 Thread Joseph Ottinger
I've been wondering about this. Isn't OSCore, like, CORE? Why not put useful things in it and use it, the way it was done a while back? On Tue, 4 Feb 2003, Patrick Lightbody wrote: Where are we using BeanUtils and Digester? We ARE parsing the XML by hand, using a

Re: [OS-webwork] where might info on this be?

2003-02-03 Thread Joseph Ottinger
Looks good - and even if it's wrong, it should go on the wiki so people can correct it. On Tue, 4 Feb 2003, Mike Cannon-Brookes wrote: Almost, but not quite. :) RULES OF THE STACK: 1) The stack is just a stack of objects. 2) Initially the stack contains the Action executed (this is why as

Re: [OS-webwork] XWork flux

2003-01-30 Thread Joseph Ottinger
going in? On Thu, 30 Jan 2003, [ISO-8859-1] Rickard Öberg wrote: Joseph Ottinger wrote: Can we PLEASE get back to useful discussion? I'm interested in seeing if XWork is usable, and how much in flux it's considered to be. Alright, I'd estimate that the fluxness of XWork is about 70%. Which

Re: [OS-webwork] Hidden token

2003-01-17 Thread Joseph Ottinger
of OpenSymphony, I have its best interests at heart. What better input can there be than that of an experienced, caring user? On Fri, 17 Jan 2003, [ISO-8859-1] Rickard Öberg wrote: Joseph Ottinger wrote: I'd prefer adding it to the wiki or the current release of WW, since there are some users who

Re: [OS-webwork] WW, XWork newbie,

2003-01-14 Thread Joseph Ottinger
I don't think we're sure yet. On Tue, 14 Jan 2003, [iso-8859-1] Joel Cordonnier wrote: Hi ! Can someone explain me what is XWork really !? Just a new version of WW, with additional functonalities, or WW with basic API implementation (Portlet API..). This question, because i want to port

Re: [OS-webwork] Interceptor abuse

2003-01-13 Thread Joseph Ottinger
On Mon, 13 Jan 2003, Mike Cannon-Brookes wrote: Hani, Do you mean servlet filters? In which case - surely they don't work at all outside a web environment? As Rickard has pointed out, So? There's little intent - except by a few over-outspoken users - to get XWork out of the web arena. And

Re: [OS-webwork] XWork: core concepts

2003-01-13 Thread Joseph Ottinger
My point precisely. I think, given the current culture of XWork, we're looking at WW 2.0 (major revision change) instead of XWork... and the webwork name becomes appropriate. On Mon, 13 Jan 2003, Michael Blake Day wrote: Correct me if I'm wrong, but didn't you all rename WebWork to XWork

Re: [OS-webwork] Reflection

2003-01-12 Thread Joseph Ottinger
What kind of real world example applications do you want? Wafer has a working webwork example... And docs? Who needs them - they're for people who aren't willing to roll their sleeves up and dig directly into the code, right? (Note droll humour.) On Sun, 12 Jan 2003, Heng Sin Low wrote: I

Re: [OS-webwork] Documentation

2003-01-09 Thread Joseph Ottinger
On Thu, 9 Jan 2003, [ISO-8859-1] Rickard Öberg wrote: Joseph Ottinger wrote: He was probably offended by all the horrible negativity aimed at him on #java. What was said about him on #java? I dunno, probably something like Ken is supposed to be doing documentation, which is really cool

RE: [OS-webwork] Action invocation

2003-01-03 Thread Joseph Ottinger
Actually, all this talk of filters, etc. makes me wonder if it *is* supposed to be WebWork 2.0 as opposed to XWork. Applying filters to a Swing app would be, um, great fun. On Fri, 3 Jan 2003, Jason Carreira wrote: As opposed to what? This is a model-2 MVC framework. It uses a controller

Re: [OS-webwork] Rethink

2002-12-30 Thread Joseph Ottinger
On Mon, 30 Dec 2002, [UTF-8] Rickard Öberg wrote: Joseph Ottinger wrote: Well, note the quotes I used. Correctness can be taken a lot of ways. What I was referring to was buzzword-compatible correctness, where the comp sci grads are happy applying all of their new-found knowledge in ways

Re: [OS-webwork] How to get the action name?

2002-12-28 Thread Joseph Ottinger
Jack, I've asked for this myself before. I'd still like to see it put in place - maybe XWork will do it? - but for now, you'll have to add some custom code in order to get this done. (Maybe I'll write a patch.) However... I'm not sure your problem as explained needs the solution you're asking

Re: [OS-webwork] Ognl as replacement for WW EL

2002-12-28 Thread Joseph Ottinger
- Original Message - From: Joseph Ottinger [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, December 28, 2002 11:28 AM Subject: Re: [OS-webwork] Ognl as replacement for WW EL I guess I'd like to see the actual expression used: ww:property value=foo.bar / (calls foo.getBar

[OS-webwork] Read on IRC...

2002-12-23 Thread Joseph Ottinger
*vret* im officially a webwork fan.. got more done today than i did in 2 or 3 days with struts *vret* later *vret* had to search the API for a bit to figure out how to get a hold of the Http Request *vret* but once i found ServletRequestAware, i was all set. *vret* because i needed to be able to

Re: [OS-webwork] redirect question

2002-12-15 Thread Joseph Ottinger
Can you make that source available on the wiki, perhaps? On Sun, 15 Dec 2002, Bill Lynch wrote: Erik, The current redirect action doesn't have anything built in for this. For my own project, I ended up just writing my own redirect action. It recognizes special tokens in the url like so:

[OS-webwork] Wafer Project

2002-12-15 Thread Joseph Ottinger
Just to let you guys know: I have completed an implementation of the wafer project (http://waferproject.org) using webwork, and as soon as Andy gives me access it'll be committed. - Joseph B. Ottinger [EMAIL PROTECTED]

Re: [OS-webwork] texfield and textarea tags

2002-11-17 Thread Joseph Ottinger
On Sun, 17 Nov 2002, boxed wrote: By default the value attribute is pulled from the name - which is I think the behaviour you want. Oh damn, you're right. I missed that. Specifying only name does seem like the way that would be closest to the principle of least surprise when I think about

Re: [OS-webwork] Improved property tag....

2002-11-11 Thread Joseph Ottinger
Inline... - Joseph B. Ottinger [EMAIL PROTECTED] http://enigmastation.comIT Consultant On Mon, 11 Nov 2002, Simon Stewart wrote: On Monday, Nov 11, 2002, at 11:29 Europe/London, Joseph Ottinger wrote

Re: [OS-webwork] Re: Property tag (beating the decomposed horse)

2002-11-11 Thread Joseph Ottinger
Let's be specific: I emphastically agreed with revising the property tag, but refrained from voting either way (abstaining!) because I'm resigning from opensymphony as a whole. For why (in case you're not on the opensymphony-developers list), see http://enigmastation.com/Q702 .

[OS-webwork] Sorry to keep beating my own dead horse...

2002-11-11 Thread Joseph Ottinger
Okay, I apologize in advance: some people apparently are reading my own words and they, too, are reading what's written instead of what's meant. Irony, indeed. Just to be clear: the wiki is NOT NOT NOT why I am resigning opensymphony. I'm quitting opensymphony because I see myself as a relic in

Re: [OS-webwork] Callback after view is rendered

2002-11-08 Thread Joseph Ottinger
A few people have suggested using a filter to handle the hibernate session. It probably wouldn't be a bad idea to see such a filter in the source for hibernate users. Any contributors? Callbacks are another feature that would be trivial to handle given the views aren't terminal idea that, um,

Re: [OS-webwork] All purpose property tag [Was: Tags (and perspective)[Was: more flexible property tag]]

2002-11-07 Thread Joseph Ottinger
So this is a call to document the bejeebers out of it? :) Actually, I agree with Maurice... property should stay the way it is. It's kludgey, it's inobvious, it should be deprecated... but not eliminated. (IMO only, naturally.) - Joseph B.

Re: [OS-webwork] relative path tag

2002-11-07 Thread Joseph Ottinger
You mean, JUST LIKE the linktags module in the opensymphony CVS? Or are you looking for a solution that's distinctly part of WebWork? - Joseph B. Ottinger [EMAIL PROTECTED] http://enigmastation.comIT

Re: [OS-webwork] log4j conf.?

2002-11-06 Thread Joseph Ottinger
WebWork uses commons-logging now. This was the subject of some various heated threads a while back. - Joseph B. Ottinger [EMAIL PROTECTED] http://enigmastation.comIT Consultant On Wed, 6 Nov 2002, [UTF-8]

Re: [OS-webwork] log4j conf.?

2002-11-06 Thread Joseph Ottinger
Lightbody wrote: Only heated cuz you lit the fire ;) J/K... Matt told me to do it, so I did. All my modules (OSCore, OSWorkflow, OSUser, and PropertySet -- and soon Clickstream) use commons-logging now as well. -Pat - Original Message - From: Joseph Ottinger [EMAIL PROTECTED

Re: [OS-webwork] log4j conf.?

2002-11-06 Thread Joseph Ottinger
wrote: Joseph Ottinger wrote: WebWork uses commons-logging now. This was the subject of some various heated threads a while back. Ok, so then the log4j conf option should be removed, right? /Rickard --- This sf.net email is sponsored

Re: [OS-webwork] Rant

2002-11-06 Thread Joseph Ottinger
Inline... - Joseph B. Ottinger [EMAIL PROTECTED] http://enigmastation.comIT Consultant On Wed, 6 Nov 2002, [ISO-8859-1] Rickard Öberg wrote: Patrick Lightbody wrote: FWIW, from the discussions I've

[OS-webwork] Administrator's Note

2002-11-06 Thread Joseph Ottinger
I'm only one guy, but... For one thing, it would be nice if everyone involved took a step back, breathed deeply, and remembered that this stuff isn't all there is to life. Relax. Smell the flowers. Sneeze. For another... I think it's important in the context of the dispatcher discussion to note

Re: Configuration (was RE: [OS-webwork] Webwork Security Requirements)

2002-11-04 Thread Joseph Ottinger
+1! Pat is a god! (He told me to say that so I'm blindly worshipping him.) Actually... I still vote +1, and Pat's just another frood in PsychoDelusionLand. - Joseph B. Ottinger [EMAIL PROTECTED] http://enigmastation.com