Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
4a66e5ea
Commit
4a66e5ea
authored
Nov 05, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add rsync step to new update_doc script
parent
96de051c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
42 deletions
+3
-42
scripts/update_doc.sh
scripts/update_doc.sh
+3
-0
scripts/update_gh-pages.sh
scripts/update_gh-pages.sh
+0
-42
No files found.
scripts/update_doc.sh
0 → 100755
View file @
4a66e5ea
#!/bin/bash
rsync
-r
-v
-u
--delete
--exclude
=
.DS_Store html/ hylos.cpt.haw-hamburg.de:/prog/www/w3/www.actor-framework.org/html/doc
scripts/update_gh-pages.sh
deleted
100755 → 0
View file @
96de051c
#!/bin/bash
echo
"check for folders ..."
if
[
!
-d
manual
]
;
then
echo
"no manual folder found"
exit
fi
if
[
!
-d
../gh-pages
]
;
then
echo
"no gh-pages folder found"
exit
fi
echo
"build documentation ..."
make doc &>/dev/null
||
ninja
-C
build doc &>/dev/null
||
exit
if
[
!
-f
manual/manual.pdf
]
;
then
echo
"no PDF manual found ... stop"
exit
fi
echo
"build HTML manual ..."
cd
manual/
# runs hevea three times
make html &>/dev/null
echo
"copy documentation into gh-pages ..."
cd
../../gh-pages
rm
-f
*
.tex
*
.html
*
.css
*
.png
*
.js manual/manual.pdf manual/index.html
cp
-R
../actor-framework/html/
*
.
mkdir
manual
cp
../actor-framework/manual/manual.pdf manual/
cp
../actor-framework/manual/manual.html manual/index.html
echo
"commit ..."
git add
.
git commit
-a
-m
"documentation update"
echo
"push ..."
git push
cd
../actor-framework
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment