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 6903f75 [maven-release-plugin] prepare for next development iteration
new 9cca533 Some small refactors on htmltowiki decorators. Most notably,
`<a>` syntax decorator only performs tasks related to syntax decoration.
new 3d61f01 format, fix some typos, use log placeholders
new 9e308da JSPWIKI-1168: Simplify required configuration to log on file
new a7d1249 JSPWIKI-1169: Add Bill of materials module to build
new 504e870 `DefaultReferenceManager` now only synchronizes when
(un)serializing data, since the underlying ready handling cmaps used are
aloncurrency.
new 6b3aeba Added AttributesExtension to jspwiki-markdown in order to add
support for Markdown Extra attributes.
new bd73e02 fix compilation
new e585f53 Update dependencies
new 479edef 2.11.2-git-01
The 9 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 | 29 ++-
LICENSE | 1 +
.../src/main/java/org/apache/wiki/api/Release.java | 6 +-
jspwiki-bom/pom.xml | 222 +++++++++++++++++++++
.../WikiBootstrapServletContextListenerTest.java | 2 +-
.../src/test/resources/ini/jspwiki.properties | 19 +-
.../htmltowiki/HtmlStringToWikiTranslator.java | 2 +
.../apache/wiki/htmltowiki/SyntaxDecorator.java | 19 +-
.../htmltowiki/XHtmlElementToWikiTranslator.java | 29 ++-
.../wiki/htmltowiki/syntax/MarkupHelper.java | 111 +++++++++++
.../wiki/htmltowiki/syntax/jspwiki/ADecorator.java | 132 +++---------
.../htmltowiki/syntax/jspwiki/HrDecorator.java | 1 +
.../htmltowiki/syntax/jspwiki/ImageDecorator.java | 1 +
.../syntax/jspwiki/JSPWikiSyntaxDecorator.java | 16 +-
.../htmltowiki/syntax/jspwiki/MarkupHelper.java | 35 ----
.../syntax/jspwiki/PlainTextCssDecorator.java | 9 +-
.../jspwiki/PlainTextCssSpecialDecorator.java | 5 +-
.../syntax/jspwiki/PlainTextDecorator.java | 2 +-
.../wiki/references/DefaultReferenceManager.java | 57 +++---
.../src/main/resources/ini/jspwiki.properties | 17 ++
jspwiki-markdown/pom.xml | 5 +
.../wiki/parser/markdown/MarkdownDocument.java | 3 +
.../main/java/org/apache/wiki/util/XmlUtil.java | 19 +-
pom.xml | 17 +-
24 files changed, 548 insertions(+), 211 deletions(-)
create mode 100644 jspwiki-bom/pom.xml
create mode 100644
jspwiki-main/src/main/java/org/apache/wiki/htmltowiki/syntax/MarkupHelper.java
delete mode 100644
jspwiki-main/src/main/java/org/apache/wiki/htmltowiki/syntax/jspwiki/MarkupHelper.java