[xwiki-users] Changing the app name in App Within Minutes

2016-04-29 Thread dullfig
Hello: I am using XWiki 6.0, and App Within Minutes. I have created several apps that work fine. I can already customize the view and edit sheets and things like that. But I don't like that AWM forces the home page to be called {space} 'Home'. I'd like to change the behavior. There is an object

Re: [xwiki-users] how to cover one page title

2016-04-29 Thread Jack
Thank you very much for your answer. first step is to access the $doc variable in the template and check if it is one of your special cases, and if it is, compute the $title differently. It's a good idea! Last special thanks for telling me how XWiki renders a page! -- View this message in

Re: [xwiki-users] how to cover one page title

2016-04-29 Thread Clemens Klein-Robbenhaar
the HTML as shown in the browser is not the same as the document title (which you can indeed set with $doc.setTitle("...") ) Instead you can look in the file .../xwiki/skins/flamingo/htmlheader.vm where the html title is computed - look for the section starting with the comment "Compute

Re: [xwiki-users] Can't get Export/Import to work

2016-04-29 Thread Vincent Massol
Hi Tim, > On 29 Apr 2016, at 09:41, Tim Dudgeon wrote: > > On 25/04/2016 08:04, Vincent Massol wrote: > >> I’ve documented this at >> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/NginX#HRequestEntityTooLarge >> >> BTW, would be great if you could

Re: [xwiki-users] Compare Strings

2016-04-29 Thread Vincent Massol
Hi, > On 29 Apr 2016, at 09:48, Rochlin Oleg wrote: > > I am currently trying to Filter my userlist > > #set($users = $xwiki.rightsmanager.usersApi.allUsers) > > #foreach($user in $users) This is not going to be performant. You should instead use:

[xwiki-users] Compare Strings

2016-04-29 Thread Rochlin Oleg
I am currently trying to Filter my userlist #set($users = $xwiki.rightsmanager.usersApi.allUsers) #foreach($user in $users) #if(($xwiki.getUser($user).isUserInGroup("XWiki.GroupName"))&& $xwiki.getUser($user).position !="StringExample") {{section justify="true"}} It should show me all

Re: [xwiki-users] Can't get Export/Import to work

2016-04-29 Thread Tim Dudgeon
On 25/04/2016 08:04, Vincent Massol wrote: I’ve documented this at http://platform.xwiki.org/xwiki/bin/view/AdminGuide/NginX#HRequestEntityTooLarge BTW, would be great if you could validate the nginx configuration there. It was entered by a contributor and not by any member of the xwiki dev