Java Doc for PageRequestKeys.java in  » Content-Management-System » openedit » com » openedit » page » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Content Management System » openedit » com.openedit.page 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.openedit.page.PageRequestKeys

All known Subclasses:   com.openedit.modules.scriptrunner.ScriptModule,  com.openedit.BaseWebPageRequest,
PageRequestKeys
public interface PageRequestKeys (Code)

author:
   Matthew Avery
author:
   Created on Feb 15, 2004


Field Summary
final public static  StringALLOWPATHREQUESTACTIONS
     Since not all path actions can be reliably secured we allow all actions to be turned off by default.
final public static  StringBROWSER
     This is a Browser object, created from the request header that provides some convenience method for dealing with different browser types and OSes when different behavior is required.
final public static  StringCLASSTOOL
     This nifty class instantiation tool is something we found on the Velocity mailing list.
final public static  StringCONTENT
     An alias for the "page" variable Use "$content" in the Velocity page.
final public static  StringFILE_PATH
     This is a relative chunk of the filepath used to help locate relative resources within a Velocity page.
final public static  StringHOME
     The servlet context path, e.g.
final public static  StringINNERLAYOUTOVERRIDE
     Allows an action to specify an alternative inner layout.
final public static  StringLAYOUTOVERRIDE
     Allows an action to specify an alternative layout.
final public static  StringOUTPUT_STREAM
     The Servlet output stream Use "$out" in the Velocity page.
final public static  StringOUTPUT_WRITER
     A writer that wraps the servlet output stream Use "$wout" in the Velocity page.
final public static  StringPAGE
     A DynamicPage object representing the current page.
final public static  StringPAGES
     A PageStreamer object which allows dynamic pages to make a callback to the OpenEditEngine in order tor stream in content from other pages.
final public static  StringREQUEST
     The HttpServletRequest Use "$request" in the Velocity page.
final public static  StringRESPONSE
     The HttpServletResponse Use "$response" in the Velocity page.
final public static  StringSERVLET_CONTEXT
     The ServletContext Use "$application" in the Velocity page.
final public static  StringSESSION
     The HttpSession Use "$session" in the Velocity page.
final public static  StringURL_PATH
     This is a relative chunk of the URL path used to help locate relative resources.
final public static  StringURL_UTILITIES
     The JPublish URLUtilities object which provides several static methods for manipulating paths.
final public static  StringUSER
     If a user is logged in to Open Edit, the User object will be available in Velocity.
final public static  StringWEB_SERVER_PATH
     This is the full address of the web server.



Field Detail
ALLOWPATHREQUESTACTIONS
final public static String ALLOWPATHREQUESTACTIONS(Code)
Since not all path actions can be reliably secured we allow all actions to be turned off by default.



BROWSER
final public static String BROWSER(Code)
This is a Browser object, created from the request header that provides some convenience method for dealing with different browser types and OSes when different behavior is required. Use "$browser" in the Velocity page.



CLASSTOOL
final public static String CLASSTOOL(Code)
This nifty class instantiation tool is something we found on the Velocity mailing list. It is used for instantiating new classes within a Velocity page. Use "$classtool" in the Velocity page.



CONTENT
final public static String CONTENT(Code)
An alias for the "page" variable Use "$content" in the Velocity page.



FILE_PATH
final public static String FILE_PATH(Code)
This is a relative chunk of the filepath used to help locate relative resources within a Velocity page. for a url of /content/about/about.html -> /content/about Use "$filepath" in the Velocity page.



HOME
final public static String HOME(Code)
The servlet context path, e.g. if the root of an Open Edit site is at http://mydomain.org/oesite, the "home" variable will contain the String "oesite". Use "$home" in the Velocity page.



INNERLAYOUTOVERRIDE
final public static String INNERLAYOUTOVERRIDE(Code)
Allows an action to specify an alternative inner layout. This applies to all inner pages NOLAYOUT is a valid value



LAYOUTOVERRIDE
final public static String LAYOUTOVERRIDE(Code)
Allows an action to specify an alternative layout. NOLAYOUT is a valid value



OUTPUT_STREAM
final public static String OUTPUT_STREAM(Code)
The Servlet output stream Use "$out" in the Velocity page.



OUTPUT_WRITER
final public static String OUTPUT_WRITER(Code)
A writer that wraps the servlet output stream Use "$wout" in the Velocity page.



PAGE
final public static String PAGE(Code)
A DynamicPage object representing the current page. Page properties can be accessed by the "get" method of this object. Use "$page" in the Velocity page.



PAGES
final public static String PAGES(Code)
A PageStreamer object which allows dynamic pages to make a callback to the OpenEditEngine in order tor stream in content from other pages. Use "$page" in the Velocity page.



REQUEST
final public static String REQUEST(Code)
The HttpServletRequest Use "$request" in the Velocity page.



RESPONSE
final public static String RESPONSE(Code)
The HttpServletResponse Use "$response" in the Velocity page.



SERVLET_CONTEXT
final public static String SERVLET_CONTEXT(Code)
The ServletContext Use "$application" in the Velocity page.



SESSION
final public static String SESSION(Code)
The HttpSession Use "$session" in the Velocity page.



URL_PATH
final public static String URL_PATH(Code)
This is a relative chunk of the URL path used to help locate relative resources. If a resource is located at http://mydomain.org/oesite/foo/index.html, the urlpath variable will contain the String "oesite/foo" so that we can easily find, for instance, oesite/foo/navbar.html Use "$urlpath" in the Velocity page.



URL_UTILITIES
final public static String URL_UTILITIES(Code)
The JPublish URLUtilities object which provides several static methods for manipulating paths. Use "$url_util" in the Velocity page.



USER
final public static String USER(Code)
If a user is logged in to Open Edit, the User object will be available in Velocity. Use "$user" in the Velocity page.



WEB_SERVER_PATH
final public static String WEB_SERVER_PATH(Code)
This is the full address of the web server. i.e. http://www.abc.com:80





www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.