This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 24c6e0e7f08cccb56f7a9fa25f5219d930f83aa8 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Sep 16 08:15:36 2020 +0200 No need for docs in camel-jaxp-xml anymore --- core/camel-xml-jaxp/src/main/docs/antora.yml | 19 ------------ .../languages/pages/xtokenize-language.adoc | 36 ---------------------- 2 files changed, 55 deletions(-) diff --git a/core/camel-xml-jaxp/src/main/docs/antora.yml b/core/camel-xml-jaxp/src/main/docs/antora.yml deleted file mode 100644 index 88b7eba..0000000 --- a/core/camel-xml-jaxp/src/main/docs/antora.yml +++ /dev/null @@ -1,19 +0,0 @@ -# -# 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. -# - -name: components -version: latest diff --git a/core/camel-xml-jaxp/src/main/docs/modules/languages/pages/xtokenize-language.adoc b/core/camel-xml-jaxp/src/main/docs/modules/languages/pages/xtokenize-language.adoc deleted file mode 100644 index 2c36432..0000000 --- a/core/camel-xml-jaxp/src/main/docs/modules/languages/pages/xtokenize-language.adoc +++ /dev/null @@ -1,36 +0,0 @@ -[[xtokenize-language]] -= XML Tokenize Language -:docTitle: XML Tokenize -:artifactId: camel-xml-jaxp -:description: Tokenize XML payloads using the specified path expression. -:since: 2.14 -:supportLevel: Stable - -*Since Camel {since}* - -The xml tokenizer language is a built-in language in camel-core, which -is a truly XML-aware tokenizer that can be used with the Splitter as the -conventional Tokenizer to efficiently and -effectively tokenize XML documents. XMLTokenizer is capable of not only -recognizing XML namespaces and hierarchical structures of the document -but also more efficiently tokenizing XML documents than the conventional -Tokenizer. - -For more details see Splitter. - -== XML Tokenizer Options - -// language options: START -The XML Tokenize language supports 4 options, which are listed below. - - - -[width="100%",cols="2,1m,1m,6",options="header"] -|=== -| Name | Default | Java Type | Description -| headerName | | String | Name of header to tokenize instead of using the message body. -| mode | | String | The extraction mode. The available extraction modes are: i - injecting the contextual namespace bindings into the extracted token (default) w - wrapping the extracted token in its ancestor context u - unwrapping the extracted token to its child content t - extracting the text content of the specified element -| group | | Integer | To group N parts together -| trim | true | Boolean | Whether to trim the value to remove leading and trailing whitespaces and line breaks -|=== -// language options: END