Re: [xwiki-users] how to purge history in a space? Did I found bug?

2014-07-22 Thread Pascal BASTIEN
Yes you are right it was my problem (it resolve my attachments problem too: 
Thomas indicate me than attachments is linked with default language version of 
document ).
then http://extensions.xwiki.org/xwiki/bin/view/Extension/Reinit_Sandbox fixed! 
:-)

Thxs to all.




 De : Eduard Moraru enygma2...@gmail.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org 
Envoyé le : Lundi 21 juillet 2014 15h45
Objet : Re: [xwiki-users] how to purge history in a space? Did I found bug?
 


Hi Pascal,

Why are you doing this manually?

If you pass $NULL to the wikilanguage parameter of $xwiki.copyDocument, all the 
translations of a document will be copied along with the default document. You 
do not have to copy each translation individually in velocity, as you seem to 
be trying to do.

Hope this helps,
Eduard






On Fri, Jul 11, 2014 at 5:11 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr wrote:

Thxs but no I think it doesn't work for multi lingual document.

My problem that I want copy all language Sandbox.WebHome on another space with 
velocity code.
For multi lingual document doc.id is unique but not doc.fullname in 
XWikiDocument table.

I must copy by example (in velocity):
sandbox.WebHome (en) to NewSpace.WebHome (en) 
sandbox.WebHome (fr) to NewSpace.WebHome (fr)
sandbox.WebHome (xx) to NewSpace.WebHome (xx)

Then I try to retrieve: doc.language  in my for each loop ...



 De : Jeremie BOUSQUET jeremie.bousq...@gmail.com

À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org
Envoyé le : Vendredi 11 juillet 2014 14h13

Objet : Re: [xwiki-users] how to purge history in a space? Did I found bug?



Hi,




2014-07-11 9:06 GMT+02:00 Pascal BASTIEN pbasnews-xw...@yahoo.fr:

Do you mean I must launch on query by langage?


Yes I agree with you about this $item then I can use id of document like this:

{{velocity}}
 #set ($items = $xwiki.search(select doc.id from XWikiDocument as doc where 
doc.space='Sandbox' and doc.name != 'WebPreferences'))


Should select doc.fullName instead of doc.id I believe.

You could also call $xwiki.wrapDocs to convert search result to a list of 
xwiki documents directly.
http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#wrapDocs(java.util.List)

 
   #foreach($item in $items)
 #set($itemDoc = $xwiki.getDocument($item))


You could check if $itemDoc is not null and an existing document before trying 
to further access it ;-)
http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#exists(java.lang.String)

 
 * //[$itemDoc] ID in Sandbox space with language : $itemDoc.language
   #end
 {{/velocity}}
but after I don't know how to retrieve all field from wikidoc table from 
$items. :-(

$itemDoc.language and $itemDoc.name return nothing. Are there a magic 
functions?
Thxs





 De : Marius Dumitru Florea mariusdumitru.flo...@xwiki.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org
Envoyé le : Jeudi 10 juillet 2014 21h20
Objet : Re: [xwiki-users] how to purge history in a space? Did I found bug?




Just print $item and you'll see it's just the name of the document so there's 
no way getDocument would return something other than the default translation, 
which has the language field empty because it's the default language (check 
the defaultLanguage field). If you want to get the translations then you can 
use the 'language' query filter which adds the language to the query results.
On Jul 10, 2014 12:52 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr wrote:

 I try to finish my xar but I think there are a bug in the xwiki about 
 language.
 I can't display XWD_LANGUAGE value from database with velocity.
 By example, this code doesn't return language of 
 Sandbox.WebHome:{{velocity}}
 #set ($items = $xwiki.search(select doc.fullName from XWikiDocument as doc 
 where doc.space='Sandbox' and doc.name != 'WebPreferences'))
   #foreach($item in $items)
     #set($itemDoc = $xwiki.getDocument($item))
     * //[$itemDoc] in Sandbox space with language : $itemDoc.language
   #end
 {{/velocity}}

 I obtain this:


     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.TestPage3] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.TestPage2] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.TestPage1] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space

Re: [xwiki-users] how to purge history in a space? Did I found bug?

2014-07-21 Thread Eduard Moraru
Hi Pascal,

Why are you doing this manually?

If you pass $NULL to the wikilanguage parameter of $xwiki.copyDocument, all
the translations of a document will be copied along with the default
document. You do not have to copy each translation individually in
velocity, as you seem to be trying to do.

