Any idea how to default a value?

2006-06-29 Thread Mark Stang
I have a radio group: Accept the license agreement Reject the license agreement This works fine. The user must select ACCEPT to move on. However, I need to be able to set the selected value to ACCEPT without user input. I would prefer to use a HIDDEN value defaulted to ACCEPT.

RE: Is it possible to "swap components"?

2006-06-30 Thread Mark Stang
Paul, We use a technique where we have a component that renders components dynamically. Basically, we put them all in a "page" that is never displayed. Then at runtime, we dynamically render a particular component. regards, Mark -Original Message- From: Paul Tongyoo [mailto:[EMAIL P

RE: Components inside component

2006-07-17 Thread Mark Stang
Our technique is for the Web Designer to create a "sample" of the screen. Sometimes we don't have time to wait so developers design the screen, but we prefer the former. Once the screen is designed, there may be custom components that developers create. For the most part, we don't have a lot

RE: help content implementation

2006-07-18 Thread Mark Stang
We take Frame output and create a set of HTML pages. These are linked-in via a popup. -Original Message- From: Konstantin Ignatyev [mailto:[EMAIL PROTECTED] Sent: Tue 7/18/2006 9:47 AM To: Tapestry users Subject: Re: help content implementation Overlib doing Ajax calls does the trick

RE: Tapestry 5 Discussions

2006-08-01 Thread Mark Stang
I don't think I agree. We switched to Tapestry from Struts because it gave us a component framework. Internally, we have three projects on Tapestry. One is 4.x and the other two are 3.x. For the 3.x projects we have looked at 4.x and while we would like to be on the latest and greatest, the

RE: Tapestry 5 Discussions

2006-08-01 Thread Mark Stang
t very impressed by tools and they don't think that tool support should be the reason that people choose a platform, but to some they are very important. -Original Message- From: Mark Stang [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 10:25 AM To: Tapestry users; Tapestry

How to specify a Component not in my Library?

2006-08-01 Thread Mark Stang
I have a component in my Library that has the same name as one of the Tapestry Components. How can I specify the "real" component? thanks, Mark

RE: How to specify a Component not in my Library?

2006-08-01 Thread Mark Stang
Give your library a prefix by defining it in a .library file? ie markStangsLibrary:ComponentName (I think you should literally make it markStangsLibrary, will make it sound more official ) On 8/1/06, Mark Stang <[EMAIL PROTECTED]> wrote: > > I have a component in my Library that

RE: How to specify a Component not in my Library?

2006-08-01 Thread Mark Stang
specify a Component not in my Library? I have to admit that I have no idea. If no one else come up with a quick answer I'll dig and find one. Does Framework: not work? On 8/2/06, Mark Stang <[EMAIL PROTECTED]> wrote: > > Jesse, > Thanks for the quick reply, however the components e

RE: This would be a handy tool

2006-08-03 Thread Mark Stang
I am using JBoss with Jetty and I just copy my .war over and it redeploys automatically. generate-branding-library: generate-tapestry-holder: pingfederate-war: [jar] Building jar: /home/mstang/projects/ping/devel/HuronPeak/build/pf-war/lib/pingbranded.jar [war] Building war: /home

RE: This would be a handy tool

2006-08-03 Thread Mark Stang
OGNL can be executed directly from java code. So, rather than just calling the methods, just execute the ognl... That checks the ognl and the methods at the same time. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thu 8/3/2006 8:03 AM To: Tapestry users Su

RE: RoR

2006-08-03 Thread Mark Stang
I think we should all reply to him. -Original Message- From: Wim V [mailto:[EMAIL PROTECTED] Sent: Thu 8/3/2006 11:43 AM To: users@tapestry.apache.org Subject: Re: RoR The problem is plain and simple: This mailing list keeps pumping messages into my inbox while I want it to stop. I alr

RE: This would be a handy tool

2006-08-03 Thread Mark Stang
I have always felt that the only true way to test is live. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thu 8/3/2006 11:53 AM To: Tapestry users Subject: RE: This would be a handy tool hm... won't work. Consider: ognl:visit.user.login Suppose that you're us

RE: RoR

2006-08-03 Thread Mark Stang
Or we can let him terrorize the list... -Original Message- From: Konstantin Ignatyev [mailto:[EMAIL PROTECTED] Sent: Thu 8/3/2006 12:13 PM To: Tapestry users Subject: RE: RoR He is not the first person having problem with unsubscribe functionality. It is better be fixed. --- Mark

RE: disable form component

2006-08-04 Thread Mark Stang
It is possible, most components have a "disabled" attribute. I usually have a radio button or check box do a submit. Once the submit happens, a flag is set on the server, which can then be used by the individual components to "enbable" or "disable" them. HTH, Mark -Original Message

RE: Re: Single HTML, many Pages

2006-08-04 Thread Mark Stang
Have you tried "RenderBlock"? Or a Choose? You seem to have one page and want to have different views within that one page. Does that sound like what you are trying to do? Or do you have many pages and want to re-use components across those pages? Or do you have "real" tapestry components?

RE: disable form component

2006-08-04 Thread Mark Stang
It appears you are trying to programatically change a component on the server. However, that seems to require you understand the api for the components. Most components have a paramter: This is from the component reference for Tapestry 3, for the TextField Component. Parameters NameType

Tapestry 3 Iterating over a map.

2006-08-16 Thread Mark Stang
Can I treat it like a list? Anyone know what the syntax is? I don't want to convert it back and forth... thanks, Mark

RE: Tapestry 3 Iterating over a map.

2006-08-16 Thread Mark Stang
Keys. And I want to print the values. -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Wed 8/16/2006 1:39 PM To: 'Tapestry users' Subject: RE: Tapestry 3 Iterating over a map. Do you want to iterate the keys or the values? -Original Message-----

RE: Tapestry 3 Iterating over a map.

2006-08-16 Thread Mark Stang
properties. -Original Message----- From: Mark Stang [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 16, 2006 3:43 PM To: Tapestry users; Tapestry users Subject: RE: Tapestry 3 Iterating over a map. Keys. And I want to print the values. -Original Message- From: James Carman [mailto:[EMAIL PROTE

RE: Tapestry 3 Iterating over a map.

2006-08-16 Thread Mark Stang
, you'd call entry.getKey() or entry.getValue() (they're of type Map.Entry). -----Original Message- From: Mark Stang [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 16, 2006 3:48 PM To: Tapestry users; Tapestry users Subject: RE: Tapestry 3 Iterating over a map. That s

RE: Tapestry 3 Iterating over a map.

2006-08-16 Thread Mark Stang
8/16/2006 2:25 PM To: 'Tapestry users' Subject: RE: Tapestry 3 Iterating over a map. It should because a java.util.Set (the entrySet() method returns a Set) is a java.util.Collection. -Original Message----- From: Mark Stang [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 16, 20

RE: How to setup 4.1 MAVEN2 snapshot

2006-08-16 Thread Mark Stang
There is a free maven book. It start you out with installing maven and then building a simple app. Better Builds with Maven. It is available as a free download (.pdf). However, is he trying to build tapestry with maven or his own app? Which problem are we trying to solve :-)? regards, Mark

RE: Tapestry 3 Iterating over a map.

2006-08-16 Thread Mark Stang
Iterating over a map. First, is there a reason you have appAuthMap twice, or just a typo? Second, Try: ognl:appAuthMap.entrySet() ognl is trying to get the object with the key "entrySet" instead of calling the method entrySet. Hope this helps. On 8/16/06, Mark Stang <[EMAIL PROTECTE

RE: Search Text

2006-08-17 Thread Mark Stang
I would like to be able to search all my pages for text. Which is different from the current page. Thoughts? -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Thu 8/17/2006 3:55 PM To: 'Tapestry users' Subject: RE: Search Text Okay, cool. I am one of those guys w

RE: Search Text

2006-08-17 Thread Mark Stang
mponents though...Well...You could, but it wouldn't be very performant. On 8/17/06, Mark Stang <[EMAIL PROTECTED]> wrote: > > I would like to be able to search all my pages for text. Which is > different from the current page. > > Thoughts? > > > -Origina

RE: Progress Bar

2006-08-29 Thread Mark Stang
Some of us have a large projects. Or could it be that Tapestry > 3. is so unstable as to be not worth the effort. First, there isn't a Spindle product, then there is and now there isn't. Then 4.x is the Holy Grail of web frameworks until Howard starts making is so incompatible wi

RE: Progress Bar

2006-08-29 Thread Mark Stang
ject: Re: Progress Bar It is an open source project, anyone can make Tap3 / 4 / 5 anything they want it to be. I work on 4.X because that's what I currently enjoy. On 8/29/06, Mark Stang <[EMAIL PROTECTED]> wrote: > > Some of us have a large projects. Or could it be that Tape

RE: Progress Bar

2006-08-29 Thread Mark Stang
anytime soon. I don't know what else to say...I'm trying my best to do what I can...I can't do everything :( On 8/29/06, Mark Stang <[EMAIL PROTECTED]> wrote: > > Th original problem was that 3.x needed to evolve. So, 4.x was the next > generation. However, as How

RE: TapIDEA future, post "Time to move on"

2006-08-29 Thread Mark Stang
Hey, if you are that good, switch to a plain vanilla version of vi and let's see how "good" you are... -Original Message- From: Konstantin Ignatyev [mailto:[EMAIL PROTECTED] Sent: Tue 8/29/2006 3:01 PM To: Tapestry users Subject: Re: TapIDEA future, post "Time to move on" The keyword h

RE: TapIDEA future, post "Time to move on"

2006-08-29 Thread Mark Stang
8/29/2006 3:32 PM To: Tapestry users Subject: RE: TapIDEA future, post "Time to move on" Huh? What are you talking about? --- Mark Stang <[EMAIL PROTECTED]> wrote: > Hey, if you are that good, switch to a plain vanilla > vers

RE: Tap3 file system help

2006-09-05 Thread Mark Stang
Peter, I believe it is built into Tapestry kinda sorta: public void download(IRequestCycle cycle) { if (getOkToDownload()) { HttpServletResponse response = getPage().getRequestCycle().getRequestContext().getResponse(); if (getNoCache())

RE: I'm trying to get the marvelous BeanForm component working with tap 4.1

2006-09-05 Thread Mark Stang
Switch to Gentoo and have a current system. :-). -Original Message- From: Josh Long [mailto:[EMAIL PROTECTED] Sent: Sun 9/3/2006 1:44 AM To: Tapestry users Subject: Re: I'm trying to get the marvelous BeanForm component working with tap 4.1 ROFL! that's the best response ever!! I'm so

RE: Obtaining check box data from a form

2006-09-07 Thread Mark Stang
Peter, Checkboxes are like any other field. HTML: Allowable SAML Bindings Artifact

RE: Retrieving Tapestry 4 components from outside Tapestry

2006-09-07 Thread Mark Stang
Unless I am completely off the mark, I typically pass the IRequestCycle to my non-tapestry components and just use it. Once you have the Request Cycle, you can get the page you need and ask it for the component. Name: Mark J. Stang Title: Senior Engineer/Architect office: +1 303.468.2900 mobile

RE: Retrieving Tapestry 4 components from outside Tapestry

2006-09-07 Thread Mark Stang
I have a "Holder" page that I store about 125 components. That page is never viewed. When I want to display one, I render it on a different page. However, the missing link might be that components are not like java components. They exist in a pool, 1-to-n of each kind. They are cycled into

RE: Obtaining check box data from a form

2006-09-07 Thread Mark Stang
Pretty much. There may be a way, but it is coded in the HTML. However, I don't think you need to do so. Or rather I don't think you should need the values that were displayed, they should be hard-coded text in an HTML form. Why do you need the text that is in the HTML? Name: Mark J. Stang T

RE: Obtaining check box data from a form

2006-09-07 Thread Mark Stang
The example in the Component Reference doesn't provide the simplest example... Name: Mark J. Stang Title: Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Thu 9/7/2006 4:38 PM To:

RE: Form upload and download

2006-09-07 Thread Mark Stang
Try this: The Upload is a Tapestry Component. It expects a method with the signature like below. HTML: Filename  *

External link/Popup from a Form Submit

2006-09-07 Thread Mark Stang
Hi, I have Tapestry 3 question about externallinks/popups. I have an external link popup that I am executing from a link. Does anyone have any ideas about how to do the same from within a form submit? Or from a button? thanks, Mark

RE: Expired Session message

2006-09-13 Thread Mark Stang
Does anyone know the license on Xtile:Timeout? thanks, Mark Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: andyhot [mailto:[EMAIL PROTECTED] Sent: Tue 9/12/2006 5:09 PM To: Tapestry users Subject: Re: Expi

RE: Expired Session message

2006-09-13 Thread Mark Stang
[mailto:[EMAIL PROTECTED] Sent: Wed 9/13/2006 10:44 AM To: Tapestry users Subject: Re: Expired Session message Since it's sitting in the tapestry repos under contrib it ~better~ be asf 2 ;) On 9/13/06, Mark Stang <[EMAIL PROTECTED]> wrote: > > Does anyone know the license on Xtile:Ti

RE: [announce] BeanForm 0.4

2006-09-14 Thread Mark Stang
I don't suppose there is a version for 3.x? Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Wed 9/13/2006 8:10 PM To: Tapestry users Subject: Re: [announce] BeanF

RE: Expired Session message

2006-09-14 Thread Mark Stang
In your web.xml: 30 You probably want something less... Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thu 9/14/2006 7:00 AM T

RE: [announce] BeanForm 0.4

2006-09-14 Thread Mark Stang
BTW, what is the license for this component? thanks, Mark Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Martin Strand [mailto:[EMAIL PROTECTED] Sent: Wed 9/13/2006 5:06 PM To: Tapestry users Subject: Re:

RE: RadioGroup component

2006-09-15 Thread Mark Stang
Try something like this: This has multiple Radio buttions, Checkboxes and condidtionals.    

RE: Multiple buttons in one form

2006-09-15 Thread Mark Stang
A row of buttons: Some are conditionally visible. The .page has the "listener" methods. Each button has it's own listener. This is part of our navigation for all screens.  

RE: Very strange performance problem

2006-09-19 Thread Mark Stang
Title: RE: Very strange performance problem Another way is to set up the java opts: JAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n $JAVA_OPTS" Then in Eclipse set up a remote java application.  Start up the application, have Eclipse connect to it and the pu

Any idea what is causing this?

2006-10-02 Thread Mark Stang
Could not load class com.pingidentity.component.card.ConnMgmt from [EMAIL PROTECTED](file:/home/mstang/projects/ping/devel/pingfederate/server/default/tmp/deploy/tmp29417pingfederate-exp.war/WEB-INF/lib/thirdparty.jar,file:/home/mstang/projects/ping/devel/pingfederate/server/default/tmp/deploy/tmp

RE: Any idea what is causing this?

2006-10-02 Thread Mark Stang
Never mind, I think it is a configuration issue... Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Mark Stang Sent: Mon 10/2/2006 5:16 PM To: Tapestry users; Tapestry users Subject: Any idea what is causing

How do I create a link...

2006-10-03 Thread Mark Stang
I need to create a link to an asset in Tapestry 3. Basically, I have a .pdf which isn't in my "context". Thoughts on how to link to it? thanks, mark Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity

RE: Equivalent of JSP Includes?

2006-10-04 Thread Mark Stang
Did you ever get a satisfactory solution? I was on vacation... Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Mike Grundvig [mailto:[EMAIL PROTECTED] Sent: Sun 9/24/2006 9:11 AM To: Tapestry users Subject:

RE: BeanForm for TP3?

2006-10-04 Thread Mark Stang
Did you ever make any progress on this? thanks, Mark Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Darío Vasconcelos [mailto:[EMAIL PROTECTED] Sent: Mon 9/25/2006 9:34 AM To: Tapestry users Subject: Re: B

RE: Thoughts about performance monitoring in Tapestry

2006-10-09 Thread Mark Stang
Try JProfiler. It can track where you application is spending all of its time. One thing that came up earlier is that OGNL is a hog. However, we haven't found Tapestry to be the issue, but the rest of the app... regards, Mark Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 m

RE: Thoughts about performance monitoring in Tapestry

2006-10-09 Thread Mark Stang
t the owner of this app, so big configuration changes is not an option either. Regards, On 10/9/06, Mark Stang <[EMAIL PROTECTED]> wrote: > Try JProfiler. It can track where you application is spending all of its > time. One thing that came up earlier is that OGNL is a hog. However, we

RE: Thoughts about performance monitoring in Tapestry

2006-10-09 Thread Mark Stang
3.507.2833 Ping Identity -Original Message- From: Konstantin Ignatyev [mailto:[EMAIL PROTECTED] Sent: Mon 10/9/2006 4:21 PM To: Tapestry users Subject: RE: Thoughts about performance monitoring in Tapestry --- Mark Stang <[EMAIL PROTECTED]> wrote: > > The time spent

RE: Thoughts about performance monitoring in Tapestry

2006-10-10 Thread Mark Stang
ssage- From: Robin Ericsson [mailto:[EMAIL PROTECTED] Sent: Tue 10/10/2006 2:16 AM To: Tapestry users Subject: Re: Thoughts about performance monitoring in Tapestry On 10/9/06, Mark Stang <[EMAIL PROTECTED]> wrote: > Try JProfiler. It can track where you application is spending all

Customizing the Shell Component

2006-10-10 Thread Mark Stang
Hi, I am using Tapestry 3.x and wondering how to customize my .css file with the Shell component. I want to be able to swap out my Shell component by putting it inside of a Library. If I do that can I still just reference it in my .html? I don't know why I think it is any different from any o

RE: Re: Customizing the Shell Component

2006-10-16 Thread Mark Stang
: Re: Customizing the Shell Component Mark Stang wrote: > Hi, > I am using Tapestry 3.x and wondering how to customize my .css file with the > Shell component. I want to be able to swap out my Shell component by putting > it inside of a Library. If I do that can I still just refere

RE: defining paths for templates

2006-10-24 Thread Mark Stang
I started out with all in the WEB-INF directory. If you want to put the .html/.jwc files in the same directory as the .page you can, Tapestry will find it automatically. Then the .java file can be anywhere, you just specify it's location in the .jwc. That is the simplest model. A bit more co

RE: defining paths for templates

2006-10-24 Thread Mark Stang
Sample Library. PingCommon.library: http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd";> In the java package (/com/pingidentity/component/common/), copy in the .jwc, .html and .library. Jar this up and put it on the classpath. This goes into the .application file.

RE: defining paths for templates

2006-10-24 Thread Mark Stang
Yeah, I don't know how things have changed from 3.x to 4.02. Maybe Jesse can help Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tue 10/24/2006 11:40

RE: defining paths for templates

2006-10-24 Thread Mark Stang
I am sure that is one option. My goal was creating Tapestry Libraries where the components are all packaged together in a single jar. Currently, I have about five different libraries. A couple are used to "swap out" branding. Where in my case the same component exists for different brands, b

RE: Line precise error reporting redirecting

2006-10-31 Thread Mark Stang
Is this done the same in 3.x or different, if different, how is it done? We would like to display a simple page and then log the stack trace... Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Jabbar [mailto

RE: Changing template locations

2006-11-02 Thread Mark Stang
Package them as Tapestry Libraries. Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Steve Shucker [mailto:[EMAIL PROTECTED] Sent: Thu 11/2/2006 4:59 PM To: Tapestry users Subject: Changing template locations

RE: @Body tag Onload form focus problem

2006-11-09 Thread Mark Stang
This sets it to the first field in the form. HTH, Mark Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Thu 11/9/2006 3:31 PM To: tap

RE: @Body tag Onload form focus problem

2006-11-09 Thread Mark Stang
Title: RE: @Body tag Onload form focus problem The .js didn't come through, so I jar'd it up.  Unjar it and drop it in where it belongs. Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message----- From: Mark

EnumPropertySelectionModel - Tapestry 3.x

2006-11-16 Thread Mark Stang
Does anyone have one that is available that doesn't use a resource bundle? Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity

Help with ognl...

2006-11-22 Thread Mark Stang
I am trying to create a 3.x parameter: I was using a "boolean", but there is a bug in 3.x where sometimes it doesn't pass the value in, so I switched to a Boolean, but can't seem to come up with a valid default value. Unable to parse expression 'ognl:@[EMAIL PROTECTED]'. binding:

RE: Help with ognl...

2006-11-22 Thread Mark Stang
already ognl. So ognl is chocking on the ognl: part. Try something like: default-value="false" :) Robert Mark Stang wrote: > I am trying to create a 3.x parameter: > > direction="in" default-value="ognl:@[EMAIL PROTECTED]"/> > > I was using

RE: Jesse, Howard has removed your comment.[OT]

2006-12-13 Thread Mark Stang
Before we go ANY further, we must resolve the curly brace alignment issue. Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Daniel Jue [mailto:[EMAIL PROTECTED] Sent: Wed 12/13/2006 10:01 AM To: Tapestry users

RE: Jesse, Howard has removed your comment.[OT]

2006-12-13 Thread Mark Stang
etty? Postgres or MySql? > > > On 12/13/06, Mark Stang <[EMAIL PROTECTED]> wrote: > > Before we go ANY further, we must resolve the curly brace alignment > issue. > > > > Mark J. Stang > > Senior Engineer/Architect > > office: +1 303.468.2900 &g

RE: Can you comment on this?

2006-12-20 Thread Mark Stang
After 18 months of developing with Tapestry 3.03, I don't know what my next framework will be, but you can bet it will be Tapestry. Having worked with Model 1 Frameworks using JSP's and then working with Struts 1.x, I have had envough of anything related to .jsp or taglibs. I have no experienc

Passing a parameter in OGNL?

2007-07-11 Thread Mark Stang
Does anyone know how to pass a parameter to a method in OGNL? thanks, Mark Mark J. Stang Software Engineer office: +1 303.468.2900 Ping Identity

RE: Pages Library

2007-07-19 Thread Mark Stang
Does this work in 3.x? regards, Mark Mark J. Stang Software Engineer office: +1 303.468.2900 Ping Identity -Original Message- From: Renat Zubairov [mailto:[EMAIL PROTECTED] Sent: Thu 7/19/2007 10:18 AM To: Tapestry users Subject: Re: Pages Library That's quite a fancy feature of Tap

RE: [T5] instantiate a component on the fly

2007-08-17 Thread Mark Stang
In the past, and I haven't heard anything from Howard to make me think differently, this was not possible. Howard's view has been that there is no need to create a component on the fly. Instead the standard procedure is to embed it in a page and hide it until needed. hth. Mark J. Stang Softwa

RE: Recursion of components

2007-08-21 Thread Mark Stang
You can always "render" them from a different page. Store them in a different page and draw as needed. I have one page, I just substitute different components as needed. Mark J. Stang Software Engineer office: +1 303.468.2900 Ping Identity -Original Message- From: Thiago H de Paula

StaleLink issue

2007-08-29 Thread Mark Stang
Hi I am getting this when I click a radio button which changes my UI via conditionals. If I go back and forth multiple times, eventually it breaks. I am using AnySubmits to cause the form to be submitted. I understand that during the submit I made a change that the rewind doesn't like. My que

RE: Comment about Tapestry's growth

2007-09-07 Thread Mark Stang
Or if you want to get anything done, you need A LOT of programmers. Mark J. Stang Software Engineer office: +1 303.468.2900 Ping Identity -Original Message- From: kranga [mailto:[EMAIL PROTECTED] Sent: Fri 9/7/2007 2:14 PM To: Tapestry users Subject: Comment about Tapestry's growth ht

RE: Select component with Enums

2007-09-18 Thread Mark Stang
That was my solution, but then someone complained that it wasn't really a valid part of the list. Mark J. Stang Software Engineer office: +1 303.468.2900 Ping Identity -Original Message- From: Robin Helgelin [mailto:[EMAIL PROTECTED] Sent: Tue 9/18/2007 2:44 PM To: Tapestry users Subje

RE: T5: How do i reference components and pages from libraries in templates ?

2007-10-03 Thread Mark Stang
I like that idea! Mark J. Stang Software Engineer office: +1 303.468.2900 Ping Identity -Original Message- From: Howard Lewis Ship [mailto:[EMAIL PROTECTED] Sent: Wed 10/3/2007 11:25 AM To: Tapestry users Subject: Re: T5: How do i reference components and pages from libraries in templa

RE: Fwd: Google Alert - "Tapestry 5"

2007-10-11 Thread Mark Stang
For JavaRebel, take a look at the licensing... Mark J. Stang Software Engineer office: +1 303.468.2900 Ping Identity -Original Message- From: Andreas Andreou on behalf of andyhot Sent: Thu 10/11/2007 8:16 AM To: Tapestry users Subject: Re: Fwd: Google Alert - "Tapestry 5" Man, this JU

RE: Fwd: Google Alert - "Tapestry 5"

2007-10-11 Thread Mark Stang
. Stang Software Engineer office: +1 303.468.2900 Ping Identity -Original Message- From: Andreas Andreou on behalf of andyhot Sent: Thu 10/11/2007 12:23 PM To: Tapestry users Subject: Re: Fwd: Google Alert - "Tapestry 5" Mark Stang wrote: > For JavaRebel, take a look at

RE: Tapestry 5 Roadmap

2007-10-17 Thread Mark Stang
I am still on 3.03, not even 3.04 for one of my projects. When Tapestry 5 gets where it is going, then maybe we will upgrade. I think the one thing that nobody is saying is that each version of Tapestry is in production use. So, there are 3.0x in production and 4.x in production. T5 will even

RE: OT: Better Java performance on Linux

2007-01-19 Thread Mark Stang
Inge, The SE should be a client version and designed for quick GUI start-up. Whereas the EE version is the "server" version and starts slower, but is designed for long-time running. They have different garbage collection strategies. HTH, Mark Mark J. Stang Senior Engineer/Architect office: +

RE: OT: Better Java performance on Linux

2007-01-22 Thread Mark Stang
d the most efficient environment possible for those 3 things. jboss is restarted 1 or 2 times a day, while tomcat is restarted many times a day. What would be most efficient on such a setup, a server (EE) or a client (SE) JVM? On 1/19/07, Mark Stang <[EMAIL PROTECTED]> wrote: > > Inge, > Th

FW: Tapestry 3.0.4..not on mirrors

2007-01-29 Thread Mark Stang
All, We were looking to upgrade from 3.03. to 3.04 and it appears that 3.04 isn't on the mirrors. Thoughts? Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Dave Smith Sent: Mon 1/29/2007 6:48 AM To:

RE: FW: Tapestry 3.0.4..not on mirrors

2007-01-30 Thread Mark Stang
e dev list for the last 3.04 thread. Cheers, Nick. Mark Stang wrote: > All, > We were looking to upgrade from 3.03. to 3.04 and it appears that 3.04 isn't > on the mirrors. > > Thoughts? > > Mark J. Stang > Senior Engineer/Architect > office: +1 303.468.2900 >

RE: FW: Tapestry 3.0.4..not on mirrors

2007-01-30 Thread Mark Stang
referring to this thread: "3.0.4 and repetitive method name/signature problem (class enhancement)" http://thread.gmane.org/gmane.comp.java.tapestry.user/43121 Take it to the dev list when you've read that. (I'm not a dev, so as to who is managing 3 now ...) Cheers, Nick. Mark

Tapestry 3.x DEAD

2007-01-31 Thread Mark Stang
well show that 3.x is dead and tell everyone that it will no longer be maintained. Mark Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -----Original Message- From: Mark Stang Sent: Tue 1/30/2007 11:33 PM To: Tapestry users; Tapestry us

RE: Tapestry 3.x DEAD

2007-01-31 Thread Mark Stang
1:27 PM To: Tapestry users Cc: [EMAIL PROTECTED] Subject: Re: Tapestry 3.x DEAD I don't know what's wrong with the dynamic url stuff (I did test it before updating the main site), but you can always get it from: http://www.apache.org/dist/tapestry/ On 1/31/07, Mark Stang <[EMAIL

RE: Tapestry 3.x DEAD

2007-01-31 Thread Mark Stang
icient backport-util counterparts - unless you are using more recent jres in production where it looks like the old synchronized speed issues have potentially been fixed) On 1/31/07, Mark Stang <[EMAIL PROTECTED]> wrote: > Jesse, > I don't think the dynamic url stuff is the iss

RE: Page Re-direction

2007-02-16 Thread Mark Stang
Peter, That is going to be a bit of a problem. For every request from the client you can get a response. If you request the PDF then you get the PDF in the response. Telling Tapestry to send another page will override the download. Which is the behavior you are seeing. Our solution which we

RE: My crap development environment

2007-02-16 Thread Mark Stang
We use Jetty embedded in JBoss. From a developer point of view, I can re-compile my code using maven and copy the war over to my version of JBoss in about 8 seconds. I kill and restart the server in 17 seconds. When I want to debug, I tell Eclipse to connect up to JBoss and everything works.

Component timeouts and an NPE

2007-02-16 Thread Mark Stang
Hi, I am seeing Tapestry 3 components with values which is good, say a ArrayList: private ArrayList displayList; If I don't touch the component for 10 minutes or maybe a little longer, then the "displayList" is null. I assume that this is due to Tapestry putting it back in the pool. However,

RE: Variable numbers of rows

2007-02-19 Thread Mark Stang
Which version of Tapestry are you using? Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From: Michael Prescott [mailto:[EMAIL PROTECTED] Sent: Mon 2/19/2007 2:29 PM To: tapestry-user@jakarta.apache.org Subject: Va

RE: Foreach, iterate over several collections at once

2007-02-21 Thread Mark Stang
Hi, The Foreach can call your class with the "current" index and set it. The "getters" use that value to return the "current" value for each list. HTH, Mark Mark J. Stang Senior Engineer/Architect office: +1 303.468.2900 mobile: +1 303.507.2833 Ping Identity -Original Message- From:

RE: Foreach, iterate over several collections at once

2007-02-21 Thread Mark Stang
#x27;re saying, although it sounds very interesting. I can't imagine how I could make Foreach update the current value for each list, using only one Foreach. Or could I use nested Foreachs? If you would be so kind as to give me a small example, I would be very grateful... Dario. On 2/21/07, M

RE: Page Validation

2007-02-23 Thread Mark Stang
Hi, This seems to work for us. public class ValidatePage extends BasePage implements PageValidateListener { public void pageValidate(PageEvent event) { Mediator mediator = MgmtFactory.getMediator(); if (!mediator.isConsole()) { IPage messagePage

RE: Page Validation

2007-02-26 Thread Mark Stang
null) > throw new PageRedirectException("Login"); } > return page; >} > } > > -- A protected page > > public class ProtectedPage >extends BasePage > { > } > > > Something along those lines ;) > > Cheers, > --

  1   2   >