Re: [xwiki-users] Immediate Child Document Query

2016-04-11 Thread Personal
Figured it out over the weekend: where doc.parent = ‘Parent Full Name’ Guess I was trying to make it more complicated than it actually was. Regards, Jesse > On Apr 8, 2016, at 7:51 AM, Personal <je...@abrightfamily.com> wrote: > > Per the Query Module documentation: >

[xwiki-users] Immediate Child Document Query

2016-04-08 Thread Personal
Per the Query Module documentation: List of child spaces: select space.name from XWikiSpace as space where space.parent = 'Parent Space’ List of all nested documents in a space:where doc.space like 'Space' or doc.space like 'Space.%’ The first

[xwiki-users] Macro Parameter as Array

2016-04-02 Thread Personal
Is it possible to pass an array as a macro parameter? So far my attempts have failed. Macro code: #set( $a = $xcontext.macro.params.array) $a #foreach($i in $a) $i #end Page code: #set( $array = ['Chapter 1', 'Chapter 2', 'Chapter 3']) $array #foreach($i in $array) $i #end {{test

Re: [xwiki-users] Image Reference Shortcut

2016-03-30 Thread Personal
Thanks for the information. I think i might turn off icon transformation, I didn’t realize that was an option. After further investigation my issue with escaping appears to be related to using CKEditor. When I use the WYSIWYG or WIKI editor it seems to work every time but the CKEditor gave

Re: [xwiki-users] Set Parent in XWiki 8.0

2016-03-25 Thread Personal
Thank you Matthias! I know it wasn’t intentional but I am working on a similar issue and your code example was extremely useful. Regards, Jesse Bright > On Mar 25, 2016, at 3:10 PM, Matthias Wegner wrote: > > Hi Vincent, > > thanks, now it is clear and works. But i

Re: [xwiki-users] Creating Nested Page Hierarchies

2016-03-25 Thread Personal
enced for nested pages again I can understand why the WebHome page is listed as also located within it’s own space. Any advice on how to remove it from my query results or processing by the foreach loop? Regards, Jesse Bright > On Mar 24, 2016, at 7:36 AM, Personal <je...@abrightfamily

Re: [xwiki-users] Creating Nested Page Hierarchies

2016-03-24 Thread Personal
newDocument > http://extensions.xwiki.org/xwiki/bin/view/Extension/Immediate+Children+Pages > > I had search for this before but without including 'velocity' in the search I > was only getting the more basic instructions. > > Regards, > > Jesse > >> On

[xwiki-users] Creating Nested Page Hierarchies

2016-03-19 Thread Personal
I am creating a knowledge base for a local municipal code which follows a typical book hierarchy. I plan on using nested pages to create a pages hierarchy for navigating and searching the code text at different levels. For example each end page would have a space path like so: Title 19.Part

Re: [xwiki-users] Require Password Change

2016-03-19 Thread Personal
Oh well, I can understand that this would be of limited use. Thanks for getting back to me! Regards, Jesse > On Mar 18, 2016, at 4:27 PM, Vincent Massol wrote: > > >> On 18 Mar 2016, at 20:01, Jesse Bright wrote: >> >> I thought I remember

[xwiki-users] Error When Updating to Xwiki 8.0

2016-03-15 Thread Personal
I thought I would give updating to Xwiki 8.0 a go tonight but ran into an error. I just updated to 7.4.2 the other day so I wasn’t expecting an issue but when I run: sudo apt-get update I get the following error at the end of the update: ... Get:46 http://security.ubuntu.com

Re: [xwiki-users] Include Macro Usage

2016-02-28 Thread Personal
After experimenting with the include macro further I have discovered that I can only include terminal pages. Is this functioning as intended? It seems a strange limitation to enforce and is not mentioned in the documentation from what I can see. Perhaps I am doing something wrong? Regards,

Re: [xwiki-users] Making Changes to the Editor

2016-02-21 Thread Personal
I have found the solutions to my issues so I thought I would share. > I am looking to modify the editor in two ways: > > 1) I would like to change the default editor to the new CKEditor per these > instructions: >