Version 56.1 by Vincent Massol on 2015/07/16

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 This is the release notes for [[XWiki Commons>>http://commons.xwiki.org]], [[XWiki Rendering>>http://rendering.xwiki.org]], [[XWiki Platform>>http://platform.xwiki.org]] and [[XWiki Enterprise>>http://enterprise.xwiki.org]]. They share the same release notes as they are released together and have the same version.
6
7 The main focus of this milestone is the introduction of support for Nested Documents in XWiki's UI together with an important amount of changes in the platform and default extensions to better support this.
8
9 {{error}}
10 We've discovered a [[blocking issue after the release>>http://jira.xwiki.org/browse/XWIKI-12315]]: if you use a distribution that doesn't provide the UI the Distribution Wizard will hang when trying to install the UI. We're analyzing the issue and will provide a fix quickly.
11 {{/error}}
12
13 = New and Noteworthy (since XWiki 7.1) =
14
15 [[Full list of issues fixed and Dashboard for 7.2>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=13390]].
16
17 == Nested Documents ==
18
19 It's now possible to create wiki pages inside other wiki pages. More specifically we've decided to drop the concept of Space in the UI (it's still there at the API/platform level) and instead, to replace it with the concept of Nested Documents (a.k.a. Nested Pages).
20
21 We've also decided to drop the concept of Parent/Child relationship since it was too complex for end users to have 2 hierarchies: the Space/Page hierarchy and the Parent/Child hierarchy. The Parent/Child hierarchy also had limitations: you could inherit page permissions for example. Thus the idea is to have a single hierarchy based on Nested Documents.
22
23 Terminology:
24
25 * **Nested Document** (a.k.a **Nested Page**, **Non-Terminal Page**): This is a wiki page that can have children pages. Technically a Nested Document is implemented as a **WebHome** page inside a Space.
26 * **Terminal Document** (a.k.a **Terminal Page**): This a wiki page that cannot have children pages. Applications and script can create Terminal Pages. Advanced Users will also be able to create Terminal Pages from the UI. Standard Users will only be able to create Nested Documents.
27 * **Nested Space**: A Space which has another Space as parent.
28
29 Current status:
30
31 * In this milestone the UI has not been updated yet but a lot of the required changes have been done in the backend code to support Nested Documents.
32 * What you can try today:
33 ** Typing URLs with Nested Documents. For example typing {{{http://localhost:8080/xwiki/bin/view/A/B/C}}} and then clicking Edit will allow you to create a Page C inside pages A and B (which don't need to exist).
34 ** Creating Nested Documents with "Add > Page" should also work even though the UI will be improved in the next version.
35 ** Moving/Deleting Nested Documents work at the script level but not at the UI level yet, see below for examples you can try out.
36 ** Importing/Exporting Nested Documents should work fine even though the UI will be improved in the next version.
37 ** When you type a URL to a Nested Document (i.e. to a Space), you get redirected to the proper Document. For example typing {{{http://localhost:8080/xwiki/bin/view/A/B/C}}} will lead you to Document ##A.B.C.WebHome## (unless Document ##A.B.C## exists)
38 * The Parent/Child relationship is still used in this version and will be turned off in the next one (7.2M2)
39
40 == Script right ==
41
42 {{error}}TODO: Documentation{{/error}}
43
44 == Miscellaneous ==
45
46 * The list of available template providers is now sorted by document full name.
47
48 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+%227.2-milestone-1%22&tempMax=1000]] fixed in this release.
49
50 = For Developers =
51
52 == Nested Spaces ==
53
54 Since Nested Spaces were already planned and supported in APIs like ##DocumentReference## there are not too many changes for those who were using recent APIs but there is still some and here are the main ones.
55
56 === Space Reference instead of Space name ===
57
58 The heart of the implementation is that the field that used to contain the unique document space now contain the possibly Nested Space Reference. In practice it means that:
59
60 * "##.##" (dot), "##:##" (colon) and "##\##" (baskslash) characters, which are part of a Space name will now be escaped (using the "##\##" character) in the ##space## (##XWD_WEB##) field from the Document's table in the Database. For example a space named ##Space:with.special\char## will be stored as ##{{{Space\:with\.special\\char}}}##.
61 * Same as for the database, the ##XWikiDocument/Document#getSpace()## methods now return a serialized Reference to the Space instead of what used to be the unique Space name (basically it return what's in the database). Same logic for ##XWikiDocument#setSpace()##. Those field have been deprecated a long time ago but they are still used in lots of places...
62 * Various APIs are also affected by this Space name to Space Reference input change:
63 ** ##XWiki#getSpaceDocsName## methods (both in the public and private XWiki API)
64 ** All the default ##XWikiURLFactory## implementation methods accepting a Space as parameter have been modified to accept a serialized Space Reference. Extensions/code implementing ##XWikiURLFactory## (or extending classes implementing ##XWikiURLFactory## such as ##XWikiServletURLFactory##) will need to be modified to handle nested spaces passed in the ##space## parameter of the various APIs. Here's how to parse Spaces passed as a String:(((
65 {{code language="java"}}
66 private EntityReferenceResolver<String> relativeEntityReferenceResolver =
67 Utils.getComponent(EntityReferenceResolver.TYPE_STRING, "relative");
68 ...
69 or
70 ...
71 @Inject
72 @Named("relative")
73 private EntityReferenceResolver<String> relativeEntityReferenceResolver;
74 ...
75 private List<String> extractSpaceNames(String spaces)
76 {
77 List<String> spaceNames = new ArrayList<>();
78 // Parse the spaces list into Space References
79 EntityReference spaceReference = this.relativeEntityReferenceResolver.resolve(spaces, EntityType.SPACE);
80 for (EntityReference reference : spaceReference.getReversedReferenceChain()) {
81 spaceNames.add(reference.getName());
82 }
83 return spaceNames;
84 }
85 {{/code}}
86 )))
87 ** Extensions/code implementing ##ExportURLFactoryActionHandler## will also need to be modified to handle nested Spaces passed in the ##space## parameter.
88 * Extensions/code implementing ##EntityReferenceSerializer## or ##DocumentReferenceResolver## must now handle Nested Spaces (in the past they were already supposed to handle Nested Spaces but since it was not used they could take shortcuts and it wasn't visible. It's now going to fail, see [[XWIKI-12191>>http://jira.xwiki.org/browse/XWIKI-12191]]).
89
90 === Space separator properly taken into account ===
91
92 The Reference syntax specification was already indication that "##.##" was supposed to be escaped in the space part of the Reference but it was not really taken into account so not escaping it was not making any difference. This is now fixed in the various standard String Reference resolvers so a Reference that don't follow the specification and did not escaped the "##.##" in the space part will be cut is several nested spaces. Anything that was serialized with one of the standard serializers was properly escaped so not worry here, the issue will be more for hand written or hardcoded String References.
93
94 === New XAR format ===
95
96 To support exporting/importing nested spaces some changes has been made to the XAR format. The format remain upward and downward compatible (except that you won't get nested spaces in your < 7.2 instance obviously).
97
98 Two new attributes has been added to the ##<xwikidoc>## root XML element
99
100 * ##reference##: the complete local Reference of the document in standard Reference format. ##<web>## and ##<name>## are deprecated (but still set). ##<web>## keep containing the (unescaped) space name when there is only one space and will contain the space Reference when there is several (when imported in a < 7.2 instance a document exported from a nested space will end up in a space having as name the space reference).
101 * ##locale##: the locale of the document. ##<language>## is deprecated. It was not technically needed in the context of nested spaces but it makes having the Reference as attribute more consistent. It also make getting all the entries from a new format XAR easier and faster since document space and name would be placed anywhere in the document.
102
103 === REST module ===
104
105 * The REST module now supports Nested Spaces. Example of url to access the page ##A.B.C.MyPage##: ##/xwiki/rest/wikis/xwiki/spaces/A/spaces/B/spaces/C/pages/MyPage##.
106
107 === URL modules ===
108
109 The URL modules have been modified to support Nested Spaces. As a consequence the [[URL formats supported by the ##standard## URL scheme have been modified>>extensions:Extension.Standard URL API]].
110
111 === New Rename/Delete Jobs ===
112
113 New code has been developed to support Nested Documents/Nested Spaces and Script Services have been provided and they now run inside Jobs to better handle the fact that they are long-running operations. However the Rename/Delete feature in the UI do not yet call this new code (this is planned for 7.2M2 and after).
114
115 However you can start to test this by using the following Script Services APIs:
116
117 * Copy a Space(((
118 {{code language="none"}}
119 #set ($source = $services.model.resolveSpace('Path.To.Source'))
120 #set ($destination = $services.model.resolveSpace('Path.To.New.Parent'))
121 $services.refactoring.copy($source, $destination).join()
122 {{/code}}
123 )))
124 * Copy a Space As(((
125 {{code language="none"}}
126 #set ($source = $services.model.resolveSpace('Path.To.Source'))
127 #set ($destination = $services.model.resolveSpace('Path.To.New.Name'))
128 $services.refactoring.copyAs($source, $destination).join()
129 {{/code}}
130 )))
131 * Move a Space(((
132 {{code language="none"}}
133 #set ($source = $services.model.resolveSpace('Path.To.Source'))
134 #set ($destination = $services.model.resolveSpace('Path.To.New.Parent'))
135 $services.refactoring.move($source, $destination).join()
136 {{/code}}
137 )))
138 * Move a Document(((
139 {{code language="none"}}
140 #set ($source = $services.model.resolveDocument('Path.To.Source.WebHome'))
141 #set ($destination = $services.model.resolveSpace('Path.To.New.Parent'))
142 $services.refactoring.move($source, $destination).join()
143 {{/code}}
144 )))
145 * Rename a Space(((
146 {{code language="none"}}
147 #set ($source = $services.model.resolveSpace('Path.To.Source'))
148 $services.refactoring.rename($source, 'NewName').join()
149 {{/code}}
150 )))
151 * Rename a Document(((
152 {{code language="none"}}
153 #set ($source = $services.model.resolveDocument('Path.To.Source.WebHome'))
154 $services.refactoring.rename($source, 'NewName').join()
155 {{/code}}
156 )))
157 * Delete a Document(((
158 {{code language="none"}}
159 #set ($source = $services.model.resolveDocument('Path.To.Source.WebHome'))
160 $services.refactoring.delete($source).join()
161 {{/code}}
162 )))
163 * Delete a Space(((
164 {{code language="none"}}
165 #set ($source = $services.model.resolveSpace('Path.To.Source'))
166 $services.refactoring.delete($source).join()
167 {{/code}}
168 )))
169 * Convert a Terminal Document to a Nested Document(((
170 {{code language="none"}}
171 #set ($source = $services.model.resolveDocument('Path.To.Page'))
172 $services.refactoring.convertToNestedDocument($source).join()
173 {{/code}}
174 )))
175 * Convert a Nested Document to a Terminal Document(((
176 {{code language="none"}}
177 #set ($source = $services.model.resolveDocument('Path.To.Source.WebHome'))
178 $services.refactoring.convertToTerminalDocument($source).join()
179 {{/code}}
180 )))
181
182 == New Reference-related APIs ==
183
184 Various new API around References has been introduced while adding support for nested spaces.
185
186 === Complete References Providers ===
187
188 Complete References Providers (for DocumentReference, SpaceReference and WikiReference) with default or ##current## hints. They allow getting complete Reference created from each default or current part of those references (for example in SpaceReference you end up with the space of the XWikiContext document and the XWikiContext wiki)
189
190 {{code language="java"}}
191 @Inject
192 Provider<DocumentReference> defaultDocumentReference;
193
194 @Inject
195 @Named("current")
196 Provider<DocumentReference> currentDocumentReference;
197 {{/code}}
198
199 === org.xwiki.model.reference.EntityReferenceProvider ===
200
201 ##org.xwiki.model.reference.EntityReferenceProvider## replaces ##org.xwiki.model.reference.EntityReferenceValueProvider##. It's essentially the same thing but with ##EntityReference## instead of string which allow getting multiple spaces when you ask for the current ##EntityType.SPACE## for example.
202
203 {{code language="java"}}
204 @Inject
205 EntityReferenceProvider provider;
206 {{/code}}
207
208 === Properly support any kind of References in getDocument and getURL ===
209
210 ##com.xpn.xwiki.XWiki#getDocument(EntityReference)## and ##com.xpn.xwiki.api.XWiki#getDocument(EntityReference)## support any kind of Reference properly (e.g. a Space Reference will return the space home page, an Object Reference will return the Object Document Reference, etc).
211
212 Same for ##com.xpn.xwiki.XWiki#getURL(EntityReference)## and ##com.xpn.xwiki.api.XWiki#getURL(EntityReference)##.
213
214 === New helpers in EntityReference ===
215
216 * ##boolean equals(EntityReference otherReference, EntityType to)##: same as equals but only take into account Reference parts up to the passed entity type (included)
217 * ##boolean equals(EntityReference otherReference, EntityType from, EntityType to)##: same as equals but only take into account Reference parts between passed entity types (included)
218 * ##boolean equalsNonRecursive(EntityReference otherReference)##: same as equals but does not take into account the parent
219
220 === New helpers in LocalDocumentReference ===
221
222 * ##LocalDocumentReference(String pageName, EntityReference spaceReference)##: allowed created a LocalDocumentReference from a Space Reference instead of just the space name
223
224 === org.xwiki.model.reference.SpaceReferenceResolver ===
225
226 New default ##String## and ##EntityReference## based SpaceReferenceResolver has been added. It's the same behavior then ##DocumentReferenceBehavior## but for spaces.
227
228 {{code language="java"}}
229 @Inject
230 SpaceReferenceResolver<String> stringResolver;
231
232 @Inject
233 SpaceReferenceResolver<EntityReference> referenceResolver;
234 {{/code}}
235
236 === New model Script Service helpers ===
237
238 * new help to escape an entity name according to default Reference syntax as in:(((
239 {{code language="velocity"}}
240 $services.model.escape('some.space:with\specialchars', 'SPACE')
241 {{/code}}
242
243 will print
244
245 {{code language="nonde"}}
246 some\.space\:with\\specialchars
247 {{/code}}
248 )))
249
250 === New components to generate REST URLs ===
251
252 * The component ##RestURLGenerator## has been added. Its role, in the long terme, is to generate a REST URL for any kind of EntityReference. It currently handles ##DocumentReference## and ##SpaceReference##.
253 * The corresponding script service has been added: ##$services.rest## with the method ##$services.rest.url($entityReference)##.
254
255 == New readonly XWikiContext provider ==
256
257 You can inject a new "readonly" XWikiContext the following way:
258
259 {{code language="java"}}
260 @Inject
261 @Named("readonly")
262 Provider<XWikiContext> roXWikiContextProvider;
263 {{/code}}
264
265 The difference with default provider is that the readonly one won't try to create a new XWikiContext and will return null if it can't find any. It's been introduce for some low level components that were used during XWikiContext creation but in general it should be used by any component that only search for some XWikiContext property that might be null even in a valid XWikiContext.
266
267 == Upgrades ==
268
269 The following dependencies have been upgraded:
270
271 * [[httpclient 4.5>>http://jira.xwiki.org/browse/XCOMMONS-815]]
272 * [[cssparser 0.9.16>>http://jira.xwiki.org/browse/XCOMMONS-817]]
273 * [[less4j 1.12.0>>http://jira.xwiki.org/browse/XWIKI-12161]]
274 * [[Joda-Time 2.8.1>>http://jira.xwiki.org/browse/XWIKI-12159]]
275 * [[Bootstrap 3.3.5>>http://jira.xwiki.org/browse/XWIKI-12211]]
276 * [[Infinispan 7.2.3>>http://jira.xwiki.org/browse/XWIKI-12227]]
277 * [[HSQLDB 2.3.3>>http://jira.xwiki.org/browse/XE-1491]]
278 * [[JGroups 3.6.4>>http://jira.xwiki.org/browse/XWIKI-12215]]
279 * [[Jackson 2.5.4>>http://jira.xwiki.org/browse/XCOMMONS-828]]
280
281 == Miscellaneous ==
282
283 * Objects, attachments and the document's class are now clearly not considered content, but metadata. Thus, any change in these will set the document's (XWikiDocument) metadataDirty flag to true and not touch the document's contentDirty flag unless there is an actual change in the document's content or title fields. This is also in line with the original intent of the contentAuthor document field. The direct impact of this is that the contentAuthor field will be updated only when the content is changed and thus the programming/script rights of a document will be changed much less often than before and much less by accident.
284 * custom Maven properties which have a special meaning (like ##xwiki.extension.features##) are not ##duplicated## in Extension custom properties anymore
285 * standard fields names have been added to ##org.xwiki.extension.rating.RatingExtension##
286 * URL configuration now use default ConfigurationSource provider instead of only ##xwiki.properties## one which means it's possible to overwrite properties for each wiki among other things
287 * Added ability to set and change the URL scheme to use in the Execution Context. This allows code to dynamically change the generated URLs when Rendering a document (useful when performing an Export for example).
288 * Started a new ##filesystem## URL Scheme for exporting Resources to the filesystem and generating URLs to them (useful for the HTML Export for example). At the moment, only the ##webjars## Resource Type is using it and all other Resource Types are using the old ##XWikiURLFactory## class.
289 * A new DocumentModelBridge.getContentAuthorReference() method has been added to allow accessing the content author of a document without depending on oldcore.
290 * Deprecate XWiki.parseContent(...) since it is was misleading and outdated. Its documentation mentioned that the passed content is parsed as velocity code, but it was actually doing much more than that and had some unwanted side-effect. Instead, use the parse/renderer that is specific to the type of content you have. See more details in [[XWIKI-12299>>http://jira.xwiki.org/browse/XWIKI-12299]].
291
292 = Translations =
293
294 The following translations have been updated:
295
296 {{language codes="fr, sv, pt_BR"/}}
297
298 {{comment}}
299 = Tested Browsers & Databases =
300
301 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
302
303 = Performances tests compared to <last super stable version> =
304
305 <a summary of the comparison with latest super stable version>
306
307 More details on <link to the test report>.
308 {{/comment}}
309
310 = Known issues =
311
312 * [[Bugs we know about>>http://jira.xwiki.org/secure/IssueNavigator.jspa?reset=true&jqlQuery=category+%3D+%22Top+Level+Projects%22+AND+issuetype+%3D+Bug+AND+resolution+%3D+Unresolved+ORDER+BY+updated+DESC]]
313
314 = Backward Compatibility and Migration Notes =
315
316 == General Notes ==
317
318 When upgrading make sure you compare your ##xwiki.cfg##, ##xwiki.properties## and ##web.xml## files with the newest version since some configuration parameters may have been modified or added. Note that you should add ##xwiki.store.migration=1## so that XWiki will attempt to automatically migrate your current database to the new schema. Make sure you backup your Database before doing anything.
319
320 == Issues specific to XWiki 7.2M1 ==
321
322 === Nested spaces ===
323
324 See [[previous Nested spaces section>>||anchor="HNestedSpaces"]] for details on what changes in the way some API and the database are dealing with the Document Space.
325
326 Note that some existing Extensions are impacted and may break slightly: Extensions taking some user input and creating Spaces based on that will most likely display {{{"\."}}}, {{{"\:"}}} and {{{"\\"}}} in the UI. Unless they already clean the user input and remove ".", ":" and "\" characters. So for example if a user enter a Space name of "my.space":
327
328 * before 7.2M1: the Extension would create/display a Space named "my.space"
329 * after 7.2M1: the Extension will create/display a Space named "my\.space"
330
331 === URLs ===
332
333 In order to support Nested Documents and have the ability that typing a URL such as ##/A## will lead to ##A.WebHome## we have stopped supporting URLs that don't specify the ##view## action (when ##xwiki.showviewaction=1##). Thus URLs such as ##/xwiki/bin/Something## now need to be written as ##/xwiki/bin/view/Something##. If ##xwiki.showviewaction=0## then you can still write ##/xwiki/bin/<something>## provided that ##<something>## isn't equal to ##view##. If it is (you have a space named ##view##) then you need to use ##/xwiki/bin/view/view[...]##.
334
335 === Templates ===
336
337 All the templates specific to [[extensions:Extension.Colibri Skin]] had been moved to it. If your skin depends on some of these templates, you should set Colibri as parent of your skin.
338
339 == API Breakages ==
340
341 The following APIs were modified since XWiki 7.1.1:
342
343 * AbstractWrappingObject, AbstractSafeObject and ScriptSafeProvider have been moved to xwiki-commons-script(((
344 {{code language="none"}}
345 org.xwiki.extension.wrap.WrappingIterableResult: Removed org.xwiki.extension.internal.safe.AbstractSafeObject from the list of superclasses
346 org.xwiki.extension.wrap.WrappingIterableResult: Removed org.xwiki.extension.wrap.AbstractWrappingObject from the list of superclasses
347 org.xwiki.extension.wrap.WrappingIterableResult: Parameter 2 of 'public WrappingIterableResult(org.xwiki.extension.repository.result.IterableResult, org.xwiki.extension.internal.safe.ScriptSafeProvider)' has changed its type to org.xwiki.script.internal.safe.ScriptSafeProvider
348
349 org.xwiki.filter.script.AbstractFilterScriptService: Changed type of field scriptProvider from org.xwiki.extension.internal.safe.ScriptSafeProvider to org.xwiki.script.internal.safe.ScriptSafeProvider
350 org.xwiki.extension.script.AbstractExtensionScriptService: Changed type of field scriptProvider from org.xwiki.extension.internal.safe.ScriptSafeProvider to org.xwiki.script.internal.safe.ScriptSafeProvider
351 {{/code}})))
352
353 * Added missing methods to the DocumentModelBridge which are already implemented by XWikiDocument.(((
354 {{code language="none"}}
355 org.xwiki.bridge.DocumentModelBridge: Method 'public org.xwiki.model.reference.DocumentReference getContentAuthorReference()' has been added to an interface
356 {{/code}})))
357
358 * com.xpn.xwiki.XWiki#localStringEntityReferenceSerializer now exists in oldcore, we do not need it in the aspect anymore.(((
359 {{code language="none"}}
360 com.xpn.xwiki.XWikiCompatibilityAspect: Method 'public org.xwiki.model.reference.EntityReferenceSerializer ajc$interFieldGetDispatch$com_xpn_xwiki_XWikiCompatibilityAspect$com_xpn_xwiki_XWiki$localStringEntityReferenceSerializer(com.xpn.xwiki.XWiki)' has been removed
361 com.xpn.xwiki.XWikiCompatibilityAspect: Method 'public void ajc$interFieldInit$com_xpn_xwiki_XWikiCompatibilityAspect$com_xpn_xwiki_XWiki$localStringEntityReferenceSerializer(com.xpn.xwiki.XWiki)' has been removed
362 com.xpn.xwiki.XWikiCompatibilityAspect: Method 'public void ajc$interFieldSetDispatch$com_xpn_xwiki_XWikiCompatibilityAspect$com_xpn_xwiki_XWiki$localStringEntityReferenceSerializer(com.xpn.xwiki.XWiki, org.xwiki.model.reference.EntityReferenceSerializer)' has been removed
363 {{/code}})))
364
365 * Young API. ExportURLFactoryContext been renamed to FilesystemExportContext and moved to the Filesystem URL scheme module.(((
366 {{code language="none"}}
367 com.xpn.xwiki.web.ExportURLFactory: Method 'public com.xpn.xwiki.web.ExportURLFactoryContext getExportURLFactoryContext()' has been removed
368 com.xpn.xwiki.web.ExportURLFactoryActionHandler: Parameter 7 of 'public java.net.URL createURL(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, com.xpn.xwiki.XWikiContext, com.xpn.xwiki.web.ExportURLFactoryContext)' has changed its type to org.xwiki.url.filesystem.FilesystemExportContext
369 com.xpn.xwiki.web.ExportURLFactory: class removed
370 {{/code}})))
371
372 * This API has been changed to support nested spaces.(((
373 {{code language="none"}}
374 org.xwiki.rest.resources.spaces.SpaceResource: Method argument count changed for method 'org.xwiki.rest.model.jaxb.Space getSpace(java.lang.String, java.lang.String)'
375 {{/code}})))

Get Connected