# # 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. # # # This file contains localization strings for configuration labels and # descriptions as used in the metatype.xml descriptor generated by the # the Maven SCR plugin servletresolver.name = Apache Sling Servlet/Script Resolver and Error Handler servletresolver.description = The Sling Servlet and Script Resolver has \ multiple tasks: One it is used as the ServletResolver to select the Servlet \ or Script to call to handle the request. Second it acts as the \ SlingScriptResolver and finally it manages error handling by implementing \ the ErrorHandler interface using the same algorithm to select error handling \ servlets and scripts as is used to resolve request processing servlets and \ scripts. servletresolver.servletRoot.name = Servlet Registration Root Path servletresolver.servletRoot.description = The default root path assumed when \ registering a servlet whose servlet registration properties define a relative \ resource type/path. It can either be a string starting with "/" (specifying a path prefix to be used) \ or a number which specifies the resource resolver's search path entry index. The default value \ is 0 (usually stands for "/apps" in the search paths). The number can be -1 which always \ points to the last search path entry. servletresolver.scriptUser.name = Script User servletresolver.scriptUser.description = This optional property can specify \ the repository user who is used to read the scripts. If none is specified \ the admin user is used by default. servletresolver.cacheSize.name = Cache Size servletresolver.cacheSize.description = This property configures the size of the \ cache used for script resolution. A value lower than 5 disables the cache. servletresolver.paths.name = Execution Paths servletresolver.paths.description = The paths to search for executable scripts. If no path is configured \ this is treated like the default (/ = root) which allows to execute all scripts. By configuring some \ paths the execution of scripts can be limited. If a configured value ends with a slash, the whole sub tree \ is allowed. Without a slash an exact matching script is allowed. servletresolver.defaultExtensions.name = Default Extensions servletresolver.defaultExtensions.description = The list of extensions for which the default behavior \ will be used. This means that the last path segment of the resource type can be used as the script name.