Results 105 comments of Laurent Gomila

SetField can be overloaded to take a container, yes, but we cannot do the same for GetField. So in the common case of a single value for a given field,...

Looks good. However if we do this we should find another name, I find `getAllFields` misleading since it won't return all the fields, but all the values of a given...

`std::vector` ? But if we rename these functions, we can't do it until SFML 3.

Both options are valid. But in this case I think it's fine to just add the new ones, the names will still be consistent.

`Http::Request` writes fields, `Http::Response` reads them. What would you put in the base class?

Isn't it cleaner to only be able to set in the request, and get in the response? Anyway, if you look at their implementation, they have nothing in common, since...

HTTP servers are a very specific kind of applications, for which there are very specific solutions: from the lightweight HTTP server C library, to the fully featured solution involving multiple...

I wasn't aware that HTTP was actually used outside the internet. I've never come across one of these use cases before. I've tried to find more, but realized that "http"...

> This is a start, but I was already considering an API that allowed newer GLSL to be used with sfml-graphics rendering as well. Can you explain what you have...

> the indexing issue What issue? > For outdated versions, we could use a redirection banner like Boost does. Too bad I can't remember why I removed them. I'm sure...