Commit Graph

11 Commits

Author SHA1 Message Date
Marty Oehme 333bd279b9
fix: Fix test fixtures for new annotation structure 2024-01-24 11:15:10 +01:00
Marty Oehme 765de505bb
refactor: Remove AnnotatedDocument class
The AnnotatedDocument class was, essentially, a simple tuple of a document
and a list of annotations. While not bad in a vacuum, it is unwieldy and
passing this around instead of a document, annotations, or both where
necessary is more restrictive and frankly unnecessary.

This commit removes the data class and any instances of its use. Instead,
we now pass the individual components around to anything that needs them.
This also frees us up to pass only annotations around for example.

We also do not iterate through the selected papis documents to work on
in each exporter anymore (since we only pass a single document), but
in the main function itself. This leads to less duplication and makes
the overall run function the overall single source of iteration through
selected documents. Everything else only knows about a single document -
the one it is operating on - which seems much neater.

For now, it does not change much, but should make later work on extra
exporters or extractors easier.
2024-01-20 16:36:24 +01:00
Marty Oehme 5cd5a05062
chore: Fix black fmt
ci/woodpecker/push/test unknown status Details
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/static_analysis Pipeline was successful Details
2023-10-17 22:07:09 +02:00
Marty Oehme c9736a5f32
test: Add tests for formatter sad paths 2023-10-12 19:27:16 +02:00
Marty Oehme 1e29642cba
test: Fix formatting and annotation tests 2023-09-22 21:49:52 +02:00
Marty Oehme 4eb983d9e3
refactor: Move templating to separate file 2023-09-20 09:12:59 +02:00
Marty Oehme e56f014136
Add formatting style Markdown 2023-08-31 21:40:17 +02:00
Marty Oehme 20873e6ef8
Change annotation color to simple rgb tuple
ci/woodpecker/push/test unknown status Details
ci/woodpecker/push/lint Pipeline failed Details
ci/woodpecker/push/static_analysis Pipeline was successful Details
2023-08-29 22:23:52 +02:00
Marty Oehme 256117d451
Add mustache templating
Added mustache templating engine to be able to provide custom
formatting strings.
2023-08-29 13:49:22 +02:00
Marty Oehme b564ab4792
Add continuous integration pipeline
ci/woodpecker/push/test unknown status Details
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/static_analysis Pipeline was successful Details
Added static analysis (lint, type checking) to be done on each push, and
testing to be done on each master branch commit.
2023-08-29 12:15:10 +02:00
Marty Oehme a22cc635b2
initial commit 2023-08-28 10:28:06 +02:00