Re: Hi Lo tutorial, HIbernate cfg errors

2010-05-14 Thread aibkwik
Thanks, Ulrich! Phil Ulrich Stärk wrote: > > This is a tutorial. A step-by-step guide to basic Tapestry functions, > starting with an empty page > and adding functionality to it. Read it. > > Uli > > On 14.05.2010 15:00, aibkwik wrote: >> >> Awesome

Re: Hi Lo tutorial, HIbernate cfg errors

2010-05-14 Thread aibkwik
t; Uli > > [1] http://tapestry.apache.org/tapestry5.1/tutorial1/forms.html > > On 14.05.2010 04:45, aibkwik wrote: >> >> Can you post working code (.tml and .java) for chapter 4 of the tutorial >> on >> working with forms? >> >> I'm having troub

Re: Hi Lo tutorial, HIbernate cfg errors

2010-05-13 Thread aibkwik
Can you post working code (.tml and .java) for chapter 4 of the tutorial on working with forms? I'm having trouble getting it to work and there is nowhere a listing of full source - only snippets and pieces. The first 3 chapters had critical errors in some of the snippets and caused me major gri

Tutorial: Chapter 4: Forms in Tapestry

2010-05-13 Thread aibkwik
Can someone please post a copy of of all the .java .tml .properties files for this chapter in the tutorial. The first tutorial was riddled with outdated elements and bugs that caused much pain. I've now hit another road block with this chapter and am hoping to head things off earlier this time r

Re: Tutorial Import Project Into Eclipse

2010-05-12 Thread aibkwik
Dude, The tutorial has quite a few quirks that really should be updated. I got loads of help from folks on this forum in order to get it working. I thought I'd give you the benefit of my pain. Here is my final code for each module along with a snapshot of my project tree. Enjoy. http://ta

Need help on Guessing Game Tutorial - compile error

2010-05-12 Thread aibkwik
I can't get the last step of the tutorial to work. Note in the screenshot below that I have an error in Guess.java The error I get when I "mouse over" the 'X' is: http://old.nabble.com/file/p28543121/Fullscreen-13.jpg Note the "InjectPage" in the screenshot below. I read where another person

Re: Noob problem with Guessing Game tutorial

2010-05-12 Thread aibkwik
other arbitrary frameworks > (e.g. in my opinion, Spring) T5 is really well written, avoids > inheritance where it can, and most answers can be found by a quick > peek in the code. > > Anyhow, have fun, > > Steve. > > -- > Steve Eynon > mobie: (+592) 678 4236 > > &

Re: Noob problem with Guessing Game tutorial

2010-05-12 Thread aibkwik
other arbitrary frameworks > (e.g. in my opinion, Spring) T5 is really well written, avoids > inheritance where it can, and most answers can be found by a quick > peek in the code. > > Anyhow, have fun, > > Steve. > > -- > Steve Eynon > mobie: (+592) 678 4236 > > &

Re: Noob problem with Guessing Game tutorial

2010-05-12 Thread aibkwik
r/t5/pages > > so your .class and .tml files end up in: > /target/classes/foo/bar/t5/pages > > and make sure the "tapestry.app-package" param-value in your web.xml is > set to > foo.bar.t5 > > I don't think I can say much more than that. But to be honest,

Re: Noob problem with Guessing Game tutorial

2010-05-12 Thread aibkwik
s/foo/bar/t5/pages > > so your .class and .tml files end up in: > /target/classes/foo/bar/t5/pages > > and make sure the "tapestry.app-package" param-value in your web.xml is > set to > foo.bar.t5 > > I don't think I can say much more than that. But to

Re: Noob problem with Guessing Game tutorial

2010-05-11 Thread aibkwik
orial1 > > Edited the pom.xml at the bottom to update the Tapestry version 5.1.0.5 > >> mvn jetty:run > > Open browser to: http://localhost:8080/tutorial1/ > > Ta daa! That should give you a working base to start from. > > Steve. > > > On 11 May 201

Re: Noob problem with Guessing Game tutorial

2010-05-11 Thread aibkwik
Not sure what the current T5 deal is with putting .tml files in the WEB-INF, but I'm certain it's not recommended. Again, as Sergey and I have suggested, place your .tml files in the same package as your java / class files. With your current maven setup, that would be: src/main/resources/org/

Re: Noob problem with Guessing Game tutorial

2010-05-11 Thread aibkwik
et = target; return this; } public int getTarget() { return target; } } aibkwik wrote: > > Two problems: > > 1. The tutorial says to create Index.java but the class it creates is > "public class Start". I can't eve

Re: Noob problem with Guessing Game tutorial

2010-05-11 Thread aibkwik
h. It's how Tapestry matches the two up > (same name in the same package). And as there's no interface for > onAction and other "handle" methods - watch out for typos. > > > On 10 May 2010 22:36, aibkwik wrote: >> >> Two problems: >> >>

Noob problem with Guessing Game tutorial

2010-05-10 Thread aibkwik
Two problems: 1. The tutorial says to create Index.java but the class it creates is "public class Start". I can't even compile the tutorial. Eclipse is telling me that "Start" should be declared in a separate file. It offers to rename the class for me. (It wants the class to be called "Index