Hope this helps,
Eduard




On Fri, Jul 11, 2014 at 5:11 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr
wrote:

 Thxs but no I think it doesn't work for multi lingual document.

 My problem that I want copy all language Sandbox.WebHome on another space
 with velocity code.
 For multi lingual document doc.id is unique but not doc.fullname in
 XWikiDocument table.

 I must copy by example (in velocity):
 sandbox.WebHome (en) to NewSpace.WebHome (en)
 sandbox.WebHome (fr) to NewSpace.WebHome (fr)
 sandbox.WebHome (xx) to NewSpace.WebHome (xx)

 Then I try to retrieve: doc.language  in my for each loop ...


 
  De : Jeremie BOUSQUET jeremie.bousq...@gmail.com
 À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org
 
 Envoyé le : Vendredi 11 juillet 2014 14h13
 Objet : Re: [xwiki-users] how to purge history in a space? Did I found bug?



 Hi,




 2014-07-11 9:06 GMT+02:00 Pascal BASTIEN pbasnews-xw...@yahoo.fr:

 Do you mean I must launch on query by langage?
 
 
 Yes I agree with you about this $item then I can use id of document like
 this:
 
 {{velocity}}
  #set ($items = $xwiki.search(select doc.id from XWikiDocument as doc
 where doc.space='Sandbox' and doc.name != 'WebPreferences'))
 

 Should select doc.fullName instead of doc.id I believe.

 You could also call $xwiki.wrapDocs to convert search result to a list of
 xwiki documents directly.

 http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#wrapDocs(java.util.List)


#foreach($item in $items)
  #set($itemDoc = $xwiki.getDocument($item))
 

 You could check if $itemDoc is not null and an existing document before
 trying to further access it ;-)

 http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#exists(java.lang.String)


  * //[$itemDoc] ID in Sandbox space with language : $itemDoc.language
#end
  {{/velocity}}
 but after I don't know how to retrieve all field from wikidoc table from
 $items. :-(
 
 $itemDoc.language and $itemDoc.name return nothing. Are there a magic
 functions?
 Thxs
 
 
 
 
 
  De : Marius Dumitru Florea mariusdumitru.flo...@xwiki.com
 À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users 
 users@xwiki.org
 Envoyé le : Jeudi 10 juillet 2014 21h20
 Objet : Re: [xwiki-users] how to purge history in a space? Did I found
 bug?
 
 
 
 
 Just print $item and you'll see it's just the name of the document so
 there's no way getDocument would return something other than the default
 translation, which has the language field empty because it's the default
 language (check the defaultLanguage field). If you want to get the
 translations then you can use the 'language' query filter which adds the
 language to the query results.
 On Jul 10, 2014 12:52 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr
 wrote:
 
  I try to finish my xar but I think there are a bug in the xwiki about
 language.
  I can't display XWD_LANGUAGE value from database with velocity.
  By example, this code doesn't return language of
 Sandbox.WebHome:{{velocity}}
  #set ($items = $xwiki.search(select doc.fullName from XWikiDocument as
 doc where doc.space='Sandbox' and doc.name != 'WebPreferences'))
#foreach($item in $items)
  #set($itemDoc = $xwiki.getDocument($item))
  * //[$itemDoc] in Sandbox space with language : $itemDoc.language
#end
  {{/velocity}}
 
  I obtain this:
 
 
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.TestPage3] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.TestPage2] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.TestPage1] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.test] in Sandbox space with language :
 
 
 
  Did I found a bug?
 
  NB: I don't use #foreach ($docName in
 $xwiki.getSpaceDocsName(SandboxTemplate) because if Administrator
 doesn't display hidden document, this code doesn't return  SandboxTemplate
 space hidden documents :-(
 
  Thxs
 
  Pascal BASTIEN
 
 
 
  
   De : Pascal BASTIEN

Re: [xwiki-users] how to purge history in a space? Did I found bug?

2014-07-11 Thread Pascal BASTIEN
Do you mean I must launch on query by langage?


Yes I agree with you about this $item then I can use id of document like this:

{{velocity}}
 #set ($items = $xwiki.search(select doc.id from XWikiDocument as doc where 
doc.space='Sandbox' and doc.name != 'WebPreferences'))
   #foreach($item in $items)
 #set($itemDoc = $xwiki.getDocument($item))
 * //[$itemDoc] ID in Sandbox space with language : $itemDoc.language
   #end
 {{/velocity}}
