Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/overview.html
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/overview.html?rev=1301047&view=auto
==============================================================================
--- cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/overview.html (added)
+++ cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/overview.html Thu Mar 15 15:28:28 2012
@@ -0,0 +1,220 @@
+<!DOCTYPE html>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<html>
+ <head>
+ <title>Cocoon 3 Samples and Integration Tests: Overview </title>
+ <link type="text/css" href="read/style.css" rel="stylesheet"/>
+ <!--[if lt IE 9]>
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
+ <![endif]-->
+ <base target="_blank"/>
+ </head>
+ <body>
+ <header>
+ <section id="logo">
+ <img src="images/cocoon.gif" alt="Cocoon logo"/>
+ </section>
+ <section id="page-title">
+ <h1>Cocoon 3 Samples and Integration Tests: Overview </h1>
+ </section>
+ </header>
+ <article>
+ <section id="map-read">
+ <h2>map:read</h2>
+ <ul>
+ <li><a href="read/javascript-resource-explicit">Javascript Resource</a>: Test explicit setting of mime-type.</li>
+ <li><a href="read/javascript-resource-implicit.js">Javascript Resource</a>: Test automatic setting of mime-type.</li>
+ </ul>
+ </section>
+ <section id="sax-pipelines">
+ <h2>SAX Pipelines</h2>
+ <ul>
+ <li><a href="sax-pipeline/simple">SAX Pipeline</a>: Simplest possible pipeline that has a generator, transformer and serializer.</li>
+ <li><a href="sax-pipeline/simple-xhtml">SAX Pipeline</a>: Same as before but creates XHTML as output format.</li>
+ <li><a href="sax-pipeline/simple-xml">SAX Pipeline</a>: Same as before but creates XML as output format.</li>
+ <li><a href="sax-pipeline/simple-xsd">SAX Pipeline</a>: Same as before but creates XML as output format after validating the input.</li>
+ <li><a href="sax-pipeline/unauthorized">Status code</a>: Set status code '401' at pipeline.</li>
+ </ul>
+ </section>
+ <section id="stax-pipelines">
+ <h2>StAX Pipelines</h2>
+ <ul>
+ <li><a href="stax-pipeline/simple">StAX Pipeline</a>: Simplest possible pipeline that has a generator and serializer but processing is based on StAX instead of SAX!</li>
+ </ul>
+ </section>
+ <section id="caching">
+ <h2>Caching</h2>
+ <ul>
+ <li><a href="caching-pipeline/off">Non-Caching pipeline</a>: The pipeline doesn't cache (although it's components support it)</li>
+ <li><a href="caching-pipeline/on">Caching pipeline</a>: The result of the pipeline is cached for 1.5 seconds. The next request that occurs
+ after the cached response has expires, triggers a reexecution of the pipeline in the same thread.</li>
+ <li><a href="async-caching-pipeline/on">Async-Caching pipeline</a>: The result of the pipeline is cached for 1.5 seconds. The next request that occurs
+ after the cached response has expires, triggers a reexecution of the pipeline in a separate thread.</li>
+ <li><a href="/expires/caching-pipeline/on">Expires-Caching pipeline</a>: The pipeline returns a cached result for defined period,
+ independently from whether components used in the pipeline support caching or not. The pipeline result is cached for 2 seconds. The
+ recreation of the pipeline result is done in the same thread as the servlet request.</li>
+ <li><a href="/expires/async-caching-pipeline/on">Expires-Async-Caching pipeline</a>: The pipeline returns a cached result for defined period,
+ independently from whether components used in the pipeline support caching or not. The pipeline result is cached for 2 seconds. The recreation of the
+ pipeline result is done in a separate thread than the servlet request.</li>
+ </ul>
+ </section>
+ <section id="error-handling">
+ <h2>Error handling</h2>
+ <ul>
+ <li><a href="123456789123456789">ResourceNotFound</a>: The error handler catches all exceptions, in this case no matcher matches.</li>
+ <li><a href="error-handling/custom-error">Custom error - Sitemap</a>: Catch a custom error in the sitemap.</li>
+ <li><a href="error-handling/custom-error-per-pipeline-error-handling">Custom error - Pipeline</a>: Catch a custom error using a per-pipeline error handler.</li>
+ </ul>
+ </section>
+ <section id="servlet-service">
+ <h2>Servlet-Service-Components and servlet: protocol</h2>
+ <ul>
+ <li><a href="ssf/local">servlet:/</a>: Using a local servlet service.</li>
+ <li><a href="ssf/calling-a-transformer-servlet-service">Servlet service transformer</a>: Call another pipeline that performs a transformation.</li>
+ <li><a href="ssf/calling-a-serializer-servlet-service">Servlet service serializer</a>: Call another pipeline that performs the serialization step.</li>
+ </ul>
+ </section>
+ <section id="expression-language">
+ <h2>Expression language</h2>
+ <ul>
+ <li><a href="expression-language/jexl?fileName=simple">request attribute (jexl)</a>: Accessing a request attribute using Jexl.</li>
+ <li><a href="expression-language/map-numbers/simple">sitemap parameter</a>: Accessing a sitemap parameter.</li>
+ <li><a href="expression-language/map-named-parameters/simple">sitemap parameter</a>: Accessing a sitemap parameter using named parameters in the pattern.</li>
+ <li><a href="expression-language/nested/simple">nested matchers</a>: Accessing a parameter from one level above.</li>
+ </ul>
+ </section>
+ <section id="redirects">
+ <h2>Redirects</h2>
+ <ul>
+ <li><a href="redirect/www.orf.at">Temporary (302)</a>: Temporary redirect to orf.at.</li>
+ <li><a href="redirect/sax-pipeline/simple-xml">servlet</a>: Redirect to a servlet: URL.</li>
+ </ul>
+ </section>
+ <section id="object-model">
+ <h2>Object Model</h2>
+ <ul>
+ <li><a href="object-model/request-parameters?a=1&b=2&c=3">All request parameters</a>: Print all request parameters.</li>
+ </ul>
+ </section>
+ <section id="i18n">
+ <h2>i18N</h2>
+ <ul>
+ <li><a href="i18n/localefrombrowser">Get locale from browser's preferred</a>: Translate with locale from browser's preferred.</li>
+ <li>Get locale from request parameter: <a href="i18n/localefromparameter?lang=de">de</a>|<a href="i18n/localefromparameter?lang=es">es</a>|<a href="i18n/localefromparameter?lang=it">it</a>: Translate with locale from request parameter.</li>
+ </ul>
+ </section>
+ <section id="advanced-matching">
+ <h2>Advanced Matching</h2>
+ <p>(using a JEXL expression to set a test value)</p>
+ <ul>
+ <li><a href="advanced-matching?myparam=11">Equals matcher</a> (using an JEXL expression to set a test value)</li>
+ <li><a href="advanced-matching?myparam=22">Regular expression</a> matcher (using an JEXL expression to set a test value)</li>
+ <li><a href="advanced-matching?myparam=55">Ends-with matcher</a> (using an JEXL expression to set a test value)</li>
+ <li><a href="advanced-matching">Otherwise</a> Reach the otherwise section</li>
+ <li><a href="advanced-matching-2?myparam=1">Uncomplete pipeline: when</a> Adding a transformer</li>
+ <li><a href="advanced-matching-2?myparam=2">Uncomplete pipeline: otherwise</a> Adding a transformer</li>
+ <li><a href="advanced-matching-3?myparam=1&yourparam=2">Two matchers:</a> Two matchers that add components to a pipeline.</li>
+ </ul>
+ </section>
+ <section id="aggregation">
+ <h2>Aggregation</h2>
+ <ul>
+ <li><a href="aggregation/include-transformer">Include-Transformer</a>: Aggregate XML using the IncludeTransformer.</li>
+ <li><a href="aggregation/xinclude-transformer">XInclude-Transformer</a>: Aggregate XML using the XIncludeTransformer, working according to the <a href="http://www.w3.org/TR/xinclude/">XInclude specification</a>.</li>
+ </ul>
+ </section>
+ <section id="link-rewriting">
+ <h2>Link rewriting</h2>
+ <ul>
+ <li><a href="linkrewriting/regexplinkrewriter-transformer">RegexpLinkRewriter-Transformer</a>: Rewrite links according to given regular expressions.</li>
+ </ul>
+ </section>
+ <section id="xslt">
+ <h2>XSLT</h2>
+ <ul>
+ <li><a href="xslt/main">XSLT Transformation</a>: An XSLT transformation that includes stylesheets via file and servlet protocol.</li>
+ </ul>
+ </section>
+ <section id="sitemap-rest-controller">
+ <h2>Sitemap REST Controller</h2>
+ <ul>
+ <li><a href="controller/abc/foo?reqparam=1">GET request</a>: Invoke a controller and pass two parameters</li>
+ <li><a href="controller/conditional-get/abc/foo?reqparam=1">Conditional GET request </a>: A controller that implements the o.a.c.rest.controller.method.ConditionalGet
+ interface and provides a cache key.</li>
+ </ul>
+ </section>
+ <section id="jaxrs-rest-controller">
+ <h2>JAX-RS REST Controller</h2>
+ <ul>
+ <li><a href="jax-rs/sample/parameter-passing/5?req-param=7">JAX-RS REST endpoint</a>: A JAX-RS resources as a controller that returns a Cocoon resources.</li>
+ </ul>
+ </section>
+ <section id="fop">
+ <h2>FOP</h2>
+ <ul>
+ <li><a href="fop/test.pdf">PDF</a>: Create a PDF document by using Apache FOP.</li>
+ </ul>
+ </section>
+ <section id="encoding-serializers">
+ <h2>Encoding Serializers</h2>
+ <ul>
+ <li><a href="serializers/exml">eXML</a>: A XML serializer not relying on the JAXP API.</li>
+ <li><a href="serializers/exhtml">eXHTML</a>: A pedantinc XHTML serializer encoding all recognized entities with their proper HTML names.</li>
+ <li><a href="serializers/ehtml">eHTML</a>: A serializer converting XHTML into plain old HTML.</li>
+ </ul>
+ </section>
+ <section id="cocoon-wicket-integration">
+ <h2>Cocoon-Wicket integration</h2>
+ <ul>
+ <li><a href="wicket/">Wicket Reader</a>: A reader defers redirects a request to a Wicket application.</li>
+ </ul>
+ </section>
+ <section id="stringtemplate">
+ <h2>StringTemplate</h2>
+ <ul>
+ <li><a href="string-template/generator">StringTemplateGenerator</a>: A generator using <a href="http://www.stringtemplate.org/">StringTemplate</a> template engine.</li>
+ <li><a href="string-template/transformer">StringTemplateTransformer</a>: A transformer using <a href="http://www.stringtemplate.org/">StringTemplate</a> template engine.</li>
+ </ul>
+ </section>
+ </article>
+ <nav>
+ <ul>
+ <li><a href="#map-read" target="_self">map:read</a></li>
+ <li><a href="#sax-pipelines" target="_self">Sax Pipelines</a></li>
+ <li><a href="#stax-pipelines" target="_self">StAX Pipelines</a></li>
+ <li><a href="#caching" target="_self">Caching</a></li>
+ <li><a href="#error-handling" target="_self">Error handling</a></li>
+ <li><a href="#servlet-service" target="_self">Servlet-Service-Components and servlet: protocol</a></li>
+ <li><a href="#expression-language" target="_self">Expression language</a></li>
+ <li><a href="#redirects" target="_self">Redirects</a></li>
+ <li><a href="#object-model" target="_self">Object Model</a></li>
+ <li><a href="#i18n" target="_self">i18N</a></li>
+ <li><a href="#advanced-matching" target="_self">Advanced Matching</a></li>
+ <li><a href="#aggregation" target="_self">Aggregation</a></li>
+ <li><a href="#link-rewriting" target="_self">Link rewriting</a></li>
+ <li><a href="#xslt" target="_self">XSLT</a></li>
+ <li><a href="#sitemap-rest-controller" target="_self">Sitemap REST Controller</a></li>
+ <li><a href="#jaxrs-rest-controller" target="_self">JAX-RS REST Controller</a></li>
+ <li><a href="#fop" target="_self">fop</a></li>
+ <li><a href="#encoding-serializers" target="_self">Encoding Serializers</a></li>
+ <li><a href="#cocoon-wicket-integration" target="_self">Cocoon-Wicket integration</a></li>
+ <li><a href="#stringtemplate" target="_self">StringTemplate</a></li>
+ </ul>
+ </nav>
+ </body>
+</html>
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/cocoon.gif
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/cocoon.gif?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/cocoon.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/favicon.ico
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/favicon.ico?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/favicon.ico
------------------------------------------------------------------------------
svn:mime-type = image/x-ico
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/javascript-resource
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/javascript-resource?rev=1301047&view=auto
==============================================================================
--- cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/javascript-resource (added)
+++ cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/javascript-resource Thu Mar 15 15:28:28 2012
@@ -0,0 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+function x1() {
+ alert('x1');
+}
\ No newline at end of file
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/javascript-resource.js
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/javascript-resource.js?rev=1301047&view=auto
==============================================================================
--- cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/javascript-resource.js (added)
+++ cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/javascript-resource.js Thu Mar 15 15:28:28 2012
@@ -0,0 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+function x() {
+ alert('x');
+
+}
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/style.css
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/style.css?rev=1301047&view=auto
==============================================================================
--- cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/style.css (added)
+++ cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/read/style.css Thu Mar 15 15:28:28 2012
@@ -0,0 +1,117 @@
+/**
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+**/
+body {
+ width: 960px;
+ margin: 5px auto;
+ text-align: center;
+ font-family: Arial,Helvetica,sans-serif;
+ font-size:15px;
+}
+
+h1 {
+ font-size:22px;
+ text-shadow: 2px 2px 3px #000;
+}
+
+h2 {
+ font-size: 18px;
+ text-shadow: 0px 0px 1px #000;
+}
+
+#logo {
+ float: left;
+ width:35%;
+ box-shadow: none;
+ border:none;
+}
+
+#page-title {
+ float: right;
+ width: 60%;
+ box-shadow:none;
+ border:none;
+ padding-top:0px;
+}
+
+section, footer, nav {
+ background-color: #FFFFFF;
+ border: 1px solid #1178C2;
+ box-shadow: 5px 5px 2px #888;
+ border-radius: 0.8em 0.8em 0.8em 0.8em;
+ padding: 5px 5px 10px;
+ margin-bottom: 10px;
+}
+
+header {
+ height: 60px;
+ margin:1%;
+ width: 98%;
+}
+
+article {
+ width: 60%;
+ margin-right:1%;
+}
+
+header, article {
+ display: block;
+ float: right;
+ text-align: left;
+}
+
+a:link, a:visited {
+ color: blue;
+ font-size: 0.8em;
+ font-weight: bold;
+ text-decoration: none;
+}
+
+li {
+ list-style-type: square;
+}
+
+nav {
+ float: left;
+ text-align: left;
+ width: 35%;
+ margin-left:1%;
+ background-color: #D1C7C7;
+}
+
+nav ul {
+ border-top: 1px solid #E7E2D7;
+ list-style: none outside none;
+ margin: 14px 0;
+ padding: 0;
+}
+nav li {
+ list-style: none outside none;
+ margin: 0;
+ padding: 0;
+}
+nav li a:link, nav li a:visited {
+ border-bottom: 1px solid #E7E2D7;
+ float: left;
+ padding: 3px 1%;
+ width: 96%;
+ color: black;
+}
+nav li a:hover {
+ background: none repeat scroll 0 0 #F2F1EC;
+}
\ No newline at end of file
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/add-paragraph.xslt
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/add-paragraph.xslt?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/add-paragraph.xslt
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple-1.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple-1.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple-1.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple-2.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple-2.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple-2.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple.xsd
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple.xsd?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple.xsd
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple.xslt
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple.xslt?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/simple.xslt
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/unauthorized.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/unauthorized.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sax-pipeline/unauthorized.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sitemap.xmap
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sitemap.xmap?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/sitemap.xmap
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/string-template/template.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/string-template/template.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/string-template/template.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/xslt/main.xslt
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/xslt/main.xslt?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/xslt/main.xslt
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/xslt/sub-file.xslt
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/xslt/sub-file.xslt?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/xslt/sub-file.xslt
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/xslt/sub-servlet.xslt
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/xslt/sub-servlet.xslt?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/COB-INF/xslt/sub-servlet.xslt
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/properties/cocoon-sample.properties
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/properties/cocoon-sample.properties?rev=1301047&view=auto
==============================================================================
--- cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/properties/cocoon-sample.properties (added)
+++ cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/properties/cocoon-sample.properties Thu Mar 15 15:28:28 2012
@@ -0,0 +1,16 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+testProperty=test
\ No newline at end of file
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-controller.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-controller.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-controller.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-jaxrs.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-jaxrs.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-jaxrs.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-servlet-service.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-servlet-service.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-servlet-service.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-sitemap-components-optional.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-sitemap-components-optional.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-sitemap-components-optional.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-sitemap-components.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-sitemap-components.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-sitemap-components.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-wicket.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-wicket.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/spring/cocoon-sample-wicket.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/xpatch/cocoon-sample-block-deployment.xweb
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/xpatch/cocoon-sample-block-deployment.xweb?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/META-INF/cocoon/xpatch/cocoon-sample-block-deployment.xweb
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/org/apache/cocoon/sample/wicket/HelloWicketPage.html
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/org/apache/cocoon/sample/wicket/HelloWicketPage.html?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/org/apache/cocoon/sample/wicket/HelloWicketPage.html
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/org/apache/cocoon/sample/wicket/OtherPage.html
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/org/apache/cocoon/sample/wicket/OtherPage.html?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/main/resources/org/apache/cocoon/sample/wicket/OtherPage.html
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/java/org/apache/cocoon/sitemap/MockSettings.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/java/org/apache/cocoon/sitemap/MockSettings.java?rev=1301047&view=auto
==============================================================================
--- cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/java/org/apache/cocoon/sitemap/MockSettings.java (added)
+++ cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/java/org/apache/cocoon/sitemap/MockSettings.java Thu Mar 15 15:28:28 2012
@@ -0,0 +1,76 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.cocoon.sitemap;
+
+import java.util.List;
+
+import org.apache.cocoon.configuration.Settings;
+
+public class MockSettings implements Settings {
+
+ public String getCacheDirectory() {
+ return null;
+ }
+
+ public String getContainerEncoding() {
+ return null;
+ }
+
+ public long getCreationTime() {
+ return 0;
+ }
+
+ public String getFormEncoding() {
+ return null;
+ }
+
+ public List<?> getLoadClasses() {
+ return null;
+ }
+
+ public String getProperty(String key) {
+ return null;
+ }
+
+ public String getProperty(String key, String defaultValue) {
+ return null;
+ }
+
+ public List<?> getPropertyNames() {
+ return null;
+ }
+
+ public List<?> getPropertyNames(String keyPrefix) {
+ return null;
+ }
+
+ public long getReloadDelay(String type) {
+ return 0;
+ }
+
+ public String getRunningMode() {
+ return null;
+ }
+
+ public String getWorkDirectory() {
+ return null;
+ }
+
+ public boolean isReloadingEnabled(String type) {
+ return false;
+ }
+}
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/resources/cocoon-profiling-test-component.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/resources/cocoon-profiling-test-component.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/resources/cocoon-profiling-test-component.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/resources/cocoon-sample-test-collector.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/resources/cocoon-sample-test-collector.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/resources/cocoon-sample-test-collector.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/resources/cocoon-sample-test-spring-configurator.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/resources/cocoon-sample-test-spring-configurator.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-block/src/test/resources/cocoon-sample-test-spring-configurator.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/pom.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/pom.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/src/main/resources/logback.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/src/main/resources/logback.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/src/main/resources/logback.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/src/main/webapp/WEB-INF/applicationContext.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/src/main/webapp/WEB-INF/applicationContext.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/src/main/webapp/WEB-INF/applicationContext.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/src/main/webapp/WEB-INF/web.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/cocoon3-sample-webapp/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
Added: cocoon/trunk/jail/cocoon3/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/jail/cocoon3/pom.xml?rev=1301047&view=auto
==============================================================================
Binary file - no diff available.
Propchange: cocoon/trunk/jail/cocoon3/pom.xml
------------------------------------------------------------------------------
svn:mime-type = application/xml
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.