Re: Fwd: [Announce] Tapestry 5.2 Demo application

2010-10-21 Thread Katia Aresti Gonzalez
There is no security framework just tapestry following Howard's tutorial in the tynamo branch we use tynamo security, but this branch is not finished yet. We will use tynamo conversations too. 2010/10/22 ael > > What Security Framework this you use for this project? > -- > View this message in c

Re: [Announce] Tapestry 5.2 Demo application

2010-10-21 Thread Katia Aresti Gonzalez
thanks a lot for all these feedbacks, and thanks Howard for taking your time to do a code review, this is really great !!! Katia 2010/10/21 Mark W. Shead > I like the look of the application. I wonder if it would help with > Tapestry branding to use the same template and style for 5.2.2 > arch

Re: Fwd: [Announce] Tapestry 5.2 Demo application

2010-10-21 Thread Katia Aresti Gonzalez
Well, we can remove it if you wish Christophe Or we can just add a comment to say that - as always - there is one exception that confirms the rule :-) Kaptcha - as it's a tapx component. Katia 2010/10/21 Christophe Cordenier > 2010/10/21 Piero Sartini > > > Very nice effort! > > > > Thanks !

Re: Fwd: [Announce] Tapestry 5.2 Demo application

2010-10-21 Thread Katia Aresti Gonzalez
No, is a tapx component. It's not a core component, it's true. But as it's howard's component... we consider it as "core" But it's true, kaptcha is not in the core. :) http://github.com/hlship/tapx 2010/10/21 Piero Sartini > Very nice effort! > > Is the captcha a tapestry core component? Jus

Re: Fwd: [Announce] Tapestry 5.2 Demo application

2010-10-21 Thread Katia Aresti Gonzalez
Hi all, Thank you everybody for your feedbacks and thanks a lot for testing In order to be more organized, I suggest you to open improvement and bug issues on the project's github account :) http://github.com/ccordenier/tapestry5-hotel-booking/issues Katia 2010/10/21 Vangel V. Ajanovski > T

Re: [T5.2] What security framework do you recommend ?

2010-10-18 Thread Katia Aresti Gonzalez
Hi, It depends on your needs and on you. I successfully used Spring Security 3.0 (without any additional library) and it works very well. You can checkout the example here : http://github.com/lguerin/tapestwitter and Tynamo security with shiro too http://github.com/ccordenier/tapestry5-hotel-b

T 5.2 Validator Macro

2010-10-03 Thread Katia Aresti Gonzalez
Hi I'm using the validator macro feature on Tapestry 5.2. It works perfect when I put the validation on the tml : However, I can't make it work with @Validation annotation on the java class. @Validate("password") private String password; I'm getting the following error : "Failure reading par

Re: Eclipse IDE and TML code completion

2010-09-22 Thread Katia Aresti Gonzalez
Hi again, You can simply adapt the plugin's values ${set your tld uri here} ${set your tld defaut namespace here} Once TLD generated, you can add N user catalogues in Eclipse (one per tld file) and you will have to explicitly change the URI and short name's values which are unique. We have alre

Re: Eclipse IDE and TML code completion

2010-09-22 Thread Katia Aresti Gonzalez
I meant to dire "executing" maven ... ^_^ 2010/9/22 Katia Aresti Gonzalez > Hi ! > > Thanks for testing ! Are you lancing maven with an eclipse plugin, from the > console or another way ? > We found some problems with eclipse m2 plugin. > > Katia > > 2010/9/

Re: Eclipse IDE and TML code completion

2010-09-22 Thread Katia Aresti Gonzalez
Hi ! Thanks for testing ! Are you lancing maven with an eclipse plugin, from the console or another way ? We found some problems with eclipse m2 plugin. Katia 2010/9/22 Alessio Gambi > Forgot to say I am using tapestry 5.1.0.5 > > > > On Sep 22, 2010, at 10:50 AM, Laurent Guerin wrote: > > Fo

Re: throw new PageRedirectException

2010-09-22 Thread Katia Aresti Gonzalez
http://tapestry.apache.org/tapestry5/guide/pagenav.html 2010/9/22 asianCoolz > with throw new PageRedirectException("NextTapestryPage"); , i was redicectd > to > another page, but the url on the browser address bar is not change. is > there > any method i can call "forward", so that use 'forwa

Re: Textfield disabled return a null value

2010-09-21 Thread Katia Aresti Gonzalez
ript in order to disable the > textfield. But when I submit the form the textfield is null :-/. > > Is there another mean to forbid the user to change the value of the > textfield? > > Thanks ;-) > > -Message d'origine- > De : Katia Aresti Gonzalez [mailto:katiaar

Re: Textfield disabled return a null value

2010-09-21 Thread Katia Aresti Gonzalez
Do you mean after submitting ? When a field is disabled on HTML, this field's value is not submitted. where is this field's value coming from ? 2010/9/21 Cucchietti Denis > Hi everybody ! > > I have a little problem : > > I want to get a value from a field which is disabled but in my page.ja

Re: Alternating table rows

2010-09-14 Thread Katia Aresti Gonzalez
For java CSS logic reticent people : Imagine you need more complex css logic depending not only on even/odd row, but on the number of the elements you have in your table too, or even the values of these elements, and depending on a pagination component too. How will you TML look like ? like an old

Re: Deal with URL as a parameter and redirect

2010-09-08 Thread Katia Aresti Gonzalez
I don't understand what do you mean about "reverse solution". What exactly are you trying to do ? Why do you need to pass the URL as an url parameter ? 2010/9/9 t5.0 > > Thanks but I'm looking for the "reverse" solution: handle a URL provided to > the page. > > I tried with a onActivate(url)

Re: Deal with URL as a parameter and redirect

