Source Code Cross Referenced 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 Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.openedit.page;
002:
003:        /**
004:         * @author Matthew Avery
005:         * 
006:         * Created on Feb 15, 2004
007:         *
008:         */
009:        public interface PageRequestKeys {
010:            /**
011:             * The HttpServletRequest
012:             * 
013:             * Use "$request" in the Velocity page.
014:             */
015:            public static final String REQUEST = "request";
016:            /**
017:             * The HttpServletResponse
018:             * 
019:             * Use "$response" in the Velocity page.
020:             */
021:            public static final String RESPONSE = "response";
022:            /**
023:             * The HttpSession
024:             * 
025:             * Use "$session" in the Velocity page.
026:             */
027:            public static final String SESSION = "session";
028:            /**
029:             * The ServletContext
030:             * 
031:             * Use "$application" in the Velocity page.
032:             */
033:            public static final String SERVLET_CONTEXT = "application";
034:            /** 
035:             * The Servlet output stream
036:             * 
037:             * Use "$out" in the Velocity page.
038:             */
039:            public static final String OUTPUT_STREAM = "out";
040:            /**
041:             * A writer that wraps the servlet output stream
042:             * 
043:             * Use "$wout" in the Velocity page.
044:             */
045:            public static final String OUTPUT_WRITER = "wout";
046:            /**
047:             * The JPublish URLUtilities object which provides several static methods
048:             * for manipulating paths.
049:             * 
050:             * Use "$url_util" in the Velocity page.
051:             */
052:            public static final String URL_UTILITIES = "url_util";
053:            /**
054:             * The servlet context path, e.g. if the root of an Open Edit site is at
055:             * http://mydomain.org/oesite, the "home" variable will contain the String
056:             * "oesite".
057:             * 
058:             * Use "$home" in the Velocity page.
059:             */
060:            public static final String HOME = "home";
061:
062:            /**
063:             * This is the full address of the web server. i.e. http://www.abc.com:80
064:             */
065:            public static final String WEB_SERVER_PATH = "webserverpath";
066:            /**
067:             * This is a relative chunk of the URL path used to help locate relative resources.
068:             * If a resource is located at http://mydomain.org/oesite/foo/index.html, the
069:             * urlpath variable will contain the String "oesite/foo" so that we can easily
070:             * find, for instance, oesite/foo/navbar.html
071:             * 
072:             * Use "$urlpath" in the Velocity page.
073:             */
074:            public static final String URL_PATH = "urlpath";
075:            /** 
076:             * This is a relative chunk of the filepath used to help locate relative resources
077:             * within a Velocity page. for a url of /content/about/about.html -> /content/about
078:             * 
079:             * Use "$filepath" in the Velocity page.
080:             */
081:            public static final String FILE_PATH = "filepath";
082:
083:            /**
084:             * This is a Browser object, created from the request header that provides
085:             * some convenience method for dealing with different browser types and OSes
086:             * when different behavior is required.
087:             * 
088:             * Use "$browser" in the Velocity page.
089:             */
090:            public static final String BROWSER = "browser";
091:            /**
092:             * If a user is logged in to Open Edit, the User object will be available
093:             * in Velocity.
094:             * 
095:             * Use "$user" in the Velocity page.
096:             */
097:            public static final String USER = "user";
098:            /**
099:             * A DynamicPage object representing the current page.  Page properties 
100:             * can be accessed by the "get" method of this object.
101:             * 
102:             * Use "$page" in the Velocity page.
103:             */
104:            public static final String PAGE = "page";
105:
106:            /**
107:             * An alias for the "page" variable
108:             * 
109:             * Use "$content" in the Velocity page.
110:             */
111:            public static final String CONTENT = "content";
112:            /**
113:             * This nifty class instantiation tool is something we found on the Velocity
114:             * mailing list.  It is used for instantiating new classes within a Velocity
115:             * page.
116:             * 
117:             * Use "$classtool" in the Velocity page.
118:             */
119:            public static final String CLASSTOOL = "classtool";
120:
121:            /**
122:             * A PageStreamer object which allows dynamic pages to make a callback to the
123:             * OpenEditEngine in order tor stream in content from other pages.
124:             * 
125:             * Use "$page" in the Velocity page.
126:             */
127:            public static final String PAGES = "pages";
128:
129:            /**
130:             * Since not all path actions can be reliably secured we allow all actions to be turned off by
131:             * default.
132:             */
133:            public static final String ALLOWPATHREQUESTACTIONS = "allowpathrequestactions";
134:
135:            /**
136:             * Allows an action to specify an alternative layout. 
137:             * NOLAYOUT is a valid value
138:             */
139:            public static final String LAYOUTOVERRIDE = "layoutoverride";
140:
141:            /**
142:             * Allows an action to specify an alternative inner layout. This applies to all inner pages
143:             * NOLAYOUT is a valid value
144:             */
145:            public static final String INNERLAYOUTOVERRIDE = "innerlayoutoverride";
146:
147:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.