Changes for page Release Notes for XWiki 7.2
Last modified by Thomas Mortagne on 2017/03/24
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -172,11 +172,10 @@ 172 172 173 173 With the new ##showRoot## parameter you can force the document tree to show the actual root node (either the one specified by the ##root## parameter or the default root node). 174 174 ))) 175 -* A couple of bugs in the [[App Within Minutes Application>>extensions:Extension.App Within Minutes Application]], that were caused by the introduction of the Nested Documents feature, have been fixed.175 +* A couple of bugs in the [[App Within Minutes Application>>extensions:Extension.App Within Minutes Application]], that were caused by the introduction of the Nested Pages feature, have been fixed. 176 176 * It's now possible create new FAQs in Nested Spaces. 177 177 * When using the XWiki Jetty distribution, a memory dump is automatically created in XWiki's ##data/## folder when an ##Out Of Memory## error occurs. 178 178 * The Activity Stream now also displays activity for Nested Spaces. 179 -* Skin editor now properly works for a nested skin document 180 180 181 181 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. 182 182 ... ... @@ -243,9 +243,9 @@ 243 243 244 244 === New Rename/Delete Jobs === 245 245 246 -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.245 +New code has been developed to support Nested Pages/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. 247 247 248 - Howeveryoucan start totest this by using the following Script Services APIs:247 +The corresponding Script Services APIs have been added: 249 249 250 250 * Copy a Space((( 251 251 {{code language="none"}} ... ... @@ -268,7 +268,7 @@ 268 268 $services.refactoring.move($source, $destination).join() 269 269 {{/code}} 270 270 ))) 271 -* Move a Document(((270 +* Move a Page((( 272 272 {{code language="none"}} 273 273 #set ($source = $services.model.resolveDocument('Path.To.Source.WebHome')) 274 274 #set ($destination = $services.model.resolveSpace('Path.To.New.Parent')) ... ... @@ -281,13 +281,13 @@ 281 281 $services.refactoring.rename($source, 'NewName').join() 282 282 {{/code}} 283 283 ))) 284 -* Rename a Document(((283 +* Rename a Page((( 285 285 {{code language="none"}} 286 286 #set ($source = $services.model.resolveDocument('Path.To.Source.WebHome')) 287 287 $services.refactoring.rename($source, 'NewName').join() 288 288 {{/code}} 289 289 ))) 290 -* Delete a Document(((289 +* Delete a Page((( 291 291 {{code language="none"}} 292 292 #set ($source = $services.model.resolveDocument('Path.To.Source.WebHome')) 293 293 $services.refactoring.delete($source).join() ... ... @@ -299,13 +299,13 @@ 299 299 $services.refactoring.delete($source).join() 300 300 {{/code}} 301 301 ))) 302 -* Convert a Terminal Documentto a NestedDocument(((301 +* Convert a Terminal Page to a Nested Page((( 303 303 {{code language="none"}} 304 304 #set ($source = $services.model.resolveDocument('Path.To.Page')) 305 305 $services.refactoring.convertToNestedDocument($source).join() 306 306 {{/code}} 307 307 ))) 308 -* Convert a Nested Documentto a TerminalDocument(((307 +* Convert a Nested Page to a Terminal Page((( 309 309 {{code language="none"}} 310 310 #set ($source = $services.model.resolveDocument('Path.To.Source.WebHome')) 311 311 $services.refactoring.convertToTerminalDocument($source).join() ... ... @@ -314,10 +314,9 @@ 314 314 315 315 === New create action parameters and logic === 316 316 317 -The create action now accepts a ##spaceReference## parameter and a ##name## parameter, together with an optional ##tocreate=terminal## parameter (usable on non-terinal documents). The previous space parameters was not scalable in the context of Nested Spaces since it was just a top-level space name so it did not allow the creation of deeper space levels. More details are available in the [[create action's documentation>>platform:DevGuide.Standard URL Format||anchor="HAction:create"]].316 +The create action now accepts a ##spaceReference## parameter and a ##name## parameter, together with an optional ##tocreate=terminal## parameter (usable on non-terminal pages). The previous space parameters was not scalable in the context of Nested Spaces since it was just a top-level space name so it did not allow the creation of deeper space levels. More details are available in the [[create action's documentation>>platform:DevGuide.Standard URL Format||anchor="HAction:create"]]. 318 318 319 -These logic is now also available in the improved create UI, with the terminal pages option appearing only for advanced users and being checked or unchecked by default, depending on the type of the current document: 320 -{{image reference="[email protected]"/}} 318 +As explained previously, these logic is also available in the improved create UI, with the terminal pages option appearing only for advanced users and being checked or unchecked by default, depending on the type of the current page. 321 321 322 322 == New Reference-related APIs == 323 323