Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hey,
For this case we developed 'Space Admin for Confluence' which allows:
Try it out for free and discover the possibilitys you have:
You'll find it here:
https://marketplace.atlassian.com/plugins/com.decadis.confluence.spaceadmin/server/overview
If you have any questions, please feel free to contact us directly via e-mail to atlassian-marketplace(at)decadis(dot)de
With best regards
Nicolas Werle
(Decadis AG)
Is compare two pages in the same space option disabled in Trial version?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Suresh Venkat
there are no restrictions in the test version.
Please open the Space Admin Browser, mark the two pages you want to compare and click the "Compare two pages button:
Best regards,
Nicolas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Pamela,
there's a similar question here https://answers.atlassian.com/questions/112423
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you can accomplish this with python, if you are used to reading the output from the posix diff command:
#!/usr/bin/env python import difflib
import sys try: from xmlrpc.client import ServerProxy from xmlrpc.client import Fault except: from xmlrpclib import ServerProxy from xmlrpclib import Fault def get_page(page_id, confluence_url='https://<confluence_domain>', confluence_login='<username>', confluence_password='<password>'): client = ServerProxy(confluence_url+"/rpc/xmlrpc", verbose=0) try: auth_token = client.confluence2.login(confluence_login, confluence_password) except: print("Can't login to confluence") return [] try: # getting confluence page page = client.confluence2.getPage(auth_token, page_id) except Fault as e: print(e.faultString) return [] return page['content'].split('\n') if len(sys.argv) < 3:
print("usage:" + sys.argv[0] + " page_id_1 page_id_2") for line in difflib.unified_diff(get_page(sys.argv[1]), get_page(sys.argv[2]), fromfile='pageID='+sys.argv[1], tofile='pageID='+sys.argv[2]): print(line[:-1])
this little script could help you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This requires to run this script from the server, right? Is there anyway, this can be made end-user friendly?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.