From b6f4ad2d7455470e147c9f776bdaa5c5446321d9 Mon Sep 17 00:00:00 2001 From: Gabriel Fedel Date: Tue, 9 Jan 2024 09:27:11 +0100 Subject: [PATCH 1/4] Update documentation to point to github instead of sourceforge --- documentation/mainpage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/mainpage.h b/documentation/mainpage.h index 13f5b79..9b14d6c 100644 --- a/documentation/mainpage.h +++ b/documentation/mainpage.h @@ -13,7 +13,7 @@ The @ref mmio "MMIO API" is included in EPICS Base >=3.15.0.2 @section whereis Source -Releases can be found at @url http://sourceforge.net/projects/epics/files/devlib2/ +Releases can be found at @url https://github.com/epics-modules/devlib2/tags VCS source browser @url https://github.com/epics-modules/devlib2 @@ -22,7 +22,7 @@ Or checked out with git clone https://github.com/epics-modules/devlib2.git -The canonical version of this page is @url http://epics.sourceforge.net/devlib2/ +The canonical version of this page is @url https://epics-modules.github.io/devlib2 @subsection requires Requires From 15400813a3e9b881976bb46308d6d8ae7977d973 Mon Sep 17 00:00:00 2001 From: Gabriel Fedel Date: Thu, 25 Jan 2024 10:43:59 +0100 Subject: [PATCH 2/4] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f583df..8149172 100644 --- a/README.md +++ b/README.md @@ -3,5 +3,5 @@ --- # devLib2 - Library for direct MMIO access to PCI and VME64x -* [Documentation and example](http://epics.sourceforge.net/devlib2/) +* [Documentation and example](https://epics-modules.github.io/devlib2/) * Requires: [EPICS Base](http://www.aps.anl.gov/epics/) >= 3.14.8.2 From 8af806957cb96ec39d331e3fb1a930be6148550e Mon Sep 17 00:00:00 2001 From: Gabriel Fedel Date: Thu, 25 Jan 2024 10:46:08 +0100 Subject: [PATCH 3/4] Remove uploadtar.sh Not used anymore, as we are moving to github pages --- scripts/uploadtar.sh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 scripts/uploadtar.sh diff --git a/scripts/uploadtar.sh b/scripts/uploadtar.sh deleted file mode 100755 index 7c35d9c..0000000 --- a/scripts/uploadtar.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -set -e - -die() { - echo "$1" - exit 1 -} - -[ -f "$1" ] || die "usage $0 " - -[ "$USER" ] || die "USER not set" - -[ -f documentation/mainpage.h ] || die "Run me in the top level" - -scp "$@" $USER,epics@frs.sourceforge.net:/home/frs/project/epics/devlib2/ From efa3485df21d4dfa0373cb1d99cccbb17b624fa8 Mon Sep 17 00:00:00 2001 From: Gabriel Fedel Date: Thu, 25 Jan 2024 10:46:29 +0100 Subject: [PATCH 4/4] fix: Update pusdoc.sh to use github pages --- scripts/pushdoc.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/pushdoc.sh b/scripts/pushdoc.sh index a6f9681..c0d6b50 100755 --- a/scripts/pushdoc.sh +++ b/scripts/pushdoc.sh @@ -12,4 +12,9 @@ die() { (cd documentation && doxygen) -rsync -av --delete documentation/doc/html/ $USER,epics@frs.sourceforge.net:/home/project-web/epics/htdocs/devlib2/ +git checkout gh-pages +cp -r documentation/doc/html/* . +rm -rf documentation +git add . +git commit -m "Last updates to documentation" +git push origin gh-pages