but after I don't know how to retrieve all field from wikidoc table from 
$items. :-(

$itemDoc.language and $itemDoc.name return nothing. Are there a magic functions?
Thxs




 De : Marius Dumitru Florea mariusdumitru.flo...@xwiki.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org 
Envoyé le : Jeudi 10 juillet 2014 21h20
Objet : Re: [xwiki-users] how to purge history in a space? Did I found bug?
 


Just print $item and you'll see it's just the name of the document so there's 
no way getDocument would return something other than the default translation, 
which has the language field empty because it's the default language (check the 
defaultLanguage field). If you want to get the translations then you can use 
the 'language' query filter which adds the language to the query results.
On Jul 10, 2014 12:52 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr wrote:

 I try to finish my xar but I think there are a bug in the xwiki about 
 language.
 I can't display XWD_LANGUAGE value from database with velocity.
 By example, this code doesn't return language of Sandbox.WebHome:{{velocity}}
 #set ($items = $xwiki.search(select doc.fullName from XWikiDocument as doc 
 where doc.space='Sandbox' and doc.name != 'WebPreferences'))
   #foreach($item in $items)
     #set($itemDoc = $xwiki.getDocument($item))
     * //[$itemDoc] in Sandbox space with language : $itemDoc.language
   #end
 {{/velocity}}

 I obtain this:


     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.TestPage3] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.TestPage2] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.TestPage1] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.test] in Sandbox space with language :



 Did I found a bug?

 NB: I don't use #foreach ($docName in 
 $xwiki.getSpaceDocsName(SandboxTemplate) because if Administrator doesn't 
 display hidden document, this code doesn't return  SandboxTemplate space 
 hidden documents :-(

 Thxs

 Pascal BASTIEN



 
  De : Pascal BASTIEN pbasnews-xw...@yahoo.fr
 À : XWiki Users users@xwiki.org
 Envoyé le : Mercredi 9 juillet 2014 9h31
 Objet : Re: [xwiki-users] how to purge history in a space?



 Sure!

 NB: is it to late for my commit for 
 6.1?:https://github.com/xwiki/xwiki-platform/pull/297



 
  De : vinc...@massol.net vinc...@massol.net
 À : XWiki Users users@xwiki.org
 Envoyé le : Mardi 8 juillet 2014 18h51
 Objet : Re: [xwiki-users] how to purge history in a space?


 Hi Pascal,

 It could be nice to share how to reinitialize a space” as a snippet on 
 extensions.xwiki.org when you have it all working ;) 

 Thanks 
 -Vincent


 On 8 Jul 2014 at 17:38:43, Pascal BASTIEN 
 (pbasnews-xw...@yahoo.fr(mailto:pbasnews-xw...@yahoo.fr)) wrote:

  
  
  FYI, finally I add this parameter to overwryte my Sandbox (and reinit 
  history):
  copy $xwiki.copyDocument(TemplateSandbox.$docName, 
  Sandbox.$docName,fr,true,true))
  
  http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#copyDocument%28java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20boolean,%20boolean%29
  - reset - true to reset versions
  - force - true to overwrite the previous document
  
  
  Strangely all my new Sandbox page have a fresh 1.1 version except 
  Sandbox.WebHome
  Sandbox/?viewer=history return: Advertissment: impossible to find this 
  document
  
  
  The velocity macro to reinit my Sandbox working well now.
  
  Thxs
  
  
  
  De : Pascal BASTIEN 
  À : XWiki
  Users 
  Envoyé le : Mardi 8 juillet 2014 15h07
  Objet : Re: [xwiki-users] how to purge history in a space?
  
  
  I already check the code of this extension: it is groovy code and it is not 
  a simple one...
  
  I wanted reinit my sandbox with velocity code and I

Re: [xwiki-users] how to purge history in a space? Did I found bug?

2014-07-11 Thread Jeremie BOUSQUET
Hi,


2014-07-11 9:06 GMT+02:00 Pascal BASTIEN pbasnews-xw...@yahoo.fr:

 Do you mean I must launch on query by langage?


 Yes I agree with you about this $item then I can use id of document like
 this:

 {{velocity}}
  #set ($items = $xwiki.search(select doc.id from XWikiDocument as doc
 where doc.space='Sandbox' and doc.name != 'WebPreferences'))


