Re: Missing maven dependency for tapx-datefield?

2009-05-26 Thread Eric Rogers
, Joost Schouten (mailing lists) joost...@jsportal.com wrote: as per: http://tapestry.formos.com/nightly/tapx/tapx-datefield/ tapx-datefield is built for use with Tapestry 5.1 and higher. cheers, Joost On Tue, May 26, 2009 at 11:42 AM, Eric Rogers puckgrab...@gmail.com wrote: Hi All

Missing maven dependency for tapx-datefield?

2009-05-25 Thread Eric Rogers
Hi All, I am having a problem trying to add the tapx-datefield artifact a Tapestry 5.0.18 project. More specifically, I have added the following to my pom.xml: dependency groupIdcom.formos.tapestry/groupId artifactIdtapx-datefield/artifactId version1.0.0-SNAPSHOT/version /dependency

Re: Pattern or strategy to sanitize input for cross-site scripting characters.

2008-08-21 Thread Eric Rogers
entities, , and , are converted to proper entities: lt;, etc. On Tue, Aug 19, 2008 at 11:11 AM, Eric Rogers [EMAIL PROTECTED] wrote: Hello All, I am using Tapestry 5.0.14 and am looking to filter input in my Tapestry application for characters related to cross-site scripting. Some input

Re: Pattern or strategy to sanitize input for cross-site scripting characters.

2008-08-21 Thread Eric Rogers
Hello Howard, Does Tapestry provide any way to do this on input, even if it is just for all form data that is submitted? Perhaps being able to wire an interceptor of some form in? Thanks, Eric On Thu, Aug 21, 2008 at 11:57 AM, Eric Rogers [EMAIL PROTECTED] wrote: Hello Howard, Thanks

Re: Pattern or strategy to sanitize input for cross-site scripting characters.

2008-08-21 Thread Eric Rogers
input (using a Mixin for example) you should make sure that the user input cannot 'escape' the quotes of your Javascript code because that would create a possible XSS vulnerability. Martijn On Thu, 2008-08-21 at 12:12 -0600, Eric Rogers wrote: Hello Howard, Does Tapestry provide any way

Pattern or strategy to sanitize input for cross-site scripting characters.

2008-08-19 Thread Eric Rogers
Hello All, I am using Tapestry 5.0.14 and am looking to filter input in my Tapestry application for characters related to cross-site scripting. Some input is from regular form submission, while other input is received using AJAX event listeners and JSON. I realize that one can use a custom

Re: RES: Calling Javascript after updating a Zone

2008-08-05 Thread Eric Rogers
this by adding JavaScript code to a Block or Component's html scope, so when it is updated via AJAX the code runs and may call other functions already loaded in the page. Thiago -Mensagem original- De: Eric Rogers [mailto:[EMAIL PROTECTED] Enviada em: quinta-feira, 31

Calling Javascript after updating a Zone

2008-07-31 Thread Eric Rogers
Hello All, Using Tapestry 5.0.13. I have a form, which has a corresponding zone to update when it is submitted. I am returning a block from the action handler for the form submission to update the content of the zone with. This works as expected. However, I am wondering if Tapestry has a

Form AJAX submission with Zone component appears to break if form validation is added.

2008-05-12 Thread Eric Rogers
5.0.12 Snapshot If I have a page containing a form and an associated zone component to update, everything works as expected. However, when I add validation to a field on the form, the submission for the form is treated as regular submission, and not one handled through AJAX. More specifically,