Re: About T5 integration modules

2009-12-24 Thread Marcus Veloso
Hi, About pages protected access, I think that the tapestry5-portlet module will provide (through portal platform) implementations of much of the common functionality that any web-based application would require: role-based security (including authentication and authorization), user registration a

Re: Error when running tapestry on IBM WebSphere Portal

2009-12-24 Thread Marcus Veloso
Hi Xuan, Thank you for the portlet LIB. Can you explain how to use? Marcus

Re: [ANNOUNCE] ChenilleKit 1.2.0 RELEASE

2009-10-15 Thread Marcus Veloso
Hi Massimo, Congratulations to CK team! ChenilleKit is great! I'm using chenillekit-access 1.0.2. It works perfectly. In the release 1.2.0 the WebSessionUser interface has changed. My project is not working anymore, and the CK site ( http://chenillekit.codehaus.org/chenillekit-access/usage.html) i

Re: Tapestry5 and eclipse

2009-10-07 Thread Marcus Veloso
RunJettyRun and Maven: http://tapestry.formos.com/wiki/display/T5IDEINT/Eclipse+(including+Maven) Maven only: http://tapestry5.wikidot.com/ambiente http://tapestry5.wikidot.com/projeto

Re: Your best practice for - list view + detail view

2009-08-19 Thread Marcus Veloso
Hi, /book/ (for search and list) /book/detail/4711 (crud without "c") /book/detail/(create) Marcus

Re: Tapestry 5.1 running in Google App Engine (GAE)

2009-08-11 Thread Marcus Veloso
Nice work, Christian!

Re: [T5] Problems with commitAfter

2009-07-26 Thread Marcus Veloso
Hi Jose, What we usualy do is create a new method (to do the persistence) and use @CommitAfter there. @OnEvent(component="addCustomer",value="success") Object onSuccess() { this.persistData(); ... } @CommitAfter public void persistData() { ... }

Re: [T5.0.18] Bug? : Null property problem with the custom component inside a grid

2009-07-10 Thread Marcus Veloso
td24421215s302.html]<http://www.nabble.com/-T5.1--Using-a-custom-image-component-inside-a-Grid-td24421215s302.html> Regards, Marcus Veloso

[T5.1] Using a custom image component inside a Grid

2009-07-09 Thread Marcus Veloso
) {} }; } ... } ImageDO.java (bean) public class ImageDO { private String id; private byte[] image; ... ShowImage.tml (component) * List.tml (page) ... ... Thank in advance, Marcus Veloso

Re: [Tapestry Central] Caught between Two IDEs

2009-07-04 Thread Marcus Veloso
est. (http://tapestry5.wikidot.com/ambiente) Best regards, Marcus Veloso

Re: T5 & CRUD

2009-06-29 Thread Marcus Veloso
http://tapestry5.wikidot.com/ On 6/26/09, Thiago H. de Paula Figueiredo wrote: > Em Fri, 26 Jun 2009 13:55:17 -0300, Sven Homburg > escreveu: > >> for spring-less DAOs try this: >> >> http://www.chenillekit.org/chenillekit-hibernate/index.html > > Just to make sure, Ars Machina's Generic DAO-Hib

Re: t5: obtaining server name and port

2009-06-10 Thread Marcus Veloso
... @Inject private RequestGlobals requestGlobals; ... requestGlobals.getHTTPServletRequest().getServerName(); ... requestGlobals.getHTTPServletRequest().getServerPort(); ...

[T5.1] TLD file

2009-05-22 Thread Marcus Veloso
Hi, Where can we find the file ".tld" of tapestry 5.1? Thanks, Marcus Veloso

[T5.1] Mini tutorial em portugues (CRUD usando Hibernate)

2009-05-19 Thread Marcus Veloso
http://tapestry5.wikidot.com/

Re: Tapestry Forms and Cancel Button

2009-04-25 Thread Marcus Veloso
Another option? ... ... void onSubmitFromCancelForm() { ... }

Re: Decent jetty runner for eclipse

2009-04-14 Thread Marcus Veloso
code changes in pom.xml? Thanks in advance. Marcus Veloso

Re: T5: creating a tutorial for 5.0.18

2009-03-24 Thread Marcus Veloso
Hi Angelo, try -DarchetypeVersion instead of -Dversion. Cheers, Marcus Veloso

Re: [T5] Web Service

2009-03-16 Thread Marcus Veloso
http://code.google.com/p/t5-restful-webservices/

Re: Encoding in activation context

2009-03-06 Thread Marcus Veloso
Hi Fernando, Maybe this help. http://code.google.com/p/t5-restful-webservices/ Cheers, Marcue Veloso

T5 Mini Tutorial CRUD in Portuguese (BR)

2008-12-18 Thread Marcus Veloso
http://code.google.com/p/myt5t/

Re: [T5 5.0.18] - How to 'turn on' dynamic validation

2008-12-17 Thread Marcus Veloso
Hi Kawes, There is another option, you can put the "Cancel" (submit button) in another Form. Marcus

Re: Global (application state) data

2008-11-24 Thread Marcus Veloso
rsistence strategy. Right now there's only one built in strategy, but more will be coming in the future." But, as any java app, you can do this with static object. Marcus Veloso