Should select doc.fullName instead of doc.id I believe.
You could also call $xwiki.wrapDocs to convert search result to a list of
xwiki documents directly.
http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#wrapDocs(java.util.List)


#foreach($item in $items)
  #set($itemDoc = $xwiki.getDocument($item))


You could check if $itemDoc is not null and an existing document before
trying to further access it ;-)
http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#exists(java.lang.String)


  * //[$itemDoc] ID in Sandbox space with language : $itemDoc.language
#end
  {{/velocity}}
 but after I don't know how to retrieve all field from wikidoc table from
 $items. :-(

 $itemDoc.language and $itemDoc.name return nothing. Are there a magic
 functions?
 Thxs



 
  De : Marius Dumitru Florea mariusdumitru.flo...@xwiki.com
 À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org
 
 Envoyé le : Jeudi 10 juillet 2014 21h20
 Objet : Re: [xwiki-users] how to purge history in a space? Did I found bug?



 Just print $item and you'll see it's just the name of the document so
 there's no way getDocument would return something other than the default
 translation, which has the language field empty because it's the default
 language (check the defaultLanguage field). If you want to get the
 translations then you can use the 'language' query filter which adds the
 language to the query results.
 On Jul 10, 2014 12:52 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr
 wrote:
 
  I try to finish my xar but I think there are a bug in the xwiki about
 language.
  I can't display XWD_LANGUAGE value from database with velocity.
  By example, this code doesn't return language of
 Sandbox.WebHome:{{velocity}}
  #set ($items = $xwiki.search(select doc.fullName from XWikiDocument as
 doc where doc.space='Sandbox' and doc.name != 'WebPreferences'))
#foreach($item in $items)
  #set($itemDoc = $xwiki.getDocument($item))
  * //[$itemDoc] in Sandbox space with language : $itemDoc.language
#end
  {{/velocity}}
 
  I obtain this:
 
 
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.TestPage3] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.TestPage2] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.TestPage1] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.WebHome] in Sandbox space with language :
  [Sandbox.test] in Sandbox space with language :
 
 
 
  Did I found a bug?
 
  NB: I don't use #foreach ($docName in
 $xwiki.getSpaceDocsName(SandboxTemplate) because if Administrator
 doesn't display hidden document, this code doesn't return  SandboxTemplate
 space hidden documents :-(
 
  Thxs
 
  Pascal BASTIEN
 
 
 
  
   De : Pascal BASTIEN pbasnews-xw...@yahoo.fr
  À : XWiki Users users@xwiki.org
  Envoyé le : Mercredi 9 juillet 2014 9h31
  Objet : Re: [xwiki-users] how to purge history in a space?
 
 
 
  Sure!
 
  NB: is it to late for my commit for 6.1?:
 https://github.com/xwiki/xwiki-platform/pull/297
 
 
 
  
   De : vinc...@massol.net vinc...@massol.net
  À : XWiki Users users@xwiki.org
  Envoyé le : Mardi 8 juillet 2014 18h51
  Objet : Re: [xwiki-users] how to purge history in a space?
 
 
  Hi Pascal,
 
  It could be nice to share how to reinitialize a space” as a snippet on
 extensions.xwiki.org when you have it all working ;)
 
  Thanks
  -Vincent
 
 
  On 8 Jul 2014 at 17:38:43, Pascal BASTIEN (pbasnews-xw...@yahoo.fr
 (mailto:pbasnews-xw...@yahoo.fr)) wrote:
 
  
  
   FYI, finally I add this parameter to overwryte my Sandbox (and reinit
 history):
   copy $xwiki.copyDocument(TemplateSandbox.$docName,
 Sandbox.$docName,fr,true,true))
  
  
 http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#copyDocument%28java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20boolean,%20boolean%29
   - reset - true to reset versions
   - force

Re: [xwiki-users] how to purge history in a space? Did I found bug?

2014-07-11 Thread Pascal BASTIEN
Thxs but no I think it doesn't work for multi lingual document.

My problem that I want copy all language Sandbox.WebHome on another space with 
velocity code.
For multi lingual document doc.id is unique but not doc.fullname in 
XWikiDocument table.

I must copy by example (in velocity):
sandbox.WebHome (en) to NewSpace.WebHome (en) 
sandbox.WebHome (fr) to NewSpace.WebHome (fr)
sandbox.WebHome (xx) to NewSpace.WebHome (xx)

Then I try to retrieve: doc.language  in my for each loop ...



 De : Jeremie BOUSQUET jeremie.bousq...@gmail.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org 
