Casper Küthe

Results 29 comments of Casper Küthe

I was struggling with this for a time, but for me the issue was resolved when no `.v` file exists at the module's root level folder So this is my...

`$tmpl` is being replaced with other code at compile time so I don't think this is a bug. The `$tmpl` function isn't executed at compile time so it is not...

VWeb automatically converts all paths defined in the code to lowercase. And any incoming request url isn't transformed to lowercase that is why the cases don't match and VWeb can't...

This error usually occurs when a browser extension, particularly in chrome, doesn't properly handle async responses. When you stop the server, the extension receives an unexpected response and shows an...

@enghitalo the link to the second image is invalid

Hey, there is one thing that confuses me a bit: why in the following example is `C.external` defined with a `mut` parameter, but called without the `mut` keyword? ```v //...

I agree, either convert everything to lowercase and display an error/warning when a route is given a path with a capital letter (should probably also check for invalid characters). Or...

The thing is that search engines treat urls very differently if you have a capital letter in them. So the route `"/Index"` does not automatically refer to the index page...

Yes, but need to wait for #20762 to be fixed before a proper solution can be implemented 👍

`io.BufferedReader` will erase any existing data from its buffer when it refills. Another solution is needed to store the already read data from an incomplete request. Or a custom "`StringReader`"...