Skip to content

Commit 945bf2a

Browse files
gethviaaronkaplan
authored andcommitted
DOC: Updates links to new documentation.
1 parent 0671a8b commit 945bf2a

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Please read the notes below and replace them with the description of you pull request
22

3-
Make sure you follow the instructions in the [Developer Guide](https://intelmq.readthedocs.io/en/latest/dev/guide.html) - it describes how to run the test suite and which coding rules to follow.
3+
Make sure you follow the instructions in the [Developer Guide](https://docs.intelmq.org/latest/dev/intro/) - it describes how to run the test suite and which coding rules to follow.
44

55
# Commits
66

NEWS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Deb-packages of intelmq-api 3.2.0 are delayed for some distributions because of
5959
#### Shadowserver Reports API collector
6060
The misleading `country` parameter has been depreciated and a `reports` parameter has been added.
6161
The backwards-compatibility will be removed in IntelMQ version 4.0.0.
62-
See the [Shadowserver Reports API bot's documentation](https://intelmq.readthedocs.io/en/latest/user/bots.html#shadowserver-reports-api).
62+
See the [Shadowserver Reports API bot's documentation](https://docs.intelmq.org/latest/user/bots/#shadowserver-reports-api).
6363

6464
#### GitHub Collector
6565
GitHub removed the basic `Username/Password` Authentication in favor of personal access tokens. So the GitHub Collector uses an Personal Access Token for authentication [GitHub Documentation: Generate a personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)
@@ -76,7 +76,7 @@ IntelMQ previously supported two feeds: "Feodo Tracker IPs" (downloaded as CSV f
7676
#### Field name checks
7777
The field names for all data added to messages must match a pre-defined format.
7878
The check which ensures this, was ineffective prior to this version and is effective again starting with version 3.1.0.
79-
The [Data format documentation](https://intelmq.readthedocs.io/en/maintenance/dev/data-format.html#rules-for-keys) describes the required format.
79+
The [Data format documentation](https://docs.intelmq.org/latest/dev/data-format/#rules-for-keys) describes the required format.
8080

8181
### Logrotate
8282
The packaged configuration for *logrotate* falsely contained options applying to other programs' log files. This caused wrong ownership of log files.
@@ -172,7 +172,7 @@ New features:
172172
* negation of arbitrary expressions and expression groups separated by brackets through a prepended `!`, e.g `! src.port :in [80, 443]`
173173
* non-string values accepted by `add`/`add!`/`update`
174174

175-
The [sieve bot documentation](https://intelmq.readthedocs.io/en/maintenance/user/bots.html#intelmq-bots-experts-sieve-expert) has been updated to reflect on these new changes.
175+
The [sieve bot documentation](https://docs.intelmq.org/latest/user/bots/#sieve) has been updated to reflect on these new changes.
176176

177177
### Data format
178178
The classification scheme has been updated to better match the [Reference Security Incident Taxonomy (RSIT)](https://github.com/enisaeu/Reference-Security-Incident-Taxonomy-Task-Force/). The following labels were renamed, deleted or merged into others:
@@ -307,7 +307,7 @@ The `intelmqctl upgrade-config` command automatically fixes a configuration if t
307307

308308
Shadowserver changed some of their feeds, for more information see [Changes in Sinkhole and Honeypot Report Types and Formats](https://www.shadowserver.org/news/changes-in-sinkhole-and-honeypot-report-types-and-formats/). Support for the legacy feeds has not been removed yet.
309309

310-
The [Shadowserver Parser Bot documentation](https://intelmq.readthedocs.io/en/maintenance/user/bots.html#shadowserver-supported-reports) lists the supported feeds, as well as the legacy feeds.
310+
The [Shadowserver Parser Bot documentation](https://docs.intelmq.org/latest/user/bots/#shadowserver) lists the supported feeds, as well as the legacy feeds.
311311

312312

313313
2.3.2 Bugfix release (2021-04-27)

contrib/eventdb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ EventDB Utilities
1111
It queries the database for all distinct malware names with the taxonomy "malicious-code" and sets another column to the malware family name.
1212
- Apply Domain Suffix: Writes the public domain suffix to the `source.domain_suffix` / `destination.domain_suffix` columns, extracted from `source.fqdn` / `destination.fqdn`.
1313
- PostgreSQL trigger keeping track of the oldest inserted/updated "time.source" data. This can be useful to (re-)generate statistics or aggregation data.
14-
- SQL queries to set up a separate `raws` table, described in https://intelmq.readthedocs.io/en/latest/user/eventdb.html#separating-raw-values-in-postgresql-using-view-and-trigger
14+
- SQL queries to set up a separate `raws` table, described in https://docs.intelmq.org/latest/admin/database/postgresql/#separating-raw-values-in-postgresql-using-view-and-trigger
1515

1616
Usage
1717
-----

intelmq/bin/intelmqctl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ def check(self, no_connections=False, check_executables=True):
898898
if orphan_queues:
899899
check_logger.warning("Orphaned queues found: '%s'. Possible leftover from past reconfigurations "
900900
"without cleanup. Have a look at the FAQ at "
901-
"https://intelmq.readthedocs.io/en/maintenance/user/FAQ.html"
901+
"https://docs.intelmq.org/latest/admin/faq/"
902902
"#orphaned-queues", orphan_queues)
903903

904904
check_logger.info('Checking harmonization configuration.')

intelmq/bots/parsers/generic/parser_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from intelmq.lib.datatypes import TimeFormat
2929

3030
DATA_CONVERSIONS = {'json': lambda data: json.loads(data)}
31-
DOCS = "https://intelmq.readthedocs.io/en/latest/guides/Bots.html#generic-csv-parser"
31+
DOCS = "https://docs.intelmq.org/latest/user/bots/#generic-csv"
3232

3333

3434
class GenericCsvParserBot(ParserBot):

intelmq/lib/bot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def handle_sighup_signal_threading(signum: int,
224224
self.logger.error('Multithreading is configured, but is not '
225225
'available for this bot. Look at the FAQ '
226226
'for a list of reasons for this. '
227-
'https://intelmq.readthedocs.io/en/latest/user/FAQ.html'
227+
'https://docs.intelmq.org/latest/admin/faq/'
228228
'#multithreading-is-not-available-for-this-bot')
229229
elif (getattr(self, 'instances_threads', 1) > 1 and
230230
disable_multithreading):
@@ -1033,7 +1033,7 @@ def process_message(self, *messages: Union[libmessage.Message, dict]):
10331033
Return value is a dict with the complete pipeline state.
10341034
Multiple messages can be given as positional argument.
10351035
The pipeline needs to be configured accordinglit with BotLibSettings,
1036-
see https://intelmq.readthedocs.io/en/develop/dev/library.html
1036+
see https://docs.intelmq.org/latest/dev/library/
10371037
10381038
Access the output queue e.g. with return_value['output']
10391039
"""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
include_package_data=True,
6868
url='https://github.com/certtools/intelmq/',
6969
project_urls={
70-
'Documentation': 'https://intelmq.readthedocs.io/',
70+
'Documentation': 'https://docs.intelmq.org/',
7171
'Source and Issue Tracker': 'https://github.com/certtools/intelmq/',
7272
},
7373
license='AGPLv3',

0 commit comments

Comments
 (0)