You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There appears to be issues with the implementation, which may be resolved in the recent changes introduced in #838. If interested, you may try to use the development version of this extension to see if it resolves your issue.
Alternatively, if you would like to keep using an official release, you could possibly workaround this scenario by providing an absolute path to the allow list. For example:
import os
doc_dir = os.path.dirname(os.path.realpath(__file__))
confluence_publish_allowlist = os.path.join(doc_dir, 'allowed-docs.txt')
Hi Team,
I am facing issue to read from file when I am trying this option in conf.py to publish required documents.
Its not reading document names from file .
confluence_publish_allowlist = 'allowed-docs.txt'
allowed-docs.txt structure is like that
Test1/KB/doc1 Test1/KB/doc2 Test1/KB/doc3 Test1/KB/doc4 Test1/KB/doc5 Test1/Test1
but when I am putting those in below format in cong.py file its reading those file
confluence_publish_allowlist = ['Test1/KB/doc1', 'Test1/KB/doc2', 'Test1/KB/doc3', 'Test1/KB/doc4', 'Test1/KB/doc5', 'Test1/Test1']
I tried multiple things (with hardcoded path and all) but its not taking values from file.
Need suggestions here
Thanks in advance
The text was updated successfully, but these errors were encountered: