Extension of
com.opensymphony.module.sitemesh.Page providing access to HTML data.
The page is parsed and the <title> , <head>
(minus the <title> ) and <body> are split
into chunks. These can then be used by a
com.opensymphony.module.sitemesh.Decorator .
Properties are also extracted from the HTML.
Page Properties
When the page is parsed, values from certain tags are added to the properties
to allow easy access to them. The following tags have properties extracted from them.
-
HTML Tag
All attributes of the <html>
tag shall be added as properties.
-
TITLE Tag
The contents of the <title> tag
shall be added as the title property.
-
META Tags
All the <meta> tags with
name and content attributes
will be added with the meta prefix.
-
BODY Tag
All attributes of the <body> tag
shall be added as properties with the
body prefix.
Example
My Funky Page
...
...
template=funky
title=My Funky Page
meta.description=Description of my page.
meta.author=Bob
body.text=#ff00ff
body.bgcolor=green
author: Joe Walnes version: $Revision: 1.3 $ |