Re: [xwiki-users] How to avoid nested space?

2016-01-06 Thread Zhou Tianling
Thanks very much, it works now.

How about the plan of the 2 more feature?
1.  Limit document tree depth to N.
2.  Default expand tree to level M.





在 16/1/6 下午2:08,“users 代表 Marius Dumitru Florea”<users-boun...@xwiki.org 代表 
mariusdumitru.flo...@xwiki.com> 写入:

>On Tue, Jan 5, 2016 at 4:45 PM, Zhou Tianling <kirbyz...@gmail.com> wrote:
>
>> I have tried this below on 7.3-release.
>> {{documentTree compact="true" showTranslations="false"
>> showAttachments="false" root="wiki:xwiki" limit="200" /}}
>> But “limit” do not works.
>>
>
>Indeed, I just tested on 7.3, but you can quickly fix it by editing the
>XWiki.DocumentTreeConfig page with the wiki editor and replace
>
>  'showRoot': false
>
>with
>
>  'showRoot': false,
>  'limit': 15
>
>(i.e. declare de 'limit' configuration parameter and its default value)
>
>Hope this helps,
>Marius
>
>
>>
>>
>>
>> 在 16/1/5 下午9:35,“users 代表 Marius Dumitru Florea”<users-boun...@xwiki.org
>> 代表 mariusdumitru.flo...@xwiki.com> 写入:
>>
>> >On Tue, Jan 5, 2016 at 3:33 PM, vinc...@massol.net <vinc...@massol.net>
>> >wrote:
>> >
>> >>
>> >>
>> >> On 5 Jan 2016 at 14:29:11, Marius Dumitru Florea (
>> >> mariusdumitru.flo...@xwiki.com(mailto:mariusdumitru.flo...@xwiki.com))
>> >> wrote:
>> >>
>> >> > On Tue, Jan 5, 2016 at 2:35 PM, vinc...@massol.net
>> >> > wrote:
>> >> >
>> >> > > Hi,
>> >> > >
>> >> > > On 5 Jan 2016 at 10:09:27, KirbY ZhoU (kirbyz...@gmail.com(mailto:
>> >> > > kirbyz...@gmail.com)) wrote:
>> >> > >
>> >> > > > Sorry for reply so later, I have taken a vacation for days.
>> >> > >
>> >> > > Hope you had some nice holidays! :)
>> >> > >
>> >> > > > Actually, I modified Dashboard.WebHome after upgrade, and use
>> >> {{spaces}}
>> >> > > macro which comes from 7.3 release.
>> >> > > > Now I replace {{spaces}} with {{documentTree}}, but I have some
>> >> little
>> >> > > problem.
>> >> > > > 1. I want to avoid "xxx more", but limit=100 do not work.
>> >> > > > 2. I want to limit the tree level, but I have no idea.
>> >> > >
>> >> > > All documentation for the tree macro can be found at
>> >> > >
>> >>
>> http://extensions.xwiki.org/xwiki/bin/view/Extension/Document+Tree+Macro
>> >> > >
>> >> > >
>> >> >
>> >> > > AFAIK there’s currently no way to configure how many items to
>> display
>> >> > > before “xxx more” appears. @Marius: is that correct? It seems it
>> would
>> >> be
>> >> > > useful to have this in the future if that’s the case. WDYT? Do we
>> have
>> >> a
>> >> > > jira issue about it already?
>> >> > >
>> >> >
>> >> > There is an internal "limit" parameter available since 7.3RC1, as I
>> >> > mentioned on
>> >> > http://lists.xwiki.org/pipermail/users/2015-December/031746.html . It
>> >> > doesn't appear in the documentation because I haven't made it public
>> yet
>> >> > (with a XWiki.WikiMacroParameterClass object) but it can be used.
>> >> >
>> >> > {{documentTree limit="3" /}}
>> >>
>> >>
>> >
>> >> ok thanks I had forgotten. However KirbY mentioned that it didn’t work
>> >> when he tried it.
>> >>
>> >
>> >I just tried on 8.0-SNAPSHOT and it woks for me.
>> >
>> >
>> >>
>> >> @KirbY: have you used it in the way Marius described above?
>> >>
>> >> Thanks
>> >> -Vincent
>> >>
>> >> > > I’m not sure what’s your use case for point 2. I guess you mean
>> limit
>> >> the
>> >> > > hierarchy but it seems it would prevent users from navigating
>> >> correctly so
>> >> > > I’m not sure what’s the use case.
>> >> > >
>> >> > > Thanks
>> >> > > -Vincent
>> >> > >
>> >> > > > 发件人: Vincent Massol 代表 "vinc...@massol.net(mailto:
>> vinc...@massol.net
&g

Re: [xwiki-users] How to avoid nested space?

2016-01-05 Thread Zhou Tianling
I have tried this below on 7.3-release.
{{documentTree compact="true" showTranslations="false" showAttachments="false" 
root="wiki:xwiki" limit="200" /}}
But “limit” do not works.




在 16/1/5 下午9:35,“users 代表 Marius Dumitru Florea” 写入:

