[T5]: BUG: Proxy Situation: Tapestry 5.3.3 Not Respecting isSecure for Form Action URL

2012-08-07 Thread Ryon Day
Set-Up: * My F5 BIG-IP set up in an SSL-offloading situation. All client communication to the BIG-IP is HTTPS, while the BIG-IP device communicates to Tomcat (Tapestry) via HTTP. * Tapestry is running on Tomcat 6.latest in production mode. * In the web app I have the Xebia Servlet-Extras

T5: How to Select Component with Encoder shows multiple label?

2012-07-30 Thread wesleywj2
) dataName currently the select component just show dataId field as the drop down selection. what i want is that the label will show dataCode concatenate with dataName. please advice -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-How-to-Select-Component-with-Encoder

Re: T5: How to Select Component with Encoder shows multiple label?

2012-07-30 Thread Geoff Callender
concatenate with dataName. please advice -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-How-to-Select-Component-with-Encoder-shows-multiple-label-tp5714875.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: T5 APPLICATION_VERSION

2012-07-19 Thread Norman Franke
Thanks, BTW. Not sure how I missed that one. I guess I was looking to inject a service. Norman Franke Answering Service for Directors, Inc. www.myasd.com On Jul 12, 2012, at 3:06 PM, Joost Schouten (mailing lists) wrote: This should do the trick: @Inject

T5 APPLICATION_VERSION

2012-07-12 Thread Norman Franke
I give up. How do I programmatically get the value of the APPLICATION_VERSION that I set in the AppModule? In my login page, I'd like to display the version. I'm not sure what to inject. I've tried a number of things, but nothing seems to work. Where is it stored? Norman Franke Answering

Re: T5 APPLICATION_VERSION

2012-07-12 Thread Joost Schouten (mailing lists)
This should do the trick: @Inject @Symbol(SymbolConstants.APPLICATION_VERSION) private String appVersion; Cheers, Joost On Jul 12, 2012, at 8:58 PM, Norman Franke wrote: I give up. How do I programmatically get the value of the APPLICATION_VERSION that I set in the AppModule? In my login

T5 template expansion for component

2012-06-19 Thread Norman Franke
I'm creating a list of t:checkbox items and I want to label them. I can't use t:label, since I need to customize the label. At first, I tried: ${component:myCheckItemID} since the documentation says that should result in the clientId for the compoent. It doesn't, I get basically the

Re: T5 template expansion for component

2012-06-19 Thread Howard Lewis Ship
So you have a CustomLabel component of some kind, right? What you need is to pass the Checkbox component as a parameter of type Field, and invoke Field.getLabel(). t:CustomLabel field=component:theCheckbox/ t:Checkbox t:id=thisCheckbox .../ And inside CustomLabel.java:

Re: T5 template expansion for component

2012-06-19 Thread Howard Lewis Ship
How about t:checkbox label=prop:propertyThatProvidesLabel? On Tue, Jun 19, 2012 at 8:47 AM, Norman Franke nor...@myasd.com wrote: I'm creating a list of t:checkbox items and I want to label them. I can't use t:label, since I need to customize the label. At first, I tried:

Re: T5 template expansion for component

2012-06-19 Thread Dusko Jovanovski
I don't see why you couldn't customize t:label, it supports informal parameters, everything you pass as an attribute will be passed down to the label tag. In the for parameter of t:label you pass the server id of the component. On Tue, Jun 19, 2012 at 5:47 PM, Norman Franke nor...@myasd.com

Re: T5 template expansion for component

2012-06-19 Thread Norman Franke
On Jun 19, 2012, at 12:43 PM, Howard Lewis Ship wrote: How about t:checkbox label=prop:propertyThatProvidesLabel? On Tue, Jun 19, 2012 at 8:47 AM, Norman Franke nor...@myasd.com wrote: I'm creating a list of t:checkbox items and I want to label them. I can't use t:label, since I need to

non blocking code in T5?

2012-06-13 Thread Angelo C.
in the same time, this might be quite costly, any better suggestion? Thanks, Angelo -- View this message in context: http://tapestry.1045711.n5.nabble.com/non-blocking-code-in-T5-tp5713836.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: non blocking code in T5?

