ReleaseNotesXWikiEnterprise17
Last modified by Thomas Mortagne on 2017/03/24
ContentsThe [toc] macro is a standalone macro and it cannot be used inline. Click on this message for details.
Release Notes for XWiki Enterprise 1.7
Changes since XWiki Enterprise 1.6
1. New Rendering improvements
- XWiki Syntax 2.0 improvements:
- Allow wiki syntax inside links. Example of an image link:
[[image:Space.Page@my.png>>reference]]
- New syntax for tables. Example:
|= row1 |= row2
| cell1 | cell2
| cell1 | cell2
- Images can be defined as URLs. Example:
image:http://xwiki.org/some/path/my.png
- New Macros:
- Code macro (experimental). Allows to perform syntax highlighting of the content. Only supports HTML, XML and PHP for the moment. Example:
{{code language="xml"}}
<hello>
<world>Cool!</world>
</hello>
{{/code}}
<hello>
<world>Cool!</world>
</hello>
{{/code}}
- Script macro. The new script macros add the ability to use any scripting language supporting JSR-223. For now the default XWiki distribution comes with only a Groovy 1.6 support but it easy to add support for other language (like ruby, python, etc.) simply by adding the corresponding engine and implementation. See https://scripting.dev.java.net/.
To use the new script macro:
- Script macro. The new script macros add the ability to use any scripting language supporting JSR-223. For now the default XWiki distribution comes with only a Groovy 1.6 support but it easy to add support for other language (like ruby, python, etc.) simply by adding the corresponding engine and implementation. See https://scripting.dev.java.net/.
{{script language="groovy"}}
println "Hello World"
{{/script}}
println "Hello World"
{{/script}}
{{groovy}}
println "Hello World"
{{/groovy}}
println "Hello World"
{{/groovy}}
- Box macro. This macro allow to put content in a visual container. Example:
{{box}}
==some==
* wiki
* content
{{/box}}
==some==
* wiki
* content
{{/box}}
2. New WYSIWYG editor improvements
- Link feature implemented (link to wiki page, web page, email).
- Lots of bug fixes.
3. WebDAV Support
XWiki now expose a WebDAV server interface. This means you can now access/edit/delete page sources and attachments from any WebDAV client.4. Usability Improvements
- New Attachment view in the Index: you can now see all the attachments of the wiki in the index, under the "Attachment" tab.
4. Other Changes
- Multiwiki (a.k.a farm mode or virtual mode) is now available without using subdomains for wikis. Note that this option is available from xwiki.cfg and not enabled by default. Example of URLs (the "/wiki/" part is configurable):
http://mydomain.com/xwiki/wiki/mywiki1/view/Main/WebHome
http://mydomain.com/xwiki/wiki/mywiki2/view/Main/WebHome
http://mydomain.com/xwiki/wiki/mywiki2/view/Main/WebHome
- Groovy upgrade : The groovy engine has been upgraded to the last 1.6 beta version. You can now use all the new features of groovy as well as speed improvements and bugfixes from groovy 1.0 to 1.6 beta 2. See http://groovy.codehaus.org/ for more information.
- Reorganized, documented and enhanced * Added a ROOT webapp to the standalone distribution.
5. Important Bugfixes
- Saving a blank wiki page throws exception in Oracle
- Registration is still possible when right to register for Unregistered user is explicit set to deny
- Documents with name with spaces or other special chars can't properly save added image in WYSIWYG editor
- Support of dots in ldap login has introduce a security hole
- SMTP server address is not re-read when it's changed in global preferences
- Watchlist update sent by email does not contain the full path to a changed attachment
- Wrong user name is inserted in group during LDAP membership synchronisation
Known issues
Common Migration notes
You may also want to import the default wiki XAR in order to benefit from improvements listed above.