aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2023-04-18build(core): switch to next release version4.3.2Thomas1-1/+1
2023-04-18chore(pos): change order of configuration check for 'less space'Thomas1-4/+4
check profile specific configuration first and 'failOnLessSpace' afterwards
2023-04-14build(core): switch to next snapshot versionThomas1-1/+1
2023-04-14build(core): switch to next release version4.3.1Thomas1-1/+1
2023-04-14fix(moa): change references to latest MOA-SPSS WSDLThomas3-11/+13
2023-04-12build(core): switch to next release versionThomas1-1/+1
2023-04-11fix(soap): add missing 'Serializable' implementations4.3.0Thomas2-5/+12
2023-04-11fix(database): db clean-up not properly workingThomas1-6/+8
from TUG: cleanOldRequests() started a transaction but never commited it which means none of the old entries were deleted. Add a call to commit() to fix this.
2023-04-11fix(database): change wrong timestamp in DB backendThomas1-2/+2
from TUG: 'm' stands for minutes and not months, so use 'M' instead. This was just used for logging, so there is no functional change.
2023-04-11fix(database): add missing annotation classes for DB tablesThomas1-6/+7
2023-04-11chore(pdf-as-web): Handle error url not containing an explicit portThomas1-6/+9
from TUG: The servlet tries to sanitize the URL by parsing it and writing it back out. In case the input URL doesn't contain an explicit port, URL.getPort() returns -1 which leads to "https://example.com:-1/mypath" in the template which isn't the same origin as without a port and gets rejected by the browser. Instead only add a port to the resulting URL if the input contains one as well.
2023-04-11build(core): Fix the build in the context of a git submoduleThomas1-15/+3
from TUG: The gradle build file tries to infer the commit hash by reading the files in the .git subdirectory. But in case the repo is checked out as a submodule there is no such directory, only a file pointing to the parent checkout. Instead of depending on git internals just ask git directly.
2023-04-11chore(core) remove unused configuration fileThomas1-23/+0
2023-04-11doc(core): fix typo in handbookThomas2-0/+0
2023-04-11build(core): update Tomcat, which is used for assembly, to 9.0.73Thomas1-1/+1
2023-04-11build(core): switch to next release versionThomas1-1/+1
2023-04-11chore(pdf-as-web): optimize error-handlingThomas3-0/+7
Before, PDFASExceptions are dispalyed as generic errors
2023-04-11chore(core): update some more third-party libsThomas3-5/+5
2023-04-11build(git): update gitignore fileThomas1-0/+4
2023-03-20chore(core): update third-party libsThomas4-10/+9
2023-03-03doc: update handbooksThomas6-0/+0
2023-03-02feat(positioning): add hidden parameter to enforce new pages on already ↵Thomas3-13/+29
signed documents
2023-01-16chore(sl): add SL errorCode '6000 Unklassifizierter Abbruch durch den ↵Thomas1-1/+1
Bürger' as Info level too Update to issue: #71
2023-01-12feat(ux): update signature-verification screen to select interal or moa-sp ↵Thomas1-0/+7
verification
2023-01-12chore(moa-spss): switch to latest MOA-SPSS Webservice specificationThomas5-169/+762
Issue: #66
2023-01-12chore(sl): add additional Security-Layer error-code as non-critical errorThomas1-1/+1
Update to issue: #71
2023-01-12feat(sigblock): validate signature-profile information provided by QR-code ↵Thomas5-53/+68
placeholder Issue: #64
2023-01-12fix(sigblock): down-grade QR-code reader lib, because latest version can not ↵Thomas1-2/+2
read placeholder images
2023-01-12fix(sigblock): optimize image rendering of signature blocksThomas2-11/+13
Issue: #65
2023-01-12fix(sigblock): add mapping to support old RFC2255 names in signature-profile ↵Thomas2-27/+30
configurations Issue: #70 Add a mapping table into DNUtils to map specific RDN names to old format
2023-01-12test(sigblock): add jUnit test to check title attribute of signer nameThomas2-0/+154
2023-01-12chore(sl): check Security-Layer error-codes to distinguish between critical ↵Thomas2-495/+529
and non-critical errors Issue: #71
2023-01-12chore(profiles): switch to https://www.signaturpruefung.gv.at for signature ↵Thomas12-25/+25
profiles Issue: #72
2023-01-12build(core): optimize dependency managementThomas9-15/+3
2023-01-12Merge branch 'feature/issue_73' into 'development'Thomas Lenz6-1180/+1205
feat(signatureblock): optimize processing for signed documents with less space for signature block See merge request egiz/pdf-as-4!9
2023-01-12Merge branch 'development' into 'feature/issue_73'Thomas Lenz236-1292/+63634
# Conflicts: # build.gradle # pdf-as-pdfbox-2/src/main/java/at/gv/egiz/pdfas/lib/impl/signing/pdfbox2/PADESPDFBOXSigner.java
2023-01-12style(core): fix some codestyle issuesThomas1-871/+878
2023-01-12Merge branch 'feature/bulk_light_sign' into 'development'Thomas Lenz235-1293/+63637
Feature/bulk light sign See merge request egiz/pdf-as-4!8
2023-01-12Merge branch 'jakob.heher-master-patch-78942' into 'development'Thomas Lenz1-1/+4
Properly close PDDocument in generateVisibleSignaturePreview See merge request egiz/pdf-as-4!6
2023-01-12Properly close PDDocument in generateVisibleSignaturePreviewJakob Heher1-1/+4
2023-01-12Merge branch 'show-failed-fontdesc' into 'development'Thomas Lenz1-1/+1
Include failing font descriptor in IOException msg See merge request egiz/pdf-as-4!5
2023-01-12feat(signatureblock): optimize processing for signed documents with less ↵Thomas5-305/+328
space for signature block Issue #73 add configuration property to stop signing process if document has less space for new signature block and new page is not allowed because document is already signed
2023-01-12build(ci): optimize dependency and code validationThomas1-0/+11
2023-01-12build(core): update third-party libsThomas11-32/+32
2023-01-11feat(web): add bulk-light functionality into PDF-AS-WebThomas30-1259/+2149
2023-01-11build(core): update gitignore fileThomas1-0/+2
2023-01-09test(web): add very simple start-up and signing testThomas196-5/+61446
2022-06-27Include failing font descriptor in IOException msgJakob Heher1-1/+1
2022-05-20Fix parameter name in docGerald Palfinger1-1/+1
2022-05-06Avoid printing stack trace if results is nullGerald Palfinger1-0/+3