2012-06-13 Thread Lance Java
.1045711.n5.nabble.com/non-blocking-code-in-T5-tp5713836p5713837.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail

Re: non blocking code in T5?

2012-06-13 Thread Dmitry Gusev
, but considering so many requests can happen in the same time, this might be quite costly, any better suggestion? Thanks, Angelo -- View this message in context: http://tapestry.1045711.n5.nabble.com/non-blocking-code-in-T5-tp5713836.html Sent from the Tapestry - User mailing list archive

Re: non blocking code in T5?

2012-06-13 Thread Angelo C.
. The message itself will be processed in separate thread with MQ handler (Message-Driven Bean in case of Java EE). Dmitry Gusev AnjLab Team http://anjlab.com -- View this message in context: http://tapestry.1045711.n5.nabble.com/non-blocking-code-in-T5-tp5713836p5713841.html Sent from

Re: non blocking code in T5?

2012-06-13 Thread Dmitry Gusev
://anjlab.com -- View this message in context: http://tapestry.1045711.n5.nabble.com/non-blocking-code-in-T5-tp5713836p5713841.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e

Re: non blocking code in T5?

2012-06-13 Thread Muhammad Gelbana
(Message-Driven Bean in case of Java EE). Dmitry Gusev AnjLab Team http://anjlab.com -- View this message in context: http://tapestry.1045711.n5.nabble.com/non-blocking-code-in-T5-tp5713836p5713841.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: non blocking code in T5?

2012-06-13 Thread Angelo C.
that should work, any sample code applicable to t5? Muhammad Gelbana wrote I've been using Java's executor service lately and it's very neat. http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ThreadPoolExecutor.html It's just that I don't think it can guarantee a new thread

Re: non blocking code in T5?

2012-06-13 Thread Andreas Fink
.n5.nabble.com/non-blocking-code-in-T5-tp5713836p5713841.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail

Re: non blocking code in T5?

2012-06-13 Thread Thiago H de Paula Figueiredo
On Wed, 13 Jun 2012 12:13:52 -0300, Angelo C. angelochen...@gmail.com wrote: that should work, any sample code applicable to t5? As Lance said before, this is completely independent of Tapestry, any sample code you'll find is applicable. This shouldn't have even be posted

Re: non blocking code in T5?

2012-06-13 Thread Cezary Biernacki
...@gmail.com wrote: that should work, any sample code applicable to t5? As Lance said before, this is completely independent of Tapestry, any sample code you'll find is applicable. This shouldn't have even be posted in this mailing list, as it's completely off-topic. -- Thiago H. de Paula

T5 STICKER

2012-06-13 Thread Dmitry Gusev
I'd like to get one :) 600023, Russia, Vladimir City, ul. Sudogodskoe shosse, 1-84 Project: AnjLab Ping Service Simple web service that checks availability of web resource and notify user by email when resource is going down or restored. The service allows user to define set of resources to

new T5 project - can't find TML file

2012-06-05 Thread Markus Johnston
I'm starting a new T5 project, and am having some difficulty. For example, if I put my tml files alongside my java classes (com.mycompany.myproj.pages), when I startup my app, and navigate to a page, tapestry tells me that it cannot find the template file. If I then move the template file

Re: new T5 project - can't find TML file

2012-06-05 Thread Howard Lewis Ship
process, or the behavior of your IDE. On Tue, Jun 5, 2012 at 1:34 PM, Markus Johnston tapes...@garstasio.com wrote: I'm starting a new T5 project, and am having some difficulty.  For example, if I put my tml files alongside my java classes (com.mycompany.myproj.pages), when I startup my app

Re: T5 and Redis

2012-06-01 Thread Howard Lewis Ship
31, 2012 at 4:29 AM, Angelo C. angelochen...@gmail.com wrote: Jedis has a pool, maybe it can be implemented as Hibernate. Is there anybody using Redis with T5 and how? Thanks -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-and-Redis-tp5713546p5713552.html Sent from

Re: deploy t5 war under jetty

