HTML output of t:alerts intentional?

2012-04-04 Thread Crentana
Hi, just noticed that somehting like alertManager.info("Deleted "+item.getName()); may output unfiltered HTML if item.getName() contains html. Is this inteded behaviour? - To unsubscribe, e-mail: users-unsubscr...@tapestry

Re: Overwrite and extend an existing service

2012-03-29 Thread Crentana
Check out @Local annotation in tapestry-IOC cookbook, this might help Yep! Have you tried binder.bind(MySecurityService.class, MySecurityServiceImpl.class)? It seems to work with @Local, but it didnt with only with binder.bind(MySecurityService.class, MySecurityServiceImpl.class), i t

Overwrite and extend an existing service

2012-03-28 Thread Crentana
Hi, While trying to write a customized version of SecurityService (tapestry-security) I encountered a problem, which Im unable to solve Target: Writing a customized Version of SecurityService which supports the original methods as well as new ones. Basic implementation is not hard publ

Tapestry security: standart way to get an user object?

2012-03-28 Thread Crentana
Hi, Im quite new to tapestry and tapestry-security. But i cant find a way to get an user object. I guess I have to query the db whenever I need it? (I know Subject.getPrincipal, but im asking because i could imagine there is a standard way.) If I have to implement it on my own, i guess th