Andreas Gohr
Andreas Gohr
https://github.com/dokuwiki/dokuwiki/blob/master/.github/workflows/release-build.yml#L59 tries to remove excluded files but ``` _test/** export-ignore ``` is not a valid shell glob.
Insted of parsing the .gitattributes ourselves, we let git do it. All ignored files are then deleted. Afterwards a find removes any dangling directories. Hard to test without building a...
Inspired by cosmocode/dokuwiki-plugin-cmsmode#1, the `diff` action should be one of the checkboxes for the `disableactions` config option. Since this means that diff can be disabled separately from other actions, the...
These are some of the feed readers I identified as accessing my blog's RSS feed and that were missing from the device detector. ### Review * [ ] [Functional review...
This is a major refactoring of the plugin's code base with the goal to make it easier to maintain and extend. The monolithic architecture has been broken into several classes...
@Klap-in I just stumbled upon code you added in 60e59de7: https://github.com/splitbrain/dokuwiki-plugin-dw2pdf/blob/5da2fd39d25f9489291fdfeb61686f4613d5cbaa/renderer.php#L248-L254 The code here checks if a given link is in the list of currently exported pages. If so, it...
We currently cache the result of the renderer in addition to the generated PDF (see also #526). I like that because it makes the render results reusable over different (multi-page)...
We use our own [ImageProcessor](https://github.com/splitbrain/dokuwiki-plugin-dw2pdf/blob/master/DokuImageProcessorDecorator.php) In the past we passed it as a config value to MPDF: https://github.com/splitbrain/dokuwiki-plugin-dw2pdf/blob/5da2fd39d25f9489291fdfeb61686f4613d5cbaa/DokuPDF.class.php#L55-L62 Unfortunately this seems no longer be supported in MPDF (I'm not sure...
Currently it seems not to be possible to copy and paste a node with all it's properties. Would be great if either the standard Ctrl-C Ctrl-V key combo would work,...