Re: Spindle in Eclipse 3.2

2006-05-05 Thread Geoff Longman
ok, there is a version of Spindle for T3 that works in Eclipse 3.2 but not by online update. Well that's not true. Let me rephrase. The version of Spindle for E3.2 is available via online update is there - but it is broken! Which is why I have not announced its availability. Luckily the archived

Re: [OT] OMG! A dynamic div component in JSF

2006-04-26 Thread Geoff Longman
the story made it to TSS http://www.theserverside.com/news/thread.tss?thread_id=40113 Geoff On 4/25/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > in Tapestry: > > > > > In JSF: > > http://www.it-eye.nl/weblog/2006/04/25/creating-a-jsf-div-component/ > > Y

Re: Tapestry IDE Integration in MyEclipse.

2006-04-26 Thread Geoff Longman
yep On 4/25/06, Ted Steen <[EMAIL PROTECTED]> wrote: > http://www.myeclipseide.com/ > Look at the feature list for 4.1.1 > That must be Spindle, right? > > /ted > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional co

[OT] OMG! A dynamic div component in JSF

2006-04-25 Thread Geoff Longman
in Tapestry: In JSF: http://www.it-eye.nl/weblog/2006/04/25/creating-a-jsf-div-component/ Yikes! Geoff -- The Spindle guy. http://spindle.sf.net Blog: http://jroller.com/page/glongman Other interests: http://www.squidoo.com/spaceelevator/ -

Re: Navigate in the object graph in tapestry!!!

2006-04-24 Thread Geoff Longman
The ognl expression translates into java calls. So client.address.street would translate into getClient().getAddress().getStreet() if getClient() or getAddress() return null, boom you get an NPE. I doubt that if webwork is using OGNL that the behaviour there is any different from what I have de

Re: spindle

2006-04-10 Thread Geoff Longman
ok ok I guess I'd better have my say. I'm going to build *something* for T4, if for no other reason that I have made many promises in the past and I'm not one to renege. I'm afraid that that *something* will be less than what people are hoping for. The devil is in the details and I *am* crushed a

Re: Tapestry 5

2006-04-10 Thread Geoff Longman
There was a general vote on abandoning support for JDK < 1.5 when the ideas for T5 were originally floated.. but I'm not sure that ditching the xml was included in that discussion. I'm ok with losing the xml because I have already put in a suggestion not to lose the xml! :-) I was thinking we "lo

Re: 4.0 -> 4.0.1 Public method signature changed in an incompatible fashion Why?

2006-04-07 Thread Geoff Longman
The Eclipse folks have a great document on what changes in java code in general will introduce breakage and which do not. http://www.eclipse.org/eclipse/development/java-api-evolution.html it's long complicated document for a long complicated subject...but it's the best and most comprehensive dis

Re: Dealing with OOME when Tap caching is disabled.

2006-03-30 Thread Geoff Longman
Tap caching is a development time only device and has know problems like OOMEs. You should not deploy an application to a production server with caching disabled. Geoff On 3/30/06, Adam Zimowski <[EMAIL PROTECTED]> wrote: > Mornin' again. > > So I'm finally done with coding initial version of my

Re: Dynamic private assets

2006-03-24 Thread Geoff Longman
If you have a page in the same package you could (this is ugly) Ipage page = cycle.getPage("foo"); page.getSpecification().getSpecificationLocation().getRelativeResource() yada yada of course you could inject a component in the same package and do the same. In fact, if you used an absolute

Re: Dynamic private assets

2006-03-24 Thread Geoff Longman
ther works > for me. In the first case I get an application exception saying that > "images/progress_0.jpg" can't be found, in the second case it says > "/my/component/package/images/progress_0.jpg" can't be found. > > Any other suggestions or ideas what I

Re: Dynamic private assets

