Changes for page XWiki JavaScript API
Last modified by Simon Urli on 2024/09/24
From version 32.3
edited by Marius Dumitru Florea
on 2015/07/16
on 2015/07/16
Change comment:
There is no comment for this version
To version 33.1
edited by Vincent Massol
on 2015/07/29
on 2015/07/29
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. mflorea1 +XWiki.VincentMassol - Content
-
... ... @@ -277,3 +277,27 @@ 277 277 var documentReference = XWiki.Model.resolve('Page', XWiki.EntityType.DOCUMENT, spaceReference); 278 278 // Same output 279 279 {{/code}} 280 + 281 +Starting with 7.2M2 you can construct Reference to Nested Spaces and a new ##equals()## method has been added. Examples using Jasmine: 282 + 283 +{{code language="js"}} 284 +// Construct a Nested Space reference 285 +var reference = new XWiki.SpaceReference('wiki', ['space1', 'space2']); 286 +expect(XWiki.Model.serialize(reference)).toEqual('wiki:space1.space2'); 287 +reference = new XWiki.DocumentReference('wiki', ['space1', 'space2'], 'page'); 288 +expect(XWiki.Model.serialize(reference)).toEqual('wiki:space1.space2.page'); 289 +// Construct a non-Nested Space reference 290 +reference = new XWiki.SpaceReference('wiki', 'space'); 291 +expect(XWiki.Model.serialize(reference)).toEqual('wiki:space'); 292 +// Try passing non-valid space parameters 293 +expect(function() {new XWiki.SpaceReference('wiki', [])}).toThrow('Missing mandatory space name or invalid type for: []'); 294 +expect(function() {new XWiki.SpaceReference('wiki', 12)}).toThrow('Missing mandatory space name or invalid type for: [12]'); 295 + 296 +// Equals() examples 297 +var reference1 = new XWiki.DocumentReference('wiki', ['space1', 'space2'], 'page'); 298 +var reference2 = new XWiki.DocumentReference('wiki', ['space1', 'space2'], 'page'); 299 +var reference3 = new XWiki.DocumentReference('wiki2', ['space1', 'space2'], 'page'); 300 +expect(reference1.equals(reference2)).toBe(true); 301 +expect(reference1.equals(reference3)).toBe(false); 302 +{{/code}} 303 +