2012-05-31 Thread Massimo Lusetti
On Wed, May 30, 2012 at 3:34 PM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Wed, 30 May 2012 10:11:56 -0300, Angelo C. angelochen...@gmail.com wrote: thanks, actually I got it running a few months ago, the server restarted, and I can not remember how I did it last time,

Re: T5 and Redis

2012-05-31 Thread Lance Java
You could follow the same pattern as used for a hibernate session. See this recent thread for how it's done http://tapestry.1045711.n5.nabble.com/About-per-thread-service-td5713515.html -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-and-Redis-tp5713546p5713548.html

Re: T5 and Redis

2012-05-31 Thread Angelo C.
Jedis has a pool, maybe it can be implemented as Hibernate. Is there anybody using Redis with T5 and how? Thanks -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-and-Redis-tp5713546p5713552.html Sent from the Tapestry - User mailing list archive at Nabble.com

deploy t5 war under jetty

2012-05-30 Thread Angelo C.
Hi, Got a t5 app running inside IDE, now I need to deploy it into a server without tomcat, but i can run jetty, how to do this? thanks, Angelo -- View this message in context: http://tapestry.1045711.n5.nabble.com/deploy-t5-war-under-jetty-tp5713524.html Sent from the Tapestry - User mailing

Re: deploy t5 war under jetty

2012-05-30 Thread Thiago H de Paula Figueiredo
On Wed, 30 May 2012 09:29:55 -0300, Angelo C. angelochen...@gmail.com wrote: Hi, Got a t5 app running inside IDE, now I need to deploy it into a server without tomcat, but i can run jetty, how to do this? thanks, http://wiki.eclipse.org/Jetty/Tutorial/Embedding_Jetty It says 'embedding

Re: deploy t5 war under jetty

2012-05-30 Thread Angelo C.
: http://tapestry.1045711.n5.nabble.com/deploy-t5-war-under-jetty-tp5713524p5713526.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional

Re: deploy t5 war under jetty

2012-05-30 Thread Thiago H de Paula Figueiredo
On Wed, 30 May 2012 10:11:56 -0300, Angelo C. angelochen...@gmail.com wrote: thanks, actually I got it running a few months ago, the server restarted, and I can not remember how I did it last time, basically, it was in a screen session, then I run java -jar start.jar and myapp.war, i

[T5] Dynamic Graphics

2012-05-23 Thread Fuhrmann, Hauke
Hi there, is there any support to draw graphics in Tapestry? I'm looking for some component that offers some standard Java Graphics2D object and renders this as some possible web-graphics at the client, e.g. HTML5 canvas with Javascript. Is there any such support? Additionally I'd like

Re: [T5] Dynamic Graphics

2012-05-23 Thread Emmanuel DEMEY
Hi Hauke, You can have a look to my Tapestry5-highcharts contribution : http://tapestry5-jquery.com/highcharts This contribution uses Tapestry5-jquery project. Manu 2012/5/23 Fuhrmann, Hauke hauke.fuhrm...@funkwerk-it.com Hi there, is there any support to draw graphics in Tapestry?

Re: [T5] Dynamic Graphics

2012-05-23 Thread Thiago H. de Paula Figueiredo
On Wed, 23 May 2012 11:29:27 -0300, Fuhrmann, Hauke hauke.fuhrm...@funkwerk-it.com wrote: Hi there, Hi! is there any support to draw graphics in Tapestry? I'm looking for some component that offers some standard Java Graphics2D object and renders this as some possible web-graphics at the

Re: T5 How can I pass a block to a component?

2012-05-23 Thread iberck
in context: http://tapestry.1045711.n5.nabble.com/T5-How-can-I-pass-a-block-to-a-component-tp5713371p5713372.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: T5 How can I pass a block to a component?

2012-05-23 Thread Steve Eynon
: http://tapestry.1045711.n5.nabble.com/T5-How-can-I-pass-a-block-to-a-component-tp5713371p5713372.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: T5: ValidationException from validate event leads to ERROR level logger statement

