Wiki source code of ReleaseNotesXWikiEnterprise18

Version 10.1 by Thomas Mortagne on 2009/03/20

Hide last authors
Thomas Mortagne 1.1 1 #startfloatingbox()
2 *Contents*
3 #toc ("2" "3" "")
4 #endfloatingbox()
5
6 1 Release Notes for XWiki Enterprise 1.8
7
Thomas Mortagne 6.1 8 The focus on 1.8 branch was on making the new rendering architecture and the new GWT based WYSIWYG able to fully replace the "old" rendering and TinyMCE based WYSIWYG.
9 #warning("This version introduce conditional loading of JavaScript and StyleSheet in order for pages to load faster, sending to the browser only the files it needs to display the requested pages. This might break existing applications developed on top of XWiki that relied on such JavaScript and CSS files being present all the time. See [Applications migration section>#HApplicationsmigration] for more details")
Thomas Mortagne 1.1 10
Thomas Mortagne 6.1 11 1.1 Changes since XWiki Enterprise 1.7
Thomas Mortagne 1.1 12
Thomas Mortagne 5.1 13 1.1.1 1. First usable version of new rendering and new WYSIWYG editor
14
15 * Add ability to configure xwiki to use the XWiki Syntax 2.0 as default when creating new pages
16 * First usable version of the new GWT WYSIWYG editor
17 * Upgrade to groovy 1.6.
18 * new "useravatar" macro for 2.0 syntax
19 * new "rss" macro for 2.0 syntax
20 * Added [wiki syntax for embedded documents>platform:Main.XWikiSyntax#HEmbeddeddocuments28XWikisyntax20only29]
21 * Syntax API to convert a document from one syntax to another + new converter from XWiki Syntax 1.0 to XWiki Syntax 2.0. #info("You can try it by changing the syntax identifier of a page.")
Thomas Mortagne 8.1 22 * Many bug fixes and improvements in the new GWT WYSIWYG editor
23 * Many bug fixes and improvements in the new XWiki 2.0 syntax rendering
Thomas Mortagne 5.1 24
25 1.1.1 2. Usability Improvements
26
Thomas Mortagne 1.1 27 * *New Wiki Dashboard* on the home page:
Thomas Mortagne 5.1 28 ** Spaces: all the spaces within your wiki (technical spaces are hidden):
29 *** Links to the list of pages within each spaces.
30 *** Links to the administration of each space.
31 *** Allows to create new spaces.
32 ** Tags: all the tags in the wiki under the form of a tag cloud.
33 ** Recent changes: all the recent modifications in the wiki, grouped by author and by date.\\\\#displayImg("dashboard.jpg")
34
Thomas Mortagne 1.1 35 * *New way of displaying tags*, with 2 new features:
Thomas Mortagne 5.1 36 ** Tag rename.
37 ** Tag delete.\\\\#displayImg("tags.jpg")
38
Thomas Mortagne 1.1 39 * *Page loading time reduced by 30%*. Statistics on Sandbox.WebHome, ~~without client-side file caching~~ (most of the downloaded files are cached on the client after the first request):\\{table}
40 - | XE 1.8M1 | XE 1.8M2
41 Requests number | 37 | 25
42 Total size | 332Ko | 200Ko
43 Download @ T1 (seconds) | 9.16 | 6.06
44 {table}
45 * *Improved information section in document footer*, including document children:\\\\#displayImg("footer.jpg")
46
Thomas Mortagne 5.1 47 1.1.1 3. Authentication
Thomas Mortagne 1.1 48
Thomas Mortagne 5.1 49 * Improved authentication performance for LDAP. By default the authentication system now calls the authenticator only once by session, this means it does not call the LDAP authenticator and does not generate queries on the LDAP server for each request anymore. This can be changed using the <tt>xwiki.authentication.always</tt> configuration property in <tt>xwiki.cfg</tt>.
50
51 1.1.1 4. Translations
52
53 * New or improved translations:
54 ** french
55 ** german
56 ** spanish
57
58 1.1.1 5. Important bugs fixed
59
Thomas Mortagne 9.1 60 * Scaled images in exported PDF and RTF have wrong dimensions
61 * When a wiki is removed, it's not removed form the cache
62 * Including a document with first or second heading level breaks the including document section edit link
63 * PDF export does not take into account the encoding specified in xwiki.cfg
Thomas Mortagne 1.1 64
Thomas Mortagne 7.1 65 1.1.1 6. Others
66
67 * *[New Office Importer>code:Applications.OfficeImporterApplication]*
68 * *New REST API*
69 * *[New Blog application>code:Applications.BlogApplication]*
70
Thomas Mortagne 1.1 71 ## + lots of other changes, see [Platform details>http://jira.xwiki.org/jira/secure/ReleaseNote.jspa?version=10696&styleName=Text&projectId=10010&Create=Create].
72
73 1.1 Known issues
74
75 * [Bugs we know about>http://jira.xwiki.org/jira/secure/IssueNavigator.jspa?reset=true&&type=1&pid=10010&resolution=-1&sorter/field=updated&sorter/order=DESC]
76
77 1.1 Common Migration notes
78
79 #warning("If you're running in a multiwiki setup you'll also need to define the property <tt>xwiki.store.migration.databases=all</tt> to your <tt>xwiki.cfg</tt> file or explicitely name all databases to be migrated as in <tt>xwiki.store.migration.databases=db1,db2,...</tt>.")
80
81 You may also want to [import the default wiki XAR>Main.Download] in order to benefit from improvements listed above.
82
83 #warning("Always make sure you compare your <tt>xwiki.cfg</tt> file with the newest version since some configuration parameters were added. Of note, you should add <tt>xwiki.store.migration=1</tt> so that XWiki will attempt to automatically migrate your current database to the new schema. Make sure you backup your Database before doing anything.")
Thomas Mortagne 3.1 84
85 1.1.1 Applications migration
86
87 XE 1.8M2 has introduced [conditional loading of JavaScript and StyleSheet files>http://jira.xwiki.org/jira/browse/XWIKI-3177] in order for pages to load faster, sending to the browser only the files it needs to display the requested pages. This might break existing applications developed on top of XWiki that relied on such JavaScript and CSS files being present all the time. Concerned files and libraries are the following:
88 * scriptaculous files
89 * accordions files
90 * chart wizard files
91 * usersandgroups.js and usersandgroups.css
92 * livetable.js and livetable.css
93 * lightbox.js
94 * tablefilterNsort.js and table.css
95 * fullscreenEdit.js and fullscreenEdit.css
96
97 If you have applications that relies on one or several of these libraries, you will need to explicitly make them request the desired files using the [Skin Extension plugin>code:Plugins.SkinExtensionsPlugin]. For example, if your application needs the live-table feature (the dynamic AJAX grid), add the following lines to the code page that requires it:
98
99 {code}
100 $xwiki.jsfx.use('js/xwiki/table/livetable.js') ## Inject livetable.js <script> tag in the header
101 $xwiki.ssfx.use('js/xwiki/table/livetable.css') ## Inject livetable.css <link> tag in the header
102 {code}

Get Connected