RE: what does RT Expr mean

2003-01-29 Thread pqin
Means using JSTL?

Regards,
 
 
PQ
 
This Guy Thinks He Knows Everything
This Guy Thinks He Knows What He Is Doing

-Original Message-
From: Sundar Narasimhan [mailto:[EMAIL PROTECTED]] 
Sent: January 29, 2003 9:27 AM
To: [EMAIL PROTECTED]
Subject: what does RT Expr mean

In the bottom of the documentation on the attributes of several tags I
see [RT Expr].. what does that mean? Is it documented anywhere?

Thanks.

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



RE: what does RT Expr mean

2003-01-29 Thread Jörg Maurer
RT EXPR aka Run time expression means denoted value is/may evaluated
at run-time, not at compilation time.

-Original Message-
From: Sundar Narasimhan [mailto:[EMAIL PROTECTED]]
Sent: Mittwoch, 29. Jänner 2003 15:27
To: [EMAIL PROTECTED]
Subject: what does RT Expr mean


In the bottom of the documentation on the attributes of several tags I
see [RT Expr].. what does that mean? Is it documented anywhere?

Thanks.

-
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: what does RT Expr mean

2003-01-29 Thread Quentin.Cope
Run Time expression. i.e. evaluated at run time.

Quentin

-Original Message-
From: Sundar Narasimhan [mailto:[EMAIL PROTECTED]]
Sent: 29 January 2003 14:27
To: [EMAIL PROTECTED]
Subject: what does RT Expr mean


In the bottom of the documentation on the attributes of several tags I
see [RT Expr].. what does that mean? Is it documented anywhere?

Thanks.

-
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: what does RT Expr mean

2003-01-29 Thread shirishchandra . sakhare
It means Runtime expression...

So for example for bean write tag the message attribute is marked as RT, u can 
write somethign like this..

bean:write message=%=someUrl...%/

regards,
Shirish