Envoyé le : Vendredi 11 juillet 2014 14h13
Objet : Re: [xwiki-users] how to purge history in a space? Did I found bug?
 


Hi,




2014-07-11 9:06 GMT+02:00 Pascal BASTIEN pbasnews-xw...@yahoo.fr:

Do you mean I must launch on query by langage?


Yes I agree with you about this $item then I can use id of document like this:

{{velocity}}
 #set ($items = $xwiki.search(select doc.id from XWikiDocument as doc where 
doc.space='Sandbox' and doc.name != 'WebPreferences'))


Should select doc.fullName instead of doc.id I believe.

You could also call $xwiki.wrapDocs to convert search result to a list of xwiki 
documents directly.
http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#wrapDocs(java.util.List)
 

 
   #foreach($item in $items)
 #set($itemDoc = $xwiki.getDocument($item))


You could check if $itemDoc is not null and an existing document before trying 
to further access it ;-)
http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#exists(java.lang.String)

 
 * //[$itemDoc] ID in Sandbox space with language : $itemDoc.language
   #end
 {{/velocity}}
but after I don't know how to retrieve all field from wikidoc table from 
$items. :-(

$itemDoc.language and $itemDoc.name return nothing. Are there a magic 
functions?
Thxs





 De : Marius Dumitru Florea mariusdumitru.flo...@xwiki.com
À : Pascal BASTIEN pbasnews-xw...@yahoo.fr; XWiki Users users@xwiki.org
Envoyé le : Jeudi 10 juillet 2014 21h20
Objet : Re: [xwiki-users] how to purge history in a space? Did I found bug?




Just print $item and you'll see it's just the name of the document so there's 
no way getDocument would return something other than the default translation, 
which has the language field empty because it's the default language (check 
the defaultLanguage field). If you want to get the translations then you can 
use the 'language' query filter which adds the language to the query results.
On Jul 10, 2014 12:52 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr wrote:

 I try to finish my xar but I think there are a bug in the xwiki about 
 language.
 I can't display XWD_LANGUAGE value from database with velocity.
 By example, this code doesn't return language of Sandbox.WebHome:{{velocity}}
 #set ($items = $xwiki.search(select doc.fullName from XWikiDocument as doc 
 where doc.space='Sandbox' and doc.name != 'WebPreferences'))
   #foreach($item in $items)
     #set($itemDoc = $xwiki.getDocument($item))
     * //[$itemDoc] in Sandbox space with language : $itemDoc.language
   #end
 {{/velocity}}

 I obtain this:


     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.TestPage3] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.TestPage2] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.TestPage1] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.WebHome] in Sandbox space with language :
     [Sandbox.test] in Sandbox space with language :



 Did I found a bug?

 NB: I don't use #foreach ($docName in 
 $xwiki.getSpaceDocsName(SandboxTemplate) because if Administrator doesn't 
 display hidden document, this code doesn't return  SandboxTemplate space 
 hidden documents :-(

 Thxs

 Pascal BASTIEN



 
  De : Pascal BASTIEN pbasnews-xw...@yahoo.fr
 À : XWiki Users users@xwiki.org
 Envoyé le : Mercredi 9 juillet 2014 9h31
 Objet : Re: [xwiki-users] how to purge history in a space?



 Sure!

 NB: is it to late for my commit for 
 6.1?:https://github.com/xwiki/xwiki-platform/pull/297



 
  De : vinc...@massol.net vinc...@massol.net
 À : XWiki Users users@xwiki.org
 Envoyé le : Mardi 8 juillet 2014 18h51
 Objet : Re: [xwiki-users] how to purge history in a space?


 Hi Pascal,

 It could be nice

Re: [xwiki-users] how to purge history in a space? Did I found bug?

2014-07-10 Thread Pascal BASTIEN
(Add: I tested with 6.1 and 6.0)



I try to finish my xar but I think there are a bug in the xwiki about language.
I can't display XWD_LANGUAGE value from database with velocity.
By example, this code doesn't return language of Sandbox.WebHome:{{velocity}}
#set ($items = $xwiki.search(select doc.fullName from XWikiDocument as doc 
where doc.space='Sandbox' and doc.name != 'WebPreferences'))
  #foreach($item in $items)
    #set($itemDoc = $xwiki.getDocument($item))
    * //[$itemDoc] in Sandbox space with language : $itemDoc.language
  #end
{{/velocity}}

