Danilo Bargen

Results 235 issues of Danilo Bargen

The 2to3 option in setup.py had some undesired side effects. Using `six` as a compatibility library is much cleaner. (Specifically, @ubruhin had some issues with 2to3 doing buggy things.) The...

Hello I started using the django-formwizard for a project where we use a CBV based tab navigation. I need to put a form inside a tab. Using the current generic...

It seems that httpie does not validate the number of received bytes. Here are some explanations: https://blog.petrzemek.net/2018/04/22/on-incomplete-http-reads-and-the-requests-library-in-python/ With this demo script: ```python #!/usr/bin/env python3 # # An HTTP server that...

enhancement

When I run `npm install` on the current master branch after a fresh clone (commit e5b258e6acbb327e84c7e89e180470b0e32bea87), the install fails with this error message: ``` $ npm install npm ERR! code...

I upgraded to html-macro 0.7.1, but my project testsuite started failing due to the way spaces are handled. So as a sanity-check, I ran the tests in percy itself: ```...

bug

On crates.io for percy-dom 0.7.1 (https://crates.io/crates/percy-dom/0.7.1) you link to for documentation. The CSS on that page seems a bit broken: ![screenshot-20220214-153042](https://user-images.githubusercontent.com/105168/153883166-e1feb6b7-a0b9-4e71-ae43-90e6cf18061f.png) Any reason why you don't just link to https://docs.rs/percy-dom/...

Hi, it seems that `virtual-dom-rs` was first renamed to `percy-vdom` and then to `percy-dom`. However, the old crates still exist on crates.io and there's nothing that hints at a rename....

Is there already a way to initialize a Virtual DOM from an actual DOM element?

enhancement

Hi @chinedufn. It would be great to have a changelog per crate. Reasoning and an example format can be found at https://keepachangelog.com/. Here's a simplified version of that: https://github.com/dbrgn/tealdeer/blob/master/CHANGELOG.md The...

JavaScript uses UTF16-encoding for strings, while Rust uses UTF8. The value of `VirtualNode::Text` is `String`, so for every DOM update the text needs to be re-encoded. I wonder if it...

enhancement
performance