ggolden 02/04/30 07:44:29
Added: webapp/WEB-INF/templates/vm/layouts/html content.vm
webapp/WEB-INF/templates/vm/screens/html content.vm
Log:
A screen and layout that will deliver the contents of
a portal element without the normal control additions and
without the normal layout navigation.
Will be used when the request url has:
/template/content/.
The request url must also have the portal element id:
/js_peid/xxxx.
Revision Changes Path
1.1
jakarta-jetspeed/webapp/WEB-INF/templates/vm/layouts/html/content.vm
Index: content.vm
===================================================================
## content.vm
## Turbine Velocity Screen Layout to show just the screen contents
## (the normal navigation is not included)
## $Header:
/home/cvs/jakarta-jetspeed/webapp/WEB-INF/templates/vm/layouts/html/content.vm,v 1.1
2002/04/30 14:44:28 ggolden Exp $
<html>
<head>
<base href="$clink.External" />
<link href="$clink.setURI("css/default.css").Absolute" type="text/css"
rel="stylesheet" />
</head>
<body bgcolor="#ffffff">
$screen_placeholder
</body>
</html>
1.1
jakarta-jetspeed/webapp/WEB-INF/templates/vm/screens/html/content.vm
Index: content.vm
===================================================================
## content.vm
## Turbine Velocity Screen to show just the content of a single portal element
## as specified by the request js_peid
## (the portlet control is not included)
## $Header:
/home/cvs/jakarta-jetspeed/webapp/WEB-INF/templates/vm/screens/html/content.vm,v 1.1
2002/04/30 14:44:29 ggolden Exp $
#if ($data.Js_peid)
$jetspeed.getPortalElement($data.Js_peid)
#else
<p>Portal Element Id missing</p>
#end
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>