I obtain this:


    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.TestPage3] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.TestPage2] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.TestPage1] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.WebHome] in Sandbox space with language : 
   
 [Sandbox.WebHome] in Sandbox space with language : 
    [Sandbox.test] in Sandbox space with language : 



Did I found a bug?

NB: I don't use #foreach ($docName in 
$xwiki.getSpaceDocsName(SandboxTemplate) because if Administrator doesn't 
display hidden document, this code doesn't return  SandboxTemplate space hidden 
documents :-(

Thxs

Pascal BASTIEN




 De : Pascal BASTIEN pbasnews-xw...@yahoo.fr
À : XWiki Users users@xwiki.org 
Envoyé le : Mercredi 9 juillet 2014 9h31
Objet : Re: [xwiki-users] how to purge history in a space?
 




Sure!

NB: is it to late for my commit for 
6.1?:https://github.com/xwiki/xwiki-platform/pull/297




 De : vinc...@massol.net vinc...@massol.net
À : XWiki Users users@xwiki.org 
Envoyé le : Mardi 8 juillet 2014 18h51
Objet : Re: [xwiki-users] how to purge history in a space?
 

Hi Pascal,

It could be nice to share how to reinitialize a space” as a snippet on 
extensions.xwiki.org when you have it all working ;)  

Thanks  
-Vincent


On 8 Jul 2014 at 17:38:43, Pascal BASTIEN 
(pbasnews-xw...@yahoo.fr(mailto:pbasnews-xw...@yahoo.fr)) wrote:

  
  
 FYI, finally I add this parameter to overwryte my Sandbox (and reinit 
 history):
 copy $xwiki.copyDocument(TemplateSandbox.$docName, 
 Sandbox.$docName,fr,true,true))
  
 http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#copyDocument%28java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20boolean,%20boolean%29
 - reset - true to reset versions
 - force - true to overwrite the previous document
  
  
 Strangely all my new Sandbox page have a fresh 1.1 version except 
 Sandbox.WebHome
 Sandbox/?viewer=history return: Advertissment: impossible to find this 
 document
  
  
 The velocity macro to reinit my Sandbox working well now.
  
 Thxs
  
  
 
 De : Pascal BASTIEN  
 À : XWiki
 Users  
 Envoyé le : Mardi 8 juillet 2014 15h07
 Objet : Re: [xwiki-users] how to purge history in a space?
  
  
 I already check the code of this extension: it is groovy code and it is not a 
 simple one...
  
 I wanted reinit my sandbox with velocity code and I wonder if there aren't a 
 bug with resetArchive method (or if I'm wrong with my syntax)
  
 Thxs anyway :-)
  
  
  
  

 
 De : vinc...@massol.net  
 À : XWiki Users  
 Envoyé le : Mardi 8 juillet 2014 11h35
 Objet : Re: [xwiki-users] how to purge history in a space?
  
  
  
  
 On 8 Jul 2014 at 11:14:25, Pascal BASTIEN 
 (pbasnews-xw...@yahoo.fr(mailto:pbasnews-xw...@yahoo.fr)) wrote:
  
  Yes thxs you, I saw this extension. It's work with that.
  
 If it’s working then you could do the same!
  
  I saw than this user meet same problem: 
  http://xwiki.markmail.org/message/2tx6ac55lrjmju6u?q=purge+history+already+associated
   
  With velocity it is impossible to remove history then? If yes, I will
 shedule your extension.
  
 Why do you say that? AFAICS this extension is a XAR (ie wiki pages). I didn’t 
 check its content but you check how it does it and do the same.
  
 Thanks
 -Vincent
  
  
  
  De : vinc...@massol.net  
  À : XWiki Users  
  Envoyé le : Mardi 8 juillet 2014 10h52

  Objet : Re: [xwiki-users] how to purge history in a space?

   
   
  Hi Pascal,
   
  Does it work with 
  http://extensions.xwiki.org/xwiki/bin/view/Extension/Remove+Document+History
   ?
   
  Thanks
  -Vincent
   
   
  On 8 Jul 2014 at 10:29:13, Pascal BASTIEN 
  

Re: [xwiki-users] how to purge history in a space? Did I found bug?

2014-07-10 Thread Marius Dumitru Florea
Just print $item and you'll see it's just the name of the document so
there's no way getDocument would return something other than the default
translation, which has the language field empty because it's the default
language (check the defaultLanguage field). If you want to get the
translations then you can use the 'language' query filter which adds the
language to the query results.

