summaryrefslogtreecommitdiff
path: root/examples/sql/adf/EX_ADF/ViewController/public_html
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sql/adf/EX_ADF/ViewController/public_html')
-rw-r--r--examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/adfc-config.xml2
-rw-r--r--examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/faces-config.xml6
-rw-r--r--examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/trinidad-config.xml5
-rw-r--r--examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/web.xml137
4 files changed, 150 insertions, 0 deletions
diff --git a/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/adfc-config.xml b/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/adfc-config.xml
new file mode 100644
index 00000000..5d5c05bf
--- /dev/null
+++ b/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/adfc-config.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="GBK" ?>
+<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2"></adfc-config>
diff --git a/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/faces-config.xml b/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/faces-config.xml
new file mode 100644
index 00000000..17e93a16
--- /dev/null
+++ b/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/faces-config.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="GBK"?>
+<faces-config version="2.0" xmlns="http://java.sun.com/xml/ns/javaee">
+ <application>
+ <default-render-kit-id>oracle.adf.rich</default-render-kit-id>
+ </application>
+</faces-config> \ No newline at end of file
diff --git a/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/trinidad-config.xml b/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/trinidad-config.xml
new file mode 100644
index 00000000..1fa16dba
--- /dev/null
+++ b/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/trinidad-config.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="GBK"?>
+<trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
+ <skin-family>fusionFx</skin-family>
+ <skin-version>v2.1</skin-version>
+</trinidad-config> \ No newline at end of file
diff --git a/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/web.xml b/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/web.xml
new file mode 100644
index 00000000..49e4ebcd
--- /dev/null
+++ b/examples/sql/adf/EX_ADF/ViewController/public_html/WEB-INF/web.xml
@@ -0,0 +1,137 @@
+<?xml version = '1.0' encoding = 'GBK'?>
+<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
+ version="2.5">
+ <context-param>
+ <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
+ <param-value>client</param-value>
+ </context-param>
+ <context-param>
+ <param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
+ <param-value>false</param-value>
+ </context-param>
+ <context-param>
+ <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
+ <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
+ <param-value>false</param-value>
+ </context-param>
+ <context-param>
+ <description>Whether the 'Generated by...' comment at the bottom of ADF Faces HTML pages should contain version number information.</description>
+ <param-name>oracle.adf.view.rich.versionString.HIDDEN</param-name>
+ <param-value>false</param-value>
+ </context-param>
+ <context-param>
+ <description>Security precaution to prevent clickjacking: bust frames if the ancestor window domain(protocol, host, and port) and the frame domain are different. Another options for this parameter are always and never.</description>
+ <param-name>org.apache.myfaces.trinidad.security.FRAME_BUSTING</param-name>
+ <param-value>differentOrigin</param-value>
+ </context-param>
+ <context-param>
+ <param-name>javax.faces.FACELETS_SKIP_XML_INSTRUCTIONS</param-name>
+ <param-value>true</param-value>
+ </context-param>
+ <context-param>
+ <param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
+ <param-value>true</param-value>
+ </context-param>
+ <context-param>
+ <param-name>javax.faces.FACELETS_DECORATORS</param-name>
+ <param-value>oracle.adfinternal.view.faces.facelets.rich.AdfTagDecorator</param-value>
+ </context-param>
+ <context-param>
+ <param-name>javax.faces.FACELETS_RESOURCE_RESOLVER</param-name>
+ <param-value>oracle.adfinternal.view.faces.facelets.rich.AdfFaceletsResourceResolver</param-value>
+ </context-param>
+ <filter>
+ <filter-name>JpsFilter</filter-name>
+ <filter-class>oracle.security.jps.ee.http.JpsFilter</filter-class>
+ <init-param>
+ <param-name>enable.anonymous</param-name>
+ <param-value>true</param-value>
+ </init-param>
+ </filter>
+ <filter>
+ <filter-name>trinidad</filter-name>
+ <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
+ </filter>
+ <filter>
+ <filter-name>ServletADFFilter</filter-name>
+ <filter-class>oracle.adf.share.http.ServletADFFilter</filter-class>
+ </filter>
+ <filter-mapping>
+ <filter-name>JpsFilter</filter-name>
+ <url-pattern>/*</url-pattern>
+ <dispatcher>FORWARD</dispatcher>
+ <dispatcher>REQUEST</dispatcher>
+ <dispatcher>INCLUDE</dispatcher>
+ </filter-mapping>
+ <filter-mapping>
+ <filter-name>trinidad</filter-name>
+ <servlet-name>Faces Servlet</servlet-name>
+ <dispatcher>FORWARD</dispatcher>
+ <dispatcher>REQUEST</dispatcher>
+ <dispatcher>ERROR</dispatcher>
+ </filter-mapping>
+ <filter-mapping>
+ <filter-name>ServletADFFilter</filter-name>
+ <servlet-name>Faces Servlet</servlet-name>
+ <dispatcher>FORWARD</dispatcher>
+ <dispatcher>REQUEST</dispatcher>
+ </filter-mapping>
+ <servlet>
+ <servlet-name>Faces Servlet</servlet-name>
+ <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
+ <load-on-startup>1</load-on-startup>
+ </servlet>
+ <servlet>
+ <servlet-name>resources</servlet-name>
+ <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
+ </servlet>
+ <servlet>
+ <servlet-name>BIGRAPHSERVLET</servlet-name>
+ <servlet-class>oracle.adf.view.faces.bi.webapp.GraphServlet</servlet-class>
+ </servlet>
+ <servlet>
+ <servlet-name>BIGAUGESERVLET</servlet-name>
+ <servlet-class>oracle.adf.view.faces.bi.webapp.GaugeServlet</servlet-class>
+ </servlet>
+ <servlet>
+ <servlet-name>MapProxyServlet</servlet-name>
+ <servlet-class>oracle.adf.view.faces.bi.webapp.MapProxyServlet</servlet-class>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>Faces Servlet</servlet-name>
+ <url-pattern>/faces/*</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>resources</servlet-name>
+ <url-pattern>/adf/*</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>resources</servlet-name>
+ <url-pattern>/afr/*</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>BIGRAPHSERVLET</servlet-name>
+ <url-pattern>/servlet/GraphServlet/*</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>BIGAUGESERVLET</servlet-name>
+ <url-pattern>/servlet/GaugeServlet/*</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>MapProxyServlet</servlet-name>
+ <url-pattern>/mapproxy/*</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>resources</servlet-name>
+ <url-pattern>/bi/*</url-pattern>
+ </servlet-mapping>
+ <mime-mapping>
+ <extension>swf</extension>
+ <mime-type>application/x-shockwave-flash</mime-type>
+ </mime-mapping>
+ <mime-mapping>
+ <extension>amf</extension>
+ <mime-type>application/x-amf</mime-type>
+ </mime-mapping>
+</web-app>