2012-04-27 Thread sub
and doesn't have to iterate through them and get frustrated. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-ValidationException-from-validate-event-leads-to-ERROR-level-logger-statement-tp4860047p5669953.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: T5: ValidationException from validate event leads to ERROR level logger statement

2012-04-27 Thread Lance Java
1. Validators are designed to cause a single failure each. If you want to validate multiple things, add multiple validators to a field. http://tapestry.apache.org/forms-and-validation.html 2. Validators must throw a ValidationException in order to fail, the issue you are responding to is

T5: Link form elements to enclosing form after zone update?

2012-04-20 Thread Dmitriy Vsekhvalnov
Hi all, How can i return form elements as part of zone update? E.g: t:form t:zone t:id=zone_1 / t:zone t:id=zone_2 / /t:form So i'm returning zone_1, which contains some form fields (text fields), and i'm getting client-side exception: 'Client exception processing response:

Re: T5: ValidationException from validate event leads to ERROR level logger statement

2012-04-20 Thread raulmt
or page name as String, without injecting the page on the component). Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-ValidationException-from-validate-event-leads-to-ERROR-level-logger-statement-tp4860047p5654429.html Sent from the Tapestry - User mailing list

Re: T5: ValidationException from validate event leads to ERROR level logger statement

2012-04-17 Thread raulmt
page as you should do it this way (http://tapestry.apache.org/forms-and-validation.html) but this behavior, imho, makes it useless at least in most cases. Regards, Raul. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-ValidationException-from-validate-event-leads-to-ERROR

Re: T5: ValidationException from validate event leads to ERROR level logger statement

2012-04-17 Thread Thiago H. de Paula Figueiredo
On Tue, 17 Apr 2012 19:31:54 -0300, raulmt rau...@gmail.com wrote: I know there are alternatives to throwing ValidationExceptions, but I was wondering what use does this has then? Is there really a case where you could want to log with error level all the user input validation errors? I ask

Re: [OT] Re: T5: encoding issues

2012-03-16 Thread bigcache1
. Glassfish 3.1.1 -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-encoding-issues-tp2427143p5571931.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users

Re: [OT] Re: T5: encoding issues

2012-03-16 Thread Josh Canfield
-8859-1 .java - utf-8 mysql tables - utf-8 Server configuration: Ubuntu 11.10 ru and en locales (utf8) installed. I see russian in .tml on the terminal. Glassfish 3.1.1 -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-encoding-issues-tp2427143p5571931.html Sent

Re: [OT] Re: T5: encoding issues

2012-03-16 Thread bigcache1
I added this option to maven. mvn install -Dfile.encoding=utf-8 Am I right? -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-encoding-issues-tp2427143p5571968.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: [OT] Re: T5: encoding issues

2012-03-16 Thread Lenny Primak
in context: http://tapestry.1045711.n5.nabble.com/T5-encoding-issues-tp2427143p5571968.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org

Re: [OT] Re: T5: encoding issues

2012-03-16 Thread Thiago H. de Paula Figueiredo
On Fri, 16 Mar 2012 14:02:40 -0300, bigcache1 sharp.maes...@gmail.com wrote: This is only in case when russian letters are in .tml file. When they are returned values, or from .properties files - everything is ok. File encodings: .tml - utf-8 .properties ISO-8859-1 Not ok. For Tapestry,

Re: [OT] Re: T5: encoding issues

2012-03-16 Thread bigcache1
://tapestry.1045711.n5.nabble.com/T5-encoding-issues-tp2427143p5571995.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands

T5 Class Reloading InvalidationListener

2012-03-15 Thread Norman Franke
I'm using Tapestry 5.2.5 I have a library I'm using that makes use of Apache Commons IO. As a result, I need to call FileCleaner.exitWhenFinished() to stop the thread, or else my application's memory usage grows about 300 MB each time Tapestry does a class reload on my development box.

Re: T5 Class Reloading InvalidationListener

2012-03-15 Thread Josh Canfield
It sounds like you have Tomcat set to watch for changes to your webapp and reload the whole context. If tomcat is reloading your context and giving you that message, then you aren't actually using tapestry's class reloading feature, right?. The InvalidationEventHub calls objectWasInvalidated when

Re: T5 Class Reloading InvalidationListener

2012-03-15 Thread Norman Franke
Ah, yes. Somehow my Tapestry live reloading stopped working under Tomcat 6. Off to fix that problem... Norman Franke Answering Service for Directors, Inc. www.myasd.com On Mar 15, 2012, at 5:45 PM, Josh Canfield wrote: It sounds like you have Tomcat set to watch for changes to your webapp

Re: Customising T5 URL Encoding

2012-03-12 Thread David Canteros
and so on). It is a problem if you get called by other webapps. If they call your page with the standard URL encoding scheme you have a problem. Say you have onActivate(String emailadress) no one can call your page because the expected encoding for @ in T5 is $0040 where the rest of the world

