accesing a in code and testing

2006-12-15 Thread Carlos.Fernandez
A page, lets call is PageX, uses a bean with request scope. The beans configuration requires something more complex that what is allowed by the lightweight initialization -- so using the annotation is out. I use the element in the page specification with a series of elements. Now I need to acc

Re: Tap4: Email Validator RegEx Bug

2006-12-15 Thread Dennis Sinelnikov
ah, should've looked under /trunk before writing that email. Thanks Jesse! Jesse Kuhnert wrote: I think it ~was~ a bug until recently when it was fixed in 4.1.1. On 12/15/06, Dennis Sinelnikov <[EMAIL PROTECTED]> wrote: Hey guys, I believe one of my testers found a bug in the Email validator

Re: Tap4: Email Validator RegEx Bug

2006-12-15 Thread Jesse Kuhnert
I think it ~was~ a bug until recently when it was fixed in 4.1.1. On 12/15/06, Dennis Sinelnikov <[EMAIL PROTECTED]> wrote: Hey guys, I believe one of my testers found a bug in the Email validator. [EMAIL PROTECTED] => Fails validation [EMAIL PROTECTED] => OK. Looking at the regular expressi

Tap4: Email Validator RegEx Bug

2006-12-15 Thread Dennis Sinelnikov
Hey guys, I believe one of my testers found a bug in the Email validator. [EMAIL PROTECTED] => Fails validation [EMAIL PROTECTED] => OK. Looking at the regular expression in org.apache.tapestry.form.validator.Email, "[EMAIL PROTECTED],6}$" It looks like the "local part" of the email address

Re: Proper way to get ApplicationStateManager?

2006-12-15 Thread Jesse Kuhnert
Yeah yeah ...I know... I'm going to be starting a upgrade guide for 4.0->4.1 to outline some of the core new features and things that may impact existing 4.0 apps this weekend. :) I had the same exact thought yesterday. Shame on me. =p On 12/15/06, Ron Piterman <[EMAIL PROTECTED]> wrote: :( som

Re: Array-gotcha in .script files

2006-12-15 Thread Jesse Kuhnert
Ouch. Any chance you could log this as a bug ? I've got some crazy plans I keep debating wrt to ognl enhancements so this would probably be a good place for them. On 12/15/06, Jim Steinberger <[EMAIL PROTECTED]> wrote: Just wanted to give a heads up on a gotcha I ran into. The "index" value

Re: Proper way to get ApplicationStateManager?

