Changes for page Release Notes for XWiki 6.4
Last modified by Thomas Mortagne on 2020/01/28
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. vrachieru1 +XWiki.gdelhumeau - Content
-
... ... @@ -13,7 +13,12 @@ 13 13 Last but not least, this version provides the ability to rate Extensions inside the Extension Repository and visualise them inside the Extension Manager. 14 14 15 15 {{error}} 16 -In this release, we're now providing an easy way to install SOLR as an external server. When doing this change, we moved a plugin inside the SOLR index directory. Thus, if you're using XWiki with SOLR in embedded mode (the default), when you upgrade, this plugin will not be present in your SOLR directory and XWiki will fail to start. To work around this problem, you'll need to remove the ##<permanent directory>/solr/## directory (which will trigger a new reindexing when you next start XWiki). This will be [[fixed in XWiki 6.4.1>>http://jira.xwiki.org/browse/XE-1463]]. 16 +Important problems noticed after the 6.4 release: 17 + 18 +* In this release, we're now providing an easy way to install SOLR as an external server. When doing this change, we moved a plugin inside the SOLR index directory. Thus, if you're using XWiki with SOLR in embedded mode (the default), when you upgrade, this plugin will not be present in your SOLR directory and XWiki will fail to start. To work around this problem, you'll need to remove the ##<permanent directory>/solr/## directory (which will trigger a new reindexing when you next start XWiki). This will be [[fixed in XWiki 6.4.1>>http://jira.xwiki.org/browse/XE-1463]]. 19 +* The main CSS is often badly generated, [[this will be fixed in 6.4.1>>http://jira.xwiki.org/browse/XWIKI-11755]]. 20 +* [[HTML exports are taking very long>>http://jira.xwiki.org/browse/XWIKI-11731]] (over 1 minute to export a single page). Thus if you're using this feature, we recommend waiting for 6.4.1 and not upgrading to 6.4. 21 +* [[The HTML export is broken for flamingo (fixed in 6.4.1)>>http://jira.xwiki.org/browse/XWIKI-11659]] 17 17 {{/error}} 18 18 19 19 = New and Noteworthy (since XWiki 6.3) = ... ... @@ -184,7 +184,7 @@ 184 184 * A click to the Document Index does not lead to an other space anymore. 185 185 * [[extensions:Extension.Tag Cloud Macro]] has now a new parameter (spaces) to display a tag cloud from multiple spaces. 186 186 187 -See the [[full list of JIRA issues>>http://jira.xwiki.org/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+in+%28XCOMMONS%2C+XRENDERING%2C+XWIKI%2C+XE%29+and+status+%3D+Closed+and+resolution+%3D+Fixed+and+fixVersion+%3D+%22 <version>%22&tempMax=1000]] fixed in this release.192 +See the [[full list of JIRA issues>>http://jira.xwiki.org/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+in+%28XCOMMONS%2C+XRENDERING%2C+XWIKI%2C+XE%29+and+status+%3D+Closed+and+resolution+%3D+Fixed+and+fixVersion+%3D+%226.4%22&tempMax=1000]] fixed in this release. 188 188 189 189 = For Developers = 190 190 ... ... @@ -312,6 +312,7 @@ 312 312 The information regarding ratings has been included in the AbstractExtension element of the XML Schema, thus it is available in the extension's detailed information and in the search results. 313 313 314 314 **More information:** 320 + 315 315 * [[Repository module documentation>>http://extensions.xwiki.org/xwiki/bin/view/Extension/Repository+Module#HREST]] 316 316 317 317 **Example:** ... ... @@ -350,6 +350,24 @@ 350 350 </extension> 351 351 {{/code}} 352 352 359 +== Bridging custom XWiki events from Prototype to jQuery == 360 + 361 +Starting with this version you can catch from jQuery the custom XWiki events that are fired from Prototype. 362 + 363 +{{code language="js"}} 364 +require(['jquery', 'xwiki-events-bridge'], function($) { 365 + $('.some-element').on('xwiki:moduleName:eventName', function(event, data) { 366 + // Here, do something that will be executed at the moment the event is fired. 367 + doSomething(); 368 + 369 + // The passed data is a reference to the event.memo from Prototype. 370 + console.log(data.somethingINeedToKnow); 371 + }); 372 +}); 373 +{{/code}} 374 + 375 +See the [[JavaScript API documentation>>platform:DevGuide.JavaScriptAPI]] for the list of events that you can listen to. 376 + 353 353 == Miscellaneous == 354 354 355 355 * Added new APIs to get all the icon themes present on the wiki, and all icons that these icon themes contain.(((