Re: [T5] more tutorials or sample projects?

2007-09-26 Thread Davor Hrg
you can avoid test casses hassle by calling:

mvn -Dmaven.test.skip install

Davor Hrg

On 9/22/07, Robert A. Decker [EMAIL PROTECTED] wrote:

 Ok, so I checked out the tapestry trunk with subversion, then cd'd
 into the directory and ran 'mvn install'. It seems to be stuck on the
 Running Integration Tests step (after opening a browser with the
 link http://localhost:/selenium-server/core/SeleneseRunner.html?
 sessionId=1190418451552 and containing a blank page)

 Do I then use the instructions here:
 http://wiki.apache.org/tapestry/
 Tapestry5HowToCreateYourQuickstartWithMaven206
 to instead point the repository toward my local hard drive?

 If I can get this working it'd be great - just sync up tapestry and
 build with subversion each evening, and do the same with my local
 project to be working against the latest version.

 If you've done this, am I on the right track?

 Thanks,
 Robert A. Decker



 On Sep 21, 2007, at 12:48 AM, Davor Hrg wrote:

  you can run mvn install from downloaded tapestry source
  and use 5.0.6-SNAPSHOT in your pom
 
  On 9/21/07, Francois Armand [EMAIL PROTECTED] wrote:
 
  Robert A. Decker wrote:
  [...]
  It looks like those annotation classes exist in the latest version
  (the svn export) but not in version 5.0.5. What's the old way
  (version
  5.0.5) way of doing:
  @OrderAfter(lastName)
  and
  @OrderBefore(citizen)
  There wasn't annotation to do this before 5.0.6 (svn), so if you are
  using 5.0.5, you have to set the order of properties thanks to the
  beanModel and methods like beanModel.get(propoertyName).order
  (10), see
  http://tapestry.apache.org/tapestry5/tapestry-core/guide/
  beaneditform.html
  to have more explanations.
 
  --
  Francois Armand
  Etudes  Développements J2EE
  Groupe Linagora - http://www.linagora.com
  Tél.: +33 (0)1 58 18 68 28
  ---
  InterLDAP - http://interldap.org
  FederID - http://www.federid.org/
  Open Source identities management and federation
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: [T5] more tutorials or sample projects?

2007-09-26 Thread Josh Penza
When I try to run the app1 example in tomcat, I get the following exception:

Component Countdown does not contain an embedded component with id 'count'.

Can anyone tell me what I'm doing wrong?





On 9/26/07, Davor Hrg [EMAIL PROTECTED] wrote:

 you can avoid test casses hassle by calling:

 mvn -Dmaven.test.skip install

 Davor Hrg

 On 9/22/07, Robert A. Decker [EMAIL PROTECTED] wrote:
 
  Ok, so I checked out the tapestry trunk with subversion, then cd'd
  into the directory and ran 'mvn install'. It seems to be stuck on the
  Running Integration Tests step (after opening a browser with the
  link http://localhost:/selenium-server/core/SeleneseRunner.html?
  sessionId=1190418451552 and containing a blank page)
 
  Do I then use the instructions here:
  http://wiki.apache.org/tapestry/
  Tapestry5HowToCreateYourQuickstartWithMaven206
  to instead point the repository toward my local hard drive?
 
  If I can get this working it'd be great - just sync up tapestry and
  build with subversion each evening, and do the same with my local
  project to be working against the latest version.
 
  If you've done this, am I on the right track?
 
  Thanks,
  Robert A. Decker
 
 
 
  On Sep 21, 2007, at 12:48 AM, Davor Hrg wrote:
 
   you can run mvn install from downloaded tapestry source
   and use 5.0.6-SNAPSHOT in your pom
  
   On 9/21/07, Francois Armand [EMAIL PROTECTED] wrote:
  
   Robert A. Decker wrote:
   [...]
   It looks like those annotation classes exist in the latest version
   (the svn export) but not in version 5.0.5. What's the old way
   (version
   5.0.5) way of doing:
   @OrderAfter(lastName)
   and
   @OrderBefore(citizen)
   There wasn't annotation to do this before 5.0.6 (svn), so if you are
   using 5.0.5, you have to set the order of properties thanks to the
   beanModel and methods like beanModel.get(propoertyName).order
   (10), see
   http://tapestry.apache.org/tapestry5/tapestry-core/guide/
   beaneditform.html
   to have more explanations.
  
   --
   Francois Armand
   Etudes  Développements J2EE
   Groupe Linagora - http://www.linagora.com
   Tél.: +33 (0)1 58 18 68 28
   ---
   InterLDAP - http://interldap.org
   FederID - http://www.federid.org/
   Open Source identities management and federation
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 



