Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-30 Thread Marcus
Some related links: http://tapestryjava.blogspot.com/2007/10/tapestry-506-is-available.html http://tapestryjava.blogspot.com/2007/10/big-improvement-to-quickstart-archetype.html

Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-30 Thread Josh Canfield
the help. > > Marc > > - Original Message - > From: "Lindsay Steele" <[EMAIL PROTECTED]> > To: "Tapestry users" > Sent: Tuesday, October 30, 2007 22:37 > Subject: Re: T5: How to upgrade from 5.0.5 to 5.0.6 > > > > > > > > Mar

Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-30 Thread Marc A. Donis
in for the help. Marc - Original Message - From: "Lindsay Steele" <[EMAIL PROTECTED]> To: "Tapestry users" Sent: Tuesday, October 30, 2007 22:37 Subject: Re: T5: How to upgrade from 5.0.5 to 5.0.6 Marc A. Donis wrote: - moved *.tml (and *.properties ?) f

Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-30 Thread Lindsay Steele
Marc A. Donis wrote: - moved *.tml (and *.properties ?) from src/main/resources/org/app/pages to src/main/webapp/WEB-INF (is this the right place??) You pages should be in src/main/webapp - To unsubscribe, e-mail: [EMA

Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-30 Thread Marc A. Donis
"Nick Westgate" <[EMAIL PROTECTED]> To: "Tapestry users" Sent: Monday, October 29, 2007 03:52 Subject: Re: upgrading 5.0.5 to 5.0.6 breaks the app Please look for the recent thread "T5: How to upgrade from 5.0.5 to 5.0.6". Cheers, Nick. Marc A. Donis wrote

RE: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-28 Thread Adam Ayres
rename %~pnA.html %~pnA.tml Adam -Original Message- From: jblier [mailto:[EMAIL PROTECTED] Sent: Thursday, October 25, 2007 1:09 PM To: users@tapestry.apache.org Subject: T5: How to upgrade from 5.0.5 to 5.0.6 This question may look simple for you but I ask it anyway. What are the st

Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-27 Thread Eko S.W.
Great! I just know that I had to rename and move the templates! Now its' working !!! Thanks! 2007/10/27, jblier <[EMAIL PROTECTED]>: > > > Thanks for the answer, > > Now my application is loading (aside from some components). > > I still get a warning, though: > log4j:WARN No appenders could be fo

Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-26 Thread jblier
Thanks for the answer, Now my application is loading (aside from some components). I still get a warning, though: log4j:WARN No appenders could be found for logger (org.mortbay.util.Container). log4j:WARN Please initialize the log4j system properly. Although it's not important to fix for now.

Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-25 Thread Lindsay Steele
Maybe just change the line in appmodule to: public RequestFilter buildTimingFilter(final Logger log) and then add the import import org.slf4j.Logger; Personally I just downloaded a quick new quickstart archetype and copied the new AppModule.java accross. jblier wrote: Hi Mike! Before

Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-25 Thread jblier
Hi Mike! Before your message I tried all your steps. When starting the application in my browser, it did not find the root /myapp and gave a 404 error. Although all my files were moved and renamed *.tml, all inject annotations redone, etc. By telling Maven to update the source folder, now I get

Re: T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-25 Thread Mike_R
Hi, What I had to do: - change tapestry version in pom.xml from 5.0.5 to 5.0.6 - rename all pages and components to tml - move pages (not components) to context root (the dir below WEB-INF) - delete all Inject annotation import statements and let eclipse import the new Inject - upgrade log4j to

T5: How to upgrade from 5.0.5 to 5.0.6

2007-10-25 Thread jblier
This question may look simple for you but I ask it anyway. What are the steps to upgrade a project from 5.0.5 to 5.0.6? Do I just need to modify my web.xml file or the pom.xml file? Yes, I know, once upgraded, I'll have to rename my pages .html files to .tml and move them in webapp. Thanks in