[>]
http://marc.info/?l=openbsd-cvs&m=140791736601801&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-13 12:55:09
Module name: src
Changes by: chrisz@cvs.openbsd.org 2014/08/13 02:08:55
Modified files:
usr.sbin/httpd : httpd.c
Log message:
fix early loop termination in httpd path_info()
without this fix httpd always put at least the first
path component in SCRIPT_NAME even when it did not exist.
Now for completely non-existant paths everything goes into
PATH_INFO.
[>]
http://marc.info/?l=openbsd-cvs&m=140793013706191&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-13 15:55:10
> CVSROOT: /cvs
> Module name: src
> Changes by: chrisz@cvs.openbsd.org 2014/08/13 02:08:55
>
> Modified files:
> usr.sbin/httpd : httpd.c
>
> Log message:
> fix early loop termination in httpd path_info()
> without this fix httpd always put at least the first
> path component in SCRIPT_NAME even when it did not exist.
> Now for completely non-existant paths everything goes into
> PATH_INFO.
>
Your forgot to mention:
ok reyk@
[>]
http://marc.info/?l=openbsd-cvs&m=140794318611346&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-13 21:55:08
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 09:19:24
Modified files:
usr.bin/mandoc : html.c html.h mdoc_html.c
Log message:
Use <em> for .Em and .Bf -emphasis.
The vast majority of .Em in real-world manuals is stress emphasis,
for which <em> is the correct markup. Admittedly, there are some
instances of .Em usage for alternate quality, for which <i> would
be a better match. Most of these are technical terms that neither
allow semantic markup nor are keywords - for the latter, .Sy would
be preferable. A typical example is that the shell breaks input into
.Em words .
Alternate voice or mood, which would also require <i>, is almost
absent from manuals.
We cannot satisfy both stress emphasis and alternate quality, so
pick the one that fits more often and looks less wrong when off.
Patch from Guy Harris <guy at alum dot mit dot edu>.
ok bentley@ joerg@NetBSD
[>]
http://marc.info/?l=openbsd-cvs&m=140794589912715&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-13 21:55:10
Module name: src
Changes by: reyk@cvs.openbsd.org 2014/08/13 10:04:28
Modified files:
usr.sbin/httpd : httpd.c httpd.h server_fcgi.c
Log message:
Provide a failsafe version of the path_info() function that doesn't
need a temporary path variable. Based on an initial diff from
chrisz@.
"Commit any failsafe version and I'm ok with it" chrisz@
[>]
http://marc.info/?l=openbsd-cvs&m=140795288615634&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 00:55:12
Module name: src
Changes by: chrisz@cvs.openbsd.org 2014/08/13 12:00:54
Modified files:
usr.sbin/httpd : server_fcgi.c
Log message:
For a non-existent root we don't want the root prefix to show up in
PATH_INFO.
Therefore put a lower bound of strlen(root) on scriptlen.
This makes perfect sense for virtual FastCGI scripts which run chrooted
in another directory from httpd.
ok reyk@
[>]
http://marc.info/?l=openbsd-cvs&m=140796376320265&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 04:55:06
Module name: xenocara
Changes by: matthieu@cvs.openbsd.org 2014/08/13 15:02:16
Modified files:
app/ssh-askpass: Makefile
app/xlockmore : Makefile.bsd-wrapper
app/xsystrace : Makefile
app/xterm : Makefile
lib/libXt : Makefile.bsd-wrapper
Log message:
Install resource files in /usr/X11R6/share/X11/app-defaults
/etc/X11/app-defaults stays 1st in the libXt search path so, people
and ports can put customized versions there if needed.
If you didn't customize the versions in /etc/X11/app-defaults, they
should be removed to avoid future issues when one file changes.
discussed at g2k14 and ok ajacoutot@
[>]
http://marc.info/?l=openbsd-cvs&m=140796778821855&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 04:55:10
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 16:09:28
Modified files:
share/man/man7 : roff.7
usr.bin/mandoc : html.c term_ascii.c term_ps.c
Log message:
Begin cleanup of scaling units.
Note that we use 240u := 1i for all devices, even -Tps and -Tpdf.
Big fix of -Tascii rendering of f, m, and u.
Small fix of -Tascii rendering of c.
Big fix of -Thtml rendering of u.
Big fix of -Tps rendering of m, p, and u.
Clarify -Tps rendering of c.
Correct documentation of scaling units, in particular with respect to u.
This for example improves rendering of the OpenGL manuals.
Joint work with kristaps@.
[>]
http://marc.info/?l=openbsd-cvs&m=140797490124319&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 04:55:11
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 18:07:55
Modified files:
regress/usr.bin/mandoc: Makefile.inc Makefile.sub
Log message:
Add a simple target to validate the syntax of -Thtml output.
Not hooked to the build yet because there are still too many bugs.
[>]
http://marc.info/?l=openbsd-cvs&m=140797624424848&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 04:55:13
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 18:29:12
Modified files:
usr.bin/mandoc : html.c html.h mdoc_html.c
Log message:
Revert previous, as requested by kristaps@.
The .Bf block can contain subblocks, so it has to render as an
element that can contain flow content. But <em> cannot contain
flow content, only phrasing content. Rendering .Em and .Bf differently
would by unfortunate, and closing out .Bf before subblocks and
re-opening it afterwards would merely complicate both the C code
of the program and the generated HTML code. Besides, converting
.Em to semantic HTML markup would require some content to be put
into <em> and some into <i>, but we cannot automatically distinguish
which is which, so strictly speaking, we can't use semantic HTML
here but have to fall back to physical markup. Wonders of HTML...
[>]
http://marc.info/?l=openbsd-cvs&m=140798005526239&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 05:55:07
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:56
src/regress/usr.bin/mandoc/man/B
Update of /cvs/src/regress/usr.bin/mandoc/man/B
In directory cvs.openbsd.org:/tmp/cvs-serv30582/man/B
Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/man/B added to the repository
[>]
http://marc.info/?l=openbsd-cvs&m=140798007026242&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 05:55:08
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:57
src/regress/usr.bin/mandoc/man/SH
Update of /cvs/src/regress/usr.bin/mandoc/man/SH
In directory cvs.openbsd.org:/tmp/cvs-serv30582/man/SH
Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/man/SH added to the repository
[>]
http://marc.info/?l=openbsd-cvs&m=140798008626243&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 05:55:09
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:34:00
src/regress/usr.bin/mandoc/mdoc/Os
Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Os
In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Os
Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Os added to the repository
[>]
http://marc.info/?l=openbsd-cvs&m=140798010626245&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 05:55:10
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:34:01
src/regress/usr.bin/mandoc/mdoc/Rv
Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Rv
In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Rv
Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Rv added to the repository
[>]
http://marc.info/?l=openbsd-cvs&m=140798010826247&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 05:55:12
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:58
src/regress/usr.bin/mandoc/mdoc/Dd
Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Dd
In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Dd
Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Dd added to the repository
[>]
http://marc.info/?l=openbsd-cvs&m=140798012326250&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 05:55:13
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:33:59
src/regress/usr.bin/mandoc/mdoc/Ex
Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Ex
In directory cvs.openbsd.org:/tmp/cvs-serv30582/mdoc/Ex
Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Ex added to the repository
[>]
http://marc.info/?l=openbsd-cvs&m=140798071826389&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 05:55:14
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 19:45:03
src/regress/usr.bin/mandoc/roff/scale
Update of /cvs/src/regress/usr.bin/mandoc/roff/scale
In directory cvs.openbsd.org:/tmp/cvs-serv14905/roff/scale
Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/roff/scale added to the repository
[>]
http://marc.info/?l=openbsd-ports-cvs&m=140797832925728&w=2
obsd.info.14
openbsd-ports-cvs(obsdave,2) — All
2014-08-14 05:55:17
Module name: ports
Changes by: brad@cvs.openbsd.org 2014/08/13 19:05:03
Modified files:
emulators/qemu : Makefile distinfo
emulators/qemu/patches: patch-configure
emulators/qemu/pkg: PLIST
Added files:
emulators/qemu/patches: patch-tcg_ppc_tcg-target_c
Removed files:
emulators/qemu/patches: patch-util_cache-utils_c
Log message:
Update to QEMU 2.1.0
ok bcallah@ rpe@
[>]
http://marc.info/?l=openbsd-ports-cvs&m=140797851325846&w=2
obsd.info.14
openbsd-ports-cvs(obsdave,2) — All
2014-08-14 05:55:18
Module name: ports
Changes by: brad@cvs.openbsd.org 2014/08/13 19:08:09
Modified files:
devel/llvm : Makefile
devel/llvm/patches:
patch-lib_CodeGen_SelectionDAG_LegalizeVectorTypes_cpp
Added files:
devel/llvm/patches:
patch-lib_CodeGen_SelectionDAG_LegalizeTypes_h
Log message:
r211435
Legalizer: Add support for splitting insert_subvectors.
We handle this by spilling the whole thing to the stack and doing the
insertion as a store.
PR19492. This happens in real code because the vectorizer creates v2i128 when AVX is
enabled.
ok matthew@
[>]
http://marc.info/?l=openbsd-cvs&m=140798167826615&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-14 06:55:08
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/13 20:00:53
Modified files:
regress/usr.bin/mandoc/man: Makefile
regress/usr.bin/mandoc/man/TH: Makefile
regress/usr.bin/mandoc/mdoc: Makefile
regress/usr.bin/mandoc/mdoc/An: Makefile
regress/usr.bin/mandoc/mdoc/Bd: Makefile
regress/usr.bin/mandoc/mdoc/Bl: Makefile
regress/usr.bin/mandoc/mdoc/Dt: Makefile
regress/usr.bin/mandoc/mdoc/Sh: Makefile
regress/usr.bin/mandoc/roff: Makefile
regress/usr.bin/mandoc/roff/it: Makefile
Added files:
regress/usr.bin/mandoc/man/B: Makefile args.in args.out_ascii
args.out_lint
regress/usr.bin/mandoc/man/SH: Makefile broken.in
broken.out_ascii broken.out_lint
broken_eline.in
broken_eline.out_ascii
broken_eline.out_lint noarg.in
noarg.out_ascii noarg.out_lint
regress/usr.bin/mandoc/man/TH: noarg.out_lint onearg.out_lint
regress/usr.bin/mandoc/mdoc/An: break.out_lint
regress/usr.bin/mandoc/mdoc/Bd: centered.in centered.out_ascii
regress/usr.bin/mandoc/mdoc/Bl: bareIt.in bareIt.out_ascii
bareIt.out_lint column.out_lint
regress/usr.bin/mandoc/mdoc/Dd: Makefile badarg.in
badarg.out_ascii badarg.out_lint
dupe.in dupe.out_ascii
dupe.out_lint late.in
late.out_ascii late.out_lint
manarg.in manarg.out_ascii
manarg.out_lint noarg.in
noarg.out_lint order.in
order.out_ascii order.out_lint
regress/usr.bin/mandoc/mdoc/Dt: late.in late.out_ascii
late.out_lint missing.in
missing.out_ascii
missing.out_lint noarg.in
noarg.out_ascii noarg.out_lint
nosec.in nosec.out_ascii
nosec.out_lint
regress/usr.bin/mandoc/mdoc/Ex: Makefile args.in args.out_ascii
noname.in noname.out_ascii
noname.out_lint nostd.in
nostd.out_ascii nostd.out_lint
regress/usr.bin/mandoc/mdoc/Os: Makefile dupe.in dupe.out_ascii
dupe.out_lint late.in
late.out_ascii late.out_lint
missing.in missing.out_ascii
missing.out_lint
regress/usr.bin/mandoc/mdoc/Rv: Makefile args.in args.out_ascii
noname.in noname.out_ascii
noname.out_lint nostd.in
nostd.out_ascii nostd.out_lint
regress/usr.bin/mandoc/mdoc/Sh: subbefore.in subbefore.out_ascii
subbefore.out_lint
regress/usr.bin/mandoc/roff/it: badarg.in badarg.out_ascii
badarg.out_lint
regress/usr.bin/mandoc/roff/scale: Makefile horiz.in
horiz.out_ascii
Removed files:
regress/usr.bin/mandoc/mdoc/Dt: baddate.in baddate.out_ascii
baddate.out_lint lateos.in
lateos.out_ascii lateos.out_lint
nodate.in nodate.out_lint
noos.in noos.out_lint
Log message:
new regression tests collected during recent work