Last modified by Thomas Mortagne on 2023/10/13

<
From version < 22.1 >
edited by Vincent Massol
on 2015/01/30
To version < 24.1 >
edited by Guillaume Delhumeau
on 2015/02/04
>
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.VincentMassol
1 +XWiki.gdelhumeau
Content
... ... @@ -16,6 +16,7 @@
16 16  Important problems noticed after the 6.4 release:
17 17  
18 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]].
19 19  * [[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.
20 20  {{/error}}
21 21  
... ... @@ -354,6 +354,24 @@
354 354  </extension>
355 355  {{/code}}
356 356  
358 +== Bridging custom XWiki events from Prototype to jQuery ==
359 +
360 +Starting with this version you can catch from jQuery the custom XWiki events that are fired from Prototype.
361 +
362 +{{code language="js"}}
363 +require(['jquery', 'xwiki-events-bridge'], function($) {
364 + $('.some-element').on('xwiki:moduleName:eventName', function(event, data) {
365 + // Here, do something that will be executed at the moment the event is fired.
366 + doSomething();
367 +
368 + // The passed data is a reference to the event.memo from Prototype.
369 + console.log(data.somethingINeedToKnow);
370 + });
371 +});
372 +{{/code}}
373 +
374 +See the [[JavaScript API documentation>>platform:DevGuide.JavaScriptAPI]] for the list of events that you can listen to.
375 +
357 357  == Miscellaneous ==
358 358  
359 359  * Added new APIs to get all the icon themes present on the wiki, and all icons that these icon themes contain.(((

Get Connected