Re: FAQ4.html Commit Revert

2020-01-03 Thread Diogo Galvao
On Fri, Jan 3, 2020 at 6:37 PM Anthony J. Bentley wrote: > > What browser are you using that misrenders the page like that? Firefox 71.0. It must have something to do with monospace font rendering on Windows. If you want to simulate the problem, try adding the CSS below: dt { height: 18.5px; }

Re: FAQ4.html Commit Revert

2020-01-03 Thread Diogo Galvao
On Thu, Jan 2, 2020 at 12:46 PM Oleg Pahl wrote: > > could you be so kind to revert this commit in FAQ 4? > > https://cvsweb.openbsd.org/cgi-bin/cvsweb/www/faq/faq4.html.diff?r1=1.495=1.496 > Instead of reverting the commit, this change in CSS fixes the problem: - dt { margin-left: 40px; float:

Re: httpd: single FastCGI script handling all requests

2018-03-07 Thread Diogo Galvao
On 03/06/18 16:39, Diogo Galvao wrote: The following patch makes it possible to handle all FastCGI requests with a single script so it can route clean URLs itself. Was it already possible some other way? It's already possible to achieve the same result with the root option: server

Re: httpd: single FastCGI script handling all requests

2018-03-07 Thread Diogo Galvao
On 03/07/18 05:36, Hiltjo Posthuma wrote: Hi, I wonder if it can't be done simpler with some wrapper program/script that sets $SCRIPT_FILENAME to your router PHP script beforehand? It it would then it would require no changes to httpd and be more useful in other cases aswell. Hi. Thanks

httpd: single FastCGI script handling all requests

2018-03-06 Thread Diogo Galvao
The following patch makes it possible to handle all FastCGI requests with a single script so it can route clean URLs itself. Was it already possible some other way? And, regardless of this patch, is it even a feature you'd like to see in base? Any suggestion for a better implementation?