Ralph Bisschops

Results 87 comments of Ralph Bisschops

> I guess you can store the last date generated and when you want to resume, just use skip_while until that date is surpassed. It is of course not as...

This is Acrobat that decides which info to show. I think when the name is missing from the Certificate it will use the name given in `UserSignatureInfo`. So try to...

I just updated the repo and everything should work now. The problem was because of dependencies that where not on crates.io yet. And since then the git repo's changed a...

Hey, the `form_id` is an ObjectID to the signature form object. Signatures are form objects in pdf. It uses the shape of the field to find out where to place...

Quick response to let you know there is a significant update to the signing of PDFs in the last commit. It is not perfect yet, but quite a lot is...

The line: https://github.com/ralpha/pdf_signing/blob/c1f7fb21087b9fe07f93a3afdd2fd6a31b898713/src/image_insert.rs#L79-L80 Is the opposite of: https://github.com/ralpha/pdf_signing/blob/c1f7fb21087b9fe07f93a3afdd2fd6a31b898713/src/image_insert.rs#L60-L61 One saves the graphics state the other restores it. This means that the matrix transformations does not apply to all other graphic...

I would not use the `#[openapi]` syntax but instead use the `#[derive(OpenApiResponderInner)]`. This could then be done similar to https://github.com/GREsau/okapi/blob/1608ff7b92e3daca8cf05aa4594e1cf163e584a9/rocket-okapi-codegen/src/lib.rs#L119:L137 Some of the code could even be reused. Feel free...

Sorry for the late response. Merged https://github.com/GREsau/okapi/pull/149 in favor of this one. But made sure I have had all the changes from here too. Please test if everything is working...

Released [rocket-okapi version 0.9.0](https://crates.io/crates/rocket_okapi). So I hope you can all happily upgrade now. Have fun! And let me know if you find any issues.

Thanks for the MR. Looks good, but will have to look at this when I have some more time so I can properly test this before merging.