The goal is to run the build_website.sh script in the doc/ dir (for local testing purposes only, not on the server) added to doc/.gitignore because: /broken_links the linkchecker generates it /documentation symlink to ./ to fix links /css /js /page.conf /images symlink to some local copy of the lumiera-website checked out /menu.html fill with (to create a fake empty page): <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <TITLE>no menu</TITLE> .* *~ ignore hidden and backup files Then from the 'doc' dir: python -m SimpleHTTPServer 8010 & echo http://localhost:8010 >.baseurl /path/to/build_website.sh to generate the documentation. Other build_website.sh options work as well.
15 lines
153 B
Text
15 lines
153 B
Text
*.html
|
|
user/**/*.html
|
|
devel/rfc*/**/*.html
|
|
devel/draw/**/*.png
|
|
user/**/*.html
|
|
/broken_links
|
|
/documentation
|
|
/css
|
|
/js
|
|
/page.conf
|
|
/images
|
|
/menu.html
|
|
.*
|
|
*~
|
|
|