Skip to content

Commit a11418f

Browse files
authored
Merge pull request #5178 from hansva/5108
Remove urlencode from formula list, fixes #5108
2 parents 89cc19f + 22f429f commit a11418f

File tree

2 files changed

+0
-32
lines changed
  • docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms
  • plugins/transforms/formula/src/main/resources/org/apache/hop/pipeline/transforms/formula/function

2 files changed

+0
-32
lines changed

docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/formula.adoc

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3033,22 +3033,3 @@ Portable Contraints: The result of this function may change across locales. If s
30333033
|expression|result|comment
30343034
|UPPER("Habc7") |"HABC7"|Lowercase converted to upper case, other characters just copied to result.
30353035
|===
3036-
3037-
==== URLENCODE
3038-
3039-
3040-
|===
3041-
|*description*|Applies URL-Encoding to a text given in the first parameter using the encoding specified in the second parameter. If no encoding is given, UTF-8 is assumed.
3042-
|*syntax*|URLENCODE( Text text, Text encoding )
3043-
|*returns*|Text
3044-
|*semantics*|text is the string to encode, encoding is the character set to use when encoding.
3045-
|*constraints*|Encoding must be a valid character set.
3046-
|===
3047-
3048-
*Examples*
3049-
|===
3050-
|expression|result|comment
3051-
|URLENCODE("&PARAM1=value?param2=value2") |%26PARAM1%3Dvalue%3Fparam2%3Dvalue2|
3052-
|===
3053-
3054-

plugins/transforms/formula/src/main/resources/org/apache/hop/pipeline/transforms/formula/function/functions.xml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2982,19 +2982,6 @@ System 2 The week containing the first Thursday of the year is the first week
29822982
</examples>
29832983
</function>
29842984

2985-
<function>
2986-
<category>%Category.Text</category>
2987-
<name>URLENCODE</name>
2988-
<description>Applies URL-Encoding to a text given in the first parameter using the encoding specified in the second parameter. If no encoding is given, UTF-8 is assumed.</description>
2989-
<syntax>URLENCODE( Text text, Text encoding )</syntax>
2990-
<returns>Text</returns>
2991-
<constraints>Encoding must be a valid character set.</constraints>
2992-
<semantics>text is the string to encode, encoding is the character set to use when encoding.</semantics>
2993-
<examples>
2994-
<example><expression>URLENCODE("&amp;PARAM1=value?param2=value2")</expression> <result>%26PARAM1%3Dvalue%3Fparam2%3Dvalue2</result> <level>1</level> <comment></comment></example>
2995-
</examples>
2996-
</function>
2997-
29982985
<function>
29992986
<category>%Category.Text</category>
30002987
<name>UNICHAR</name>

0 commit comments

Comments
 (0)