If I have a file "file1.csv" stored on a server say "file-server1" and I wanted to display the file in confluence how would I go about setting up CLI to do it? I add the macro to a test page but don't know what to put in the body of it
Normally, you would use the CLI to take the contents of the file and populate a page with the data. For example:
--action storePage --space myspace --title file1 --file file1.csv --content "{noformat}" --content2 "{noformat}"
If you have the Table Plugin for Confluence, then you can replace the noformat macro with the csv macro.
Another approach is to just use the csv macro directly and access a file located in the script directory in the home directory of the Confluence server. See CSV Macro .
I will give this a try and get back to you. Thanks for the speedy reply.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am now getting a "Error rendering macro 'cli' : Security restricted macro with parameter 'product' and parameter value 'confluence' is not allowed on this page. A page edit restriction is required that matches the macro authorization list." Error. WHat should change in the \\conflluence-server\ConfluenceData\macro-security.properties file to allow the macro to run?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
or if it could read the data from the csv then display it on the current confluence page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
cli is a macro security controlled macro and so needs an entry in your macro-security properties - something like:
cli=confluence-administrators
cli.profile.*=confluence-administrators
For your other question, see the answer regarding the use of the csv macro.
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.