On Jul 10, 2014 12:52 PM, Pascal BASTIEN pbasnews-xw...@yahoo.fr wrote:

 I try to finish my xar but I think there are a bug in the xwiki about
language.
 I can't display XWD_LANGUAGE value from database with velocity.
 By example, this code doesn't return language of
Sandbox.WebHome:{{velocity}}
 #set ($items = $xwiki.search(select doc.fullName from XWikiDocument as
doc where doc.space='Sandbox' and doc.name != 'WebPreferences'))
   #foreach($item in $items)
 #set($itemDoc = $xwiki.getDocument($item))
 * //[$itemDoc] in Sandbox space with language : $itemDoc.language
   #end
 {{/velocity}}

 I obtain this:


 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.TestPage3] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.TestPage2] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.TestPage1] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.WebHome] in Sandbox space with language :
 [Sandbox.test] in Sandbox space with language :



 Did I found a bug?

 NB: I don't use #foreach ($docName in
$xwiki.getSpaceDocsName(SandboxTemplate) because if Administrator
doesn't display hidden document, this code doesn't return  SandboxTemplate
space hidden documents :-(

 Thxs

 Pascal BASTIEN



 
  De : Pascal BASTIEN pbasnews-xw...@yahoo.fr
 À : XWiki Users users@xwiki.org
 Envoyé le : Mercredi 9 juillet 2014 9h31
 Objet : Re: [xwiki-users] how to purge history in a space?



 Sure!

 NB: is it to late for my commit for 6.1?:
https://github.com/xwiki/xwiki-platform/pull/297



 
  De : vinc...@massol.net vinc...@massol.net
 À : XWiki Users users@xwiki.org
 Envoyé le : Mardi 8 juillet 2014 18h51
 Objet : Re: [xwiki-users] how to purge history in a space?


 Hi Pascal,

 It could be nice to share how to reinitialize a space” as a snippet on
extensions.xwiki.org when you have it all working ;)

 Thanks
 -Vincent


 On 8 Jul 2014 at 17:38:43, Pascal BASTIEN (pbasnews-xw...@yahoo.fr(mailto:
pbasnews-xw...@yahoo.fr)) wrote:

 
 
  FYI, finally I add this parameter to overwryte my Sandbox (and reinit
history):
  copy $xwiki.copyDocument(TemplateSandbox.$docName,
Sandbox.$docName,fr,true,true))
 
 
http://maven.xwiki.org/site/docs/xwiki-javadoc-4.1.x/com/xpn/xwiki/api/XWiki.html#copyDocument%28java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20boolean,%20boolean%29
  - reset - true to reset versions
  - force - true to overwrite the previous document
 
 
  Strangely all my new Sandbox page have a fresh 1.1 version except
Sandbox.WebHome
  Sandbox/?viewer=history return: Advertissment: impossible to find this
document
 
 
  The velocity macro to reinit my Sandbox working well now.
 
  Thxs
 
 
  
  De : Pascal BASTIEN
  À : XWiki
  Users
  Envoyé le : Mardi 8 juillet 2014 15h07
  Objet : Re: [xwiki-users] how to purge history in a space?
 
 
  I already check the code of this extension: it is groovy code and it is
not a simple one...
 
  I wanted reinit my sandbox with velocity code and I wonder if there
aren't a bug with resetArchive method (or if I'm wrong with my syntax)
 
  Thxs anyway :-)
 
 
 
 
 
  
  De : vinc...@massol.net
  À : XWiki Users
  Envoyé le : Mardi 8 juillet 2014 11h35
  Objet : Re: [xwiki-users] how to purge history in a space?
 
 
 
 
  On 8 Jul 2014 at 11:14:25, Pascal BASTIEN (pbasnews-xw...@yahoo.fr
(mailto:pbasnews-xw...@yahoo.fr)) wrote:
 
   Yes thxs you, I saw this extension. It's work with that.
 
  If it’s working then you could do the same!
 
   I saw than this user meet same problem:
http://xwiki.markmail.org/message/2tx6ac55lrjmju6u?q=purge+history+already+associated
  
   With velocity it is impossible to remove history then? If yes, I will
shedule your extension.
 
  Why do you say that? AFAICS this extension is a XAR (ie wiki pages). I
didn’t check its content but you check how it does it and do the same.
 
  Thanks
  -Vincent