Advertisement
Guest User

Untitled

a guest
May 27th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. # Confluence URL
  4. CONFLUENCE_BASE_URL = 'http://192.168.240.188:8090'
  5.  
  6. # A list of space keys to export
  7. SPACES_TO_EXPORT = ['TES', 'TE2', 'TE3']
  8.  
  9. # Confluence authentication
  10. # Example for HTTP Basic Authentication: ('johndoe', 'sup3rs3cur3pw')
  11. HTTP_AUTHENTICATION = None
  12.  
  13. # Additional headers
  14. # Example for custom authentication: {'user': 'johndoe', 'password': 'sup3rs3cur3pw'}
  15. HTTP_CUSTOM_HEADERS = {'SSL_CLIENT_S_DN': '/serialNumber=Z0033ZBD'}
  16.  
  17. # Export specific settings
  18. EXPORT_FOLDER = 'export'
  19. DOWNLOAD_SUB_FOLDER = 'attachments'
  20. TEMPLATE_FILE = 'template.html'
  21.  
  22. # Confluence generates thumbnails for the following image formats
  23. CONFLUENCE_THUMBNAIL_FORMATS = ['gif', 'jpeg', 'jpg', 'png']
  24.  
  25. # Confluence generates image previews for the following file formats
  26. CONFLUENCE_GENERATED_PREVIEW_FORMATS = ['pdf']
  27.  
  28. # The following message is displayed for page forwardings
  29. HTML_FORWARD_MESSAGE = '<a href="%s">If you are not automatically forwarded to %s, please click here!</a>'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement