Re: rtexprvalue ignored? - fixed

2003-12-19 Thread Rodrigo Ruiz
Hi, just a tip for portability:

WebSphere JSP parser will complain when you use an expression containing 
the same string delimiter used for the attribute. This means that

attr=%= aaa %

will produce a compiler error. To avoid this, simply use a different 
quotation marks for the attribute itself, as in:

attr='%= aaa %'

I personally consider this a bug in WebSphere, but in the meanwhile the 
change does not hurt :-)

Hope it helps,
Rodrigo Ruiz
Josh G wrote:

At 11:47 AM 19/12/2003, you wrote:

This is what i was telling you before, the attribute has to be either a
expression or a constant, not both. so add the _off.gif part to the
tmp variable before you put it in the tags attribute.
like this:
% String temp = sectionNames[i] + _off.gif; %
image:local file=%= temp  % /
thats what i've done before to fix the problem.

dave


Ah, gotcha... Now I see. I misread it, and thought you meant that my 
problem was within the %= %, not in the tag attribute. Cheers mate.

If it helps you any, I also got

image:local file=%= tmp + off.gif % /

to work, since I'm doing a lot of these lines and assigning tmp to 
sectionNames[i] above the block.

(sent this back to the list so it turns up in the archive, sorry if 
this pisses anyone off).

Again, thanks, have a beer on me.

-Josh



 He likes to run, And then the thing with the.. person..
   ... Oh boy, that monkey is going to pay.
   [ Josh 'G' McDonald ]  --  [ Pirion Systems, Brisbane]

[ 07 3257 0490 ]  --  [ 0415 784 825 ]  --  [ http://www.gfunk007.com/ ]

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


rtexprvalue ignored?

2003-12-18 Thread Josh G
Hi All,
I've tracked down my problem, and despite tomcat's bogus error reporting 
the problem is this code:

image:local file=%= tmp %_off.gif /

Which should work as far as I can tell, since I have rtexprvalue set to 
true in the .tld file. Is this just being ignored for some reason?

Also, is it correct for tomcat to 500 if I move the rtexprvalue element 
in the xml above the required or name elements?

Cheers,
-Josh
 He likes to run, And then the thing with the.. person..
   ... Oh boy, that monkey is going to pay.
   [ Josh 'G' McDonald ]  --  [ Pirion Systems, Brisbane]

[ 07 3257 0490 ]  --  [ 0415 784 825 ]  --  [ http://www.gfunk007.com/ ] 

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


Re: rtexprvalue ignored?

2003-12-18 Thread David Evans
This is what i was telling you before, the attribute has to be either a
expression or a constant, not both. so add the _off.gif part to the
tmp variable before you put it in the tags attribute.

like this:
% String temp = sectionNames[i] + _off.gif; %
image:local file=%= temp  % /

thats what i've done before to fix the problem.

dave


On Thu, 2003-12-18 at 20:33, Josh G wrote:
 Hi All,
 I've tracked down my problem, and despite tomcat's bogus error reporting 
 the problem is this code:
 
 image:local file=%= tmp %_off.gif /
 
 Which should work as far as I can tell, since I have rtexprvalue set to 
 true in the .tld file. Is this just being ignored for some reason?
 
 Also, is it correct for tomcat to 500 if I move the rtexprvalue element 
 in the xml above the required or name elements?
 
 Cheers,
 -Josh
 
 
   He likes to run, And then the thing with the.. person..
 ... Oh boy, that monkey is going to pay.
 
 [ Josh 'G' McDonald ]  --  [ Pirion Systems, Brisbane]
 
 [ 07 3257 0490 ]  --  [ 0415 784 825 ]  --  [ http://www.gfunk007.com/ ] 
 
 
 -
 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: rtexprvalue ignored? - fixed

2003-12-18 Thread Josh G
At 11:47 AM 19/12/2003, you wrote:
This is what i was telling you before, the attribute has to be either a
expression or a constant, not both. so add the _off.gif part to the
tmp variable before you put it in the tags attribute.
like this:
% String temp = sectionNames[i] + _off.gif; %
image:local file=%= temp  % /
thats what i've done before to fix the problem.

dave
Ah, gotcha... Now I see. I misread it, and thought you meant that my 
problem was within the %= %, not in the tag attribute. Cheers mate.

If it helps you any, I also got

image:local file=%= tmp + off.gif % /

to work, since I'm doing a lot of these lines and assigning tmp to 
sectionNames[i] above the block.

(sent this back to the list so it turns up in the archive, sorry if this 
pisses anyone off).

Again, thanks, have a beer on me.

-Josh



 He likes to run, And then the thing with the.. person..
   ... Oh boy, that monkey is going to pay.
   [ Josh 'G' McDonald ]  --  [ Pirion Systems, Brisbane]

[ 07 3257 0490 ]  --  [ 0415 784 825 ]  --  [ http://www.gfunk007.com/ ] 

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


Re: rtexprvalue ignored? - fixed

2003-12-18 Thread David Evans
On Thu, 2003-12-18 at 20:53, Josh G wrote:
 At 11:47 AM 19/12/2003, you wrote:
 This is what i was telling you before, the attribute has to be either a
 expression or a constant, not both. so add the _off.gif part to the
 tmp variable before you put it in the tags attribute.
 
 like this:
 % String temp = sectionNames[i] + _off.gif; %
 image:local file=%= temp  % /
 
 thats what i've done before to fix the problem.
 
 dave
 
 Ah, gotcha... Now I see. I misread it, and thought you meant that my 
 problem was within the %= %, not in the tag attribute. Cheers mate.
 
 If it helps you any, I also got
 
 image:local file=%= tmp + off.gif % /
 
 to work, since I'm doing a lot of these lines and assigning tmp to 
 sectionNames[i] above the block.
Right on, I hadn't tried it that way before. I guess as long as the
whole attribute inside the expression tag, any expression will work. 
Makes sense. Have a good one.
 Again, thanks, have a beer on me.
no problem, and i'm heading out to have one now. 

dave

 
 -Josh



 
 
 
   He likes to run, And then the thing with the.. person..
 ... Oh boy, that monkey is going to pay.
 
 [ Josh 'G' McDonald ]  --  [ Pirion Systems, Brisbane]
 
 [ 07 3257 0490 ]  --  [ 0415 784 825 ]  --  [ http://www.gfunk007.com/ ] 
 
 
 -
 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]