2006-12-15 Thread James Carman
Hey, I just submit the code patches, not the documentation ;-) On 12/15/06, Ron Piterman <[EMAIL PROTECTED]> wrote: :( some new feature are failing on the marketing - I also didn't have an idee about the new auto injection... lucky I read the list :) Cheers, Ron [EMAIL PROTECTED] wrote: > Tha

Re: @Persist collection

2006-12-15 Thread Jesse Kuhnert
Yes, use the keyExpression or converter parameter of the component. It's much more performant that way. On 12/15/06, jiju <[EMAIL PROTECTED]> wrote: This is also related to tapestry For Loop component I am creating an editable contact List using For loop rewind will work only when my contactL

Re: Proper way to get ApplicationStateManager?

2006-12-15 Thread Ron Piterman
:( some new feature are failing on the marketing - I also didn't have an idee about the new auto injection... lucky I read the list :) Cheers, Ron [EMAIL PROTECTED] wrote: That's awesome. Was I supposed to be able to find this out somehow with documentation? I'd like to think I've been scouri

RE: Proper way to get ApplicationStateManager?

2006-12-15 Thread Greg.L.Cormier
That's awesome. Was I supposed to be able to find this out somehow with documentation? I'd like to think I've been scouring it really hard and never came across this :( Or it might just come with understanding HiveMind+Tap? Greg -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

DropdownTimePicker, DropdownDatePicker, and time zones

2006-12-15 Thread Jon McCarty
Hi everyone – I’m enjoying the Tap4.1.1 line (I think that’s where I am – I’m pulling from svn trunk), but I had a problem with the Dojo-backed dropdown date and time pickers. Right now, they’re passing the dates to the client-side components in a way that causes the client-side to do a timezone

Re: Array-gotcha in .script files

2006-12-15 Thread Ron Piterman
Would you place this in the wiki? Cheers, Ron Jim Steinberger wrote: Just wanted to give a heads up on a gotcha I ran into. The "index" value of the "foreach" tag is stored as a String, not an integer, so be careful when using it to, say, index into an array. e.g. If you have a two-di

Array-gotcha in .script files

2006-12-15 Thread Jim Steinberger
Just wanted to give a heads up on a gotcha I ran into. The "index" value of the "foreach" tag is stored as a String, not an integer, so be careful when using it to, say, index into an array. e.g. If you have a two-dimensional array stored in the input-symbol "matrix", the following will wor

Re: tapestry prop / ognl?

2006-12-15 Thread Barry Books
I don't know about the norm but prop does not have all the functionality of ognl. It's probably faster at what it can do. So if you need speed or believe in optimizing early then you'll need both. Or You can use prop for everthing, but you'll need to write to write java methods to handle the ca

Re: Tapestry 5 snapshots repo

2006-12-15 Thread andyhot
http://people.apache.org/repo/m2-snapshot-repository/org/apache/tapestry/tapestry-core/5.0.0-SNAPSHOT/ Hugo Palma wrote: > Is there any maven repo with maven 5 snapshots or is a build from > source still required ? > > Thanks, > > Hugo > -- Andreas Andreou - [EMAIL PROTECTED] - http://andyhot.d

Re: Tapestry 5 snapshots repo

2006-12-15 Thread Hugo Palma
Ok, i just got the answer to this from another post...sorry... Hugo Palma wrote: Is there any maven repo with maven 5 snapshots or is a build from source still required ? Thanks, Hugo

Re: tapestry 5.0

2006-12-15 Thread Massimo Lusetti
On 12/15/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: What's going on is that Tapestry is in a snapshot stage, where we don't have official releases published to the central Maven repository, but do have -SNAPSHOT releases (a concept within Maven) published to a public repository at Apache.

Tapestry 5 snapshots repo

2006-12-15 Thread Hugo Palma
Is there any maven repo with maven 5 snapshots or is a build from source still required ? Thanks, Hugo

Re: T-Acegi: An AuthenticationManager is required

2006-12-15 Thread James Carman
I didn't use Spring to set up my stuff, but in theory that should work. Are you using tapestry-spring? On 12/15/06, Firas Adiler <[EMAIL PROTECTED]> wrote: Hello James, >> The tapestry-acegi library works... I don't doubt it >> ...and it's been working flawlessly I had it working that way to

Re: Connect additional javascript to a async DirectLink

2006-12-15 Thread andyhot
This was committed yesterday, check it out at https://svn.apache.org/repos/asf/tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/fx.js It'll be included in the next snapshot build, and will form the basis of supporting such effects (perhaps along with some new parameter in DirectLink and

@Persist collection

2006-12-15 Thread jiju
This is also related to tapestry For Loop component I am creating an editable contact List using For loop rewind will work only when my contactList is stored in session (@Persist) i.e during rewind process it will check the values in the hidden fields with that of the elements in the contactLi

Storing the locale in the URL, Tapestry 4

2006-12-15 Thread Numa Schmeder
Hello, I have used Tapestry 3 in different projects, i am studying the migration of one of these projects to Tapestry 4. But one of the requirement of the project is to have the locale stored in the URL. In Tap 3, i have modified the source code so the locale is not stored inside a cook

RE: T-Acegi: An AuthenticationManager is required

2006-12-15 Thread Firas Adiler
Hello James, >> The tapestry-acegi library works... I don't doubt it >> ...and it's been working flawlessly I had it working that way too...until the problem, described erlier, cropped up. A qouple of questions: Do you use JdbcDaoImpl or InMemoryDaoImpl? Did you set up tapestry-a

tapestry prop / ognl?

2006-12-15 Thread karthik G
Should i be using tapestry prop in place of ognl? Is this norm when developing with tapestry? http://howardlewisship.com/tapestry-javaforge/tapestry-prop/ Please do let me know as we are at a very early in the project and would like to adopt the best option. thanks, Karthik

[ANN] tapestry revisor: syntax checker for tapestry

2006-12-15 Thread Ron Piterman
Hi All, I just uploaded a very early release of tapestry revisor to http://www.piterman.net/tapestry-revisor-0.1.zip Tapestry revisor is a syntax checker for tapestry 4.0 and 4.1. It currently runs as a standalone application, easily launched from an IDE. Integration with IDE is in plan. So

Connect additional javascript to a async DirectLink

2006-12-15 Thread Erik Johansson
Hi, When I submit/click a async request I want to do a fade on a div (the one getting replaced by the async call). Anyone know how I can invoke the fade effect (dojo.lfx.html.fadeOut) before the async. call is made? Im using a DirectLink to update the component 'toplist' like this right now

Re: First pass at a Tapestry 5 Image Component

2006-12-15 Thread Massimo Lusetti
On 12/10/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: I'm thinking about a custom JavaDoc doclet to generate component documentation, since most of what you need to document is private. Alternately, perhaps Tapestry code JavaDoc should just include privates as well as everything else? I wo

Storing the locale in the URL, Tapestry 4

2006-12-15 Thread Numa Schmeder
Hello, I have used Tapestry 3 in different projects, i am studying the migration of one of these projects to Tapestry 4. But one of the requirement for the project is to have the locale stored in the URL. In Tap 3, i have modified the source code in a way that the locale is not stored i