Synced FreeCAD online documentation
Go to file
2021-01-31 20:01:24 +00:00
.github/workflows Nightly builds 2021-01-31 19:53:13 +00:00
localwiki Add all translations 2018-07-19 18:47:02 -05:00
buildpdf.py Use print() function in both Python 2 and Python 3 2019-01-09 18:00:43 +01:00
buildqhelp.py Fix qhelpgenerator: could not find a Qt installation of '' 2021-01-31 20:01:24 +00:00
buildwikiindex.py Use print() function in both Python 2 and Python 3 2019-01-09 18:00:43 +01:00
downloadwiki.py Use print() function in both Python 2 and Python 3 2019-01-09 18:00:43 +01:00
freecad-icon-64.png Initial commit 2018-07-08 12:11:49 -05:00
README Initial commit 2018-07-08 12:11:49 -05:00
revisions.txt Add all translations 2018-07-19 18:47:02 -05:00
todolist.txt Initial commit 2018-07-08 12:11:49 -05:00
update.py Use print() function in both Python 2 and Python 3 2019-01-09 18:00:43 +01:00
updates.txt Add all translations 2018-07-19 18:47:02 -05:00
wikifiles.txt Add all translations 2018-07-19 18:47:02 -05:00

this suite of tools can be used to retrieve a local copy
from the FreeCAD wiki and then use it to generate qhelp
and pdf files. The downloading of the entire wiki is now
a huge operation, prone to network errors, so it has been
cut into 2 parts, one to retrieve a list of files to
download and another to actually download the files.

1) run "buildwikiindex.py" to build an index file containing
   a list of all the files to download

2) run "downloadwiki.py". If connection drops, run it again, 
   the already downloaded files will be skipped.

3) run "buildqhelp.py" to generate freecad.qhc and freecad.qch
   files

4) run "buildpdf.py" to generate freecad.pdf (wkhtmltopdf must be installed)

5) the qhelp files can be tested with "assistant -collectionFile freecad.qhc"

6) If you have already downloaded the whole wiki, run "update.py" immediately 
   after, to create a list of revision IDs for each page.
   
7) Once the initial revisions list has been created, the "update.py" script
   can be ran anytime in the future, to check for pages that have changed
   since the stored revision ID. The script is meant to run twice, one to get
   a list of pages that have changed, and another one to download the changed
   pages (and all their dependencies) again.

8) To split the generated freecad.qch into parts that are smaller than 50Mb 
   (github limit): split -d --byte=49M localwiki/freecad.qch localwiki/freecad.qch.part
   
9) To join the parts again (for testing): cat localwiki/freecad.qch.part* >> test.qch
   Then check that test.qch has the same md5 number than localwiki/freecad.qch

10) To test: assistant -collectionFile localwiki/freecad.qhc