How to bulk archive the wiki in Confluence Wiki - wiki

I wrote a lot of wikis on Confluence wiki, is there a way to save them which includes attachment and images?

Related

Is there a way to export a Confluence project's documentation to the GitLab Wiki?

I would like to take all project documentation at the confluence to GitLab-Wiki.
Is there any way to export from confluence to the GitLab 13ce wiki?
You can export all or parts of you Confluence to PDF (possibly other formats like MS Word?). That may suffice if your Confluence instance is small.
Alternatively Confluence provides a rich RESTful API with which you could iterate your Spaces and Pages, extract all needed details and then format/write them appropriate to GitLab-Wiki (which I don't know anything about). This is non-trivial but I've done something similar using PowerShell and the Confluence APIs.

Importing Redmine wiki into Atlassian Confluence

We are migrating from Redmine to the product suite of Atlassian.
We successfully migrated the tickets from Redmine into Jira + Jenkins data into Bamboo.
The only thing I'm not able to import is the wiki data from Redmine into confluence.
Does anyone have/know a solution for this. (Manual import is not an option => +1500 pages)
Grtz & thanks Ilias
This is a solution we have come up with recently. There are two scripts, first allows you to prepare data for conversion by exporting wikis and attachments. Second can push (almost) everything into confluence wiki, keeping links, most of the tables.
It is not perfect, so DO expect some reasonable damage to content.

Hosted Wiki for documentation similar to Github wiki

I want wiki similar to Github Wiki but Github Wiki is repository specific and can't be customized to remove Github navigation controls.
I would like a hosted wiki without any ads and should be easy to style/customize.
I am open to using Rails based simple wiki solution with good set of wiki features.
I think Branchabe, the hosted version of Ikiwiki is probably the best wiki engine in the vein of the github wiki. This is a personal preference issue though and I don't know that there's an objectively right answer here.
MediaWiki is a great open-source Wiki that you could use for this, as well as just about any other Wiki solution.
Wikispaces seems pretty decent.
It has a free option and its layout is customizable (in the paid version). I have to say though, like most wikis, it doesn't have the best user interface (it seems better than most though).

Offline wiki-like authoring tool

Does anyone know if there is a help authoring tool out there that can produce help documentation for a software product that looks like a wiki? We are currently using the Confluence wiki engine, which is absolutely brilliant and we were wondering if there is anything like that but without the need for an Apache server. Something stand-alone that can give our users the help documentation they need. We have used help authoring tools and they all seem so clunky compared to a wiki.
Use Wiki on a Stick.
Its a single .html file written in Javascript/html and saves the changes onto itself.
You don't even need Apache. Awesome tool!
How about Juli? It generates static HTML so you can browse documents by browser only.
It is used for:
Juli documentation itself.
Edgar project documentation (another my OSS project).
My personal wiki/blog. I'll show later since new users can only post two links(stackoverflow limitation)

Is there a way to generate confluence wiki pages from javadocs?

I'd like to put documentation on a confluence wiki for a project I'm working on, and I want to automatically generate some of the documentation from javadocs. Is there a plugin for confluence that makes this easy (did not see in preliminary search), alternatively has anyone written scripts to post wiki pages to confluence based on javadocs? An ant task might be cool, then I could have the wiki as a target.
Confluence JavaDocs Macros is a plugin that will generate wiki pages from javadocs. The downside is that a zip archive must be made of the javadocs and placed on the first page of a space, and multiple javadocs cannot co-exist in the same space.
The plugin is also not compatible with every version of Confluence.
And you might want to add javadocs to confluence if you only had a confluence server (or the confluence server is the primary place for documentation) to host your documentation... It has happened before.
Why would you upload javadoc into an editing system? This sounds rater odd. We created a apache server on which the project documentation is uploaded (which is created form Java as javadoc, and from some project documentation (which we also store in the project (inside SCM)).
Next to that we have a Wiki system, in which everyone can write all kind of stuff. It is easy in most wiki to make a external reference (to the Apache web-server, project documentation / javadoc pages).
The good thing about this is, that the project documentation can be re-generated through ant / maven / etc. and automaticly uploaded to some web-server. There is can only be red and not modified. That can only be done through the project sources. Which is good, because otherwise people start to edit the wiki pages, which then get replaced now and then, because a new build / release is created.
You can use the Docs Plugin: https://marketplace.atlassian.com/plugins/net.meixxi.confluence.docs.docs-plugin. This plugin enables you to upload and publish your JavaDocs and other HTML and JavaScript based content in Confluence.
Docs provides also a REST Interface in order to automate the publishing process. So, publishing the JavaDocs can become part of the Continuous Integartion Process. A technical documentation as well as a sample code can you find here: https://ricebean.net/confluence-docs