Re: tapestry.formos.com is down temporarily

2009-01-09 Thread Steven Woolley
Yeah! I guess I should google it, now that I know what to call them (not that it was any stretch of the imagination)...Steve On Fri, Jan 9, 2009 at 5:39 PM, Andreas Andreou wrote: > like offline builds? > > On Sat, Jan 10, 2009 at 1:24 AM, Steven Woolley wrote: > > On that

Re: tapestry.formos.com is down temporarily

2009-01-09 Thread Steven Woolley
On that note (probably because of this rebuild) a simple mvn build just took almost an hour! So, any tips on how I can build using only the locally cached version of all my jars (especially if this is going to be down all weekend :) without having maven look for every pom remotely?Thanks, Steve

Re: rendering unclosed tags - a petition to fix before 5.1

2008-12-04 Thread Steven Woolley
woohoo! Thanks!Steve On Thu, Dec 4, 2008 at 11:12 AM, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > https://issues.apache.org/jira/browse/TAP5-401 > > Wil be fixed shortly. I'm deciding whether I should then generate > 5.0.18 and put it to a vote. > > On Thu, D

Re: rendering unclosed tags - a petition to fix before 5.1

2008-12-04 Thread Steven Woolley
> > > I seems quite important, but I believe it's not the good place for that : > just open a bug and after, put the link to it here - the T5 dev could miss > your post here, there is a lot of posts on this list. > The bug had been closed and moved to the 5.1 branch. I added my comment there http

rendering unclosed tags - a petition to fix before 5.1

2008-12-03 Thread Steven Woolley
Can I petition that the closing tags not being rendered also be fixed before 5.1? Not only did it cause invalid html, but also it actually affected the rendering (or at least the browser's attempt to compensate did) of visual layout (I had div's that were wrapped inside of the unclosed anchor abov

Issue using an ApplicationState object created in a form post (posted multiple times)

2008-11-19 Thread Steven Woolley
I write to mention an issue I recently encountered that may be viewed as a bug, but at least something to be aware of when using tapestry @ApplicationState I have substantial ApplicationState object that I use from most of the pages within a single view webapp. I create the ASO manually on success

Re: Improvements to Loop

2008-11-19 Thread Steven Woolley
I guessing it's a synthetic property (has getter added at runtime) so you probably can't access it in java code, but can access it from the template using ${loop.index}. That's just a hunch though.Steve On Wed, Nov 19, 2008 at 9:03 AM, Joel Halbert <[EMAIL PROTECTED]> wrote: > Hi, > I just tried

Re: unique ids for a select boxes

2008-11-18 Thread Steven Woolley
On Mon, Nov 17, 2008 at 10:24 AM, Peter Stavrinides < [EMAIL PROTECTED]> wrote: > This should be as straightforward as this: > > blankOption="NEVER" value="selectedPlaylist"/> > > //gets the object on the client > var selectList = document.getElementById("addSelect"); > I ran into this same pr

Re: Core dump when debugging @OnEvent methods on Page (JDK 1.6.0_10, Eclipse 3.3.2)

2008-10-22 Thread Steven Woolley
Me too, eclipse 3.1/jdk 1.5 on Mac, thought maybe it was 1.6, i didn't check which one eclipse/maven/jetty were using. It was unpleasant, shall we say...Steve On Tue, Oct 21, 2008 at 2:29 AM, Stephane Decleire < [EMAIL PROTECTED]> wrote: > Yes, i've got the same error yesterday on Eclipse 3.3.1.

Re: T5: Assets outside of the WebApp

2008-07-28 Thread Steven Woolley
Is there a problem with simply including it it like so (in your tml). With this in the page class: @Property private String yahooMin = "http://yui.yahooapis.com/2.5.2/build/yahoo/yahoo-min.js "; etc.? On Jul 24, 2008, at 5:42 AM, Russell Brown wrote: Hi, I'm wondering if I can inject as

Re: [T5] Tapestry & FLASH Objects ?

2008-07-28 Thread Steven Woolley
If anyone has experience using T5 with red5, I'm all ears (eyes rather). Anyone? Steve On Jul 23, 2008, at 4:05 PM, Antonio wrote: Sounds great ! First of all i´m going to learn more about this framework. The questions would be here in the near future ... :-D Many thanks again & good lu

Re: T5 firefox IE7

2008-06-17 Thread Steven Woolley
I'd love to have this stripped prototype when you getba chance. Steve On Jun 15, 2008, at 10:13 AM, "Davor Hrg" <[EMAIL PROTECTED]> wrote: actualy ff is sluggish also, I way annoyed with it some time ago until FF3 ff3 is blazing fast with js.. but this no excuse to ignore this. ff2 was quick t

Re: Autocomplete mixin + select event

2008-04-29 Thread Steven Woolley
I've got it working by overriding the Autocomplete mixin and putting the following in the AfterRender (instead of using a json object). String configS = "{indicator:'" + loaderId + "',frequency:.5,minChars:" + minChars + ",paramNa

Re: actionlink and pagelink id's no longer (automatically) rendered in 5.0.12-snapshot

2008-04-28 Thread Steven Woolley
Lewis wrote: Hi Steve, I'm not seeing that behavior in 5.0.12-SNAPSHOT, at least with pagelinks. When I don't provide a t:id, an id attribute is generated based on the component name and subsequent instances use a rolling scheme (pagelink, pagelink_1, etc). When I provide a componen

actionlink and pagelink id's no longer (automatically) rendered in 5.0.12-snapshot

2008-04-27 Thread Steven Woolley
Upgrading from 5.0.6 to the latest snapshot, I found that all my pagelinks and actionlinks defined in tml like this: link re no longer rendering with the clientid, ie.: link Instead, I get no id... Same thing goes for pagelinks... I can force the id to be rendered with: link but, that's k

Re: AJAX and the bleeding edge... minor pains...

2008-04-27 Thread Steven Woolley
5's AJAX support and really think that it could very much shield developers from dealing with a lot of things, it should needs a bit more time in the oven. chris Steven Woolley wrote: Like pouring ajax in my wounds? Trying to upgrade from 5.0.6, and upgrading all my ajax stuff is killin

AJAX and the bleeding edge... minor pains...

2008-04-26 Thread Steven Woolley
Like pouring ajax in my wounds? Trying to upgrade from 5.0.6, and upgrading all my ajax stuff is killing me... The issues I've run into (I'm shoehorning things a bit, by just returning a block from an actionevent handler and grabbing the markup from the jsonresponse with my AJAX response handler.

Re: Eclipse tapestry templates on wiki

2008-04-02 Thread Steven Woolley
ates without the import statements so everyone can enjoy them :) Davor Hrg On Tue, Apr 1, 2008 at 9:26 PM, Steven Woolley <[EMAIL PROTECTED]> wrote: I'm trying to use the templates from http://wiki.apache.org/tapestry/Tapestry5HowToEclipseCodeTemplates However, when I import the

