568 lines
27 KiB
Diff
568 lines
27 KiB
Diff
|
From cd0a1db2ba5930de40b8f884efd492875226e9d8 Mon Sep 17 00:00:00 2001
|
||
|
From: Fabio Valentini <decathorpe@gmail.com>
|
||
|
Date: Thu, 30 Jul 2020 15:51:00 +0200
|
||
|
Subject: [PATCH 8/8] Port to apache commons-lang3
|
||
|
|
||
|
---
|
||
|
build/build.properties | 28 +++++++++----------
|
||
|
pom.xml | 6 ++--
|
||
|
.../event/implement/EscapeHtmlReference.java | 4 +--
|
||
|
.../implement/EscapeJavaScriptReference.java | 4 +--
|
||
|
.../event/implement/EscapeSqlReference.java | 5 ++--
|
||
|
.../event/implement/EscapeXmlReference.java | 2 +-
|
||
|
.../velocity/runtime/RuntimeInstance.java | 2 +-
|
||
|
.../velocity/runtime/VelocimacroFactory.java | 2 +-
|
||
|
.../velocity/runtime/directive/Block.java | 2 +-
|
||
|
.../runtime/directive/RuntimeMacro.java | 2 +-
|
||
|
.../velocity/runtime/log/AvalonLogChute.java | 2 +-
|
||
|
.../velocity/runtime/parser/Parser.java | 2 +-
|
||
|
.../runtime/parser/ParserTokenManager.java | 2 +-
|
||
|
.../runtime/parser/node/ASTDirective.java | 2 +-
|
||
|
.../runtime/parser/node/ASTMethod.java | 4 +--
|
||
|
.../runtime/parser/node/ASTStringLiteral.java | 2 +-
|
||
|
.../runtime/parser/node/NodeUtils.java | 2 +-
|
||
|
.../runtime/parser/node/PropertyExecutor.java | 2 +-
|
||
|
.../parser/node/SetPropertyExecutor.java | 4 +--
|
||
|
.../runtime/parser/node/SimpleNode.java | 4 +--
|
||
|
.../runtime/resource/ResourceManagerImpl.java | 4 +--
|
||
|
.../loader/ClasspathResourceLoader.java | 2 +-
|
||
|
.../loader/DataSourceResourceLoader.java | 2 +-
|
||
|
.../resource/loader/FileResourceLoader.java | 2 +-
|
||
|
.../resource/loader/JarResourceLoader.java | 2 +-
|
||
|
.../resource/loader/StringResourceLoader.java | 2 +-
|
||
|
.../resource/loader/URLResourceLoader.java | 2 +-
|
||
|
.../velocity/util/introspection/ClassMap.java | 2 +-
|
||
|
src/parser/Parser.jjt | 2 +-
|
||
|
.../io/UnicodeInputStreamTestCase.java | 2 +-
|
||
|
.../apache/velocity/test/BaseTestCase.java | 2 +-
|
||
|
.../velocity/test/MethodCacheKeyTestCase.java | 2 +-
|
||
|
.../org/apache/velocity/test/sql/HsqlDB.java | 2 +-
|
||
|
33 files changed, 56 insertions(+), 55 deletions(-)
|
||
|
|
||
|
diff --git a/build/build.properties b/build/build.properties
|
||
|
index 6d928bd..b723852 100644
|
||
|
--- a/build/build.properties
|
||
|
+++ b/build/build.properties
|
||
|
@@ -172,9 +172,9 @@ import=javax.naming,\
|
||
|
javax.sql,\
|
||
|
org.apache.commons.collections,\
|
||
|
org.apache.commons.collections.map,\
|
||
|
- org.apache.commons.lang,\
|
||
|
- org.apache.commons.lang.builder,\
|
||
|
- org.apache.commons.lang.text,\
|
||
|
+ org.apache.commons.lang3,\
|
||
|
+ org.apache.commons.lang3.builder,\
|
||
|
+ org.apache.commons.lang3.text,\
|
||
|
org.apache.commons.logging;resolution:=optional,\
|
||
|
org.apache.log;resolution:=optional,\
|
||
|
org.apache.log.format;resolution:=optional,\
|
||
|
@@ -260,7 +260,7 @@ export=org.apache.velocity;uses:="org.apache.velocity.context,\
|
||
|
org.apache.velocity.runtime,\
|
||
|
org.apache.velocity.runtime.directive,\
|
||
|
org.apache.velocity.runtime.parser.node",\
|
||
|
- org.apache.velocity.runtime.parser.node;uses:="org.apache.commons.lang.text,\
|
||
|
+ org.apache.velocity.runtime.parser.node;uses:="org.apache.commons.lang3.text,\
|
||
|
org.apache.velocity.context,\
|
||
|
org.apache.velocity.exception,\
|
||
|
org.apache.velocity.runtime,\
|
||
|
@@ -303,15 +303,15 @@ export=org.apache.velocity;uses:="org.apache.velocity.context,\
|
||
|
dep.export=org.apache.commons.collections,\
|
||
|
org.apache.commons.collections.iterators;uses:="org.apache.commons.collections",\
|
||
|
org.apache.commons.collections.map;uses:="org.apache.commons.collections",\
|
||
|
- org.apache.commons.lang;uses:="org.apache.commons.lang.exception",\
|
||
|
- org.apache.commons.lang.builder,\
|
||
|
- org.apache.commons.lang.enum,\
|
||
|
- org.apache.commons.lang.enums,\
|
||
|
- org.apache.commons.lang.exception,\
|
||
|
- org.apache.commons.lang.math,\
|
||
|
- org.apache.commons.lang.mutable,\
|
||
|
- org.apache.commons.lang.text,\
|
||
|
- org.apache.commons.lang.time,\
|
||
|
+ org.apache.commons.lang3;uses:="org.apache.commons.lang3.exception",\
|
||
|
+ org.apache.commons.lang3.builder,\
|
||
|
+ org.apache.commons.lang3.enum,\
|
||
|
+ org.apache.commons.lang3.enums,\
|
||
|
+ org.apache.commons.lang3.exception,\
|
||
|
+ org.apache.commons.lang3.math,\
|
||
|
+ org.apache.commons.lang3.mutable,\
|
||
|
+ org.apache.commons.lang3.text,\
|
||
|
+ org.apache.commons.lang3.time,\
|
||
|
org.apache.oro.io;uses:="org.apache.oro.text,\
|
||
|
org.apache.oro.text.regex",\
|
||
|
org.apache.oro.text;uses:="org.apache.oro.text.regex,\
|
||
|
@@ -379,7 +379,7 @@ dep.export=org.apache.commons.collections,\
|
||
|
org.apache.velocity.runtime,\
|
||
|
org.apache.velocity.runtime.directive,\
|
||
|
org.apache.velocity.runtime.parser.node",\
|
||
|
- org.apache.velocity.runtime.parser.node;uses:="org.apache.commons.lang.text,\
|
||
|
+ org.apache.velocity.runtime.parser.node;uses:="org.apache.commons.lang3.text,\
|
||
|
org.apache.velocity.context,\
|
||
|
org.apache.velocity.exception,\
|
||
|
org.apache.velocity.runtime,\
|
||
|
diff --git a/pom.xml b/pom.xml
|
||
|
index 8cb5d3f..56af634 100644
|
||
|
--- a/pom.xml
|
||
|
+++ b/pom.xml
|
||
|
@@ -148,9 +148,9 @@
|
||
|
<version>3.2.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
- <groupId>commons-lang</groupId>
|
||
|
- <artifactId>commons-lang</artifactId>
|
||
|
- <version>2.4</version>
|
||
|
+ <groupId>org.apache.commons</groupId>
|
||
|
+ <artifactId>commons-lang3</artifactId>
|
||
|
+ <version>3.8.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>oro</groupId>
|
||
|
diff --git a/src/java/org/apache/velocity/app/event/implement/EscapeHtmlReference.java b/src/java/org/apache/velocity/app/event/implement/EscapeHtmlReference.java
|
||
|
index 6d98b45..56d1e62 100644
|
||
|
--- a/src/java/org/apache/velocity/app/event/implement/EscapeHtmlReference.java
|
||
|
+++ b/src/java/org/apache/velocity/app/event/implement/EscapeHtmlReference.java
|
||
|
@@ -19,7 +19,7 @@ package org.apache.velocity.app.event.implement;
|
||
|
* under the License.
|
||
|
*/
|
||
|
|
||
|
-import org.apache.commons.lang.StringEscapeUtils;
|
||
|
+import org.apache.commons.lang3.StringEscapeUtils;
|
||
|
|
||
|
/**
|
||
|
* Escape all HTML entities.
|
||
|
@@ -39,7 +39,7 @@ public class EscapeHtmlReference extends EscapeReference
|
||
|
*/
|
||
|
protected String escape(Object text)
|
||
|
{
|
||
|
- return StringEscapeUtils.escapeHtml(text.toString());
|
||
|
+ return StringEscapeUtils.ESCAPE_HTML4.translate(text.toString());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
diff --git a/src/java/org/apache/velocity/app/event/implement/EscapeJavaScriptReference.java b/src/java/org/apache/velocity/app/event/implement/EscapeJavaScriptReference.java
|
||
|
index ea49ddb..b9196c5 100644
|
||
|
--- a/src/java/org/apache/velocity/app/event/implement/EscapeJavaScriptReference.java
|
||
|
+++ b/src/java/org/apache/velocity/app/event/implement/EscapeJavaScriptReference.java
|
||
|
@@ -19,7 +19,7 @@ package org.apache.velocity.app.event.implement;
|
||
|
* under the License.
|
||
|
*/
|
||
|
|
||
|
-import org.apache.commons.lang.StringEscapeUtils;
|
||
|
+import org.apache.commons.lang3.StringEscapeUtils;
|
||
|
|
||
|
/**
|
||
|
* Escapes the characters in a String to be suitable for use in JavaScript.
|
||
|
@@ -39,7 +39,7 @@ public class EscapeJavaScriptReference extends EscapeReference
|
||
|
*/
|
||
|
protected String escape(Object text)
|
||
|
{
|
||
|
- return StringEscapeUtils.escapeJavaScript(text.toString());
|
||
|
+ return StringEscapeUtils.ESCAPE_ECMASCRIPT.translate(text.toString());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
diff --git a/src/java/org/apache/velocity/app/event/implement/EscapeSqlReference.java b/src/java/org/apache/velocity/app/event/implement/EscapeSqlReference.java
|
||
|
index 585cb6c..adea560 100644
|
||
|
--- a/src/java/org/apache/velocity/app/event/implement/EscapeSqlReference.java
|
||
|
+++ b/src/java/org/apache/velocity/app/event/implement/EscapeSqlReference.java
|
||
|
@@ -19,7 +19,7 @@ package org.apache.velocity.app.event.implement;
|
||
|
* under the License.
|
||
|
*/
|
||
|
|
||
|
-import org.apache.commons.lang.StringEscapeUtils;
|
||
|
+import org.apache.commons.lang3.StringEscapeUtils;
|
||
|
|
||
|
/**
|
||
|
* Escapes the characters in a String to be suitable to pass to an SQL query.
|
||
|
@@ -39,7 +39,8 @@ public class EscapeSqlReference extends EscapeReference
|
||
|
*/
|
||
|
protected String escape(Object text)
|
||
|
{
|
||
|
- return StringEscapeUtils.escapeSql(text.toString());
|
||
|
+ // commons-lang3 dropped the SQL escaper because it was incomplete
|
||
|
+ return text.toString();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
diff --git a/src/java/org/apache/velocity/app/event/implement/EscapeXmlReference.java b/src/java/org/apache/velocity/app/event/implement/EscapeXmlReference.java
|
||
|
index 3d5b40f..fbb525c 100644
|
||
|
--- a/src/java/org/apache/velocity/app/event/implement/EscapeXmlReference.java
|
||
|
+++ b/src/java/org/apache/velocity/app/event/implement/EscapeXmlReference.java
|
||
|
@@ -19,7 +19,7 @@ package org.apache.velocity.app.event.implement;
|
||
|
* under the License.
|
||
|
*/
|
||
|
|
||
|
-import org.apache.commons.lang.StringEscapeUtils;
|
||
|
+import org.apache.commons.lang3.StringEscapeUtils;
|
||
|
|
||
|
/**
|
||
|
* Escape all XML entities.
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/RuntimeInstance.java b/src/java/org/apache/velocity/runtime/RuntimeInstance.java
|
||
|
index bf99faa..a79d42c 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/RuntimeInstance.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/RuntimeInstance.java
|
||
|
@@ -32,7 +32,7 @@ import java.util.Map;
|
||
|
import java.util.Properties;
|
||
|
|
||
|
import org.apache.commons.collections.ExtendedProperties;
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.Template;
|
||
|
import org.apache.velocity.app.event.EventCartridge;
|
||
|
import org.apache.velocity.app.event.EventHandler;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/VelocimacroFactory.java b/src/java/org/apache/velocity/runtime/VelocimacroFactory.java
|
||
|
index 2737b3b..956ab05 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/VelocimacroFactory.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/VelocimacroFactory.java
|
||
|
@@ -26,7 +26,7 @@ import java.util.Map;
|
||
|
import java.util.Vector;
|
||
|
import java.util.ArrayList;
|
||
|
|
||
|
-import org.apache.commons.lang.StringUtils;
|
||
|
+import org.apache.commons.lang3.StringUtils;
|
||
|
import org.apache.velocity.Template;
|
||
|
import org.apache.velocity.exception.VelocityException;
|
||
|
import org.apache.velocity.runtime.directive.Directive;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/directive/Block.java b/src/java/org/apache/velocity/runtime/directive/Block.java
|
||
|
index f5fdfa8..b136543 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/directive/Block.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/directive/Block.java
|
||
|
@@ -23,7 +23,7 @@ import java.io.IOException;
|
||
|
import java.io.StringWriter;
|
||
|
import java.io.Writer;
|
||
|
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.context.InternalContextAdapter;
|
||
|
import org.apache.velocity.exception.TemplateInitException;
|
||
|
import org.apache.velocity.runtime.Renderable;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/directive/RuntimeMacro.java b/src/java/org/apache/velocity/runtime/directive/RuntimeMacro.java
|
||
|
index 090b552..d22ac4e 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/directive/RuntimeMacro.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/directive/RuntimeMacro.java
|
||
|
@@ -23,7 +23,7 @@ import java.io.IOException;
|
||
|
import java.io.Writer;
|
||
|
import java.util.List;
|
||
|
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.context.InternalContextAdapter;
|
||
|
import org.apache.velocity.exception.MethodInvocationException;
|
||
|
import org.apache.velocity.exception.ParseErrorException;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/log/AvalonLogChute.java b/src/java/org/apache/velocity/runtime/log/AvalonLogChute.java
|
||
|
index f4016ca..f7e467d 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/log/AvalonLogChute.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/log/AvalonLogChute.java
|
||
|
@@ -24,7 +24,7 @@ import java.io.IOException;
|
||
|
import java.util.HashMap;
|
||
|
import java.util.Map;
|
||
|
|
||
|
-import org.apache.commons.lang.StringUtils;
|
||
|
+import org.apache.commons.lang3.StringUtils;
|
||
|
import org.apache.log.Hierarchy;
|
||
|
import org.apache.log.LogTarget;
|
||
|
import org.apache.log.Logger;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/parser/Parser.java b/src/java/org/apache/velocity/runtime/parser/Parser.java
|
||
|
index 085e7a4..62dfe48 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/parser/Parser.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/parser/Parser.java
|
||
|
@@ -10,7 +10,7 @@ import org.apache.velocity.runtime.directive.Directive;
|
||
|
import org.apache.velocity.runtime.directive.Macro;
|
||
|
import org.apache.velocity.runtime.directive.MacroParseException;
|
||
|
import org.apache.velocity.util.StringUtils;
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.runtime.RuntimeConstants;
|
||
|
|
||
|
/**
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/parser/ParserTokenManager.java b/src/java/org/apache/velocity/runtime/parser/ParserTokenManager.java
|
||
|
index ce00d99..9563a1f 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/parser/ParserTokenManager.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/parser/ParserTokenManager.java
|
||
|
@@ -9,7 +9,7 @@ import org.apache.velocity.runtime.directive.Directive;
|
||
|
import org.apache.velocity.runtime.directive.Macro;
|
||
|
import org.apache.velocity.runtime.directive.MacroParseException;
|
||
|
import org.apache.velocity.util.StringUtils;
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.runtime.RuntimeConstants;
|
||
|
|
||
|
/** Token Manager. */
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/parser/node/ASTDirective.java b/src/java/org/apache/velocity/runtime/parser/node/ASTDirective.java
|
||
|
index 86e86b7..f1ab78d 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/parser/node/ASTDirective.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/parser/node/ASTDirective.java
|
||
|
@@ -22,7 +22,7 @@ package org.apache.velocity.runtime.parser.node;
|
||
|
import java.io.IOException;
|
||
|
import java.io.Writer;
|
||
|
|
||
|
-import org.apache.commons.lang.builder.ToStringBuilder;
|
||
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
|
import org.apache.velocity.context.InternalContextAdapter;
|
||
|
import org.apache.velocity.exception.MethodInvocationException;
|
||
|
import org.apache.velocity.exception.ParseErrorException;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/parser/node/ASTMethod.java b/src/java/org/apache/velocity/runtime/parser/node/ASTMethod.java
|
||
|
index a1545e5..7354c9a 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/parser/node/ASTMethod.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/parser/node/ASTMethod.java
|
||
|
@@ -21,8 +21,8 @@ package org.apache.velocity.runtime.parser.node;
|
||
|
|
||
|
import java.lang.reflect.InvocationTargetException;
|
||
|
|
||
|
-import org.apache.commons.lang.ArrayUtils;
|
||
|
-import org.apache.commons.lang.StringUtils;
|
||
|
+import org.apache.commons.lang3.ArrayUtils;
|
||
|
+import org.apache.commons.lang3.StringUtils;
|
||
|
import org.apache.velocity.app.event.EventHandlerUtil;
|
||
|
import org.apache.velocity.context.InternalContextAdapter;
|
||
|
import org.apache.velocity.exception.MethodInvocationException;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/parser/node/ASTStringLiteral.java b/src/java/org/apache/velocity/runtime/parser/node/ASTStringLiteral.java
|
||
|
index bb56cd9..0bc63bc 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/parser/node/ASTStringLiteral.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/parser/node/ASTStringLiteral.java
|
||
|
@@ -21,7 +21,7 @@ import java.io.IOException;
|
||
|
import java.io.StringReader;
|
||
|
import java.io.StringWriter;
|
||
|
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.context.InternalContextAdapter;
|
||
|
import org.apache.velocity.exception.TemplateInitException;
|
||
|
import org.apache.velocity.exception.VelocityException;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/parser/node/NodeUtils.java b/src/java/org/apache/velocity/runtime/parser/node/NodeUtils.java
|
||
|
index 52bcda9..8362c3e 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/parser/node/NodeUtils.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/parser/node/NodeUtils.java
|
||
|
@@ -19,7 +19,7 @@ package org.apache.velocity.runtime.parser.node;
|
||
|
* under the License.
|
||
|
*/
|
||
|
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.context.Context;
|
||
|
import org.apache.velocity.exception.MethodInvocationException;
|
||
|
import org.apache.velocity.runtime.parser.ParserConstants;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/parser/node/PropertyExecutor.java b/src/java/org/apache/velocity/runtime/parser/node/PropertyExecutor.java
|
||
|
index 8c78228..20d6c18 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/parser/node/PropertyExecutor.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/parser/node/PropertyExecutor.java
|
||
|
@@ -21,7 +21,7 @@ package org.apache.velocity.runtime.parser.node;
|
||
|
|
||
|
import java.lang.reflect.InvocationTargetException;
|
||
|
|
||
|
-import org.apache.commons.lang.StringUtils;
|
||
|
+import org.apache.commons.lang3.StringUtils;
|
||
|
import org.apache.velocity.exception.VelocityException;
|
||
|
import org.apache.velocity.runtime.RuntimeLogger;
|
||
|
import org.apache.velocity.runtime.log.Log;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/parser/node/SetPropertyExecutor.java b/src/java/org/apache/velocity/runtime/parser/node/SetPropertyExecutor.java
|
||
|
index 0b27b45..ba5d512 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/parser/node/SetPropertyExecutor.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/parser/node/SetPropertyExecutor.java
|
||
|
@@ -21,8 +21,8 @@ package org.apache.velocity.runtime.parser.node;
|
||
|
|
||
|
import java.lang.reflect.InvocationTargetException;
|
||
|
|
||
|
-import org.apache.commons.lang.StringUtils;
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.StringUtils;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.exception.VelocityException;
|
||
|
import org.apache.velocity.runtime.log.Log;
|
||
|
import org.apache.velocity.util.introspection.Introspector;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/parser/node/SimpleNode.java b/src/java/org/apache/velocity/runtime/parser/node/SimpleNode.java
|
||
|
index 108846f..6372830 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/parser/node/SimpleNode.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/parser/node/SimpleNode.java
|
||
|
@@ -22,8 +22,8 @@ package org.apache.velocity.runtime.parser.node;
|
||
|
import java.io.IOException;
|
||
|
import java.io.Writer;
|
||
|
|
||
|
-import org.apache.commons.lang.builder.ToStringBuilder;
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.context.InternalContextAdapter;
|
||
|
import org.apache.velocity.exception.MethodInvocationException;
|
||
|
import org.apache.velocity.exception.ParseErrorException;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/resource/ResourceManagerImpl.java b/src/java/org/apache/velocity/runtime/resource/ResourceManagerImpl.java
|
||
|
index 1b504eb..b33d4ed 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/resource/ResourceManagerImpl.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/resource/ResourceManagerImpl.java
|
||
|
@@ -158,7 +158,7 @@ public class ResourceManagerImpl
|
||
|
|
||
|
Object cacheObject = null;
|
||
|
|
||
|
- if (org.apache.commons.lang.StringUtils.isNotEmpty(cacheClassName))
|
||
|
+ if (org.apache.commons.lang3.StringUtils.isNotEmpty(cacheClassName))
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
@@ -534,7 +534,7 @@ public class ResourceManagerImpl
|
||
|
* this strikes me as bad...
|
||
|
*/
|
||
|
|
||
|
- if (!org.apache.commons.lang.StringUtils.equals(resource.getEncoding(), encoding))
|
||
|
+ if (!org.apache.commons.lang3.StringUtils.equals(resource.getEncoding(), encoding))
|
||
|
{
|
||
|
log.warn("Declared encoding for template '" +
|
||
|
resource.getName() +
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/resource/loader/ClasspathResourceLoader.java b/src/java/org/apache/velocity/runtime/resource/loader/ClasspathResourceLoader.java
|
||
|
index 623766f..a7cc276 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/resource/loader/ClasspathResourceLoader.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/resource/loader/ClasspathResourceLoader.java
|
||
|
@@ -22,7 +22,7 @@ package org.apache.velocity.runtime.resource.loader;
|
||
|
import java.io.InputStream;
|
||
|
|
||
|
import org.apache.commons.collections.ExtendedProperties;
|
||
|
-import org.apache.commons.lang.StringUtils;
|
||
|
+import org.apache.commons.lang3.StringUtils;
|
||
|
import org.apache.velocity.exception.ResourceNotFoundException;
|
||
|
import org.apache.velocity.runtime.resource.Resource;
|
||
|
import org.apache.velocity.util.ClassUtils;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/resource/loader/DataSourceResourceLoader.java b/src/java/org/apache/velocity/runtime/resource/loader/DataSourceResourceLoader.java
|
||
|
index 833e0ac..7414913 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/resource/loader/DataSourceResourceLoader.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/resource/loader/DataSourceResourceLoader.java
|
||
|
@@ -218,7 +218,7 @@ public class DataSourceResourceLoader extends ResourceLoader
|
||
|
public synchronized InputStream getResourceStream(final String name)
|
||
|
throws ResourceNotFoundException
|
||
|
{
|
||
|
- if (org.apache.commons.lang.StringUtils.isEmpty(name))
|
||
|
+ if (org.apache.commons.lang3.StringUtils.isEmpty(name))
|
||
|
{
|
||
|
throw new ResourceNotFoundException("DataSourceResourceLoader: Template name was empty or null");
|
||
|
}
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/resource/loader/FileResourceLoader.java b/src/java/org/apache/velocity/runtime/resource/loader/FileResourceLoader.java
|
||
|
index 462ed16..3898889 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/resource/loader/FileResourceLoader.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/resource/loader/FileResourceLoader.java
|
||
|
@@ -118,7 +118,7 @@ public class FileResourceLoader extends ResourceLoader
|
||
|
/*
|
||
|
* Make sure we have a valid templateName.
|
||
|
*/
|
||
|
- if (org.apache.commons.lang.StringUtils.isEmpty(templateName))
|
||
|
+ if (org.apache.commons.lang3.StringUtils.isEmpty(templateName))
|
||
|
{
|
||
|
/*
|
||
|
* If we don't get a properly formed templateName then
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/resource/loader/JarResourceLoader.java b/src/java/org/apache/velocity/runtime/resource/loader/JarResourceLoader.java
|
||
|
index 172384e..b7fb1a7 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/resource/loader/JarResourceLoader.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/resource/loader/JarResourceLoader.java
|
||
|
@@ -195,7 +195,7 @@ public class JarResourceLoader extends ResourceLoader
|
||
|
{
|
||
|
InputStream results = null;
|
||
|
|
||
|
- if (org.apache.commons.lang.StringUtils.isEmpty(source))
|
||
|
+ if (org.apache.commons.lang3.StringUtils.isEmpty(source))
|
||
|
{
|
||
|
throw new ResourceNotFoundException("Need to have a resource!");
|
||
|
}
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/resource/loader/StringResourceLoader.java b/src/java/org/apache/velocity/runtime/resource/loader/StringResourceLoader.java
|
||
|
index 895182d..41c0ec9 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/resource/loader/StringResourceLoader.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/resource/loader/StringResourceLoader.java
|
||
|
@@ -26,7 +26,7 @@ import java.io.ByteArrayInputStream;
|
||
|
import java.io.InputStream;
|
||
|
import java.io.UnsupportedEncodingException;
|
||
|
import org.apache.commons.collections.ExtendedProperties;
|
||
|
-import org.apache.commons.lang.StringUtils;
|
||
|
+import org.apache.commons.lang3.StringUtils;
|
||
|
import org.apache.velocity.exception.ResourceNotFoundException;
|
||
|
import org.apache.velocity.exception.VelocityException;
|
||
|
import org.apache.velocity.runtime.resource.Resource;
|
||
|
diff --git a/src/java/org/apache/velocity/runtime/resource/loader/URLResourceLoader.java b/src/java/org/apache/velocity/runtime/resource/loader/URLResourceLoader.java
|
||
|
index de06636..74ab86a 100644
|
||
|
--- a/src/java/org/apache/velocity/runtime/resource/loader/URLResourceLoader.java
|
||
|
+++ b/src/java/org/apache/velocity/runtime/resource/loader/URLResourceLoader.java
|
||
|
@@ -26,7 +26,7 @@ import java.net.URL;
|
||
|
import java.net.URLConnection;
|
||
|
import java.util.HashMap;
|
||
|
import org.apache.commons.collections.ExtendedProperties;
|
||
|
-import org.apache.commons.lang.StringUtils;
|
||
|
+import org.apache.commons.lang3.StringUtils;
|
||
|
import org.apache.velocity.exception.VelocityException;
|
||
|
import org.apache.velocity.exception.ResourceNotFoundException;
|
||
|
import org.apache.velocity.runtime.resource.Resource;
|
||
|
diff --git a/src/java/org/apache/velocity/util/introspection/ClassMap.java b/src/java/org/apache/velocity/util/introspection/ClassMap.java
|
||
|
index 66bc7b1..77c1c8b 100644
|
||
|
--- a/src/java/org/apache/velocity/util/introspection/ClassMap.java
|
||
|
+++ b/src/java/org/apache/velocity/util/introspection/ClassMap.java
|
||
|
@@ -23,7 +23,7 @@ import java.lang.reflect.Method;
|
||
|
import java.lang.reflect.Modifier;
|
||
|
import java.util.HashMap;
|
||
|
import java.util.Map;
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.runtime.log.Log;
|
||
|
import org.apache.velocity.util.MapFactory;
|
||
|
|
||
|
diff --git a/src/parser/Parser.jjt b/src/parser/Parser.jjt
|
||
|
index 7ebdb67..f5d3c62 100644
|
||
|
--- a/src/parser/Parser.jjt
|
||
|
+++ b/src/parser/Parser.jjt
|
||
|
@@ -86,7 +86,7 @@ import org.apache.velocity.runtime.directive.Directive;
|
||
|
import org.apache.velocity.runtime.directive.Macro;
|
||
|
import org.apache.velocity.runtime.directive.MacroParseException;
|
||
|
import org.apache.velocity.util.StringUtils;
|
||
|
-import org.apache.commons.lang.text.StrBuilder;
|
||
|
+import org.apache.commons.lang3.text.StrBuilder;
|
||
|
import org.apache.velocity.runtime.RuntimeConstants;
|
||
|
|
||
|
/**
|
||
|
diff --git a/src/test/org/apache/velocity/io/UnicodeInputStreamTestCase.java b/src/test/org/apache/velocity/io/UnicodeInputStreamTestCase.java
|
||
|
index 3142f45..ff36682 100644
|
||
|
--- a/src/test/org/apache/velocity/io/UnicodeInputStreamTestCase.java
|
||
|
+++ b/src/test/org/apache/velocity/io/UnicodeInputStreamTestCase.java
|
||
|
@@ -27,7 +27,7 @@ import junit.framework.Test;
|
||
|
import junit.framework.TestCase;
|
||
|
import junit.framework.TestSuite;
|
||
|
|
||
|
-import org.apache.commons.lang.ArrayUtils;
|
||
|
+import org.apache.commons.lang3.ArrayUtils;
|
||
|
|
||
|
|
||
|
/**
|
||
|
diff --git a/src/test/org/apache/velocity/test/BaseTestCase.java b/src/test/org/apache/velocity/test/BaseTestCase.java
|
||
|
index 9faf585..f893d0f 100644
|
||
|
--- a/src/test/org/apache/velocity/test/BaseTestCase.java
|
||
|
+++ b/src/test/org/apache/velocity/test/BaseTestCase.java
|
||
|
@@ -353,7 +353,7 @@ public abstract class BaseTestCase extends TestCase implements TemplateTestBase
|
||
|
buf.append(baseFile.getPath());
|
||
|
}
|
||
|
|
||
|
- if (org.apache.commons.lang.StringUtils.isNotEmpty(ext))
|
||
|
+ if (org.apache.commons.lang3.StringUtils.isNotEmpty(ext))
|
||
|
{
|
||
|
buf.append('.').append(ext);
|
||
|
}
|
||
|
diff --git a/src/test/org/apache/velocity/test/MethodCacheKeyTestCase.java b/src/test/org/apache/velocity/test/MethodCacheKeyTestCase.java
|
||
|
index d1ad1db..e70c5f2 100644
|
||
|
--- a/src/test/org/apache/velocity/test/MethodCacheKeyTestCase.java
|
||
|
+++ b/src/test/org/apache/velocity/test/MethodCacheKeyTestCase.java
|
||
|
@@ -21,7 +21,7 @@ package org.apache.velocity.test;
|
||
|
|
||
|
import junit.framework.TestCase;
|
||
|
|
||
|
-import org.apache.commons.lang.ArrayUtils;
|
||
|
+import org.apache.commons.lang3.ArrayUtils;
|
||
|
import org.apache.velocity.runtime.parser.node.ASTMethod;
|
||
|
|
||
|
/**
|
||
|
diff --git a/src/test/org/apache/velocity/test/sql/HsqlDB.java b/src/test/org/apache/velocity/test/sql/HsqlDB.java
|
||
|
index 6f6c9f6..89d9d53 100644
|
||
|
--- a/src/test/org/apache/velocity/test/sql/HsqlDB.java
|
||
|
+++ b/src/test/org/apache/velocity/test/sql/HsqlDB.java
|
||
|
@@ -19,7 +19,7 @@ package org.apache.velocity.test.sql;
|
||
|
* under the License.
|
||
|
*/
|
||
|
|
||
|
-import org.apache.commons.lang.StringUtils;
|
||
|
+import org.apache.commons.lang3.StringUtils;
|
||
|
|
||
|
import org.hsqldb.jdbcDriver;
|
||
|
|
||
|
--
|
||
|
2.26.2
|
||
|
|