Hi, 

this is a bug in WEB-INF/templates/vm/layouts/html/default.vm.

Changes this: 
<html>
  <head>
    <base href="$clink.External">
  
to this:

<html>
  <head>
    <base href="$clink.setURI("").External">
  
Note the new setURI(""). 
I have experienced the exact same thing. The problem seems to be reuse
of the object behind $clink (probably a pooled object, which is a good
thing). By setting the URI to "" the base ref will be correct  (if you
view the html source when the problem occurs you will see that the
base ref is wrong).
 
- Bj�rn Vidar  

On 4/16/05, Arvin Lu <[EMAIL PROTECTED]> wrote:
> After click serval links in Jetspeed page, all images on page can't
> display. (=> "X")
> 
> browser html source:
> ----------------------------
> <tr>
>    <td width="170" align="right" valign="middle"><img
> src="images/logo.jpg" width="160" height="30"></td>
>    <td width="330">&nbsp;</td>
>    <td width="500" align="right" valign="bottom"></td>
> </tr>
> 
> browser image link
> ------------------------
> http://test.com:8080/myapp/portal/images/images/logo.jpg
> 
> !! it should be
> "http://test.com:8080/myapp/portal/images/logo.jpg";
> 
> why?
> 
> 
> Jetspeed 1.6
> Tomcat 5.0.28  , 5.5.54
> OS:Fedora Core 3
> Browser : IE , Moliza
> 
> ---------------------------------------------------------------------
> 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]

Reply via email to