Re: Passing on information from one page to another

2006-09-17 Thread Onno Scheffers
Peter Dawn schreef: guys, i have a form which a user fills in with their information. now when they click on submit, i want to display a confirmation page, displaying all the information the user has already filled in and once they confirm process the information. now how can i pass on informa

Menu problem using frames

2006-09-17 Thread Peter Dawn
guys, i am having a problem using a menu structure on my framed pages. my menu is on my top menu bar and it gets chopped off when it reaches the middle frame. at this point in time i am using krysalis, but am happy to use something else if it fixes the issue. now i really need to implement a men

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
I added these lines to the Workbench pom.xml and it all compiles fine: javax.servlet servlet-api Irv On 9/18/06, Irv Salisbury <[EMAIL PROTECTED]> wrote: That did work for timetracker. On building workbench, I get a TON of these types of messages: [WARN

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
That did work for timetracker. On building workbench, I get a TON of these types of messages: [WARNING] Unable to get resource from repository mortbay-repo ( http://www.mortbay.org/maven2/snapshot) Downloading: http://people.apache.org/repo/m2-snapshot-repository/org/apache/maven/shared/file-man

Re: Installing 4.1

2006-09-17 Thread Martin Strand
Not sure why the workbench won't compile for you... it works here. :\ The timetracker appears to have duplicate jars: - tapestry-annotations-4.1.1-SNAPSHOT.jar - tapestry-annotations-4.1.1-20060827.214823-24.jar Don't know where the second jar came from, perhaps you could try "mvn clean install

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
Never mind on timetracker. It must have been something I did. I cleaned everything out and started again and no duplicate jar files were found. Irv On 9/17/06, Irv Salisbury <[EMAIL PROTECTED]> wrote: Here is a screenshot of what is in WEB-INF/lib under TimeTracker. Looks like a couple of j

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
Here is a screenshot of what is in WEB-INF/lib under TimeTracker.  Looks like a couple of jar files are getting duplicated somehow.  Probably something I am doing wrong :-(On 9/17/06, Irv Salisbury <[EMAIL PROTECTED]> wrote: Ok, so other than getting like 100 WARNING messages that resource XYZ cou

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
Ok, so other than getting like 100 WARNING messages that resource XYZ could not be loaded, I am trying to build and run the example apps. The vlib ones seem to just create jars, so they won't tell me much. The TimeTracker builds a WAR file, but when deployed, I get this error (tomcat 5.5.17 on O

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
That was exactly what I was looking for. Thanks, this will get me started. Irv On 9/17/06, Martin Strand <[EMAIL PROTECTED]> wrote: Yeah, Maven is definitely the "greased path" here. :) If you checkout the whole tapestry project, you can run "mvn -Dmaven.test.skip=true install" to compile eve

Re: Installing 4.1

2006-09-17 Thread Martin Strand
Yeah, Maven is definitely the "greased path" here. :) If you checkout the whole tapestry project, you can run "mvn -Dmaven.test.skip=true install" to compile everything and install the jars in your local repository: [INFO] Tapestry .. SUCCESS [1.

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
Thanks, I should have been clearer... My bad. I know to put those in there. In the 4.02 stuff I downloaded and got working fine, there seemed to be a directory structure that was the "greased path" to pull in hivemind. I basically copied what was in examples to get it working, called the ant ta

Re: Installing 4.1

2006-09-17 Thread Martin Strand
so I need to know what to do with those Not sure what you mean... put them in WEB-INF/lib? If you don't use Maven you will need to download the dependencies manually, they are listed here: http://tapestry.apache.org/tapestry4.1/tapestry-framework/dependencies.html You'll need to get everythin

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
Ok, so our project uses ant, not maven2. Am I best off getting the subversion like I am? Or should i get the last 4.1 build (which was a bunch of jar files so I need to know what to do with those) Thanks for being patient guys. I realize with just starting with tapestry I am biting off a bit m

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
I don't absolutely, but i need a 4.1 version. I don't understand that much about the maven repo. How do I use the 4.1.1-SNAPSHOT from the maven repo? Thanks, Irv On 9/17/06, Martin Strand <[EMAIL PROTECTED]> wrote: Are you absolutely sure you need the latest bleeding edge version? I use 4.1

Re: Installing 4.1

2006-09-17 Thread andyhot
Yep, if your project uses maven2, that page explains how to add a dep to Tapestry4.1.1-SNAPSHOT, which BTW is a build of the svn trunk. That way, you won't have to download jars manually or build from svn. >From Martin Strand <[EMAIL PROTECTED]>: > Are you absolutely sure you need the latest ble

Re: Installing 4.1

2006-09-17 Thread Martin Strand
Are you absolutely sure you need the latest bleeding edge version? I use 4.1.1-SNAPSHOT from the Maven repo and it works fine: http://tapestry.apache.org/tapestry4.1/download.html Martin On Mon, 18 Sep 2006 03:08:55 +0200, Irv Salisbury <[EMAIL PROTECTED]> wrote: Upon doing an mvn compile,

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
Upon doing an mvn compile, I am getting this warning: [WARNING] Artifact commons-logging:commons-logging:jar:1.0.4 retains local scope 'provided' overriding broader scope 'compile' given by a dependency. If this is not intended, modify or remove the local scope. then, I get an erro

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
As an update, I did get the subversion source. I was able to build most of it, but the annotations are dying upon build. I am building on OSX. So, i went into the examples directory and did mvn compile, which seemed to build fine. I am trying to figure out how to get a war file now. Did a mvn

Re: Best way for common page areas

2006-09-17 Thread Irv Salisbury
Thanks a lot! This will help. Irv On 9/17/06, Bernard <[EMAIL PROTECTED]> wrote: Irv Salisbury wrote: > If we have pages that have common headers, footers, etc, what is the best > way to do that with Tapestry? Split your common layout into smaller parts and create components ie. Footer, Head

Restarting tomcat through tapestry

2006-09-17 Thread Peter Dawn
guys, i want to provide a button within my webapp, which when the user clicks on restarts the tomcat server. is there a way to do this, and how can i do this. i am using tap3. thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED]

Passing on information from one page to another

2006-09-17 Thread Peter Dawn
guys, i have a form which a user fills in with their information. now when they click on submit, i want to display a confirmation page, displaying all the information the user has already filled in and once they confirm process the information. now how can i pass on information from one page to

Re: Best way for common page areas

2006-09-17 Thread Bernard
Irv Salisbury wrote: If we have pages that have common headers, footers, etc, what is the best way to do that with Tapestry? Split your common layout into smaller parts and create components ie. Footer, Header, TopMenu, LeftMenu etc. and reuse them. If your pages share common layout it is

Best way for common page areas

2006-09-17 Thread Irv Salisbury
If we have pages that have common headers, footers, etc, what is the best way to do that with Tapestry? We have used XSL in the past for such "templating" needs. What is the best way to accomplish this? Thanks, Irv

Re: Installing 4.1

2006-09-17 Thread Irv Salisbury
Yes, I already looked at that page as I said in my email. The first thing it tells you is you can download the official jar-only. Doing that for 4.02comes with a whole directory structure that was reasonably easy to follow how to use the examples, etc. That was fine. I then did that for 4.1 an

Re: Installing 4.1

2006-09-17 Thread Norbert Sándor
I recommend you to explore the demo applications. They already have the appropriate file structure, dependencies, etc. For download instructions, see http://tapestry.apache.org/tapestry4.1/download.html Regards, Norbi Irv Salisbury wrote: We are trying to explore Tapestry 4.1. We are also not