Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation to remove reference to source forge #122

Merged
merged 3 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ What is Available?

* More infomation on the Micro Research hardware can be found on their website http://www.mrf.fi/.

* Documentation at [http://epics.sourceforge.net/mrfioc2](http://epics.sourceforge.net/mrfioc2)
* Documentation at [https://epics-modules.github.io/mrfioc2](https://epics-modules.github.io/mrfioc2)

Prerequisites
-------------
Expand Down
6 changes: 3 additions & 3 deletions documentation/mainpage.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ event timing systems.

@section whereis Source

Releases can be found at @url http://sourceforge.net/projects/epics/files/mrfioc2/
Releases can be found at @url https://github.com/epics-modules/mrfioc2/releases

This module is versioned with Git and can be viewed at
@url https://github.com/epics-modules/mrfioc2/
Expand All @@ -25,7 +25,7 @@ Or checked out with

git clone https://github.com/epics-modules/mrfioc2.git

The canonical version of this page is @url http://epics.sourceforge.net/mrfioc2/
The canonical version of this page is @url http://epics-modules.github.io/mrfioc2

@subsection requires Requires

Expand All @@ -39,7 +39,7 @@ MSI (Macro expansion tool) Required with Base < 3.15.1

devLib2 >= 2.9

@url http://epics.sourceforge.net/devlib2/
@url https://epics-modules.github.io/devlib2/

RTEMS >= 4.9.x, vxWorks >=6.7, or Linux >= 2.6.26.

Expand Down
10 changes: 8 additions & 2 deletions scripts/pushdoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@ die() {
builddoc() {
doxygen
lyx -batch -e pdf evr-usage.lyx
lyx -batch -e pdf evg-usage.lyx
lyx -batch -e pdflatex evg-usage.lyx
pdflatex evg-usage
mv evg-usage.pdf evr-usage.pdf html/
}

(cd documentation && builddoc)

rsync -av --delete "$@" documentation/html/ $USER,[email protected]:/home/project-web/epics/htdocs/mrfioc2/
git checkout gh-pages
cp -r documentation/html/* .
rm -rf documentation
git add .
git commit -m "Last updates to documentation"
git push origin gh-pages
Loading