Re: [T5] more tutorials or sample projects?

2007-09-21 Thread Francois Armand

Robert A. Decker wrote:

[...]
It looks like those annotation classes exist in the latest version 
(the svn export) but not in version 5.0.5. What's the old way (version 
5.0.5) way of doing:

@OrderAfter(lastName)
and
@OrderBefore(citizen)
There wasn't annotation to do this before 5.0.6 (svn), so if you are 
using 5.0.5, you have to set the order of properties thanks to the 
beanModel and methods like beanModel.get(propoertyName).order(10), see 
http://tapestry.apache.org/tapestry5/tapestry-core/guide/beaneditform.html 
to have more explanations.


--
Francois Armand
Etudes  Développements J2EE
Groupe Linagora - http://www.linagora.com
Tél.: +33 (0)1 58 18 68 28
---
InterLDAP - http://interldap.org 
FederID - http://www.federid.org/

Open Source identities management and federation


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [T5] more tutorials or sample projects?

2007-09-21 Thread Davor Hrg
you can run mvn install from downloaded tapestry source
and use 5.0.6-SNAPSHOT in your pom

On 9/21/07, Francois Armand [EMAIL PROTECTED] wrote:

 Robert A. Decker wrote:
  [...]
  It looks like those annotation classes exist in the latest version
  (the svn export) but not in version 5.0.5. What's the old way (version
  5.0.5) way of doing:
  @OrderAfter(lastName)
  and
  @OrderBefore(citizen)
 There wasn't annotation to do this before 5.0.6 (svn), so if you are
 using 5.0.5, you have to set the order of properties thanks to the
 beanModel and methods like beanModel.get(propoertyName).order(10), see
 http://tapestry.apache.org/tapestry5/tapestry-core/guide/beaneditform.html
 to have more explanations.

 --
 Francois Armand
 Etudes  Développements J2EE
 Groupe Linagora - http://www.linagora.com
 Tél.: +33 (0)1 58 18 68 28
 ---
 InterLDAP - http://interldap.org
 FederID - http://www.federid.org/
 Open Source identities management and federation


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: [T5] more tutorials or sample projects?

2007-09-21 Thread Robert A. Decker
Ok, so I checked out the tapestry trunk with subversion, then cd'd  
into the directory and ran 'mvn install'. It seems to be stuck on the  
Running Integration Tests step (after opening a browser with the  
link http://localhost:/selenium-server/core/SeleneseRunner.html? 
sessionId=1190418451552 and containing a blank page)


Do I then use the instructions here:
http://wiki.apache.org/tapestry/ 
Tapestry5HowToCreateYourQuickstartWithMaven206

to instead point the repository toward my local hard drive?

If I can get this working it'd be great - just sync up tapestry and  
build with subversion each evening, and do the same with my local  
project to be working against the latest version.


If you've done this, am I on the right track?

Thanks,
Robert A. Decker



On Sep 21, 2007, at 12:48 AM, Davor Hrg wrote:


you can run mvn install from downloaded tapestry source
and use 5.0.6-SNAPSHOT in your pom