Re: Customising T5 URL Encoding

2012-03-12 Thread Jochen Frey
because the expected encoding for @ in T5 is $0040 where the rest of the world would send you an @. We use only query strings or numerical IDs as parameters for pages which can get called from external sites. I would like to see configuration option to switch or disable the URLEncoder

Re: Customising T5 URL Encoding

2012-03-10 Thread Paul Stanton
page with the standard URL encoding scheme you have a problem. Say you have onActivate(String emailadress) no one can call your page because the expected encoding for @ in T5 is $0040 where the rest of the world would send you an @. We use only query strings or numerical IDs as parameters

Re: T5: @Property(create=true) ?

2012-02-26 Thread Muhammad Gelbana
I realize this is a very old thread but I'm facing something similar and would like to point out that one may need to go deep into an object graph. For example Adam is asking if tapestry can auto create the address object for him, but what if the address object has other objects that needs to be

Re: T5: localized message by property value

2012-02-15 Thread Thiago H. de Paula Figueiredo
On Wed, 15 Feb 2012 10:18:57 -0200, Dmitriy Vsekhvalnov dvsekhval...@gmail.com wrote: Sure, i knew that :) that's so much pain to repeat again and again, i was hoping for expansions support, which seems so natural, right? ;) You can always add your own bindings to Tapestry. ;) -- Thiago H.

Re: Issue with my T5 unit tests

2012-02-15 Thread derkoe
);* And one comment: childminderAccount does not have to be @Persist - you reset it to a new instance anyway every time in setupRender Julien Martin wrote Regards, J. Chris -- View this message in context: http://tapestry.1045711.n5.nabble.com/Issue-with-my-T5-unit-tests-tp5486297p5486842

Re: Issue with my T5 unit tests

2012-02-15 Thread Julien Martin
in context: http://tapestry.1045711.n5.nabble.com/Issue-with-my-T5-unit-tests-tp5486297p5486842.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org

RE: [T5] loading tapestry configuration from properties file?

2012-02-14 Thread taffit
Just wanted to give a big Thank you Ulrich for your wiki entry. It was extremely helpful for me and just the thing I needed. Thanks again, David -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-loading-tapestry-configuration-from-properties-file-tp2426845p5481846.html

T5 Context and Arrays/Lists

2012-02-09 Thread Norman Franke
I want to pass several values an event link and then get those values back via the event listener. If I specify the context to be an array (even an array of Hibernate objects), the context seems to work right. The url has each element of the array / list as a separate path component. That

Re: T5 Context and Arrays/Lists

2012-02-09 Thread Thiago H. de Paula Figueiredo
On Thu, 09 Feb 2012 16:20:23 -0200, Norman Franke nor...@myasd.com wrote: I want to pass several values an event link and then get those values back via the event listener. If I specify the context to be an array (even an array of Hibernate objects), the context seems to work right. The url

Re: Overriding input type = password for T5 Kaptcha component

2012-01-24 Thread Igor Drobiazko
Not yet, but you can fill a JIRA issue. On Mon, Jan 23, 2012 at 10:49 PM, Julien Martin bal...@gmail.com wrote: Hello, I noticed that the input type of the kaptcha field is *of type password*. Is there a way to make it of type input* type=text instead*? Regards, Julien. -- Best

Re: Overriding input type = password for T5 Kaptcha component

