Adds support to urlEncode transformation

This commit is contained in:
Felipe Zimmerle
2015-10-22 20:47:02 -03:00
parent e3e8bac138
commit 91d29d2849
5 changed files with 75 additions and 11 deletions

View File

@@ -108,7 +108,7 @@ Transformation* Transformation::instantiate(std::string a) {
IF_MATCH(trim) { return new Trim(a); }
IF_MATCH(urlDecode) { return new UrlDecode(a); }
IF_MATCH(urlDecodeUni) { return new UrlDecodeUni(a); }
IF_MATCH(url_encode) { return new UrlEncode(a); }
IF_MATCH(urlEncode) { return new UrlEncode(a); }
IF_MATCH(utf8_to_unicode) { return new Utf8Unicode(a); }
return new Transformation(a);