| com.nabhinc.portlet.base.BasePortlet com.nabhinc.portlet.xsl.XSLPortlet
XSLPortlet | public class XSLPortlet extends BasePortlet (Code) | | Portlet for converting XML document into HyperText Markup Language (HTML)
suitable for Web presentation, using the eXtensible Stylesheet Language
(XSL).
author: Padmanabh Dabke author: (c) 2003 Nabh Information Systems, Inc. All Rights Reserved. |
Field Summary | |
final public static String | DOC_FILE Parameter name (docFile ) for absolute path to the XML document .
The other alternative, which is preferable, is specified the absolute
path using file:// as the value of docURL
parameter. | final public static String | DOC_PATH Parameter name for XML document path, relative to the context path. | final public static String | DOC_URL Parameter name for XML document. | final public static String | FORMATTED_CONTENT The formatted cache content as the result. | final public static String | XSL_FILE Parameter name for absolute path to the XSL file (xslFile ).
The other alternative, which is preferable, is specified the absolute
path using file:// as the value of xslURL
parameter. | final public static String | XSL_PATH Parameter name for XSL path, relative to the context path. | final public static String | XSL_URL Parameter name for XSL URL. |
Method Summary | |
public void | doEdit(RenderRequest request, RenderResponse response) | public void | doView(RenderRequest request, RenderResponse response) | public void | init(PortletConfig config) |
DOC_FILE | final public static String DOC_FILE(Code) | | Parameter name (docFile ) for absolute path to the XML document .
The other alternative, which is preferable, is specified the absolute
path using file:// as the value of docURL
parameter.
|
DOC_PATH | final public static String DOC_PATH(Code) | | Parameter name for XML document path, relative to the context path.
The docPath has to be begun with "/".
|
DOC_URL | final public static String DOC_URL(Code) | | Parameter name for XML document. The docURL should begin with
http:// or file:// (for local document file). Either document URL, file or path
has to be specified. URL will take precedence, following the (absolute
path) file and the "relative" (to the context) path.
|
FORMATTED_CONTENT | final public static String FORMATTED_CONTENT(Code) | | The formatted cache content as the result.
cache_content is set as one of the RenderRequest
attribute.
|
XSL_FILE | final public static String XSL_FILE(Code) | | Parameter name for absolute path to the XSL file (xslFile ).
The other alternative, which is preferable, is specified the absolute
path using file:// as the value of xslURL
parameter.
|
XSL_PATH | final public static String XSL_PATH(Code) | | Parameter name for XSL path, relative to the context path.
The xslPath has to be begun with "/".
|
XSL_URL | final public static String XSL_URL(Code) | | Parameter name for XSL URL. The xslURL should begin with
http:// or file:// . Either XSL URL, file or
path has to be specified. URL will take precedence, following the
(absolute path) file and the "relative" (to the context) path.
|
doEdit | public void doEdit(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code) | | |
doView | public void doView(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code) | | |
init | public void init(PortletConfig config) throws PortletException(Code) | | |
Methods inherited from com.nabhinc.portlet.base.BasePortlet | public void debug(String method, String msg)(Code)(Java Doc) public void doAdmin(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code)(Java Doc) public void doConfig(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code)(Java Doc) protected void doDispatch(RenderRequest request, RenderResponse response) throws PortletException, java.io.IOException(Code)(Java Doc) public void doEdit(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code)(Java Doc) public void doHelp(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code)(Java Doc) public void doPreview(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code)(Java Doc) public void doView(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code)(Java Doc) public void error(String method, String msg)(Code)(Java Doc) protected String getAdminJSP(RenderRequest request) throws PortletException(Code)(Java Doc) protected String getConfigJSP(RenderRequest request) throws PortletException(Code)(Java Doc) protected String getContentJSP(RenderRequest request) throws PortletException(Code)(Java Doc) protected String getEditJSP(RenderRequest request) throws PortletException(Code)(Java Doc) protected String getHelpJSP(RenderRequest request) throws PortletException(Code)(Java Doc) protected String getLocalizedJSP(Locale locale, String path)(Code)(Java Doc) protected String getPreviewJSP(RenderRequest request) throws PortletException(Code)(Java Doc) protected String getRealPath(PortletContext pContext, String relPath)(Code)(Java Doc) public void info(String method, String msg)(Code)(Java Doc) public void init(PortletConfig config) throws PortletException(Code)(Java Doc) public void warning(String method, String msg)(Code)(Java Doc)
|
|
|