Last modified by Thomas Mortagne on 2023/10/13

<
From version < 21.2 >
edited by Manuel Smeria
on 2015/01/23
To version < 26.1 >
edited by Vincent Massol
on 2015/02/13
>
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.ManuelSmeria
1 +XWiki.VincentMassol
Content
... ... @@ -13,7 +13,13 @@
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]].
22 +* [[You cannot use a JNDI DataSource with this version>>http://jira.xwiki.org/browse/XWIKI-11706]].
17 17  {{/error}}
18 18  
19 19  = New and Noteworthy (since XWiki 6.3) =
... ... @@ -351,6 +351,24 @@
351 351  </extension>
352 352  {{/code}}
353 353  
360 +== Bridging custom XWiki events from Prototype to jQuery ==
361 +
362 +Starting with this version you can catch from jQuery the custom XWiki events that are fired from Prototype.
363 +
364 +{{code language="js"}}
365 +require(['jquery', 'xwiki-events-bridge'], function($) {
366 + $('.some-element').on('xwiki:moduleName:eventName', function(event, data) {
367 + // Here, do something that will be executed at the moment the event is fired.
368 + doSomething();
369 +
370 + // The passed data is a reference to the event.memo from Prototype.
371 + console.log(data.somethingINeedToKnow);
372 + });
373 +});
374 +{{/code}}
375 +
376 +See the [[JavaScript API documentation>>platform:DevGuide.JavaScriptAPI]] for the list of events that you can listen to.
377 +
354 354  == Miscellaneous ==
355 355  
356 356  * Added new APIs to get all the icon themes present on the wiki, and all icons that these icon themes contain.(((

Get Connected