This is an automated email from the ASF dual-hosted git repository.
juanpablo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/jspwiki.git.
from 849e9c2 JSPWIKI-1115: migration from commons-lang 2.6 to 3.9 +
commons-text 1.7 (2/2)
new a4906d3 removal of @deprecated code (1) - AuthenticationManager: *
some constants not used anymore -> deleted, no replacement available * login(
WikiSession, String, String ) -> deleted use instead login( WikiSession,
HttpServletRequest, String, String )
new 7c03330 removal of @deprecated code (2) - AuthorizationManager:
removed unused method
new c7709c0 removal of @deprecated code (3) - GroupDatabase: removal of
commit(), no replacement as the method wasn't used anymore
new cac4d61 fix couple of probable concurrent issues if the
XMLGroupDatabase is kept running around; format code
new d198538 removal of @deprecated code (4) - CookieAssertionLoginModule:
remove unused constant
new f0e08d5 code format
new c4bc572 removal of @deprecated code (5) - UserProfile: removed
setWikiName(String), wasn't used anywhere
new 018cbdd removal of @deprecated code (6) - WikiEngineEvent: removed
getWikiEngine(), use getEngine() instead
new f78a215 code format
new 2b2a879 removal of @deprecated code (7) - JSPWikiMarkupParser: *
JSPWikiMarkupParser.isExternalLink(String) -> use instead
LinkParsingOperations#isExternalLink(String) *
JSPWikiMarkupParser.isPluginLink(String) -> use instead
LinkParsingOperations#isPluginLink(String)
new a80cd3c removal of @deprecated code (8) - RSSGenerator: remove unused
variables, a little bit of code format
new 5f11314 removal of @deprecated code (9) - SearchManager: remove
deprecated jspwiki.useLucene property
new 4e3e778 removal of @deprecated code (10) - UserCheckTag: removal of
exists attribute, use status instead
new 9f1b363 removal of @deprecated code (11) - VariableManager: removal
of isVariableLink(String), use LinkParsingOperations#isVariableLink(String)
instead
new de0d511 format code
new 9e9ec9f removal of @deprecated code (12) - WikiEngine: * removed
WikiEngine.getEditURL -> use instead WikiEngine#getURL(String, String, String,
boolean) or WikiContext#getURL(String, String) * removed
WikiEngine.getAttachmentURL -> use instead WikiEngine#getURL(String, String,
String, boolean) or WikiContext#getURL(String, String) * removed
WikiEngine.safeGetParameter -> no replacement, no longer necessary
new 15fbc8e WikiEngine#getContentEncoding returns a Charset now, instead
of a String + propagate the change
new 22a7d52 small refactor of parseLong
new f48280a propagate changes from WikiEngine#getContentEncoding
returning a Charset now
new a7467bb code format
new 3600c98 removal of @deprecated code (13) - Editor: removed unused
getUrl() method
new 1ec4300 INFRA-18845: switch sonar instance to sonarcloud.io
new efd7887 2.11.0-M5-git-10
new e1975f3 fix date
The 24 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
ChangeLog | 11 +-
Jenkinsfile | 7 +-
.../src/main/java/org/apache/wiki/Release.java | 2 +-
.../main/java/org/apache/wiki/VariableManager.java | 91 +++-------
.../src/main/java/org/apache/wiki/WikiContext.java | 48 ++---
.../src/main/java/org/apache/wiki/WikiEngine.java | 180 ++++---------------
.../wiki/ajax/WikiAjaxDispatcherServlet.java | 9 +-
.../apache/wiki/auth/AuthenticationManager.java | 50 ------
.../org/apache/wiki/auth/AuthorizationManager.java | 116 +++++-------
.../apache/wiki/auth/authorize/GroupDatabase.java | 20 +--
.../wiki/auth/authorize/JDBCGroupDatabase.java | 15 --
.../wiki/auth/authorize/XMLGroupDatabase.java | 194 +++++++--------------
.../wiki/auth/login/AbstractLoginModule.java | 49 +++---
.../auth/login/CookieAssertionLoginModule.java | 20 +--
.../wiki/auth/user/AbstractUserDatabase.java | 74 +++-----
.../apache/wiki/auth/user/DefaultUserProfile.java | 13 --
.../org/apache/wiki/auth/user/UserProfile.java | 9 -
.../org/apache/wiki/diff/ExternalDiffProvider.java | 42 +++--
.../org/apache/wiki/event/WikiEngineEvent.java | 51 ++----
.../java/org/apache/wiki/filters/CreoleFilter.java | 36 ++--
.../java/org/apache/wiki/filters/SpamFilter.java | 50 +++---
.../apache/wiki/parser/JSPWikiMarkupParser.java | 33 ----
.../java/org/apache/wiki/rss/RSSGenerator.java | 78 +++------
.../java/org/apache/wiki/search/SearchManager.java | 34 +---
.../org/apache/wiki/tags/ContentEncodingTag.java | 17 +-
.../org/apache/wiki/tags/EditorIteratorTag.java | 34 ++--
.../java/org/apache/wiki/tags/UserCheckTag.java | 120 ++++---------
.../java/org/apache/wiki/ui/CommandResolver.java | 40 ++---
.../src/main/java/org/apache/wiki/ui/Editor.java | 50 ++----
.../java/org/apache/wiki/ui/EditorManager.java | 21 ++-
.../java/org/apache/wiki/ui/WikiJSPFilter.java | 5 +-
.../java/org/apache/wiki/ui/WikiServletFilter.java | 24 +--
.../org/apache/wiki/url/DefaultURLConstructor.java | 139 ++++-----------
.../org/apache/wiki/url/ShortURLConstructor.java | 24 +--
.../java/org/apache/wiki/url/URLConstructor.java | 11 +-
.../main/java/org/apache/wiki/util/FileUtil.java | 119 ++++---------
.../java/org/apache/wiki/util/FileUtilTest.java | 36 ++--
37 files changed, 562 insertions(+), 1310 deletions(-)