On 9/21/07, Francois Armand [EMAIL PROTECTED] wrote:


Robert A. Decker wrote:

[...]
It looks like those annotation classes exist in the latest version
(the svn export) but not in version 5.0.5. What's the old way  
(version

5.0.5) way of doing:
@OrderAfter(lastName)
and
@OrderBefore(citizen)

There wasn't annotation to do this before 5.0.6 (svn), so if you are
using 5.0.5, you have to set the order of properties thanks to the
beanModel and methods like beanModel.get(propoertyName).order 
(10), see
http://tapestry.apache.org/tapestry5/tapestry-core/guide/ 
beaneditform.html

to have more explanations.

--
Francois Armand
Etudes  Développements J2EE
Groupe Linagora - http://www.linagora.com
Tél.: +33 (0)1 58 18 68 28
---
InterLDAP - http://interldap.org
FederID - http://www.federid.org/
Open Source identities management and federation


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[T5] more tutorials or sample projects?

2007-09-20 Thread Robert A. Decker
I'm just about done with the tapestry 5 tutorial - working on the  
Form Fields section now. When I'm done with that I was wondering if I  
should start going through the tapestry 4 tutorials, or is 4  
different enough from 5 where it doesn't make sense?


What I'd like to do next is write a simple login application that  
uses a session. Any samples out there? Even better, any Cayenne/ 
Tapestry5 login application examples?


R

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [T5] more tutorials or sample projects?

2007-09-20 Thread Davor Hrg
If not yet ...
check this wiki:
http://wiki.apache.org/tapestry/Tapestry5HowTos

Davor Hrg

On 9/20/07, Robert A. Decker [EMAIL PROTECTED] wrote:

 I'm just about done with the tapestry 5 tutorial - working on the
 Form Fields section now. When I'm done with that I was wondering if I
 should start going through the tapestry 4 tutorials, or is 4
 different enough from 5 where it doesn't make sense?

 What I'd like to do next is write a simple login application that
 uses a session. Any samples out there? Even better, any Cayenne/
 Tapestry5 login application examples?

 R

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: [T5] more tutorials or sample projects?

2007-09-20 Thread Josh Canfield

 When I'm done with that I was wondering if I
 should start going through the tapestry 4 tutorials, or is 4

different enough from 5 where it doesn't make sense?

T5 is a new creation, so T4 tutorials would be irrelevant, unless you want
to know where we've been.

Josh

-- 
--
TheDailyTube.com. Sign up and get the best new videos on the internet
delivered fresh to your inbox.


Re: [T5] more tutorials or sample projects?

2007-09-20 Thread Robert A. Decker

Thanks for the responses.

One problem I'm having now - I svn exported the tapestry trunk and  
started putting the app1 tests into my tutorial project. Everything  
compiles except two classes that reference:

import org.apache.tapestry.beaneditor.OrderAfter;
import org.apache.tapestry.beaneditor.OrderBefore;

It looks like those annotation classes exist in the latest version  
(the svn export) but not in version 5.0.5. What's the old way  
(version 5.0.5) way of doing:

@OrderAfter(lastName)
and
@OrderBefore(citizen)

Thanks,
Robert A. Decker


On Sep 20, 2007, at 2:47 PM, Alex Shneyderman wrote:


I have just finished one today :-) I gotta say I am impressed
with tapestry.

Do not miss the app1 in tests. It has a ton of samples that
I found extremely useful.

http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/ 
src/test/



On 9/20/07, Robert A. Decker [EMAIL PROTECTED] wrote:

I'm just about done with the tapestry 5 tutorial - working on the
Form Fields section now. When I'm done with that I was wondering if I
should start going through the tapestry 4 tutorials, or is 4
different enough from 5 where it doesn't make sense?

What I'd like to do next is write a simple login application that
uses a session. Any samples out there? Even better, any Cayenne/
Tapestry5 login application examples?

R

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
Thanks,
Alex.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]