Hi,

You can try the following code (xwiki 1.0 syntax) to rename your space Main to 
Releases :
I guess that you will have to recreate the Main space as it seems to be the 
default one (with the WebHome page in it)

*******************************************
1 Rename Space

#if($request.space)
  #if("doRename"==$request.op)
    #set($space=$request.space)
    #foreach($item in $xwiki.getSpaceDocsName($request.space))
      
$xwiki.getDocument("${space}.${item}").rename("${request.newname}.${item.replace('.','_')}")
    #end
1.1 Renamed space $space to $request.newname

[Cancel>$doc.fullName]

  #end

  #if("listRename"==$request.op)
    #set($space=$request.space)
1.1 Renaming space $space to $request.newname
    #foreach($item in $xwiki.getSpaceDocsName($request.space))
* Renaming $space.$item to ${request.newname}.${item.replace('.','_')}
    #end

[Confirm>$doc.fullName?space=$space&newname=$request.newname&op=doRename]
[Cancel>$doc.fullName]

  #end

  #if("getNewName"==$request.op)

Renaming $request.space

1.1 Renaming ${request.space}

<form method="post" action="$doc.getURL("view", "")" 
onsubmit="cancelCancelEdit()">
<div class="padded centered">
<input type="hidden" name="space" value="${request.space}" />
<input type="hidden" name="op" value="listRename" />
Enter new name for the space:  
<input type="text" name="newname" value="${request.space}" class="panelinput" 
style="margin:auto;" onfocus="if(this.value=='Title') this.value=''" 
onblur="if(this.value=='') this.value='Title'"/>
</div>
<div class="padded centered" style="text-align:center;">
<input type="submit" class="button" style="margin:auto;" value="Rename"/>
</div>
</form>

[Cancel>$doc.fullName]

  #end
#else
{table}
Space | Action
#foreach($space in $xwiki.spaces)
$space | [Rename>$doc.fullName?space=${space}&op=getNewName]
#end
{table}
#end
******************************************************************

> -----Message d'origine-----
> De : users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] 
> De la part de Maria Carolina Ramirez
> Envoyé : vendredi 4 décembre 2009 20:37
> À : XWiki Users
> Objet : [xwiki-users] Migrate a space
> 
> Hi Everybody,
> 
>  
> 
> I have a problem with Main space.  I have several documents in Main
> Space and I need to work in other space created by me. So, I 
> don't know
> if I can move all the documents that I have in Main space into my new
> space called Releases. I create the space, but I only found a 
> way to do
> that and is to rename page by page, each one separately.
> 
>  
> 
> Thanks in advance!
> 
>  
> 
> Ma. Carolina Ramirez
> 
>  
> 
>  
> 
> _______________________________________________
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
> 
--------------------------------------------------------------------------------

This e-mail is intended only for the addressee named above. It does not bind 
the sender, except in the case of an existing written convention with the 
addressee. This e-mail may contain material that is confidential and privileged 
for the sole use of the intended recipient. Any review, reliance or 
distribution by others or forwarding without express permission is strictly 
prohibited and may be unlawful. If you are not the intended recipient, please 
contact the sender and delete all copies.

While reasonable precautions have been taken to ensure that this e-mail and any 
attachments are free from any computer virus or similar defect, no liability 
will be accepted in that respect. Anyone accessing this e-mail must take their 
own precautions as to security and virus protection.

KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. 
Luxembourg B 6395, T (352) 47 97 1
_______________________________________________
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users

Reply via email to