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 1042544 2.11.0-M8-git-02
new 216323a Portable build native executables can be built entirely
through maven, on one run; just mvn clean install
-Dgenerate-native-launchers=true
new b59f61c Portable build native executables can be built entirely
through maven, on one run; just mvn clean install
-Dgenerate-native-launchers=true
new 68b33f6 update tomcat to 9.0.39
new 6068c32 fix small typo
new 39919c4 small refactors suggested by intellij
new 68e5af2 Dependency udpates
new 4327ca5 update versions noted on LICENSE
new 0f7e559 small corrections on pom.xml files; set selenide download
folder inside ./target
new 532bd35 new setup options for Selenide tests, so they're are a bit
more configurable
new 7a7d1d3 added javadocs
new 38a59ff added actions for incoming search and edit tests + an open
url method to simplify tests + javadocs
new f8a5d91 make tests a little bit more readable
new 3c2e889 added functional tests for searches
new 19fb411 added functional tests for page edits
new 5603db8 make search-related background threads become active faster
new d2b48ed allow anonymous edits on container managed security instances
new ba10bd9 Rename ReadWikiPage to ViewWikiPage
new 5e967ea code polish
new 5898513 code polish
new 8896a01 simplify View page actions in order to make the tests a bit
more readable
new d207348 update cargo plugin to 1.8.2
new c9919b5 Jenkinsfile uses JDK 11 to perform the build, as this is now
the minimum required by SonarQube
(https://sonarcloud.io/documentation/appendices/end-of-support/)
new 25cf6d0 2.11.0-M8-git-03
The 23 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.md | 20 +++
Jenkinsfile | 6 +-
LICENSE | 54 ++++----
.../src/main/java/org/apache/wiki/api/Release.java | 2 +-
jspwiki-it-tests/jspwiki-it-test-cma-jdbc/pom.xml | 2 +-
.../src/main/webapp/WEB-INF/web.xml | 5 +-
jspwiki-it-tests/jspwiki-it-test-cma/pom.xml | 2 +-
.../src/main/webapp/WEB-INF/web.xml | 5 +-
.../jspwiki-it-test-custom-absolute-urls/pom.xml | 2 +-
.../jspwiki-it-test-custom-jdbc/pom.xml | 2 +-
.../java/org/apache/wiki/its/AnonymousViewIT.java | 15 ++-
.../src/main/java/org/apache/wiki/its/EditIT.java | 53 ++++++++
.../src/main/java/org/apache/wiki/its/LoginIT.java | 16 +--
.../main/java/org/apache/wiki/its/SearchIT.java | 53 ++++++++
.../java/org/apache/wiki/its/environment/Env.java | 12 +-
.../java/org/apache/wiki/pages/PageBuilder.java | 2 +
.../apache/wiki/pages/haddock/EditWikiPage.java | 78 +++++++++++
.../org/apache/wiki/pages/haddock/LoginPage.java | 25 +++-
.../apache/wiki/pages/haddock/ReadWikiPage.java | 68 ----------
.../wiki/pages/haddock/SearchResultsPage.java | 81 +++++++++++
.../apache/wiki/pages/haddock/ViewWikiPage.java | 149 +++++++++++++++++++++
.../src/main/resources/jspwiki-custom.properties | 6 +-
jspwiki-it-tests/pom.xml | 1 +
.../java/org/apache/wiki/WikiBackgroundThread.java | 3 +-
.../apache/wiki/search/LuceneSearchProvider.java | 13 +-
.../wiki/workflow/DefaultWorkflowManager.java | 3 +-
.../main/resources/templates/default_es.properties | 2 +-
jspwiki-portable/build.xml | 36 +++--
jspwiki-portable/pom.xml | 103 ++++++++++++++
.../tomcat/woas.app/Contents/Java/bootstrap.jar | Bin 35912 -> 35909 bytes
.../tomcat/woas.app/Contents/Java/tomcat-juli.jar | Bin 49605 -> 49769 bytes
.../src/overlay/launchers/tomcat/woas.exe | Bin 3625247 -> 3612748
bytes
mvn_cheat-sheet.md | 1 +
pom.xml | 10 +-
34 files changed, 674 insertions(+), 156 deletions(-)
create mode 100644
jspwiki-it-tests/jspwiki-selenide-tests/src/main/java/org/apache/wiki/its/EditIT.java
create mode 100644
jspwiki-it-tests/jspwiki-selenide-tests/src/main/java/org/apache/wiki/its/SearchIT.java
create mode 100644
jspwiki-it-tests/jspwiki-selenide-tests/src/main/java/org/apache/wiki/pages/haddock/EditWikiPage.java
delete mode 100644
jspwiki-it-tests/jspwiki-selenide-tests/src/main/java/org/apache/wiki/pages/haddock/ReadWikiPage.java
create mode 100644
jspwiki-it-tests/jspwiki-selenide-tests/src/main/java/org/apache/wiki/pages/haddock/SearchResultsPage.java
create mode 100644
jspwiki-it-tests/jspwiki-selenide-tests/src/main/java/org/apache/wiki/pages/haddock/ViewWikiPage.java