Skip to content

Commit d693561

Browse files
gethviaaronkaplan
authored andcommitted
DOC: Changes documentation to mkdocs.
1 parent d624988 commit d693561

File tree

142 files changed

+14883
-10007
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+14883
-10007
lines changed

.github/workflows/build-docs.yml

+51-29
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,61 @@
1-
#Github Workflow to run test documentation built
2-
#
3-
#SPDX-FileCopyrightText: 2020 IntelMQ Team <[email protected]>
4-
#SPDX-License-Identifier: AGPL-3.0-or-later
5-
#
6-
name: "Build the documentation with sphinx"
1+
# SPDX-FileCopyrightText: 2023 Filip Pokorný
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
4+
name: "Build and publish documentation"
5+
76
on:
87
push:
9-
branches: [develop, maintenance, master]
10-
paths-ignore:
11-
- '.github/**'
8+
branches:
9+
- develop
10+
- maintenance
11+
- mkdocs
12+
1213
pull_request:
13-
branches: [develop, maintenance]
14-
paths-ignore:
15-
- '.github/**'
14+
branches:
15+
- develop
16+
- maintenance
17+
- mkdocs
18+
19+
release:
20+
types:
21+
- published
22+
23+
permissions:
24+
contents: write
1625

1726
jobs:
18-
documentationbuild:
27+
build:
1928
runs-on: ubuntu-latest
20-
name: Build the documentation
21-
strategy:
22-
fail-fast: false
23-
matrix:
24-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
25-
2629
steps:
27-
- name: Checkout repository
28-
uses: actions/checkout@v3
30+
- name: "Checkout repository"
31+
uses: actions/checkout@v3
32+
33+
- name: "Setup python"
34+
uses: actions/setup-python@v4
35+
with:
36+
python-version: 3.x
37+
38+
- name: "Install build dependencies"
39+
run: |
40+
pip install mkdocs-material mike lunr pygments mkdocstrings[python] mkdocs-material mkdocs-glightbox mkdocs-redirects mkdocs-minify-plugin
41+
42+
- name: "Prepare git"
43+
run: |
44+
git fetch origin gh-pages --depth=1
45+
git config user.name intelmq-bot
46+
git config user.email intelmq-bot
2947
30-
- name: Set up Python ${{ matrix.python-version }}
31-
uses: actions/setup-python@v4
32-
with:
33-
python-version: ${{ matrix.python-version }}
48+
- name: "Build docs without publishing"
49+
if: github.event_name == 'pull_request'
50+
run: |
51+
mkdocs build
3452
35-
- name: Install documentation dependencies
36-
run: pip install -r docs/requirements.txt
53+
- name: "Build docs with version tag and publish"
54+
if: github.event_name == 'release'
55+
run: |
56+
mike deploy --push --update-aliases ${{ github.ref_name }} latest
3757
38-
- name: Build documentation
39-
run: make -C docs html
58+
- name: "Build docs with branch tag and publish"
59+
if: github.event_name == 'push'
60+
run: |
61+
mike deploy --push ${{ github.ref_name }}

.github/workflows/codespell.excludelines

+2-8
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,8 @@ The correct name for the parameter "delimeter" is "delimiter". Please fix your c
2626
# intelmq/tests/bots/collectors/fireeye/first_request.json "attch"
2727
{"alert": [{"explanation": {"malwareDetected": {"malware": [{"md5Sum": "21232f297a57a5a743894a0e4a801fc3", "sha256": "8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918", "name": "Downloader.Emotet"}]}, "osChanges": []}, "src": {"smtpMailFrom": "[email protected]"}, "alertUrl": "https://127.0.0.1/emps/eanalysis?e_id=161862&type=attch", "action": "blocked", "occurred": "2021-01-05 14:19:06 +0100", "dst": {"smtpTo": "[email protected]"}, "smtpMessage": {"subject": "Online Streaming am 30.06.2020 1800 Uhr REMINDER"}, "applianceId": "16EV1C1A6K94", "id": 1454270, "rootInfection": 7113664, "sensorIp": "127.0.0.1", "name": "MALWARE_OBJECT", "severity": "MAJR", "uuid": "1591de22-4926-4124-b3ed-ffff96766295", "ack": "no", "product": "EMAIL_MPS", "sensor": "mail", "vlan": 0, "malicious": "yes", "scVersion": "0000.000"}], "appliance": "CMS", "version": "CMS (CMS) 0.0.0.000000", "msg": "concise", "alertsCount": 1}
2828

