… | |
… | |
93 | src="org.apache.cocoon.selection.ExceptionSelector" |
93 | src="org.apache.cocoon.selection.ExceptionSelector" |
94 | logger="sitemap.selector.exception"> |
94 | logger="sitemap.selector.exception"> |
95 | <exception name="not-found" |
95 | <exception name="not-found" |
96 | class="org.apache.cocoon.ResourceNotFoundException" |
96 | class="org.apache.cocoon.ResourceNotFoundException" |
97 | /> |
97 | /> |
|
|
98 | <exception name="not-found" |
|
|
99 | class="java.io.FileNotFoundException" |
|
|
100 | /> |
98 | <exception name="invalid-continuation" |
101 | <exception name="invalid-continuation" |
99 | class="org.apache.cocoon.components.flow.InvalidContinuationException" |
102 | class="org.apache.cocoon.components.flow.InvalidContinuationException" |
100 | /> |
103 | /> |
101 | <exception class="java.lang.Throwable" unroll="true"/> |
104 | <exception class="java.lang.Throwable" unroll="true"/> |
102 | </map:selector> |
105 | </map:selector> |
… | |
… | |
107 | </map:selectors> |
110 | </map:selectors> |
108 | <map:pipes default="caching"> |
111 | <map:pipes default="caching"> |
109 | <map:pipe name="caching" |
112 | <map:pipe name="caching" |
110 | src="org.apache.cocoon.components.pipeline.impl.CachingProcessingPipeline" |
113 | src="org.apache.cocoon.components.pipeline.impl.CachingProcessingPipeline" |
111 | logger="sitemap.pipes.caching"> |
114 | logger="sitemap.pipes.caching"> |
|
|
115 | <!-- Commented out caching to make error reporting work --> |
112 | <parameter name="outputBufferSize" value="32768"/> |
116 | <!--parameter name="outputBufferSize" value="32768"/--> |
113 | </map:pipe> |
117 | </map:pipe> |
114 | <map:pipe name="ecaching" |
118 | <map:pipe name="ecaching" |
115 | src="org.apache.cocoon.components.pipeline.impl.CachingProcessingPipeline" |
119 | src="org.apache.cocoon.components.pipeline.impl.CachingProcessingPipeline" |
116 | logger="sitemap.pipes.ecaching"> |
120 | logger="sitemap.pipes.ecaching"> |
117 | <parameter name="cache-role" value="org.apache.cocoon.caching.Cache/EventAware"/> |
121 | <parameter name="cache-role" value="org.apache.cocoon.caching.Cache/EventAware"/> |
|
|
122 | <!-- Commented out caching to make error reporting work --> |
118 | <parameter name="outputBufferSize" value="32768"/> |
123 | <!--parameter name="outputBufferSize" value="32768"/--> |
119 | </map:pipe> |
124 | </map:pipe> |
120 | <map:pipe name="noncaching" |
125 | <map:pipe name="noncaching" |
121 | src="org.apache.cocoon.components.pipeline.impl.NonCachingProcessingPipeline" |
126 | src="org.apache.cocoon.components.pipeline.impl.NonCachingProcessingPipeline" |
122 | logger="sitemap.pipes.noncaching"> |
127 | logger="sitemap.pipes.noncaching"> |
|
|
128 | <!-- A 1 MB (1048576 B) buffer for the noncaching pipeline, for pdfs and things? --> |
|
|
129 | <!-- Leaving it at 32KB for now, since it doesn't really matter here --> |
123 | <parameter name="outputBufferSize" value="32768"/> |
130 | <parameter name="outputBufferSize" value="32768"/> |
124 | </map:pipe> |
131 | </map:pipe> |
125 | </map:pipes> |
132 | </map:pipes> |
126 | </map:components> |
133 | </map:components> |
127 | |
134 | |