Froger David

Results 9 comments of Froger David

So in this function (`plantuml_previewer.vim`), the `puml_src_path` file does not actually exist: ``` function! plantuml_previewer#refresh(bufnr) "{{{ let puml_src_path = fnamemodify(bufname(a:bufnr), ':p') let puml_filename = fnamemodify(puml_src_path, ':t:r') let image_type = 'svg'...

Thanks, I must admit I don't remember about this issue... I think my solution was to include the uml as an external file. However, I no more use plantuml (nor...

Related [commit](https://github.com/tgalal/yowsup/commit/17d4236df6bfe02e06eeee75fd0eb6dc1db63bb0) in `yowsup`.

also, `self.getStack()` no more has `.setCredentials` attribute

Note: I start working on it in this [branch](https://github.com/dfroger/scripts/commits/whatsapp) (but I don't have much time for it today)

Hello, Same problem with the command `make html`. The pull request #4 should fix this.

Thanks for the reply. I'll see if I can submit a patch to improve the perfs.

Just tested [lxml](https://lxml.de) instead of [minidom](https://docs.python.org/3.6/library/xml.dom.minidom.html) on my `49M` of `747` xml files, it's faster. (I have to read #315 where `lxml` is dicussed.) # minidom ``` from pathlib import...

Another measurement, parsing 1 file that combine the 747 files: xsltproc combine.xslt index.xml > all.xml # minidom ``` real 0m16,656s user 0m16,196s sys 0m0,408s ``` # lxml ``` real 0m0,133s...