Eclipse tapestry templates on wiki

2008-04-01 Thread Steven Woolley
I'm trying to use the templates from http://wiki.apache.org/tapestry/Tapestry5HowToEclipseCodeTemplates However, when I import them into eclipse, only the t5form* templates are correctly imported. I messed around a bit and find that the others are not imported because of the line: $

T5: How to do partial page rendering on my own beyond 5.0.6?

2008-01-26 Thread Steven Woolley
I was using code posted to the list (see http://www.nabble.com/T5%3A- Partial-Page-Rendering-td12179365.html) for partial page rendering. It worked wonderfully. I could even render components that contain forms or grids. However, starting with 5.0.7, PageRenderInitializer is gone (it wasn

T5: How to do partial page rendering on my own beyond 5.0.6?

2008-01-26 Thread Steven Woolley
I was using code posted to the list (see http://www.nabble.com/T5%3A- Partial-Page-Rendering-td12179365.html) for partial page rendering. It worked wonderfully. I could even render components that contain forms or grids. However, starting with 5.0.7, PageRenderInitializer is gone (it wasn

Cleaning up an ASO on session expiration (or termination)

2008-01-26 Thread Steven Woolley
I have an ASO that is acting as a listener to a service. I am probably doing things stupidly, but it (almost) works. When the ASO is created, it adds itself as a listener to the service, but I have no way of removing it as a listener when the session expires or is explicitly terminated.

Session Creation...

2007-12-26 Thread Steven Woolley
I am having an issue where a new session is being created by a plugin within a page that already has a session. I need to use just one session for both the page and the plugin. I've tried appending the jsessionid to all the requests made by the plugin, but a new session is still created (

Re: Tapestry5-Acegi incompatibility with Tapestry 5.0.6

2007-10-26 Thread Steven Woolley
Quick question... is there any chance of having the acegi setup so that an @Secured annotation on the class also applies to all the action methods in that class? I find it odd that adding the annotation to a class still allows accessing the action methods (and perhaps a bit of a pain to always rem

Re: T5: User validation

2007-10-10 Thread Steven Woolley
I am using acegi in T5, without a database, so no, you don't need to configure it with a DB. There's a tutorial on a wiki somewhere, if you google it, which was enough to get me (also a total novice) started... Steve On 10/10/07, Nguyen, Michael <[EMAIL PROTECTED]> wrote: > > Robin, >The docu

Re: [T5] Documentation

2007-06-25 Thread Steven Woolley
The anchors don't work in Safari either. (neither v2 nor v3). FYI On Jun 25, 2007, at 10:17:47, Martin Grotzke wrote: On Fri, 2007-06-22 at 22:51 -0500, Robert Sanders wrote: http://tapestry.apache.org/tapestry5/tapestry-core/component- parameters.html If the links (anchors) on this page woul

Re: T5 I guess the Any component is gone.

2007-06-13 Thread Steven Woolley
I noticed the same thing, and I wasn't sure if it was because of a refresh, or using a different xml parser in my own code... On 6/13/07, Bill Holloway <[EMAIL PROTECTED]> wrote: ...not complaining (expansions to the rescue), just checking. After a recent code launch of maven, all my t:type="an