Martti T.

Results 364 comments of Martti T.

I'll update echo documentation with remark that `*` means that everything after that is considered as match. and multiple `*` in route does not work.

note to self: It would be worthwhile to investigate how [Nginx](https://nginx.org/en/docs/http/ngx_http_core_module.html#location)/Apache do path matching. These should have solved same issues 15-20 years ago already. And we are about to reinvent...

If you are in a hurry you could use different binder that does not use struct tags and has errors containing field names. See this example line 34 `bErr.Field`: https://github.com/labstack/echo/blob/88c379ff77278f553a0f3c44d27786b5a450b6e9/binder_external_test.go#L25-L38

When you add GET route with CORS middleware with ```go e.Add( http.MethodGet, "/some/path", SomeHandlerFunc, middleware.CORSWithConfig(middleware.CORSConfig{ AllowCredentials: true, }), ) ``` Echo router registers only node matching GET method in its...

About 1 year ago I started working on Go lang library https://github.com/aldas/go-nmea-client that would be able to read in Canboat PGN database (runtime). Work in that repo is/was in its...

@fulup-bzh canboat.xsd has description for fields. For example `match` https://github.com/canboat/canboat/blob/357f0c9a161719272853dedcdf635386abcd8560/docs/canboat.xsd#L367-L375

I doubt you can get away from reading CanBoat as there are small nuances hidden everywhere (definetely check how each field type is printed). I also recommend checking https://github.com/ttlappalainen/NMEA2000 parser...

> Re XML and JSON files: I would let the dog wag the tail, have the release process generate them This would have poor "user experience" as you would loose...

Hi @keesverruijt could you add release assets on release page. You are doing excellent work but these changes to schema are hard to work when there are no reliable way...

Having CI checks for json/xml is a good safeguard but automatically releasing things is going to be quite punishing - there are cases when you sometimes want to wait before...