2012-01-24 Thread Julien Martin
done! 2012/1/24 Igor Drobiazko igor.drobia...@gmail.com Not yet, but you can fill a JIRA issue. On Mon, Jan 23, 2012 at 10:49 PM, Julien Martin bal...@gmail.com wrote: Hello, I noticed that the input type of the kaptcha field is *of type password*. Is there a way to make it of type

adding an Open EntityManager In View filter to my T5 app

2012-01-23 Thread Julien Martin
Hello, I would like to add a Spring open EntityManager in view filter to my T5 application. I am not sure about the mapping url pattern. Is the code below correct or will it conflict with TapestrySpringFilter? *filter* *filter-nameoemInViewFilter/filter-name filter-class

Re: adding an Open EntityManager In View filter to my T5 app

2012-01-23 Thread Giulio Micali
I use the hibernate version, but it should be the same. Here my config(works with tapestry 5.1.0.5 and 5.2.6, i never tried the newest version): filter filter-nameHibernate Session In View Filter/filter-name

Re: adding an Open EntityManager In View filter to my T5 app

2012-01-23 Thread Julien Martin
thanks Giulio 2012/1/23 Giulio Micali giulio.mic...@gmail.com I use the hibernate version, but it should be the same. Here my config(works with tapestry 5.1.0.5 and 5.2.6, i never tried the newest version): filter filter-nameHibernate Session In View Filter/filter-name

Customizing T5 Kaptcha...

2012-01-23 Thread Julien Martin
Hello, I would like to add a T5 Kaptcha to my website but I also need to customize it (background color, font color, size, readability). Is this possible with t:kaptcha? If so how? Regards, J.

Re: Customizing T5 Kaptcha...

2012-01-23 Thread Thiago H. de Paula Figueiredo
On Mon, 23 Jan 2012 09:49:07 -0200, Julien Martin bal...@gmail.com wrote: Hello, I would like to add a T5 Kaptcha to my website but I also need to customize it (background color, font color, size, readability). Is this possible with t:kaptcha? If so how? Have you tried CSS? -- Thiago H

Re: Customizing T5 Kaptcha...

2012-01-23 Thread Julien Martin
Thiago, Isn't the image a gif or a jpeg? J. 2012/1/23 Thiago H. de Paula Figueiredo thiag...@gmail.com On Mon, 23 Jan 2012 09:49:07 -0200, Julien Martin bal...@gmail.com wrote: Hello, I would like to add a T5 Kaptcha to my website but I also need to customize it (background color, font

Re: Customizing T5 Kaptcha...

2012-01-23 Thread Thiago H. de Paula Figueiredo
On Mon, 23 Jan 2012 11:25:47 -0200, Julien Martin bal...@gmail.com wrote: Thiago, Isn't the image a gif or a jpeg? Oops, I mesread your question. I'm sorry. Tapestry-Kaptcha is just a Tapestry wrapper around this package: http://code.google.com/p/kaptcha/, so you should check its

Re: Customizing T5 Kaptcha...

2012-01-23 Thread Julien Martin
I see. The config param you are pointing to are interesting. How then would I specify them with T5 Kaptcha? Is it what @SupportsInformalParametershttp://tapestry.apache.org/current/apidocs/org/apache/tapestry5/annotations/SupportsInformalParameters.html are for? Regards, J. 2012/1/23 Thiago H. de

Re: Customizing T5 Kaptcha...

2012-01-23 Thread Julien Martin
Thiago, I meant are the web.xml init params the only way of specifying the config params for the Kaptcha? J. 2012/1/23 Julien Martin bal...@gmail.com I see. The config param you are pointing to are interesting. How then would I specify them with T5 Kaptcha? Is it what

Re: Customizing T5 Kaptcha...

2012-01-23 Thread Thiago H. de Paula Figueiredo
On Mon, 23 Jan 2012 15:40:40 -0200, Julien Martin bal...@gmail.com wrote: Thiago, I meant are the web.xml init params the only way of specifying the config params for the Kaptcha? From reading the documentation, that seems to be correct. -- Thiago H. de Paula Figueiredo Independent Java,

