Hello there,
Currently, under Space Tools -> Content Tools -> Export -> Export HTML, i export all the Space and import then into another tool.
But i need to to it manually.
Is there a way i can programmatically execute this task?
Thanks,
Vitor
Hi Vitor,
Since you are on OnDemand, I would recommend you use the xmlrpc api, which is very easy to use with python. You can use the exportSpace method (https://developer.atlassian.com/display/CONFDEV/Remote+Confluence+Methods#RemoteConfluenceMethods-Spaces) to export multiple spaces. Here is an example of a python script that should save all personal spaces (although I changed it real quick and didn't have a chance to test it out), so you should be able to use it for reference:
#!/usr/bin/python import xmlrpclib import time import urllib confluencesite = "http://localhost:8090" server = xmlrpclib.ServerProxy(confluencesite + '/rpc/xmlrpc') username = 'admin' password = 'secret' token = server.confluence2.login(username, password) loginString = "?os_username=" + username + "&os_password=" + password filelist = "" start = True spacesummary = server.confluence2.getSpaces(token) for space in spacesummary: #if space['name'] == "Problem Space": # start = True # continue if start: if space['type'] == 'personal': print "Exporting user " + space['name'] spaceDownloadUrl = server.confluence2.exportSpace(token, space['key'], "TYPE_XML") filename = spaceDownloadUrl.split('/')[-1].split('#')[0].split('?')[0] time.sleep(0.5) urllib.urlretrieve (spaceDownloadUrl + loginString, filename) print filename + " saved." f = open("exportedspaces.txt", 'a') f.write(filename + "\n") f.close()
If you run into a space that has a problem with export, just change start to false, uncomment the three lines, and put the name of the space in place of "Problem Space". If you want to export all global spaces instead, change the space['type'] to 'global'. Hope that's helpful!
The Confluence Command Line Interface can do what you are looking for.
https://bobswift.atlassian.net/wiki/display/CSOAP/Documentation#Documentation-exportSpace
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Or try the Plugin Scroll HTML Exporter.
We like it very much and export whole spaces on a regular basis for an offline emergeny handbook.
- Steffen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.