Christoph Girstenbrei

Results 7 comments of Christoph Girstenbrei

@claudep Thank you for your quick reply! Disclaimer: I have **no** idea, how svglib works or how reportlab works. So [the except block in svglib.py:1349](https://github.com/deeplook/svglib/blob/122314301942de9b0cc9608e687b28062888f2bb/svglib/svglib.py#L1349) hides that the `setattr(shape, rlgAttr,...

Small experiment with reportlabs: ``` from reportlab.pdfgen.canvas import Canvas c = Canvas('hello.pdf') c.setStrokeColor((1,0,0)) c.setFillColor((0,0,1)) c.setLineWidth(2) c.setFont('Helvetica',36) c.drawString(100,700,'Hello World', mode=2) c.save() ``` produces a PDF with text outlined by another color...

@claudep I thought about pushing the functionality from svglib into reportlabs as I noticed the monkeypatch_reportlab - method, something along the lines of subclassing `shapes.String`, adding the missing attributes and...

@snjeza I had a look at that file before and as far as I can see, the extension auto-generates this entry. Starting without setting `java.project.resourceFilters`, the file contains the following...

So after reading the original issues comments a little more carefully, I also tried the suggested flattening from [this comment](https://github.com/argoproj/argo-cd/issues/12836#issuecomment-1615238385). I'm not totally against this approach, but it also has...

Hey @remicode ! Thx for the question. I did the initial implementation and then got busy with other stuff, so the rest of communicating this fell along the wayside. I...

Greets everyone, I've mentioned the PR #17145 in Slack but haven't heard back. If you have some capacity, @crenshaw-dev , maybe you can have a look at it or point...