Re: Customizing T5 Kaptcha...

2012-01-23 Thread Julien Martin
After looking at the source code for the T5 Kaptcha implementation, I found a T5-friendlier way of configuring the Kaptcha. Just add the following lines to the services.AppModule class and play with the values and constants: * @Contribute(KaptchaProducer.class)* * public static void

Overriding input type = password for T5 Kaptcha component

2012-01-23 Thread Julien Martin
Hello, I noticed that the input type of the kaptcha field is *of type password*. Is there a way to make it of type input* type=text instead*? Regards, Julien.

Extending T5 annotations

2012-01-21 Thread Dmitriy Vsekhvalnov
Hello everyone, i'm looking for a way to add my custom annotations for T5 pages/components which handles some routine tasks and updates page properties. I'm looking for both field level annotations and method (events) level. Can someone suggest something? I'll provide some examples

Re: Extending T5 annotations

2012-01-21 Thread Thiago H. de Paula Figueiredo
On Sat, 21 Jan 2012 15:38:19 -0200, Dmitriy Vsekhvalnov dvsekhval...@gmail.com wrote: Hello everyone, Hi! i'm looking for a way to add my custom annotations for T5 pages/components which handles some routine tasks and updates page properties. I'm looking for both field level annotations

Customizing the label for a T5 checklist's checkbox

2012-01-20 Thread Julien Martin
Hello, I need to customize the label for a checklist's checkbox. As of now, I have a JPA entity behind each of the checkbox and it appears that the entity's toString method is used to display the label. However, the entity is only a three way join table that only contains three integer fields.

Re: Customizing the label for a T5 checklist's checkbox

2012-01-20 Thread Thiago H. de Paula Figueiredo
On Fri, 20 Jan 2012 07:58:03 -0200, Julien Martin bal...@gmail.com wrote: Hello, Hi! I therefore either need for the label to be blank or to be able to customize it. This is defined by the model parameter, which is of type SelectModel. Just provide a SelectModel with OptionModels

Re: T5 progress bar in a grid

2012-01-03 Thread Lance Java
clicked, the link is replaced with a progress bar in place, until it is done. any hints? Thanks, Angelo -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-progress-bar-in-a-grid-tp5101565p5101565.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: T5 progress bar in a grid

2012-01-03 Thread Lance Java
: http://tapestry.1045711.n5.nabble.com/T5-progress-bar-in-a-grid-tp5101565p5101565.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org

T5 progress bar in a grid

2011-12-26 Thread angelochen
is replaced with a progress bar in place, until it is done. any hints? Thanks, Angelo -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-progress-bar-in-a-grid-tp5101565p5101565.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-16 Thread Jose Luis Sanchez
Just to add some more fire :) ,and think it's a nice idea. Found this , in here( grails 2.0.0 release ) http://grails.org/doc/latest/guide/gettingStarted.html#requirements jQuery Replaces Prototype The Protoype Javascript library has been removed from Grails core and now new Grails

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-16 Thread Peter Stavrinides
To: Tapestry users users@tapestry.apache.org Sent: Friday, 16 December, 2011 1:41:32 PM Subject: Re: prototypejs is dead - time to bring t5-jquery in? Just to add some more fire :) ,and think it's a nice idea. Found this , in here( grails 2.0.0 release ) http://grails.org/doc/latest/guide

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-16 Thread Nicolas Barrera
javascript abstraction layer +1, I guess it also sounds like the way of making things right, which is what tapestry rings a bell for me... cheers Nicolás.-

Re: Race condition in T5-pubsub?

2011-12-16 Thread Howard Lewis Ship
Or t5-pub-sub should do a copy-on-write, rather than copying it for each iteration. I miss Clojure collections! On Thu, Dec 15, 2011 at 3:37 AM, Jochen Berger foober...@googlemail.com wrote: Hi again, I think I was wrong with the term race condition. After some investigation I found out what

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-16 Thread Barry Books
I'm not for anything breaking backward compatibility and I'm not interesting in Tapestry 6, version 5 is fine by me. I've been using Tapestry since 3.0 and I've got some Tapestry 4 code and some 5.2 Prototype code now. I'm also running 5.3 with the Tapestry5-jQuery library. But IMHO another

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-16 Thread Thiago H. de Paula Figueiredo
On Fri, 16 Dec 2011 16:01:31 -0200, Barry Books trs...@gmail.com wrote: But IMHO another abstraction layer is a really bad idea. There is a ton of documentation on Prototype and jQuery but none on the Tapestry Javascript abstraction layer. I think the abstraction layer is for Tapestry itself

