Last modified by Thomas Mortagne on 2017/03/24

From version 6.4
edited by Thomas Mortagne
on 2014/05/05
Change comment: There is no comment for this version
To version 6.5
edited by Thomas Mortagne
on 2014/05/05
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -20,7 +20,9 @@
20 20  
21 21  == Miscellaneous ==
22 22  
23 -<insert misc user stuff and important bug fix descriptions here in a list, when they are too small to warrant a section by themselves - Change the version in the URL below!>
23 +* A new macro ~{~{watchlist/}} can be used to embed the watchlist of the current user on any page. This is especially useful for a dashboard:(((
24 +{{image reference="watchlist.png"/}}
25 +)))
24 24  
25 25  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%2C+XEM%29+and+status+%3D+Closed+and+resolution+%3D+Fixed+and+fixVersion+%3D+%22<version>%22&tempMax=1000]] fixed in this release.
26 26  
... ... @@ -40,6 +40,26 @@
40 40  
41 41  Note that right now most Actions are still implemented the old way in the oldcore module without Components and using Struts. The goal is to progressively rewrite them using this new Action API.
42 42  
45 +== LiveTable Query Filters ==
46 +
47 +It's now possible to specify which [[Query filters to apply when retrieving LiveTable data>>extensions:Extension.Livetable Macro]].
48 +
49 +For example if you want to show always hidden docs, then you would use:
50 +
51 +{{code language="none"}}
52 +...
53 + 'queryFilters': 'currentLanguage',
54 +...
55 +{{/code}}
56 +
57 +And if you wish to show all docs for all languages and hidden docs you would use:
58 +
59 +{{code language="none"}}
60 +...
61 + 'queryFilters': '',
62 +...
63 +{{/code}}
64 +
43 43  == Deprecated and Retired projects ==
44 44  
45 45  * ##xwiki-platorm-wiki-manager## has been removed from the platform. It is still available on the [[contrib repository>>https://github.com/xwiki-contrib/xwiki-platform-wiki-manager]] and via the extensions [[extensions:Extension.Wiki Manager Plugin]] and [[extensions:Extension.Wiki Manager Application]].
... ... @@ -77,6 +77,10 @@
77 77  
78 78  == Miscellaneous ==
79 79  
102 +* The XAR plugins's ##format## mojo now handles properly the ##defaultLanguage## element: if a document has translation we assume it means the document is not a technical document and thus we set the default language to be English. This allows the XWiki SOLR Search to return results when the English language is selected in language facet.
103 +* The XAR plugin's ##verify## mojo now also handles the ##defaultLanguage## check accordingly.
104 +* The XAR plugin's ##verify## mojo now checks for missing license headers (if the ##formatLicense## configuration property is set to ##true##).
105 +* The XAR plugin's ##format## and ##verify## mojos now support including/excluding files.
80 80  * You can bind a list or an array to a XWQL or HQL parameter:(((
81 81  {{code language="none"}}
82 82  {{velocity}}
... ... @@ -85,7 +85,17 @@
85 85  {{/velocity}}
86 86  {{/code}}
87 87  )))
114 +* Add new Locale based API to manipulate current Locale:(((
115 +{{code language="velocity}}
116 + $xcontext.locale
117 + $xcontext.interfaceLocale
118 +{{/code}}
119 +)))
120 +* ##$services.wiki.getAll()## makes a better use of its internal cache, so the performances are better.
121 +* New API to test if logs of specific level exist in LogQueue.
122 +* Added support for several sets of properties for the same reference in ##org.xwiki.model.reference.EntityReferenceSet##.
88 88  
124 +
89 89  = Translations =
90 90  
91 91  The following translations have been updated:

Get Connected