aboutsummaryrefslogtreecommitdiff
path: root/gnu/lib/libdialog
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove -lncurses and -lmytinfo from LDFLAGSAlexey Zelkin2000-01-101-3/+5
| | | | Notes: svn path=/head/; revision=55753
* Cleanup warnings.Alexey Zelkin2000-01-1021-21/+24
| | | | Notes: svn path=/head/; revision=55752
* Completely reconstruct page. Make it mdoc(7) style compatible also :)Alexey Zelkin2000-01-101-307/+587
| | | | | | | Page still needs some work about english refinements and some actualization. Notes: svn path=/head/; revision=55743
* *Really* make space accelerators work; no wonder Brian McGovern wasJordan K. Hubbard1999-12-173-3/+3
| | | | | | | confused! I fat-fingered the first commit. Notes: svn path=/head/; revision=54720
* Prevent spaces from being interpreted as accelerators.Jordan K. Hubbard1999-12-143-7/+16
| | | | Notes: svn path=/head/; revision=54585
* sigset_t change (part 5 of 5)Marcel Moolenaar1999-09-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ----------------------------- Most of the userland changes are in libc. For both the alpha and the i386 setjmp has been changed to accomodate for the new sigset_t. Internally, libc is mostly rewritten to use the new syscalls. The exception is in compat-43/sigcompat.c The POSIX thread library has also been rewritten to use the new sigset_t. Except, that it currently only handles NSIG signals instead of the maximum _SIG_MAXSIG. This should not be a problem because current applications don't use any signals higher than NSIG. There are version bumps for the following libraries: libdialog libreadline libc libc_r libedit libftpio libss These libraries either a) have one of the modified structures visible in the interface, or b) use sigset_t internally and may cause breakage if new binaries are used against libraries that don't have the sigset_t change. This not an immediate issue, but will be as soon as applications start using the new range to its fullest. NOTE: libncurses already had an version bump and has not been given one now. NOTE: doscmd is a real casualty and has been disconnected for the moment. Reconnection will eventually happen after doscmd has been fixed. I'm aware that being the last one to touch it, I'm automaticly promoted to being maintainer. According to good taste this means that I will receive a badge which either will be glued or mechanically stapled, drilled or otherwise violently forced onto me :-) NOTE: pcvt/vttest cannot be compiled with -traditional. The change cause sys/types to be included along the way which contains the const and volatile modifiers. I don't consider this a solution, but more a workaround. Notes: svn path=/head/; revision=51794
* #include <termios.h>Peter Wemm1999-08-301-0/+1
| | | | Notes: svn path=/head/; revision=50631
* $Id$ -> $FreeBSD$Peter Wemm1999-08-2721-21/+21
| | | | Notes: svn path=/head/; revision=50472
* Various man page cleanup:Mike Pritchard1999-08-151-11/+15
| | | | | | | | | | | | - Sort xrefs - Be consistent with section names as outlined in mdoc(7). - Other misc mdoc cleanup. PR: doc/13144 Submitted by: Alexey M. Zelkin <phantom@cris.net> Notes: svn path=/head/; revision=49825
* Use braces to avoid potentially ambiguous else clause.Warner Losh1999-04-252-3/+6
| | | | | | | | | main's return type is int not void. Reviewed by: obrien and chuckr Notes: svn path=/head/; revision=46077
* Don't use backslash-newline to split the too-long line forBruce Evans1999-03-051-4/+2
| | | | | | | | ".Fn dialog_ftree ...", since my synopsis checker doesn't support it and no other too-long .Fn lines are split. Notes: svn path=/head/; revision=44483
* Add documentation for new tree functions.Jordan K. Hubbard1998-10-022-8/+73
| | | | | | | Submitted by: Anatoly A. Orehovsky <tolik@mpeks.tomsk.su> Notes: svn path=/head/; revision=39888
* Add missing free().Jordan K. Hubbard1998-09-301-1/+2
| | | | | | | Submitted by: Anatoly A. Orehovsky <tolik@mpeks.tomsk.su> Notes: svn path=/head/; revision=39816
* Add examples for tree functions.Jordan K. Hubbard1998-09-296-2/+346
| | | | | | | Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su> Notes: svn path=/head/; revision=39765
* Add support for saved trees.Jordan K. Hubbard1998-09-292-4/+111
| | | | | | | Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su> Notes: svn path=/head/; revision=39764
* Update tree function and remove gratuitous .h file.Jordan K. Hubbard1998-09-282-48/+79
| | | | | | | Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su> Notes: svn path=/head/; revision=39718
* Unbump the minor number; guess this doesn't happen in the ELF worldJordan K. Hubbard1998-09-281-2/+2
| | | | | | | anymore and maybe we should nuke the meaning if MINOR altogether. :) Notes: svn path=/head/; revision=39698
* Add some new functionality which I promised to add over a year a go andJordan K. Hubbard1998-09-264-3/+1035
| | | | | | | | | | shamefully dropped on the floor. I need to add it now since it does a minor number bump, but otherwise the current functionality of libdialog is unchanged (in all its evil glory) and the change is non-intrusive. Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su> Notes: svn path=/head/; revision=39677
* Fix bogus length restriction on readlink. Use sizeof(buf) - 1 ratherWarner Losh1998-09-101-1/+1
| | | | | | | | | | than the size of the directory name. Fix style bug which increased the number of lines > 80 characters by one. Pointed out by: bde Notes: svn path=/head/; revision=39052
* Use size of structure rather than hard coded 256 in readlink. This changeWarner Losh1998-09-091-1/+1
| | | | | | | either came from OpenBSD, or was inspired by work done there. Notes: svn path=/head/; revision=39013
* Change the aux field type to long instead of int so that it is largeJohn Birrell1998-08-201-1/+1
| | | | | | | enough to hold a man-sized pointer. Notes: svn path=/head/; revision=38461
* Spelling corrections.Joseph Koshy1998-06-061-2/+2
| | | | | | | | PR: 6868 Submitted by: Josh Gilliam <josh@quick.net> Notes: svn path=/head/; revision=36692
* Fix improperly re-entrant code which caused the menu spammage we'veJordan K. Hubbard1997-10-122-37/+25
| | | | | | | | been seeing since 2.2.1. Pointed-in-the-right-direction by: phk Notes: svn path=/head/; revision=30333
* Fixed synopsis. There was a missing arg, 3 args with the wrong type,Bruce Evans1997-04-131-12/+22
| | | | | | | | and many apparent dependendcies on <sys/types.h> from use of u_char. <dialog.h> avoids u_char, so avoid it here too. Notes: svn path=/head/; revision=24871
* YAMF22Jordan K. Hubbard1997-03-291-2/+2
| | | | Notes: svn path=/head/; revision=24389
* Fix various overflows for items longer then menu width.Andrey A. Chernov1997-02-281-4/+6
| | | | | | | | | | Fix cursor place after PgUp/PgDn. Should go into 2.2 Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su> Notes: svn path=/head/; revision=23220
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-2221-21/+21
| | | | Notes: svn path=/head/; revision=22996
* When wrong directory choosed and chdir failed, directory nameAndrey A. Chernov1997-02-182-2/+5
| | | | | | | | | | | | | | was not reset to old name causing any file choosen put error diagnostic about wrong directory, fix it by resetting back to old name after chdir failed. Add \r as alias to \n, some telnets have problem with that. Should go into 2.2 Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su> & me Notes: svn path=/head/; revision=22879
* Go on one of my periodic rampages through this code, trying to makeJordan K. Hubbard1997-01-174-157/+189
| | | | | | | | | | it DTRT. In the process, discover the usual 10-15 evil bogons which have been lurking in it for years. This closes, for one thing, the recent report Mike Smith made about nested checklist menus returning with the scrolling region messed up. Notes: svn path=/head/; revision=21790
* Allow emacs-style next/prev characters as well as arrow keys so thatJordan K. Hubbard1997-01-155-9/+13
| | | | | | | I can offer this as a consistent feature. Notes: svn path=/head/; revision=21697
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-1421-21/+21
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Pull the fix from rev 1.31.2.1; i've accidentally committed it toJoerg Wunsch1996-12-261-1/+0
| | | | | | | 2.2 first. Notes: svn path=/head/; revision=20924
* Somewhere along the way, multiple targets started working and nobodyJordan K. Hubbard1996-12-141-52/+1
| | | | | | | noticed. Notes: svn path=/head/; revision=20446
* Add another hateful global to libdialog (what the heck, there are alreadyJordan K. Hubbard1996-12-149-25/+94
| | | | | | | | | so many). For now, the only extended attribute implemented is NO ECHO, useful for things like passwords. See TESTS/input2.c for an example. This should go into 2.2. Notes: svn path=/head/; revision=20442
* Line up some of these OK boxes properly again.Jordan K. Hubbard1996-12-123-4/+4
| | | | Notes: svn path=/head/; revision=20359
* "CONTINUE" was just too long. Make it a nice "OK" now.Jordan K. Hubbard1996-10-042-2/+2
| | | | Notes: svn path=/head/; revision=18682
* Eliminated includes of the "temporary" backwards compatibility headerBruce Evans1996-09-241-4/+4
| | | | | | | | | <sys/dir.h> in applications. Maintained existing (inadequate) ifdefs for dir.h vs dirent.h in libdialog, amd and rarpd, but didn't add any new ones. Notes: svn path=/head/; revision=18485
* Make button highlighting more visible on B/W displays.Jordan K. Hubbard1996-09-061-3/+1
| | | | Notes: svn path=/head/; revision=18078
* Collapse some common arrow key handling semantics from sysinstall intoJordan K. Hubbard1996-09-011-0/+7
| | | | | | | PollObj(), simplifying code which uses it. Notes: svn path=/head/; revision=17984
* cmp -s || install -c ==> install -CPeter Wemm1996-08-301-3/+2
| | | | Notes: svn path=/head/; revision=17935
* Reverse my patch which erroneously removed the library dependenciesJordan K. Hubbard1996-08-131-0/+3
| | | | | | | for a library. They're needed. Notes: svn path=/head/; revision=17575
* Throw some unnecessary dreck out of this Makefile.Jordan K. Hubbard1996-08-111-4/+1
| | | | Notes: svn path=/head/; revision=17518
* 1. Remove some ancient bogons from when I initially added dialogMenuItemJordan K. Hubbard1996-07-115-63/+21
| | | | | | | | support. 2. Have message boxes say "Continue" instead of "Exit" Notes: svn path=/head/; revision=17098
* Fix a couple of whoopers which somehow went undetected until now.Jordan K. Hubbard1996-07-113-56/+66
| | | | Notes: svn path=/head/; revision=17092
* Add missing dialog_clear() calls.Jordan K. Hubbard1996-07-053-0/+3
| | | | Notes: svn path=/head/; revision=16973
* Round out the examples a little better in showing custom buttons in operationJordan K. Hubbard1996-07-021-2/+4
| | | | | | | more than once. Notes: svn path=/head/; revision=16888
* Fix the OK/Cancel accellerator bogon I introduced a few days back.Jordan K. Hubbard1996-04-283-3/+3
| | | | Notes: svn path=/head/; revision=15418
* Fix what I just broke with DITEM_LEAVE_MENUJordan K. Hubbard1996-04-271-1/+1
| | | | Notes: svn path=/head/; revision=15410
* Fix a bogon with ok/cancel callback usage.Jordan K. Hubbard1996-04-272-26/+24
| | | | Notes: svn path=/head/; revision=15406
* More custom hackery to deal with issues discovered in sysinstall.Jordan K. Hubbard1996-04-253-17/+14
| | | | Notes: svn path=/head/; revision=15382