new: [build] move from GitBook to honkit (fork of GitBook)

honkit
Alexandre Dulaunoy 2021-02-28 10:40:47 +01:00
parent 52c9d94a89
commit 92333e4d61
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
4 changed files with 19 additions and 16 deletions

View File

@ -14,13 +14,14 @@ install:
- sudo n stable - sudo n stable
- sudo ln -sf /usr/local/n/versions/node/8.0.0/bin/node /usr/bin/node - sudo ln -sf /usr/local/n/versions/node/8.0.0/bin/node /usr/bin/node
- sudo npm update -g - sudo npm update -g
- npm install gitbook-cli -g - npm install honkit
- npm install gitbook-plugin-autocover - npm install gitbook-plugin-autocover
- npm install gitbook-plugin-github - npm install gitbook-plugin-github
- npm install gitbook-plugin-toc - npm install gitbook-plugin-toc
- npm install gitbook-plugin-anchors - npm install gitbook-plugin-anchors
- npm install gitbook-plugin-image-class - npm install gitbook-plugin-image-class
- npm install gitbook-plugin-codesnippet
script: script:
- gitbook install - npx honkit install
- gitbook build - npx honkit build

View File

@ -1,5 +1,6 @@
# Summary # Summary
* [Introduction](README.md)
* [Book Convention](book-convention/README.md) * [Book Convention](book-convention/README.md)
* [Quick Start](quick-start/README.md) * [Quick Start](quick-start/README.md)
* [Requirements](requirements/README.md) * [Requirements](requirements/README.md)
@ -9,7 +10,7 @@
* [User Management and Global Actions](user-management/README.md) * [User Management and Global Actions](user-management/README.md)
* [Using the System](using-the-system/README.md) * [Using the System](using-the-system/README.md)
* [Delegation of Event](delegation/README.md) * [Delegation of Event](delegation/README.md)
* [Extending Events](extended-events/README.md) - in progress * [Extending Events](extended-events/README.md)
* [Administration](administration/README.md) * [Administration](administration/README.md)
* [Managing Feeds](managing-feeds/README.md) * [Managing Feeds](managing-feeds/README.md)
* [Updating Python dependencies](updating-python/README.md) * [Updating Python dependencies](updating-python/README.md)
@ -17,16 +18,17 @@
* [PyMISP - Python Library to Access MISP](pymisp/README.md) * [PyMISP - Python Library to Access MISP](pymisp/README.md)
* [Create an Event Based on a Report](create-event-report/README.md) * [Create an Event Based on a Report](create-event-report/README.md)
* [Taxonomies](taxonomy/README.md) * [Taxonomies](taxonomy/README.md)
* [Galaxies](galaxy/README.md) - in progress * [Galaxies](galaxy/README.md)
* [Sightings](sightings/README.md) - in progress * [Sightings](sightings/README.md)
* [Warning lists](warninglists/README.md) - in progress * [Warning lists](warninglists/README.md)
* [Notice lists](noticelists/README.md) - in progress * [Notice lists](noticelists/README.md)
* [Categories and Types](categories-and-types/README.md) * [Categories and Types](categories-and-types/README.md)
* [Synchronisation/Sharing](sharing/README.md) * [Synchronisation/Sharing](sharing/README.md)
* [External Connectors](connectors/README.md) * [External Connectors](connectors/README.md)
* [Modules](modules/README.md) - in progress * [Modules](modules/README.md)
* [ZeroMQ - MISP publish-subscribe](misp-zmq/README.md) * [ZeroMQ - MISP publish-subscribe](misp-zmq/README.md)
* [Translations - i18n & l10n](translation/README.md) * [Translations - i18n & l10n](translation/README.md)
* [FAQ](faq/README.md) * [FAQ](faq/README.md)
* [Dev FAQ](dev-faq/README.md) * [Dev FAQ](dev-faq/README.md)
* [Appendices](appendices/README.md) * [Appendices](appendices/README.md)

View File

@ -3,8 +3,8 @@
"description": "User guide of MISP Malware Information Sharing Platform, a Threat Sharing Platform.", "description": "User guide of MISP Malware Information Sharing Platform, a Threat Sharing Platform.",
"language": "en", "language": "en",
"author": "MISP Contributors", "author": "MISP Contributors",
"plugins": ["autocover", "github", "toc", "anchors", "alerts", "advanced-emoji", "image-class", "last-modified", "search", "sitemap", "codesnippet", "gist", "fontsettings"], "plugins": ["toc", "github", "codesnippet", "last-modified"],
"links": { "sidebar": { "MISP @ GitHub": "https://github.com/MISP/MISP", "PDF Format": "https://www.circl.lu/doc/misp/book.pdf" }}, "links": { "sidebar": { "MISP @ GitHub": "https://github.com/MISP/MISP", "PDF Format": "https://www.circl.lu/doc/misp/book.pdf" }},
"pluginsConfig": { "pluginsConfig": {
"github": { "github": {
"url": "https://github.com/MISP/" "url": "https://github.com/MISP/"

View File

@ -1,16 +1,16 @@
#!/bin/bash #!/bin/bash
echo "1/4 html" echo "1/4 html"
gitbook build npx honkit build
echo "2/4 pdf" echo "2/4 pdf"
gitbook pdf npx honkit pdf
echo "3/4 epub" echo "3/4 epub"
gitbook epub npx honkit epub
echo "4/4 mobi" echo "4/4 mobi"
gitbook mobi npx honkit mobi
echo "Done" echo "Done"
mv book.pdf _book mv book.pdf _book
mv book.epub _book mv book.epub _book
mv book.mobi _book mv book.mobi _book
chmod +r _book/book.pdf _book/book.epub _book/book.mobi chmod +r _book/book.pdf _book/book.epub _book/book.mobi
cd _book cd _book
rsync -azv . circl@cpab.circl.lu:/var/www/nwww.circl.lu/doc/misp/ && rm -rf _book #rsync -azv . circl@cpab.circl.lu:/var/www/nwww.circl.lu/doc/misp/ && rm -rf _book