CAMEL-10941: Remove raw marker in component docs
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2424eb8d Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2424eb8d Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2424eb8d Branch: refs/heads/master Commit: 2424eb8dbabd626a6b4530820c0492014636cfa3 Parents: 50a9e4f Author: Claus Ibsen <davscl...@apache.org> Authored: Mon Mar 6 13:16:01 2017 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Mon Mar 6 14:04:23 2017 +0100 ---------------------------------------------------------------------- .../src/main/resources/component-options.mvel | 2 -- .../src/main/resources/dataformat-options.mvel | 2 -- .../src/main/resources/eip-options.mvel | 4 ++-- .../src/main/resources/endpoint-options.mvel | 4 ---- .../src/main/resources/language-options.mvel | 2 -- 5 files changed, 2 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/2424eb8d/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel ---------------------------------------------------------------------- diff --git a/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel b/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel index 020b125..6831302 100644 --- a/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel +++ b/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel @@ -5,11 +5,9 @@ The @{title} component supports @{componentOptions.size()} options which are lis @end{} @if{!componentOptions.isEmpty()} -{% raw %} [width="100%",cols="2,1,1m,1m,5",options="header"] |======================================================================= | Name | Group | Default | Java Type | Description @foreach{row : componentOptions}| @{row.name} | @{row.group} | @{row.defaultValue} | @{row.shortJavaType} | @{row.description} @end{}|======================================================================= -{% endraw %} @end{} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/camel/blob/2424eb8d/tooling/maven/camel-package-maven-plugin/src/main/resources/dataformat-options.mvel ---------------------------------------------------------------------- diff --git a/tooling/maven/camel-package-maven-plugin/src/main/resources/dataformat-options.mvel b/tooling/maven/camel-package-maven-plugin/src/main/resources/dataformat-options.mvel index c729393..043ef05 100644 --- a/tooling/maven/camel-package-maven-plugin/src/main/resources/dataformat-options.mvel +++ b/tooling/maven/camel-package-maven-plugin/src/main/resources/dataformat-options.mvel @@ -5,11 +5,9 @@ The @{title} dataformat supports @{dataFormatOptions.size()} options which are l @end{} @if{!dataFormatOptions.isEmpty()} -{% raw %} [width="100%",cols="2s,1m,1m,6",options="header"] |======================================================================= | Name | Default | Java Type | Description @foreach{row : dataFormatOptions}| @{row.name} | @{row.defaultValue} | @{row.shortJavaType} | @{row.description} @end{}|======================================================================= -{% endraw %} @end{} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/camel/blob/2424eb8d/tooling/maven/camel-package-maven-plugin/src/main/resources/eip-options.mvel ---------------------------------------------------------------------- diff --git a/tooling/maven/camel-package-maven-plugin/src/main/resources/eip-options.mvel b/tooling/maven/camel-package-maven-plugin/src/main/resources/eip-options.mvel index 9932ebc..59fdd82 100644 --- a/tooling/maven/camel-package-maven-plugin/src/main/resources/eip-options.mvel +++ b/tooling/maven/camel-package-maven-plugin/src/main/resources/eip-options.mvel @@ -1,9 +1,9 @@ The @{title} EIP supports @{eipOptions.size()} options which are listed below: -{% raw %} +@if{!eipOptions.isEmpty()} [width="100%",cols="3,1m,6",options="header"] |======================================================================= | Name | Java Type | Description @foreach{row : eipOptions}| @{row.name} | @{row.shortJavaType} | @{row.description} @end{}|======================================================================= -{% endraw %} +@end{} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/camel/blob/2424eb8d/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel ---------------------------------------------------------------------- diff --git a/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel b/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel index a6b359b..9b8bb27 100644 --- a/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel +++ b/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel @@ -4,20 +4,16 @@ The @{title} component is configured using the URI syntax with the following pat #### @{endpointPathOptions.size()} path parameters: -{% raw %} [width="100%",cols="2,1,1m,6",options="header"] |======================================================================= | Name | Default | Java Type | Description @foreach{row : endpointPathOptions}| @{row.name} | @{row.defaultValue} | @{row.shortJavaType} | @{row.description} @end{}|======================================================================= -{% endraw %} #### @{endpointOptions.size()} query parameters: -{% raw %} [width="100%",cols="2,1,1m,1m,5",options="header"] |======================================================================= | Name | Group | Default | Java Type | Description @foreach{row : endpointOptions}| @{row.name} | @{row.group} | @{row.defaultValue} | @{row.shortJavaType} | @{row.description} @end{}|======================================================================= -{% endraw %} http://git-wip-us.apache.org/repos/asf/camel/blob/2424eb8d/tooling/maven/camel-package-maven-plugin/src/main/resources/language-options.mvel ---------------------------------------------------------------------- diff --git a/tooling/maven/camel-package-maven-plugin/src/main/resources/language-options.mvel b/tooling/maven/camel-package-maven-plugin/src/main/resources/language-options.mvel index b24b8d4..fea290b 100644 --- a/tooling/maven/camel-package-maven-plugin/src/main/resources/language-options.mvel +++ b/tooling/maven/camel-package-maven-plugin/src/main/resources/language-options.mvel @@ -5,11 +5,9 @@ The @{title} language supports @{languageOptions.size()} options which are liste @end{} @if{!languageOptions.isEmpty()} -{% raw %} [width="100%",cols="2,1m,1m,6",options="header"] |======================================================================= | Name | Default | Java Type | Description @foreach{row : languageOptions}| @{row.name} | @{row.defaultValue} | @{row.shortJavaType} | @{row.description} @end{}|======================================================================= -{% endraw %} @end{} \ No newline at end of file