>On Tue, Jan 5, 2016 at 3:33 PM, vinc...@massol.net 
>wrote:
>
>>
>>
>> On 5 Jan 2016 at 14:29:11, Marius Dumitru Florea (
>> mariusdumitru.flo...@xwiki.com(mailto:mariusdumitru.flo...@xwiki.com))
>> wrote:
>>
>> > On Tue, Jan 5, 2016 at 2:35 PM, vinc...@massol.net
>> > wrote:
>> >
>> > > Hi,
>> > >
>> > > On 5 Jan 2016 at 10:09:27, KirbY ZhoU (kirbyz...@gmail.com(mailto:
>> > > kirbyz...@gmail.com)) wrote:
>> > >
>> > > > Sorry for reply so later, I have taken a vacation for days.
>> > >
>> > > Hope you had some nice holidays! :)
>> > >
>> > > > Actually, I modified Dashboard.WebHome after upgrade, and use
>> {{spaces}}
>> > > macro which comes from 7.3 release.
>> > > > Now I replace {{spaces}} with {{documentTree}}, but I have some
>> little
>> > > problem.
>> > > > 1. I want to avoid "xxx more", but limit=100 do not work.
>> > > > 2. I want to limit the tree level, but I have no idea.
>> > >
>> > > All documentation for the tree macro can be found at
>> > >
>> http://extensions.xwiki.org/xwiki/bin/view/Extension/Document+Tree+Macro
>> > >
>> > >
>> >
>> > > AFAIK there’s currently no way to configure how many items to display
>> > > before “xxx more” appears. @Marius: is that correct? It seems it would
>> be
>> > > useful to have this in the future if that’s the case. WDYT? Do we have
>> a
>> > > jira issue about it already?
>> > >
>> >
>> > There is an internal "limit" parameter available since 7.3RC1, as I
>> > mentioned on
>> > http://lists.xwiki.org/pipermail/users/2015-December/031746.html . It
>> > doesn't appear in the documentation because I haven't made it public yet
>> > (with a XWiki.WikiMacroParameterClass object) but it can be used.
>> >
>> > {{documentTree limit="3" /}}
>>
>>
>
>> ok thanks I had forgotten. However KirbY mentioned that it didn’t work
>> when he tried it.
>>
>
>I just tried on 8.0-SNAPSHOT and it woks for me.
>
>
>>
>> @KirbY: have you used it in the way Marius described above?
>>
>> Thanks
>> -Vincent
>>
>> > > I’m not sure what’s your use case for point 2. I guess you mean limit
>> the
>> > > hierarchy but it seems it would prevent users from navigating
>> correctly so
>> > > I’m not sure what’s the use case.
>> > >
>> > > Thanks
>> > > -Vincent
>> > >
>> > > > 发件人: Vincent Massol 代表 "vinc...@massol.net(mailto:vinc...@massol.net
>> )"
>> > > > 日期: 2015年12月23日 星期三 下午7:35
>> > > > 至: KirbY ZhoU , XWiki Users
>> > > > 主题: Re: [xwiki-users] How to avoid nested space?
>> > > >
>> > > > Hi,
>> > > >
>> > > > The default dashboard is located in Dashboard.WebHome. When you
>> upgraded
>> > > you should have had the Distribution Wizard upgrade that page. Was
>> that the
>> > > case? Could you check the history for that page?
>> > > >
>> > > > Now two things could have happened:
>> > > >
>> > > > 1) you overwrote the changes brought by the Distribution Wizard by
>> > > importing old versions of pages from your previous wiki. If you’ve done
>> > > that then you’ve most likely broken the upgrade process since you’ve
>> > > removed all the upgrades that were required to all default wiki pages!
>> :)
>> > > See http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Upgrade for
>> the
>> > > canonical way of upgrading an XWiki instance. If you’ve done that I
>> suggest
>> > > that you redo the upgrade.
>> > > >
>> > > > 2) you have modified Dashboard.WebHome. If this is the case then
>> you’ll
>> > > need to update your version to use the {{documentTree}} macro instead
>> of
>> > > the spaces macro.
>> > > >
>> > > > As I’ve mentioned already in my reply the notion of Spaces have been
>> > > removed from the UI (I’ve linked you to some page with the explanation,
>> > > have you been able to read that page? was it clear? should we improve
>> > > things there with more explanations?).
>> > > >
>> > > > Thanks
>> > > > Hope it helps,
>> > > > -Vincent
>> > > >
>> > > >
>> > > >
>> > > > On 23 Dec 2015 at 12:19:45, KirbY ZhoU (kirbyz...@gmail.com(mailto:
>> > > kirbyz...@gmail.com)) wrote:
>> > > >
>> > > > > I belived that I have use the space widget version 7.3.
>> > > > > I created a new Xwiki-7.3, and then import the old spaces one by
>> one,
>> > > excluding 'Main', 'XWiki' and all spaces coming with Xwiki default
>> pages.
>> > > > >
>> > > > > I just want to get a simple space list.
>> > > > >
>> > > > >
>> > > > >
>> > > > > 发件人: Vincent Massol 代表 "vinc...@massol.net(mailto:
>> vinc...@massol.net)"
>> > > > > 日期: 2015年12月23日 星期三 上午4:41
>> > > > > 至: XWiki Users
>> > > > > 抄送: KirbY ZhoU
>> > > > > 主题: Re: [xwiki-users] How to avoid nested space?
>> > > > >
>> > > > > Hi KirbY,
>> > > > > On 22 Dec 2015 at 21:27:47, KirbY ZhoU (kirbyz...@gmail.com
>> (mailto:
>> > > 

[xwiki-users] Some problem about Upgrade from Xwiki-5.4.5 to 7.3

2015-11-20 Thread Zhou Tianling
I want to upgrade from Xwiki-5.4.5 to 7.3, but some problems occurs.
I create a backup db, and run 7.3 instance on the backup one.


1. The "Spaces" feature seems disappears, all old spaces are organized in a 
single root tree.
I can not manage access privilege by Space.

2. The wikis application can not be removed, there is nothing in the "Installed 
Application", and I DO NOT want the multi wikis.

3. I want to export the old content from the old wiki, and import it into new 
wiki, but I cannot export only my selected Spaces.

Anyone can point me some way to solve?



___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users