# # 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 Sling SCR plugin servlet.post.name = Apache Sling POST Servlet servlet.post.description = The Sling POST Servlet is registered as the default \ servlet to handle POST requests in Sling. servlet.post.dateFormats.name = Date Format servlet.post.dateFormats.description = List SimpleDateFormat strings for date \ formats supported for parsing from request input to data fields. The special \ format "ISO8601" (without the quotes) can be used to designate strict ISO-8601 \ parser which is able to parse strings generated by the Property.getString() \ method for Date properties. The default \ value is [ "EEE MMM dd yyyy HH:mm:ss 'GMT'Z", "ISO8601", \ "yyyy-MM-dd'T'HH:mm:ss.SSSZ", \ "yyyy-MM-dd'T'HH:mm:ss", "yyyy-MM-dd", "dd.MM.yyyy HH:mm:ss", "dd.MM.yyyy" ]. servlet.post.nodeNameHints.name = Node Name Hint Properties servlet.post.nodeNameHints.description = The list of properties whose values \ may be used to derive a name for newly created nodes. When handling a request \ to create a new node, the name of the node is automatically generated if the \ request URL ends with a star ("*") or a slash ("/"). In this case the request \ parameters listed in this configuration value may be used to create the name. \ Default value is [ "title", "jcr:title", "name", "description", \ "jcr:description", "abstract", "text", "jcr:text" ]. servlet.post.nodeNameMaxLength.name = Maximum Node Name Length servlet.post.nodeNameMaxLength.description = Maximum number of characters to \ use for automatically generated node names. The default value is 20. Note, \ that actual node names may be generated with at most 4 more characters if the \ numeric suffixes must be appended to make the name unique. servlet.post.checkinNewVersionableNodes.name = Checkin New Versionable Nodes servlet.post.checkinNewVersionableNodes.description = If true, newly created \ versionable nodes or non-versionable nodes which are made versionable by the \ addition of the mix:versionable mixin are checked in. By default, false. servlet.post.autoCheckout.name = Auto Checkout Nodes servlet.post.autoCheckout.description = If true, checked in nodes are \ checked out when necessary. By default, false. servlet.post.autoCheckin.name = Auto Checkin Nodes servlet.post.autoCheckin.description = If true, nodes which are checked out \ by the post servlet are checked in. By default, true. servlet.post.ignorePattern.name = Ignored Parameters servlet.post.ignorePattern.description = Configures a regular expression \ pattern to select request parameters which should be ignored when wrinting \ content to the repository. By default this is "j_.*" thus ignoring all \ request parameters starting with j_ such as j_username.