2010-09-08 Thread Katia Aresti Gonzalez
Concerning to *"URL given as a parameter to a page"* Be careful, as this practice is not considered a good idea at all ;) You can read here why : http://www.owasp.org/index.php/Top_10_2010-A10 Thanks Christophe Cordenier for the tip 2010/9/8 Katia Aresti Gonzalez > Hi, >

Re: Deal with URL as a parameter and redirect

2010-09-08 Thread Katia Aresti Gonzalez
Hi, You can return an URL object and this will perform the redirect like this example : public Object onActivate() { URL myURL= null; try { myURL= new URL("http://www.google.com";); } catch (MalformedURLException e) { //log

Re: GSOC 2010 project is finishing

2010-08-16 Thread Katia Aresti Gonzalez
congratulations pablo ! 2010/8/17 cleverpig > really cool~ > > On Tue, Aug 17, 2010 at 11:32 AM, Pablo dos Reis > wrote: > > Hi everyone, > > > > My GSOC 2010 project is finishing > > Then I uploaded the code example in my tapestry wiki page [0] > > There are a link called "App Example"[1] to c

Re: T5.1 - Problem with form submission and zone rerendering

2010-08-12 Thread Katia Aresti Gonzalez
Thabks for d'acces :) Anyway, I'm happy to know tyou solved your problem, even if i dnd't help a lot in the end .) good luck with your tapestry project 2010/8/12 Josh Canfield > > Thank you very much!!! This is great. > > Now it works! > Great! > > > I'm sorry for badly written question > > N

Re: T5.1 - Problem with form submission and zone rerendering

2010-08-11 Thread Katia Aresti Gonzalez
I've checkout your code this afternoon in order to make it run. i didn't have much time, i had thing to do. can you tell me all about your development and runtime environment, please ? you are not using maven, are you using jetty to run the project ? tomcat ? do I need to configure something in pa

Re: T5.1 - Problem with form submission and zone rerendering

2010-08-10 Thread Katia Aresti Gonzalez
re uniques 2010/8/10 Katia Aresti Gonzalez > Hi, > > > The second problem and I can't find out how to solve it - tapestry > rerenders always first component instance ActivityJournalItem. If with > loop we rendered 3 times, not depending what button was pressed always > exa

Re: T5.1 - Problem with form submission and zone rerendering

2010-08-10 Thread Katia Aresti Gonzalez
ve one instance being rendered twice. Is this intended or a bug ? > This is how Tapestry works. Static structure, dynamic behavior. ;) 2010/8/10 Katia Aresti Gonzalez > Hi, > > > The second problem and I can't find out how to solve it - tapestry > rerenders always firs

Re: T5.1 - Problem with form submission and zone rerendering

2010-08-10 Thread Katia Aresti Gonzalez
Hi, The second problem and I can't find out how to solve it - tapestry rerenders always first component instance ActivityJournalItem. If with loop we rendered 3 times, not depending what button was pressed always exactly first zone is rerendered. I didn't check your code google project, but I had

Re: Upgrading from 5.1 to 5.2

2010-08-08 Thread Katia Aresti Gonzalez
Hi Andreas, I thank you! I will definitively take some time during this week to fix and take your advices in oout tapestwitter application. best regards, Katia 2010/8/7 Guerin Laurent > Hi Andreas, > > Thank you for your random choice :-) > > With Katia (co-author) we are planning to upgrade

Re: Tapestry Training: London (Oct 2010)

2010-08-05 Thread Katia Aresti Gonzalez
ing that ugly man for ours during courses or > presentation :( > > On Thu, Aug 5, 2010 at 11:16 PM, Katia Aresti Gonzalez < > katiaare...@gmail.com> wrote: > > > Laurent and me live in Paris. We work for a big international french > > company. > > > > We were aware a

Re: Tapestry Training: London (Oct 2010)

2010-08-05 Thread Katia Aresti Gonzalez
Laurent and me live in Paris. We work for a big international french company. We were aware about these formations since last year because we are tapestry followers. Last year, in may 2009, our client wanted to migrate from struts 1.x to tapestry 5.x. We started to learn Tapestry by ourselves. Aft

Re: Wanted: example of AJAX in a client-side validator

2010-06-22 Thread Katia Aresti Gonzalez
I have an example with a mixin ... it's in not very very simple, but i can simplify the mixin for your example... ^_^ 2010/6/20 Geoff Callender > Surely someone has an example of this? > > On 18/06/2010, at 12:51 PM, Geoff Callender wrote: > > > Thanks, Thiago, but it lacks AJAX. I'd like the v

Re: [T5.1] Strange behaviour of component method (with lazy init). Bug ?

2010-05-05 Thread Katia Aresti Gonzalez
What I meaned to say with the perfect explanation... :) Thank you! :) 2010/5/5 Thiago H. de Paula Figueiredo > On Wed, 05 May 2010 13:13:09 -0300, Nicolas Bouillon > wrote: > > My real component takes is used to display the product price in an order >> from the client cart (many lines, so in a

Re: [T5.1] Strange behaviour of component method (with lazy init). Bug ?

2010-05-05 Thread Katia Aresti Gonzalez
r solution ? > > Thanks. > > On Wed, 5 May 2010 17:58:41 +0200, Katia Aresti Gonzalez > wrote: > > Hi, > > > > No, there is no bug. > > > > In the first example you have 2 components, so two contexts. > > > > In the second one you have just

Re: [T5.1] Strange behaviour of component method (with lazy init). Bug ?

2010-05-05 Thread Katia Aresti Gonzalez
Hi, No, there is no bug. In the first example you have 2 components, so two contexts. In the second one you have just one component, so when you loop into it, it increases twice, as you are increasing the same component Katia 2010/5/5 Nicolas Bouillon > Hello, > > I'm facing a strange behavi