Re: Race condition in T5-pubsub?

2011-12-15 Thread Jochen Berger
Hi again, I think I was wrong with the term race condition. After some investigation I found out what causes the problem. I created a simple demo application that I can upload I you want me to. Basically, the problem occurs, when there are multiple subscribers for the same topic and one of

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-15 Thread Tony Nelson
. Backward compatibility is a very strong priority for Tapestry 5. This doesn't mean we shouldn't have a T5 version based on jQuery, but we should continue providing Prototype. We could add a configuration symbol to switch from one to another. On Dec 14, 2011, at 1:27 PM, Howard Lewis Ship

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-15 Thread trsvax
.nabble.com/prototypejs-is-dead-time-to-bring-t5-jquery-in-tp5073709p5078183.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-15 Thread Thiago H. de Paula Figueiredo
On Thu, 15 Dec 2011 15:17:35 -0200, trsvax trs...@gmail.com wrote: I agree about having a prototype.jar and I don't view this as a backward compatibility problem. Dependencies change from version to version anyway. It would also make it easier to create something other than jQuery if

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-14 Thread Thiago H. de Paula Figueiredo
On Wed, 14 Dec 2011 05:03:56 -0200, David Rees dree...@gmail.com wrote: Is it time to bring tapestry5-jquery into the core project? What are the long term plans? Check these pages: https://issues.apache.org/jira/browse/TAP5-999 http://tapestry.apache.org/javascript-faq.html :) -- Thiago H.

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-14 Thread Howard Lewis Ship
We are currently caught between the wrong technology (PrototypeJS) and the need for backwards compatibility. I'm not sure how that will play out in 5.4 but it will (finally!) be addressed. On Wed, Dec 14, 2011 at 4:46 AM, Thiago H. de Paula Figueiredo thiag...@gmail.com wrote: On Wed, 14 Dec

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-14 Thread Lenny Primak
I would say it's better to favor better functionality rather than backwards compatibility in this case. On Dec 14, 2011, at 1:27 PM, Howard Lewis Ship wrote: We are currently caught between the wrong technology (PrototypeJS) and the need for backwards compatibility. I'm not sure how that will

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-14 Thread Hugi Thordarson
As a new Tapestry user with no legacy code whatsoever… +1 ;-) - hugi On 14.12.2011, at 18:30, Lenny Primak wrote: I would say it's better to favor better functionality rather than backwards compatibility in this case. On Dec 14, 2011, at 1:27 PM, Howard Lewis Ship wrote: We are

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-14 Thread Thiago H. de Paula Figueiredo
On Wed, 14 Dec 2011 16:30:15 -0200, Lenny Primak lpri...@hope.nyc.ny.us wrote: I would say it's better to favor better functionality rather than backwards compatibility in this case. Backward compatibility is a very strong priority for Tapestry 5. This doesn't mean we shouldn't have a T5

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-14 Thread Thiago H. de Paula Figueiredo
On Wed, 14 Dec 2011 16:36:18 -0200, Hugi Thordarson h...@karlmenn.is wrote: As a new Tapestry user with no legacy code whatsoever… +1 ;-) I'll need to change my Tapestry user hat for my Tapestry PMC member hat now. :) A little bit of history . . . In my humble opinion, the biggest issue

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-14 Thread David Rees
compatibility is a very strong priority for Tapestry 5. This doesn't mean we shouldn't have a T5 version based on jQuery, but we should continue providing Prototype. We could add a configuration symbol to switch from one to another. It's up to the devs (like yourself) how long to provide backwards

<    1   2   3   4   5   6   7   8   9   10   >