-Original Message-
From: sundar [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 3:27 PM
To: struts-user
Cc: sundar
Subject: what does RT Expr mean


In the bottom of the documentation on the attributes of several tags I
see [RT Expr].. what does that mean? Is it documented anywhere?

Thanks.

-
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: what does RT Expr mean

2003-01-29 Thread Justin Ashworth
In other words, attributes which allow runtime expressions can contain %=
... % whereas non-rtexpr tags cannot.

- Original Message -
From: Quentin.Cope [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 9:29 AM
Subject: RE: what does RT Expr mean


 Run Time expression. i.e. evaluated at run time.

 Quentin

 -Original Message-
 From: Sundar Narasimhan [mailto:[EMAIL PROTECTED]]
 Sent: 29 January 2003 14:27
 To: [EMAIL PROTECTED]
 Subject: what does RT Expr mean


 In the bottom of the documentation on the attributes of several tags I
 see [RT Expr].. what does that mean? Is it documented anywhere?

 Thanks.

 -
 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]



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




Re: what does RT Expr mean

2003-01-29 Thread Patrice
It means Run time expressions: the content is evaluated at the run time
(so, you can have a dynamic value for the tag's attribute value).
For example:
% string foo = foo; %
bean:define id=myAttribute value=%= foo %/

Hope it helps
Patrice

- Original Message -
From: Sundar Narasimhan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 3:26 PM
Subject: what does RT Expr mean


 In the bottom of the documentation on the attributes of several tags I
 see [RT Expr].. what does that mean? Is it documented anywhere?

 Thanks.

 -
 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: what does RT Expr mean

2003-01-29 Thread Mark Galbreath
Run Time Expression.

-Original Message-
From: Sundar Narasimhan [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 29, 2003 9:27 AM
To: [EMAIL PROTECTED]
Subject: what does RT Expr mean


In the bottom of the documentation on the attributes of several tags I see
[RT Expr].. what does that mean? Is it documented anywhere?

Thanks.

-
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: what does RT Expr mean

2003-01-29 Thread Karr, David
As others have said, it means run-time expression.  Specifically, it
means the value CAN be specified by a JSP expression scriptlet
(beginning with %=).  Ironically, calling it a run-time expression
is now a little too general, because the JSTL allows us to evaluate
values at run-time, but attribute values specified in the JSTL (the EL
part, at least) are not run-time expressions as this refers to,
because they are not JSP expression scriptlets.

-Original Message-
From: Sundar Narasimhan [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 29, 2003 6:27 AM
To: [EMAIL PROTECTED]
Subject: what does RT Expr mean

In the bottom of the documentation on the attributes of several tags I
see [RT Expr].. what does that mean? Is it documented anywhere?

Thanks.

-
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: what does RT Expr mean

2003-01-29 Thread Sundar Narasimhan
Thank you for all your replies. I had guessed RT Expr might mean that.

But now for the follow up.

As others have said, it means run-time expression.  Specifically, it
means the value CAN be specified by a JSP expression scriptlet
(beginning with %=).  Ironically, calling it a run-time expression

I'm now confused. I've been able to previously put %= % in similar
places in other JSP's that did not use the struts tags. Are you all
telling me that there are now cases when certain tags are marked w/out RT
Expr .. that these struts tags explicitly disallow me typing %= % in
those attributes?

If so that would be a step backward IMHO.

Thanks.


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




RE: what does RT Expr mean

2003-01-29 Thread Karr, David
A custom tag attribute can only use an expression scriptlet if the
attribute specification in the tag library descriptor has a value of
true for the rtexprvalue attribute.

This is not the default, because some attributes of some tags will not
work if an expression scriptlet is used to specify them.  For instance,
if an attribute value specifies the name of a scriptlet variable to
declare, then that value has to be available at compile time.  It won't
do any good to wait until run-time to get the value, as that would be
too late.

-Original Message-
From: Sundar Narasimhan [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 29, 2003 8:49 AM
To: [EMAIL PROTECTED]
Subject: Re: what does RT Expr mean

Thank you for all your replies. I had guessed RT Expr might mean that.

But now for the follow up.

As others have said, it means run-time expression.  Specifically, it
means the value CAN be specified by a JSP expression scriptlet
(beginning with %=).  Ironically, calling it a run-time expression

I'm now confused. I've been able to previously put %= % in similar
places in other JSP's that did not use the struts tags. Are you all
telling me that there are now cases when certain tags are marked w/out
RT
Expr .. that these struts tags explicitly disallow me typing %= % in
those attributes?

If so that would be a step backward IMHO.

Thanks.


-
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: what does RT Expr mean

2003-01-29 Thread Tom Carey
Just getting in to the mix here That's good to know.  The Struts taglibs
have every attribute set with rtexprvaluetrue/rtexprvalue.  But I found
that using an expression scriptlet was inconsistent.  It would work for some
tags and not for others.  Has anyone else experienced that?

-Original Message-
From: Karr, David [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 12:05 PM
To: Struts Users Mailing List
Subject: RE: what does RT Expr mean


A custom tag attribute can only use an expression scriptlet if the
attribute specification in the tag library descriptor has a value of
true for the rtexprvalue attribute.

This is not the default, because some attributes of some tags will not
work if an expression scriptlet is used to specify them.  For instance,
if an attribute value specifies the name of a scriptlet variable to
declare, then that value has to be available at compile time.  It won't
do any good to wait until run-time to get the value, as that would be
too late.

-Original Message-
From: Sundar Narasimhan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 8:49 AM
To: [EMAIL PROTECTED]
Subject: Re: what does RT Expr mean

Thank you for all your replies. I had guessed RT Expr might mean that.

But now for the follow up.

As others have said, it means run-time expression.  Specifically, it
means the value CAN be specified by a JSP expression scriptlet
(beginning with %=).  Ironically, calling it a run-time expression

I'm now confused. I've been able to previously put %= % in similar
places in other JSP's that did not use the struts tags. Are you all
telling me that there are now cases when certain tags are marked w/out
RT
Expr .. that these struts tags explicitly disallow me typing %= % in
those attributes?

If so that would be a step backward IMHO.

Thanks.


-
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]



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




RE: what does RT Expr mean

2003-01-29 Thread Karr, David
There was a time recently that I discovered that several tag attributes
had rtexprvalue being true when it should not have been.  Most of
these should be changed now in the nightly build.  As I said, any
attribute that specifies the name of a scriptlet variable to create
cannot use an rtexprvalue for the attribute value.  In general, I
believe the name of this tag attribute will be id.  I don't remember
if there were any others.

If you can demonstrate a case of an attribute that is reasonable to have
an rtexprvalue, but it isn't working, then you should report that as a
bug (but you might ask about it first here).

-Original Message-
From: Tom Carey [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 29, 2003 9:52 AM
To: Struts Users Mailing List
Subject: RE: what does RT Expr mean

Just getting in to the mix here That's good to know.  The Struts
taglibs
have every attribute set with rtexprvaluetrue/rtexprvalue.  But I
found
that using an expression scriptlet was inconsistent.  It would work for
some
tags and not for others.  Has anyone else experienced that?

-Original Message-
From: Karr, David [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 12:05 PM
To: Struts Users Mailing List
Subject: RE: what does RT Expr mean


A custom tag attribute can only use an expression scriptlet if the
attribute specification in the tag library descriptor has a value of
true for the rtexprvalue attribute.

This is not the default, because some attributes of some tags will not
work if an expression scriptlet is used to specify them.  For instance,
if an attribute value specifies the name of a scriptlet variable to
declare, then that value has to be available at compile time.  It won't
do any good to wait until run-time to get the value, as that would be
too late.

-Original Message-
From: Sundar Narasimhan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 8:49 AM
To: [EMAIL PROTECTED]
Subject: Re: what does RT Expr mean

Thank you for all your replies. I had guessed RT Expr might mean that.

But now for the follow up.

As others have said, it means run-time expression.  Specifically, it
means the value CAN be specified by a JSP expression scriptlet
(beginning with %=).  Ironically, calling it a run-time expression

I'm now confused. I've been able to previously put %= % in similar
places in other JSP's that did not use the struts tags. Are you all
telling me that there are now cases when certain tags are marked w/out
RT
Expr .. that these struts tags explicitly disallow me typing %= % in
those attributes?

If so that would be a step backward IMHO.

Thanks.


-
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]



-
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: what does RT Expr mean

2003-01-29 Thread Jayaraman Dorai
In the custom tag I have the scriptlet is not evaluated, though I rtexprvalue set as 
true. 

mytaglib:mytag myvar=%= foo %/

the value of foo is not passed in the custom tag. But the string as such %= foo % 
gets passed.

Am I missing anything else?

-Original Message-
From: Patrice [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 9:41 AM
To: Struts Users Mailing List
Subject: Re: what does RT Expr mean


It means Run time expressions: the content is evaluated at the run time
(so, you can have a dynamic value for the tag's attribute value).
For example:
% string foo = foo; %
bean:define id=myAttribute value=%= foo %/

Hope it helps
Patrice

- Original Message -
From: Sundar Narasimhan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 3:26 PM
Subject: what does RT Expr mean


 In the bottom of the documentation on the attributes of several tags I
 see [RT Expr].. what does that mean? Is it documented anywhere?

 Thanks.

 -
 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]


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




RE: what does RT Expr mean

2003-01-29 Thread Karr, David
You'd have to show your specific code, showing your TLD entries, and
most of the JSP page.

-Original Message-
From: Jayaraman Dorai [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 29, 2003 1:51 PM
To: Struts Users Mailing List
Subject: RE: what does RT Expr mean

In the custom tag I have the scriptlet is not evaluated, though I
rtexprvalue set as true. 

mytaglib:mytag myvar=%= foo %/

the value of foo is not passed in the custom tag. But the string as such
%= foo % gets passed.

Am I missing anything else?

-Original Message-
From: Patrice [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 9:41 AM
To: Struts Users Mailing List
Subject: Re: what does RT Expr mean


It means Run time expressions: the content is evaluated at the run
time
(so, you can have a dynamic value for the tag's attribute value).
For example:
% string foo = foo; %
bean:define id=myAttribute value=%= foo %/

Hope it helps
Patrice

- Original Message -
From: Sundar Narasimhan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 3:26 PM
Subject: what does RT Expr mean


 In the bottom of the documentation on the attributes of several tags I
 see [RT Expr].. what does that mean? Is it documented anywhere?

 Thanks.

 -
 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]


-
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: what does RT Expr mean

2003-01-29 Thread Jayaraman Dorai
The jsp has this 
itogo:getProviderTypeString providerType=%= new 
Integer(currProv.getType()).toString() %/
and the tld entry is 
 tag
namegetProviderTypeString/name
tagclasscom.vwks.itogo.admin.taglib.GetProviderTypeStringTag/tagclass
bodycontentempty/bodycontent
attribute
nameproviderType/name
requiredtrue/required
rtexprvaluetrue/rtexprvalue
/attribute
  /tag

Thanks
Jayaraman


-Original Message-
From: Karr, David [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 5:11 PM
To: Struts Users Mailing List
Subject: RE: what does RT Expr mean


You'd have to show your specific code, showing your TLD entries, and
most of the JSP page.

-Original Message-
From: Jayaraman Dorai [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 29, 2003 1:51 PM
To: Struts Users Mailing List
Subject: RE: what does RT Expr mean

In the custom tag I have the scriptlet is not evaluated, though I
rtexprvalue set as true. 

mytaglib:mytag myvar=%= foo %/

the value of foo is not passed in the custom tag. But the string as such
%= foo % gets passed.

Am I missing anything else?

-Original Message-
From: Patrice [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 9:41 AM
To: Struts Users Mailing List
Subject: Re: what does RT Expr mean


It means Run time expressions: the content is evaluated at the run
time
(so, you can have a dynamic value for the tag's attribute value).
For example:
% string foo = foo; %
bean:define id=myAttribute value=%= foo %/

Hope it helps
Patrice

- Original Message -
From: Sundar Narasimhan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 3:26 PM
Subject: what does RT Expr mean


 In the bottom of the documentation on the attributes of several tags I
 see [RT Expr].. what does that mean? Is it documented anywhere?

 Thanks.

 -
 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]


-
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]


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




RE: what does RT Expr mean

2003-01-29 Thread Jayaraman Dorai
The value of providerType in the tag is %= new 
Integer(currProv.getType()).toString() % and the scriptlet does not get evaluated. 
The tomcat version is 3.2.4. 

The jsp has this 
itogo:getProviderTypeString providerType=%= new 
Integer(currProv.getType()).toString() %/
and the tld entry is 
 tag
namegetProviderTypeString/name
tagclasscom.vwks.itogo.admin.taglib.GetProviderTypeStringTag/tagclass
bodycontentempty/bodycontent
attribute
nameproviderType/name
requiredtrue/required
rtexprvaluetrue/rtexprvalue
/attribute
  /tag


Thanks
Jayaraman

-Original Message-
From: Jayaraman Dorai 
Sent: Wednesday, January 29, 2003 5:19 PM
To: Struts Users Mailing List
Subject: RE: what does RT Expr mean


The jsp has this 
itogo:getProviderTypeString providerType=%= new 
Integer(currProv.getType()).toString() %/
and the tld entry is 
 tag
namegetProviderTypeString/name
tagclasscom.vwks.itogo.admin.taglib.GetProviderTypeStringTag/tagclass
bodycontentempty/bodycontent
attribute
nameproviderType/name
requiredtrue/required
rtexprvaluetrue/rtexprvalue
/attribute
  /tag

Thanks
Jayaraman


-Original Message-
From: Karr, David [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 5:11 PM
To: Struts Users Mailing List
Subject: RE: what does RT Expr mean


You'd have to show your specific code, showing your TLD entries, and
most of the JSP page.

-Original Message-
From: Jayaraman Dorai [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 29, 2003 1:51 PM
To: Struts Users Mailing List
Subject: RE: what does RT Expr mean

In the custom tag I have the scriptlet is not evaluated, though I
rtexprvalue set as true. 

mytaglib:mytag myvar=%= foo %/

the value of foo is not passed in the custom tag. But the string as such
%= foo % gets passed.

Am I missing anything else?

-Original Message-
From: Patrice [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 29, 2003 9:41 AM
To: Struts Users Mailing List
Subject: Re: what does RT Expr mean


It means Run time expressions: the content is evaluated at the run
time
(so, you can have a dynamic value for the tag's attribute value).
For example:
% string foo = foo; %
bean:define id=myAttribute value=%= foo %/

Hope it helps
Patrice

- Original Message -
From: Sundar Narasimhan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 3:26 PM
Subject: what does RT Expr mean


 In the bottom of the documentation on the attributes of several tags I
 see [RT Expr].. what does that mean? Is it documented anywhere?

 Thanks.

 -
 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]


-
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]


-
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: what does [RT Expr] mean in struts documentation

2002-08-27 Thread Galbreath, Mark

He stutters.

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 26, 2002 5:48 PM
To: Struts Users Mailing List
Subject: RE: what does [RT Expr] mean in struts documentation


Was that not answered already?

James Mitchell
Software Engineer\Struts Evangelist
Struts-Atlanta, the Open Minded Developer Network
http://www.open-tools.org/struts-atlanta




 -Original Message-
 From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]]
 Sent: Monday, August 26, 2002 4:02 PM
 To: Struts Users Mailing List
 Subject: what does [RT Expr] mean in struts documentation
 
 
 
 Hi,
 
 I was going to struts documentation, what does [RT Expr] mean???
 
 Ashish
 
 
 A$HI$H
 
 
 -
 Do You Yahoo!?
 Yahoo! Finance - Get real-time stock quotes

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

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




RE: what does [RT Expr] mean in struts documentation

2002-08-27 Thread Cliff Rowley

Shouldn't that be 'He strutters'? :P

On Tue, 2002-08-27 at 11:17, Galbreath, Mark wrote:
 He stutters.
 
 -Original Message-
 From: James Mitchell [mailto:[EMAIL PROTECTED]]
 Sent: Monday, August 26, 2002 5:48 PM
 To: Struts Users Mailing List
 Subject: RE: what does [RT Expr] mean in struts documentation
 
 
 Was that not answered already?
 
 James Mitchell
 Software Engineer\Struts Evangelist
 Struts-Atlanta, the Open Minded Developer Network
 http://www.open-tools.org/struts-atlanta
 
 
 
 
  -Original Message-
  From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]]
  Sent: Monday, August 26, 2002 4:02 PM
  To: Struts Users Mailing List
  Subject: what does [RT Expr] mean in struts documentation
  
  
  
  Hi,
  
  I was going to struts documentation, what does [RT Expr] mean???
  
  Ashish
  
  
  A$HI$H
  
  
  -
  Do You Yahoo!?
  Yahoo! Finance - Get real-time stock quotes
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]
 
 
-- 

Regards

---
 Cliff Rowley| [EMAIL PROTECTED]
 Software Engineer   |   www.doctype.co.uk
 +44 (0) 1206 514263 | www.cliffrowley.com
---


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




RE: what does [RT Expr] mean in struts documentation

2002-08-27 Thread Galbreath, Mark

aha!  Another poor soul bound to the office before dawn!  :-)

-Original Message-
From: Cliff Rowley [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 27, 2002 6:20 AM
To: Struts Users Mailing List
Subject: RE: what does [RT Expr] mean in struts documentation


Shouldn't that be 'He strutters'? :P

On Tue, 2002-08-27 at 11:17, Galbreath, Mark wrote:
 He stutters.
 
 -Original Message-
 From: James Mitchell [mailto:[EMAIL PROTECTED]]
 Sent: Monday, August 26, 2002 5:48 PM
 To: Struts Users Mailing List
 Subject: RE: what does [RT Expr] mean in struts documentation
 
 
 Was that not answered already?
 
 James Mitchell
 Software Engineer\Struts Evangelist
 Struts-Atlanta, the Open Minded Developer Network
 http://www.open-tools.org/struts-atlanta
 
 
 
 
  -Original Message-
  From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]]
  Sent: Monday, August 26, 2002 4:02 PM
  To: Struts Users Mailing List
  Subject: what does [RT Expr] mean in struts documentation
  
  
  
  Hi,
  
  I was going to struts documentation, what does [RT Expr] mean???
  
  Ashish
  
  
  A$HI$H
  
  
  -
  Do You Yahoo!?
  Yahoo! Finance - Get real-time stock quotes
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]
 
 
-- 

Regards

---
 Cliff Rowley| [EMAIL PROTECTED]
 Software Engineer   |   www.doctype.co.uk
 +44 (0) 1206 514263 | www.cliffrowley.com
---


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

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




RE: what does [RT Expr] mean in struts documentation

2002-08-27 Thread Cliff Rowley

I've been here all night :(

Eyes .. heavy .. can't .. sleep .. clients .. will .. eat .. me ..

On Tue, 2002-08-27 at 11:33, Galbreath, Mark wrote:
 aha!  Another poor soul bound to the office before dawn!  :-)
 
 -Original Message-
 From: Cliff Rowley [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 27, 2002 6:20 AM
 To: Struts Users Mailing List
 Subject: RE: what does [RT Expr] mean in struts documentation
 
 
 Shouldn't that be 'He strutters'? :P
 
 On Tue, 2002-08-27 at 11:17, Galbreath, Mark wrote:
  He stutters.
  
  -Original Message-
  From: James Mitchell [mailto:[EMAIL PROTECTED]]
  Sent: Monday, August 26, 2002 5:48 PM
  To: Struts Users Mailing List
  Subject: RE: what does [RT Expr] mean in struts documentation
  
  
  Was that not answered already?
  
  James Mitchell
  Software Engineer\Struts Evangelist
  Struts-Atlanta, the Open Minded Developer Network
  http://www.open-tools.org/struts-atlanta
  
  
  
  
   -Original Message-
   From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]]
   Sent: Monday, August 26, 2002 4:02 PM
   To: Struts Users Mailing List
   Subject: what does [RT Expr] mean in struts documentation
   
   
   
   Hi,
   
   I was going to struts documentation, what does [RT Expr] mean???
   
   Ashish
   
   
   A$HI$H
   
   
   -
   Do You Yahoo!?
   Yahoo! Finance - Get real-time stock quotes
  
  --
  To unsubscribe, e-mail:
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
  
  --
  To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
  
  
 -- 
 
 Regards
 
 ---
  Cliff Rowley| [EMAIL PROTECTED]
  Software Engineer   |   www.doctype.co.uk
  +44 (0) 1206 514263 | www.cliffrowley.com
 ---
 
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]
 
 
-- 

Regards

---
 Cliff Rowley| [EMAIL PROTECTED]
 Software Engineer   |   www.doctype.co.uk
 +44 (0) 1206 514263 | www.cliffrowley.com
---


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




RE: what does [RT Expr] mean in struts documentation

2002-08-26 Thread Kevin A. Smith

RT Expr = RunTime Expression

-Original Message-
From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 26, 2002 4:08 PM
To: Struts Users Mailing List
Subject: what does [RT Expr] mean in struts documentation



 


A$HI$H


-
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes

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




RE: what does [RT Expr] mean in struts documentation

2002-08-26 Thread Sri Sankaran

Run Time Expression.  For example if the value attribute of tag foo is annotated [RT 
Expr] it means you can embed JSP scriptlets such as:

html:foo value='%=hi!%'/

Sri

-Original Message-
From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]] 
Sent: Monday, August 26, 2002 4:08 PM
To: Struts Users Mailing List
Subject: what does [RT Expr] mean in struts documentation



 


A$HI$H


-
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes

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




RE: what does [RT Expr] mean in struts documentation

2002-08-26 Thread James Mitchell

Was that not answered already?

James Mitchell
Software Engineer\Struts Evangelist
Struts-Atlanta, the Open Minded Developer Network
http://www.open-tools.org/struts-atlanta




 -Original Message-
 From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]]
 Sent: Monday, August 26, 2002 4:02 PM
 To: Struts Users Mailing List
 Subject: what does [RT Expr] mean in struts documentation
 
 
 
 Hi,
 
 I was going to struts documentation, what does [RT Expr] mean???
 
 Ashish
 
 
 A$HI$H
 
 
 -
 Do You Yahoo!?
 Yahoo! Finance - Get real-time stock quotes

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