2006-03-24 Thread Geoff Longman
Just create a new PrivateAsset and return it public IAssert getAssert(int percentComplete) { IResourceResolver = getPage().getEngine().getResourceResolver(); ClasspathResourceLocation imageFolder = new ClasspathResourceLocation(resolver, "path to images"); return new PrivateAsset(ima

Re: Page caching nightmare

2006-03-24 Thread Geoff Longman
We also had to add a filter to set them in the HttpResponse headers as FF was ignoring the meta tags (and proxies usually ignore them too). Geoff On 3/24/06, Mike Snare <[EMAIL PROTECTED]> wrote: > Add these to the portion of the template. > > > > > On 3/24/06, Mike Snare <[EMAIL PROTECTED]> w

Re: Page caching nightmare

2006-03-24 Thread Geoff Longman
My vote is that the browser is caching! -- The Spindle guy. http://spindle.sf.net Blog: http://jroller.com/page/glongman Other interests: http://www.squidoo.com/spaceelevator/ - To unsubscribe, e-mail: [EMAIL PR

Re: embedding tapestry

2006-03-13 Thread Geoff Longman
ooch. I've never heard of anyone trying to do this! You want to serve markup from inside your app? Why not just embed Jetty? This might be a question better asked on the dev list where the readers are more into the deep deep guts of Tapestry. Geoff On 3/13/06, Fedor Tcherepanov <[EMAIL PROTECTE

Re: Howto include custum meta tags?

2006-03-10 Thread Geoff Longman
On 3/10/06, Andreas Bulling <[EMAIL PROTECTED]> wrote: > > you have mentioned *shame on me* no worries. Geoff -- The Spindle guy. http://spindle.sf.net Get help with Spindle: http://lists.sourceforge.net/mailman/listinfo/spindle-user Blog: http://jroller.com/pag

Re: [NewB] Using some components in a custom component possibility and various questions

2006-03-10 Thread Geoff Longman
d image to have > the same behaviour ? > > More explicitly, I would like something which renders in html like : background="falseURL" > but where I can use an asset when my application is > launched... To have a clue ? I tried various things but unsuccessfully. > > Th

Re: Howto include custum meta tags?

2006-03-10 Thread Geoff Longman
Andeas, Shell has a 'delegate' parameter to which you can supply your own IRender impl. In the impl you can render any meta tags you like. Cheers, Geoff On 3/10/06, Andreas Bulling <[EMAIL PROTECTED]> wrote: > Hi everybody, > > second question for today ;) > How can I/what's the easiest way to

Re: Libraries, components and pages question

2006-03-09 Thread Geoff Longman
On 3/9/06, Niklas Ekman <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm using Tapestry 4 and I have a little problem. > > 1. I have a library in which I have a Exception page. > 2. In the library I also have a Border component which I use in the > Exception page. > 3. I have an application in which I

Re: [NewB] Using some components in a custom component possibility and various questions

2006-03-08 Thread Geoff Longman
> - is there a possibility to put a "false" URL in the image component in > order to have it render itself even in HTML only preview mode Sure you can (example ripped from the Component Reference and modified) The 'src' attribute will be replaced by Image. Geoff -- The Spindle guy. h

Re: [OT] JettyLauncher users read this.

2006-03-08 Thread Geoff Longman
> Okay Geoff... I said I would help, but then I began wondering if it was > a good idea before asking this question: There aren't any upcoming > specless namespace traversing things in the wind over there, too, are > there? ;-) > > Geoff Longman wrote: > > Lot&

[OT] JettyLauncher users read this.

2006-03-08 Thread Geoff Longman
Lot's of Tapestry developers use JettyLauncher. That's probably because JettyLauncher grew out of Spindle. JettyLauncher needs your help: http://www.jroller.com/page/glongman?entry=help_wanted_jettylauncher Geoff -- The Spindle guy. http://spindle.sf.net Get help with Spindle: http:

Re: [EMAIL PROTECTED] spammer?

2006-03-07 Thread Geoff Longman
rt of form of international democracy and collaboration. I'm not going > to get dewy eyed about it, but ... > Adam > > On 06/03/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > > > > Howard was looking for a moderator for posts to the list that come > &g

Re: [EMAIL PROTECTED] spammer?

2006-03-06 Thread Geoff Longman
Howard was looking for a moderator for posts to the list that come from people who are not sbscribed to the list. Not the same thing. Geoff On 3/5/06, adasal <[EMAIL PROTECTED]> wrote: > Ok, wasn't sure because I think HLS had wanted someone to take on the > responsibility. Not sure if the term i

Re: Properties as Observers

2006-03-06 Thread Geoff Longman
When Tapestry creates a concrete implementation of an abstract setter method it looks soemthing like this: public abstact void setFoo(MyFooClass newFoo); concrete: public void setFoo(MyFooClass newFoo) { $_foo = newFoo; fireObservedChange("foo", newFoo); } so, every call to setFoo() fires

Re: @Any component destroying my short img tag

2006-03-04 Thread Geoff Longman
Look at the source code for Any. It will always do this. You need a version of Any which will not. The source for Any is so simple you could whip it up in a few minutes flat. Geoff On 3/4/06, Petr <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to use @Any component to emulate img tag (I need to

Re: Tag cloud component?

2006-03-03 Thread Geoff Longman
Sounds like job for stitches! (A nice addition that is) http://stitches.authsum.org/ Geoff On 3/2/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > http://developer.jot.com/WikiHome/RelatedPagesDynamicV1 > ? > > > > On 3/2/06, Aj Gregory <[EMAIL PROTECTED]> wrote: > > > > Anybody know where I can g

Re: Where's the Tag Library in Tapestry 4.0?

2006-03-03 Thread Geoff Longman
n any case you're doing a good > job for Kent. :-) > > F > > On 3/3/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > > > > EWDWT (Kent Tong's book) talks about this in chapter 15 p.468 > > > > Geoff > > > > On 3/2/06, Jesse Kuhnert <[EMAIL P

Re: Where's the Tag Library in Tapestry 4.0?

2006-03-03 Thread Geoff Longman
EWDWT (Kent Tong's book) talks about this in chapter 15 p.468 Geoff On 3/2/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > I'd help but I've never used jsp before except in learning tutorials. :( > > On 3/2/06, Travis Romney <[EMAIL PROTECTED]> wrote: > > > > I could really use some help here. > >

Re: "Token" approach to avoiding double submits

2006-03-02 Thread Geoff Longman
You could craft your own Form component that handles the hidden and use the tapestry-flash thingy to save the token Geoff On 3/2/06, Inge Solvoll <[EMAIL PROTECTED]> wrote: > I've tried to copy the token-approach from struts into Tapestry, to avoid > crashes when the user hits the "refresh"-butto

Re: Component Parameters and Properties

2006-03-01 Thread Geoff Longman
parameters are like java method parameters properties are like java instance variables. How you configure them what Tapestry does with them is the magic. geoff On 3/1/06, Alex Kartashev <[EMAIL PROTECTED]> wrote: > Hi guys, > > I am a new Tapestry 4 user. I've been researching Tapestry 4 for ab

Re: Coul not find template exception

2006-02-28 Thread Geoff Longman
I don't see an AjaxRequest.html in > inside org/tupiniquim/components/ajax : > AjaxRequest.class > AjaxRequest.jwc > AjaxRequest.script > IAjax.class > I would guess that AjaxRequest should extend AbstractComponent instead of BaseComponent. Of course, if the intent is that AjaxRequest have a tem

Re: [Newbie - Tap3] Cleanup of persistent page properties after navigating away

2006-02-27 Thread Geoff Longman
Maybe the flash thing Howard built would be better for you? http://howardlewisship.com/tapestry-javaforge/tapestry-flash/ Geoff On 2/26/06, Gabriel Falkenberg <[EMAIL PROTECTED]> wrote: > > Does Tap3 have a hook for this sort of functionality? Or is this a _bad > > thing_ > > for reasons I'm t

Re: Image ?

2006-02-27 Thread Geoff Longman
Could be because WEB-INF/pic/test.png is a relative path. try /WEB-INF/pic/test.png Geoff On 2/24/06, Łukasz Pachciarek <[EMAIL PROTECTED]> wrote: > Hi > I want to insert image into web page this way: > in html template : > > and in page spec > > and finally I have this in browser: > Unable to

Re: New user/HelloWorld Application - Cannot get jwcid="insertSomeText to work

2006-02-25 Thread Geoff Longman
Disregard my last, Calvin sent me his project yesterday and Home.html is under /WEB-INF so I don't think a badly crafted url is the cause of his woes. (Calvin's project work for me BTW). Geoff On 2/25/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > > hmm, yes > > http

Re: New user/HelloWorld Application - Cannot get jwcid="insertSomeText to work

2006-02-25 Thread Geoff Longman
hmm, yes http://localhost/Home.html might load the template while http://localhost/app would load the, dynamic, Tapestry home page. I'm not near my setup to try it out Calvin but do check the url you were using. Geoff On 2/25/06, Sebastiaan van Erk <[EMAIL PROTECTED]> wrote: > > What URL are

Re: libraries, messages, and namespaces (does nobody know thisone?)

2006-02-24 Thread Geoff Longman
What you are talking about would be a variation on this. http://wiki.apache.org/jakarta-tapestry/UsingCustomResourceSourceForLibs Geoff On 2/23/06, James Carman <[EMAIL PROTECTED]> wrote: > getRequestCycle().getPage().getMessage().getMessage( "key" ); > > This will look up the message in the cur

Re: Ship at NFJS New England?

2006-02-23 Thread Geoff Longman
Yup. http://howardlewisship.com/blog/2006/02/gearing-up-for-nfjs.html Geoff On 2/23/06, Harvey, David <[EMAIL PROTECTED]> wrote: > Hello all, > Does anybody know if Howard Lewis Ship is still planning to present at > the NFJS New England Software Symposium in Danvers, MA March 10 - 12, > 2006? >

Re: Have Spindle ignore problems

2006-02-21 Thread Geoff Longman
uess I should file > an RFE... > > Todd :-) > > On Feb 21, 2006, at 8:25 AM, Geoff Longman wrote: > > > There is an option on the Spindle 3 preference page to change the > > priority of those warnings, or to have spindle ignore them altogether. &g

Re: [NOTICE] TapestryForums Spamming

2006-02-21 Thread Geoff Longman
I've had enough. I've set gmail to dump all traffic from the forum into the trash. Not a problem for me anymore. Geoff On 2/20/06, Apache <[EMAIL PROTECTED]> wrote: > This issue was completely unrelated to your friend's problem. The forum had > a setting set wrong which resulted in the forum s

Re: Have Spindle ignore problems

2006-02-21 Thread Geoff Longman
There is an option on the Spindle 3 preference page to change the priority of those warnings, or to have spindle ignore them altogether. http://prod1.cleancode.com/spindle/infocenter/topic/com.iw.plugins.spindle.docs/docs/preferences.html#main Geoff On 2/21/06, Todd O'Bryan <[EMAIL PROTECTED]> w

Re: Strange Session Problem. Not restoring values.

2006-02-19 Thread Geoff Longman
set. > >> > >> Cache-Control=private,no-cache,no-store > >> Pragma=no-cache > >> Expires=Tue, 25 Jan 2000 10:30:00 GMT > >> > >> Geoff Longman wrote: > >> > >> > >>> As you have discovered, properties are stored in t

Re: Strange Session Problem. Not restoring values.

2006-02-18 Thread Geoff Longman
yep. On 2/18/06, Stanczak Group <[EMAIL PROTECTED]> wrote: > Like this? > > Geoff Longman wrote: > > org.apache.tapestry.home-page=Page1 > > > > On 2/18/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > > > >> If it's T4 you can tell t

Re: Strange Session Problem. Not restoring values.

2006-02-18 Thread Geoff Longman
org.apache.tapestry.home-page=Page1 On 2/18/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > If it's T4 you can tell the Tapestry HomeService that the page to use > for 'Home' is Page1 by setting this meta property in the app spec: > > org.apache.tapestry.home

Re: Strange Session Problem. Not restoring values.

2006-02-18 Thread Geoff Longman
uld just always refer to Page1 as Home in Page2 Clear as mud? Geoff On 2/18/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > As you have discovered, properties are stored in the session with the > page name in the key. > > Is this Tapestry 3 or 4? > > Geoff > > On 2/18

Re: Strange Session Problem. Not restoring values.

2006-02-18 Thread Geoff Longman
hat session. But > > when you click back it's not saved a value for Home yet so it sets back > > to default. But it you submit again on Page1(aka Home) it saves a value > > for both, and now sets back correctly. How can I get around this? > > > > Stan

Re: Strange Session Problem. Not restoring values.

2006-02-18 Thread Geoff Longman
n't think that would help. G. On 2/18/06, Stanczak Group <[EMAIL PROTECTED]> wrote: > I created a delegate to the Shell, to add the no-cache but that still > didn't fixed. Is that how I should stop caching? > > Geoff Longman wrote: > > You sure Page1 isn't be

Re: Strange Session Problem. Not restoring values.

2006-02-17 Thread Geoff Longman
You sure Page1 isn't being cached by the browser? Geoff On 2/17/06, Stanczak Group <[EMAIL PROTECTED]> wrote: > Say your on page 1. You make a selection from the dropdown, then click > the submit button. That button takes you to the next page, page 2. On > page 2 you click the submit button calle

Re: [OT] eclipse, jetty, and classpath

2006-02-17 Thread Geoff Longman
Look at the "Order and Export tab: on the build path of the project that you want to import into another project's build path. You have to explicity say, this stuff is exported to dependent projects by checking the boxes on that tab. Geoff On 2/17/06, Dan Adams <[EMAIL PROTECTED]> wrote: > okay i

Re: Gavin King's comment about presentation code and CSS in Javaposse podcast

2006-02-17 Thread Geoff Longman
> > The beauty of Tapestry is that you _shouldn't_ be designing the pages but > instead let your creative web designer do that. Yup. We have that exact work separation and it works *perfectly*. Our output (completed pages) is easily 3 times greater than any other Tapestry project I've done where

Re: Gavin King's comment about presentation code and CSS in Javaposse podcast

2006-02-17 Thread Geoff Longman
I dunno, the project I'm working has no tables and all layout is done using CSS. They key was to have a an HTML/CSS guru design the templates from the beginning. No Java developer EVER modifies the css and rarely needs to modify the html beyond the usual (jwcid). It's been a joy to work this way.

How do you use Tapestry?

2006-02-16 Thread Geoff Longman
Tapestry will install a fake .application file if you don't have one. No physical file but an internal object is created that has a path in the context. How many developers out there using Tapestry 4 depend on this behaviour? Personally, think it would be useful for someone learning how to use th

Re: Tapestry training in Atlanta, Georgia

2006-02-16 Thread Geoff Longman
BTW Howard has included a quote from one of my guys on his home page w/respect to that 2003 visit. http://www.howardlewisship.com/quotes.html - look for "Chris Justus" Geoff On 2/16/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > Better yet, find other interested parties i

Re: Tapestry training in Atlanta, Georgia

2006-02-16 Thread Geoff Longman
Better yet, find other interested parties in Atlanta, pool you cash and *then* invite Howard. BTW in dec 2003 we had Howard come up to chilly Canada and talk about Tapestry & HM. Not training per se but even the side conversations opened the eyes of my Tapestry journeyman colleagues. Geoff On 2/

Re: Re: Newbie : Tapestry 4 Disgarding the Page Specification

2006-02-15 Thread Geoff Longman
It's too bad one has to customize Tapestry's implementation in order to have the templates for specless pages under WEB-INF. Looking at how PageSpecificationResolverImpl is coded I can see why this is the case. pity. Geoff On 2/15/06, Jeff Lubetkin <[EMAIL PROTECTED]> wrote: > Apologies for the

Re: Optimization Questions

2006-02-14 Thread Geoff Longman
n point to in our apps. Thanks again. > > - Andrew > > -Original Message- > From: Geoff Longman [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 09, 2006 9:45 PM > To: Tapestry users > Subject: Re: Optimization Questions > > Here's a little bit of info

Re: Newbie : Tapestry 4 Disgarding the Page Specification

2006-02-13 Thread Geoff Longman
> Can anyone explain or point to where in the Tapestry docs that it discusses > why > you have to move your html files to web root if you don't use page > specifications. http://jakarta.apache.org/tapestry/UsersGuide/template.html#template.locations "In addition, any HTML template in the web app

Re: Newbie : Tapestry 4 Disgarding the Page Specification

2006-02-12 Thread Geoff Longman
Stewart, you need to give us more information in order for us to help out. Could you pls, post the application spec contents? tell us where in the folder layout the app spec is located? Geoff On 2/12/06, Stewart Robertson <[EMAIL PROTECTED]> wrote: > I am new Tapestry 4 user and I am trying to s

Re: Spindle for Tapesty 4?

2006-02-11 Thread Geoff Longman
these issues will occur 'cuz, frankly, I'm stuck. Geoff On 2/11/06, t.n.a. <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Geoff Longman wrote: > | Q3 would suck. Every spare second I have goes into spindle. A bit of > | work is

Re: Optimization Questions

2006-02-09 Thread Geoff Longman
Here's a little bit of info that might help. Each instance of a page, including all of it's component tree is 'constructed' only once. At the end of the request the newly constructed page is put in the pool. Tapestry "cleans" the page, actually it's called 'detach', The page instance that goes into

Re: Using WML in Tapestry 4.0

2006-02-08 Thread Geoff Longman
that you sent me. > > Thanks Again, > Asim > > -Original Message- > From: Geoff Longman [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 08, 2006 8:51 AM > To: Tapestry users > Subject: Re: Using WML in Tapestry 4.0 > > you need to set a property to get Tapestry to pi

Re: Using WML in Tapestry 4.0

2006-02-08 Thread Geoff Longman
you need to set a property to get Tapestry to pick up wml files... org.apache.tapestry.template-extension see http://jakarta.apache.org/tapestry/UsersGuide/configuration.html#configuration.properties Geoff On 2/8/06, Asim Khaja <[EMAIL PROTECTED]> wrote: > Hello, > > I read the the EngineWML A

Re: New Tapestry based site: Zillow.com

2006-02-08 Thread Geoff Longman
very cool. so what's this at the bottom of the 'view page source' ? Geoff On 2/8/06, Jeff Lubetkin <[EMAIL PROTECTED]> wrote: > > Zillow.com (http://www.zillow.com) is an online real estate service > dedicated to helping you get an edge in real estate. We have home > valuations for over 60

Re: MultiplePropertySelection

2006-02-03 Thread Geoff Longman
We had a problem with MPS a day ago. Unlike most Tapestry components, MPS does not push the list back during the rewind. It takes pulls the list in during rewind, populates it and that's it. So, if you don't do something with the list after the rewind it will be lost at the end of the request. We

Re: Tapestry + Jetty5 + JettyLauncher and Logging

2006-02-03 Thread Geoff Longman
hmm in Eclipse(pre 3.1) with JL you could remove any jar you like from the launch config on the classpath tab. Don't seem to be able to do that in Eclipse 3.1 though. Geoff On 2/3/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > Here's a chance for me to be asking the questions. > > Before I g

Re: How to switch locales?

2006-02-03 Thread Geoff Longman
In a component you can throw a redirect just by asking it for the page it's embedded in. public void toggleLocale(IRequestCycle cycle) { ((BorderEngine) getPage().getEngine()).toggleLocale(); cycle.cleanup(); throw new PageRedirectException(getPage()); } Geoff On 2/3/06, gcormier <[EM

Re: Tapestry loading twice?

2006-02-02 Thread Geoff Longman
A guess. Are you sure you don't have 2 copies of the tapestry jars in the classpath? Geoff On 2/2/06, Jason Dyer <[EMAIL PROTECTED]> wrote: > Looking at my tomcat log, I noticed that it is loading hibernate twice (and > throwing an exception because of the missing annotation .jar, which is > expe

Re: Problem creating a component

2006-02-02 Thread Geoff Longman
You component class implement PageRenderListener and not implement public void pageBeginRender? Geoff On 2/2/06, Gabriel H. Lozano M. <[EMAIL PROTECTED]> wrote: > I have been developing pages with tapestry 3.0.3 but I have not developed > any component yet. I have this : > > >

Re: multiple forms and buttons

2006-02-02 Thread Geoff Longman
A Submit component will only invoke it's listener when it's enclosing form is submitted. So, you should be ok as long as two Submits (in different forms) don't share the same listener. In short, if the Submit is in Form A, you know it's listener will only fire if Form A is submitted. As for butto

Re: IllegalStateException

2006-02-01 Thread Geoff Longman
> > > > My Env : WebLogic 8.1SP3, Tapestry 4 beta12 [time to upgrade I guess!], > Java 1.4.2_08, J2EE declarative security with the friendly URL's. > > Cheers, > > Wayne > > -Original Message- > From: Geoff Longman [mailto:[EMAIL PROTECTED] >

Re: Spindle for Tapesty 4?

2006-02-01 Thread Geoff Longman
Oops. My coworker was threatening to nominate Spindle for an award. I actually asked him not to do it as Spindle 4T4 is so far behind and I can't attend EclispeCon this year. But, I just found out, he did it any ways. http://www.eclipse.org/org/foundation/eclipseawards/technology_nominations.php

Re: Re: Spindle for Tapesty 4?

2006-02-01 Thread Geoff Longman
> to move on to T4. > > In my previous e-mail, I was trying to tell Fanz that he could develop > Tapestry 4.0 without Spindle, but I wouldn't want to do so. > > Hope that explains my position better. > > regards, > > Mark > > > -Original Message-

Re: Re: Spindle for Tapesty 4?

2006-02-01 Thread Geoff Longman
es Spindle do apart from editing and context checking? > > --- Pat > > PS So I guess you could put me in the "only editing" group, although > now I wonder if I've been missing some useful technology :(. > > > -Original Message- > &g

Re: Re: Spindle for Tapesty 4?

2006-02-01 Thread Geoff Longman
Now I *know* I have to pick up the pace on Spindle for Tapestry 4! while I would agree that "Spindle makes life easier, but is not required." I wonder, if the statement "Spindle is only used for editing" was made because Spindle does not yet support Tapestry 4? Editing is an afterthought in Spin

Re: IllegalStateException

2006-02-01 Thread Geoff Longman
Hmm. Any Tap4 users out there (I'm getting there) care to share how they are killing a session? Geoff On 1/30/06, Bryan Lewis <[EMAIL PROTECTED]> wrote: > After upgrading our Tap3 apps to Tap4, I'm seeing an > "IllegalStateException: setAttribute: Session already invalidated". > (Stack trace bel

Re: How do I get rid of invalid DOCTYPE?

2006-02-01 Thread Geoff Longman
If you are using Spindle, be aware that the current version does not support Tapestry 4 Geoff On 2/1/06, FRANK ROCCO <[EMAIL PROTECTED]> wrote: > Severity Description Resource In Folder Location Creation Time Id > 2 Could not find a DOCTYPE with a valid Tapestry DTD (public id). > StockQuote.app

Re: tapestry not really component based?

2006-01-30 Thread Geoff Longman
L PROTECTED]> > Sent by: news <[EMAIL PROTECTED]> > 01/28/2006 03:06 AM > Please respond to > "Tapestry users" > > > To > tapestry-user@jakarta.apache.org > cc > > Subject > Re: tapestry not really component based? > > > > >

Re: Eclipse Autmatic Update and Spindle

2006-01-27 Thread Geoff Longman
The update site is fixed. Building a new archived site. Geoff On 1/27/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > It's a combination of a bug on my part and crappy version handling in > Eclipse update. > > I will fix my end shortly. > > Q Do you need the Groovestr

Re: Eclipse Autmatic Update and Spindle

2006-01-27 Thread Geoff Longman
It's a combination of a bug on my part and crappy version handling in Eclipse update. I will fix my end shortly. Q Do you need the Groovestry support? If not you can update using a workaround. 1. Stop eclipse 2 delete the following files: eclipse/features/com.iw.features.groovy_*.jar (where *

Re: tapestry not really component based?

2006-01-27 Thread Geoff Longman
add a feature request to jira. Geoff On 1/27/06, Raul Raja Martinez <[EMAIL PROTECTED]> wrote: > It looks like the ability to dynamically add components is something > that a lot of people have asked for. Are there any plans to include this > feature in the future? > > Ivano wrote: > > I understa

Re: For component index variable

2006-01-26 Thread Geoff Longman
later... ognl:components.namedForm.index or even ognl:components.namedForm.value to get the current value and skip the index. Geoff On 1/26/06, Aj Gregory <[EMAIL PROTECTED]> wrote: > but then you have to create a get/setIndex() in your java class (right?) > which I wanted to avoid since I

Re: How to popup excel file in the IE?

2006-01-26 Thread Geoff Longman
BTW if you want the browser to show an "Open/Save" dialog you need to set the Content-Disposition header too. Geoff On 1/26/06, Raul Raja Martinez <[EMAIL PROTECTED]> wrote: > Yes it is possible, ussing a implementation of IEngineService such as: > > public class ExcelToBrowser implements IEngine

Re: tapestry not really component based?

2006-01-26 Thread Geoff Longman
It all depends on your definition of 'component' and there is no universally accepted definition: http://en.wikipedia.org/wiki/Component In Tapestry a component is packaged, parameterized combination of a class, a template, and a spec. The parameter declarations define the interface. You drop it

Re: Interesting Exception, any ideas?

2006-01-25 Thread Geoff Longman
This is deep deep nitty gritty Tapestry internal stuff. I would suggest you log a bug. You'll catch Howards attention quicker and he'll know exactly the right questions to ask you. Geoff On 1/25/06, Raul Raja Martinez <[EMAIL PROTECTED]> wrote: > I have your same problem and haven't found a solut

Re: Eclipse (with spindle 3.2.13) + Tapestry 4 + DTD problem.

2006-01-25 Thread Geoff Longman
ject: Re: Eclipse (with spindle 3.2.13) + Tapestry 4 + DTD problem. > > Yes, that sounds like an awful lot of work for one guy. You're all alone on > this? I'm surprised there isn't a community behind this plugin, with it's > huge popularity. > > Spindle for

Re: Eclipse (with spindle 3.2.13) + Tapestry 4 + DTD problem.

2006-01-24 Thread Geoff Longman
appreciates all of the time you are > putting into it! Just a thought, would it be possible to release an early > version without all of the 4.0 upgrades? For instance, just the features > that were available in 3.03 (i.e. no annotations)? > > Thanks, > > Mark > > &

Re: Eclipse (with spindle 3.2.13) + Tapestry 4 + DTD problem.

2006-01-24 Thread Geoff Longman
Yes, Spindle currently ships with Tapestry 3.0.3 DTDs and does not understand Tapestry 4 at all. On the Spindle for T4 side: I've managed to nail down the "Eclipse agnostic" part of Spindle (which is great for Hugo and tapidea) and am now tackling the algorithm for 'finding & resolving' all the ta

Re: Spanish characters and Acegi authentication

2006-01-18 Thread Geoff Longman
ASP) is setting any content type (other than text/html) or charset. But the form post back, as viewed in the proxy, is different. Geoff On 1/18/06, Massimo Lusetti <[EMAIL PROTECTED]> wrote: > On 1/17/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > > > Ok. looking up the stack

Re: Spanish characters and Acegi authentication

2006-01-17 Thread Geoff Longman
Ok. looking up the stack in the debugger it is obvious that Acegi is not the culprit. The string is screwed from the get go. Geoff On 1/17/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > This is the first time I've run into this! > > A login page. The form submits dir

Spanish characters and Acegi authentication

2006-01-17 Thread Geoff Longman
This is the first time I've run into this! A login page. The form submits directly into Acegi for authentication. The username is: aáéÉíóúñÑ¿¡«» (I'm told these are spanish characters :-) But when the string arrives in the DAO that looks up the user it looks like this... aáÃ(c)ÉíóúñÃ'¿¡

Re: simplification?

2006-01-16 Thread Geoff Longman
More than just Spindle. It would kill any XML editor. Geoff On 1/15/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > I had thought about it, but it would mean abandoning the use of a DTD > for the specs; it gave Geoff (Mr. Spindle) a near stroke when I > mentioned it. > > On 1/15/06, Martin Stra

Re: [OT] Need a link check

2006-01-12 Thread Geoff Longman
Thanks! and I appologize for using everyone's bandwidth. Geoff On 1/12/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > yep > > On 1/12/06, Geoff Longman <[EMAIL PROTECTED]> wrote: > > > > Can somebody pls click this link and tell me if the Spindle docs

[OT] Need a link check

2006-01-12 Thread Geoff Longman
Can somebody pls click this link and tell me if the Spindle docs open? thanks. http://prod1.cleancode.com/spindle/infocenter Geoff -- The Spindle guy. http://spindle.sf.net Get help with Spindle: http://lists.sourceforge.net/mailman/listinfo/spindle-user Blog: http

Re: Using an enum with a Radio Buttion

2006-01-12 Thread Geoff Longman
FYI &com.myfoo.MyEnum&MY_ENUM_VALUE where '&' is really '@' (at). (gmail thinks @ is an email address and fudges it up so as to be unreadable. Geoff On 1/12/06, Mark Stang <[EMAIL PROTECTED]> wrote: > OK, the silence is deafing. Has nobody tried to use an Enum with a Radio > Button/Group. > >

Re: [ANNOUNCE] Tapestry plugin for IntelliJ

2006-01-11 Thread Geoff Longman
Cool screenshots. I want to, ahem, break from my Eclipse roots and try it out. Any chance for a "Building TapIdea for Dummies" section? Maven is more foreign to me than IDEA! Geoff On 1/11/06, Konstantin Ignatyev <[EMAIL PROTECTED]> wrote: > Quality of tool and pleasure to

Re: Custom ValidationDelegate

2006-01-11 Thread Geoff Longman
You want to use Delegator have a message from you delegate rendered anywhere you like. error msg here http://jakarta.apache.org/tapestry/tapestry/ComponentReference/Delegator.html Geoff On 1/11/06, Gogineni, Venu (Home Office) <[EMAIL PROTECTED]> wrote: > Hi Everyone, > > I am using a custom

Spindle 3.2.11 released.

2006-01-11 Thread Geoff Longman
Cleaning off my plate with T3 stuff in order to devote all ongoing effort to T4! The docs have been greatly expanded http://static.flickr.com/42/84996404_a4fbe0a216_o.jpg and some usability improvements. More info... http://jroller.com/page/glongman?entry=spindle_3_2_11_released Geoff --

Re: Tapestry 4.0 Release Notice on TheServerSide

2006-01-11 Thread Geoff Longman
Oh man don't start with Barney. My 3 year old got a Barney dvd for christmas and not only has he almost worn it out - his mother and I are ready to scream!!! G On 1/11/06, gaz jones <[EMAIL PROTECTED]> wrote: > how dare you to me what to do O_O lol > > i think it is very easy to mistake the tone

Re: problems with sending objects to a service.

2006-01-10 Thread Geoff Longman
Too large for a GET!?! What the heck are you passing? Make your own ISqueezeAdapter, one that is more efficient than the Serializable adapter - which I assume your parameters are being serialized. Geoff On 1/10/06, SECPay Brian Sperryn <[EMAIL PROTECTED]> wrote: > Hello everyone, > > I am using

Re: Tapestry 4.0 Release Notice on TheServerSide

2006-01-10 Thread Geoff Longman
This is degenerating. The Tapestry list has progressed for something like 5 years (SF+Apache) with useful discourse and little useless blathering. This is the closest I've seen the list has ever come to a flame war. (if you except the JBOSS dude's post years ago). If Howard said something dumb, he

  1   2   3   4   >