29-
# ./docs/user/universe.rst:55: bund ==> bind, bound
30-
Developed and maintained by `Intevation <https://intevation.de>`_, initially funded by `BSI <http://bsi.bund.de/>`_.
31-
32-
# ./docs/dev/harmonization-fields.rst:27: compromized ==> compromised
33-
Destination destination.local_hostname :ref:`string` Some sources report a internal hostname within a NAT related to the name configured for a compromized system
34-
35-
# ./docs/dev/harmonization-fields.rst:28: compromized ==> compromised
36-
Destination destination.local_ip :ref:`ipaddress` Some sources report a internal (NATed) IP address related a compromized system. N.B. RFC1918 IPs are OK here.
29+
# ./docs/overview.md:60: bund ==> bind, bound
30+
Developed and maintained by [Intevation](https://intevation.de), initially funded by [BSI](https://bsi.bund.de/).
3731

3832
# ./intelmq/tests/bots/parsers/shodan/test_parser.py:36: ALLO ==> ALLOW
3933
' ALLO MLST MLSD SITE P@SW STRU CLNT MFMT\n'

.gitignore

+3-5
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,11 @@ src/
2727
.eggs
2828
.secrets
2929
.venv/
30+
venv/
3031
.env
3132

32-
# sphinx
33-
docs/source
34-
docs/_build
35-
docs/user/feeds.rst
36-
docs/dev/harmonization-fields.rst
33+
# mkdocs
34+
docs_build
3735

3836
# Debian build filed
3937
debian/files

.readthedocs.yaml

-22
This file was deleted.

.readthedocs.yaml.license

-2
This file was deleted.

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
SPDX-License-Identifier: AGPL-3.0-or-later
44
-->
55

6-
CHANGELOG
7-
==========
6+
# CHANGELOG
7+
88

99

1010
3.2.2 (unreleased)
@@ -70,6 +70,7 @@ CHANGELOG
7070
- Add a readthedocs configuration file to fix the build fail (PR#2403 by Sebastian Wagner).
7171
- Update/fix/improve the stuff related to the STOMP bots and integration with the *n6*'s
7272
Stream API (PR#2408 by Jan Kaliszewski).
73+
- Complete documentation overhaul. Change to markdown format. Uses the mkdocs-material (PR#2419 by Filip Pokorný).
7374

7475
### Packaging
7576

Makefile

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# SPDX-FileCopyrightText: 2023 Filip Pokorný
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
4+
.PHONY: coverage docs clean
5+
6+
coverage:
7+
python -m pytest --cov=intelmq -v
8+
9+
docs: mkdocs.yml docs/* intelmq/etc/feeds.yaml intelmq/etc/harmonization.conf intelmq/lib/harmonization.py
10+
python3 scripts/generate-feeds-docs.py
11+
python3 scripts/generate-event-docs.py
12+
mkdocs build
13+
14+
clean:
15+
rm -rf docs_build .mypy_cache .coverage .pytest_cache dist

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docs/index.md

README.rst

-105
This file was deleted.

SECURITY.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
<!-- comment
2-
SPDX-FileCopyrightText: 2015-2021 Sebastian Wagner
2+
SPDX-FileCopyrightText: 2015-2023 Sebastian Wagner, Filip Pokorný
33
SPDX-License-Identifier: AGPL-3.0-or-later
44
-->
55

6-
IntelMQ Security Notes
7-
======================
6+
# Found a security issue?
87

9-
Found a security issue?
10-
-----------------------
11-
12-
In case you find security-relevant bugs in IntelMQ, please contact [email protected].
8+
In case you find security-relevant bugs in IntelMQ, please contact [[email protected]](mailto:[email protected]).
139
More information including the PGP key can be found on [CERT.at's website](https://www.cert.at/about/contact/contact_en.html).
1410

debian/rules

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ build:
3030

3131
override_dh_auto_build:
3232
dh_auto_build
33-
$(MAKE) -C docs html
33+
# $(MAKE) docs
3434

3535
override_dh_auto_install: $(BOTDOCS)
3636
rm intelmq/bin/rewrite_config_files.py
3737
sed -i -e '/#!\/usr\/bin\//d' intelmq/bin/*.py
38-
sed -i -f debian/sedfile intelmq/etc/* docs/user/intelmqctl.rst docs/user/bots.rst setup.py contrib/logrotate/intelmq contrib/logcheck/logcheck.logfiles
38+
sed -i -f debian/sedfile intelmq/etc/* setup.py contrib/logrotate/intelmq contrib/logcheck/logcheck.logfiles
3939
dh_auto_install
4040
# create directories
4141
mkdir -p debian/intelmq/var/log/intelmq

docs/Makefile

-25
This file was deleted.

docs/README.md

-10
This file was deleted.

0 commit comments

Comments
 (0)