Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-08-28 | Make mg behave more like emacs with regards to opening a new buffer: | lum | |
1. If parent directory is read-only, make buffer read-only. 2. If parent doesn't exist; give user a message and create buffer as readable. Reviewed by Sunil Nimmagadda. ok jasper@ | |||
2012-08-27 | Change a log to fprintf that was missed last time around, from Tiago Cunha. | Nicholas Marriott | |
2012-08-27 | Instead of requiring a prompt to enter all numbers >10, go back to | Nicholas Marriott | |
0-9a-z and add A-Z and enter the prompt when M-0 to M-9 are pressed (like in copy mode). Prompted by request from mcbride@, help from Thomas Adam. | |||
2012-08-27 | a few libtool users are bogus, they confuse --export-symbols with the | Marc Espie | |
real option -export-symbols. Instead of blindly passing that one to the linker, error out beforehand, so that people know the problem IS libtool usage and not our program. (as exemplified by Todd Fries on ldns). | |||
2012-08-27 | vax does not get -rpath-link, but it also does not really need it. | Marc Espie | |
as found out by sebastia@ and used during 5.2 vax package build... no ill side-effects so far, so do this as a stopgap measure (matthieu@ reports that our libtool is not yet very good for static-only arches). | |||
2012-08-26 | oops, i added a stray character. spotted by jmc | Ted Unangst | |
2012-08-26 | Make a few ftp(1) usage/man page changes related to Basic | Lawrence Teo | |
authentication: - Combine the http and https usage formats into a single http[s] format to make it more concise. - In the AUTO-FETCHING FILES section of the ftp(1) man page, mention that specifying "user" and "password" with HTTP and HTTPS URLs will log in using Basic authentication (if http_proxy is not defined). - When compiled with -DSMALL, fix ftp(1) usage so that "[user:password@]" is not shown for http[s] since Basic authentication is not supported with -DSMALL. Done with a lot of discussion with and help from jmc@ (thank you!). ok deraadt haesbaert jmc | |||
2012-08-25 | - make wrong variable specs (unterminated) parse errors. | Marc Espie | |
- add info to be able to pinpoint parse errors at runtime. - let job runners abort when a parse error happens while expanding a variable during execution - fix an infinite loop when compiling without FEATURE_RECVARS. okay millert@, krw@ the very few errors found out by this (less than 10 over src/X/ports) fixed trivially beforehand, as requested by deraadt@ | |||
2012-08-24 | comment about bsd.own.mk is now false; ok markus | Theo de Raadt | |
2012-08-23 | do not show mount_nnpfs in an example, since it is gone | Theo de Raadt | |
2012-08-22 | rfc 812 was obsoleted by rfc 954; 954 was obsoleted by 3912, however it | Jason McIntyre | |
does not completely replace the contents of 954, so i've put references to both in; | |||
2012-08-22 | remove unneccessary .Pp; | Jason McIntyre | |
2012-08-22 | i missed usage and the manpage. prod by jmc | Ted Unangst | |
2012-08-22 | -h flag to print human numbers in conjunction with -w -b | Ted Unangst | |
2012-08-21 | flesh out the rfc sections; | Jason McIntyre | |
2012-08-21 | Missing "-q" in usage(). | Antoine Jacoutot | |
ok espie@ | |||
2012-08-21 | xterm won't reach version 500 for a while so set that as the upper limit. | Nicholas Marriott | |
2012-08-21 | Fix up window reference counting and don't crash if the rename timer | Nicholas Marriott | |
fires while the window is dead but still referenced. Fixes problem reported by Michael Scholz. | |||
2012-08-21 | Sort options. | Antoine Jacoutot | |
"obviously okay" espie@ | |||
2012-08-21 | add -q "silent" option similar to grep | Marc Espie | |
okay ajacoutot@, guenther@ | |||
2012-08-20 | make use of __only_inline to ask for gnu inline semantics | Jonathan Gray | |
ok espie@ | |||
2012-08-19 | Stefan Unterweger pointed out that, contrary to the man page, | Jason McIntyre | |
dc exited after processing any expressions and/or files; this is the doc fix, as requested by (and ok) otto | |||
2012-08-18 | Fix http resume without out auth, which I broke on the last commit, | Christiano F. Haesbaert | |
spotted by bluhm. ok bluhm. | |||
2012-08-17 | Native mdoc versions of the sudo manuals, back-ported from sudo trunk. | Todd C. Miller | |
2012-08-17 | Don't need this anymore, we have them in bsd.own.mk. | Christiano F. Haesbaert | |
2012-08-17 | clarify that -w is used for raw output only (removes the 'not sure' XXX | Okan Demirmen | |
comment). ok sthen@, jmc@ | |||
2012-08-17 | Send client banner immediately, rather than waiting for the server to | Damien Miller | |
move first for SSH protocol 2 connections (the default). Patch based on one in bz#1999 by tls AT panix.com, feedback dtucker@ ok markus@ | |||
2012-08-17 | print details of which host lines were deleted when using | Damien Miller | |
"ssh-keygen -R host"; ok markus@ | |||
2012-08-17 | add some comments about better handling first-KEX-follows notifications | Damien Miller | |
from the server. Nothing uses these right now. No binary change | |||
2012-08-17 | Force a clean shutdown of ControlMaster client sessions when the ~. escape | Darren Tucker | |
sequence is used. This means that ~. should now work in mux clients even if the server is no longer responding. Found by tedu, ok djm. | |||
2012-08-15 | (somewhat belatedly) update currency exchange rates; | Jason McIntyre | |
2012-08-15 | a little more info on certificate validity; | Jason McIntyre | |
requested by Ross L Richardson, and provided by djm | |||
2012-08-14 | Add support for basic HTTP authentication as described on RFC 2617 and | Christiano F. Haesbaert | |
RFC 3986. This allows the following idiom in ftp: ftp http[s]://user:pass@host/file With some pointers from halex a lot of testing and feedback from lteo, thanks a lot. ok lteo@ | |||
2012-08-14 | Boldify windows with alerts in choose-* list. | Nicholas Marriott | |
2012-08-14 | Tidy up tty_write, from Sean Estabrooks. | Nicholas Marriott | |
2012-08-14 | Use a separate define for each default format template and strip clutter | Nicholas Marriott | |
from the choose-tree defaults. | |||
2012-08-14 | Add a patch missed during a merge sometime to use | Nicholas Marriott | |
TAILQ_FOREACH_SAFE. From Tiago Cunha. | |||
2012-08-12 | Use .Lk for HTTP hyperlinks, not .Pa. | Ingo Schwarze | |
Most of the patch from Arto Jonsson <ajonsson at kapsi dot fi>. jmc@ agrees in principle that .Lk is the right macro to use. While here, update a few broken links, and add missing markup at a few places. | |||
2012-08-12 | Simplify width calculation (all numbers always sequential) and don't | Nicholas Marriott | |
rely on uninitialized data, from Thomas Adam. | |||
2012-08-12 | .Sq should use curly right quotes in HTML output to match its curly | Matthew Dempsky | |
left quotes. Also, properly reinitialize the styles attribute string buffer for each column in a table so that the attributes don't accumulate. tweak and ok schwarze | |||
2012-08-11 | Remove dead code, from Sean Estabrooks. | Nicholas Marriott | |
2012-08-11 | Another missing format from sam at sltosis.org. | Nicholas Marriott | |
2012-08-11 | Fix a return type. | Nicholas Marriott | |
2012-08-11 | Instead of numbering choose mode items 0-9a-z and then nothing, number | Nicholas Marriott | |
them all and if there are more than 10 use a prompt when 0-9 is pressed. From Thomas Adam. | |||
2012-08-11 | Add some missing formats from Samuel Le Thiec. | Nicholas Marriott | |
2012-08-04 | zap nonsense code | Marc Espie | |
2012-08-02 | remove leftover NOLINT, WANTLINT, LINTFLAGS, LOBJ vars and lint targets. | Okan Demirmen | |
ok guenther@ | |||
2012-07-29 | Disable hyphenation and, for nroff, disable justification which is | Todd C. Miller | |
consistent with how mdoc behaves (and produces more readable manuals). OK schwarze@ | |||
2012-07-29 | The '-' before the flags needs to be quoted to prevent nroff | Todd C. Miller | |
from putting a line break between the '-' and the flag character. OK schwarze@ | |||
2012-07-29 | Use "\\ " not "\\~" as the non-breaking space as historic nroff | Todd C. Miller | |
doesn't support the latter. OK schwarze@ |