Hi,
i want Confluence to check a directory with powerpoint-presentations once a week (or once a month..). For every new presentation a new site should be created and the presentation has to be updated automatically then.
How can i do that? Is this very complicated?
The only thing I know is that I have to write code.
This doesn't add a lot to the question since you last asked it.
You still need to explain what a "site" is.
The code you need to write will need to be either an add-on (or script if you have Script Runner) for Confluence that can run on a schedule, go out to where you are putting the files and pull them in, OR an external program that reads the location and uses REST to poke the data in.
Make that decision first, if it's going to be done by Confluence or by an external process, then we can point you at the basic stuff you need.
So, what do i have to do?
To be honest, I don't know anything. I have no clue where to start.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to decide how you are going to do this. Is it going to be done by Confluence or by an external process?
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.
Ok, start at https://developer.atlassian.com/confdev/confluence-plugin-guide/writing-confluence-plugins as you'll need to write an add-on for Confluence.
You might find it quicker and easier to use the Script Runner add-on though, it allows you to write code directly in the application without having to write all the structural stuff that an add-on requires, and it has a scheduler built in, so you can use that to do the regular pull.
Whichever way you do it, your code will need to read data from somewhere (the list of stuff to import and the content), work out how to structure it in Confluence and then create what you want.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Okay, thank you.
Do you also have any links or hints on how to do it with REST?
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.
I mean a new page.
This https://developer.atlassian.com/confdev/confluence-server-rest-api/confluence-rest-api-examples already sounds quite good.
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.