Skip to main content



      Home
Home » Archived » EPF » Uploading EPF Published Sites to Confluence
Uploading EPF Published Sites to Confluence [message #1126075] Sat, 05 October 2013 01:50 Go to next message
Eclipse UserFriend
Hi forum,

Confluence is the wiki used by my organisation. As such, it would make sense if I could upload my EPF published site to confluence.

Has anyone done this? Does it work?

Many thanks,

Chris
Re: Uploading EPF Published Sites to Confluence [message #1126455 is a reply to message #1126075] Sat, 05 October 2013 11:33 Go to previous messageGo to next message
Eclipse UserFriend
There were some conflicts copying the images directory and css directory as those names have special meaning to confluence.

As a quick hack, I renamed these folders and updated references to them which seems to work ok.

#!/bin/sh

set -e

# rename images folder and fix references to it

/bin/find Publish/ -depth -type d -name images -exec rename -v 'images' 'imagesdir' {} \;

/bin/find ./Publish -type f -name "*.htm" -exec sed -i 's/images\//imagesdir\//g' '{}' +
/bin/find ./Publish -type f -name "*.html" -exec sed -i 's/images\//imagesdir\//g' '{}' +

# rename css folder and fix references to it

/bin/find Publish/ -depth -type d -name css -exec rename -v 'css' 'cssdir' {} \;

/bin/find ./Publish -type f -name "*.htm" -exec sed -i 's/css\//cssdir\//g' '{}' +
/bin/find ./Publish -type f -name "*.html" -exec sed -i 's/css\//cssdir\//g' '{}' +

cp -rvf Publish confluence_webdav_folder

[Updated on: Sun, 06 October 2013 08:05] by Moderator

Re: Uploading EPF Published Sites to Confluence [message #1408266 is a reply to message #1126455] Thu, 14 August 2014 12:20 Go to previous message
Eclipse UserFriend
Chris,
Can you help me with some steps how you uploaded the EPF Published site to Confluence.
You can also send me a private message.
Thanks,
Gabriel
Previous Topic:How does EPF relate to Stardust BPM project?
Next Topic:Problem including javascript functions in EPF
Goto Forum:
  


Current Time: Tue Jul 22 18:27:00 EDT 2025

Powered by FUDForum. Page generated in 0.03222 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top