2003-04-02 Wednesday 20:03  tdb

	* NEWS (1.2), README (1.2) (utags: IDAR_1_0):

	Updated for 1.0 release.
	
2003-04-02 Wednesday 16:47  pajs

	* idar.c (1.11, IDAR_1_0):

	Now works on freebsd too :)
	
2003-04-02 Wednesday 16:41  pajs

	* idar.c (1.10):

	Linux now working.
	
2003-04-02 Wednesday 16:23  pajs

	* idar.c (1.9):

	(unchecked) This update should mean it will compile on linux and freebsd.
	I think we've got to the point where it should be called 1.1 :)
	(If this actually works that is :) )
	
2003-03-31 Monday 00:21  pajs

	* idar.c (1.8):

	Now allows the user to choose whats being displayed. Currently only allows
	the toggling of what we display by default, but its minor work adding the
	others. I think may need to change the display structure, as i dont think
	i will end up implementing like my original plan was.
	
	Currently it does
	'm' (memory)
	's' (swap)
	'l' (load)
	'd' (disk_io)
	'n' (network)
	'p' (paging)
	'c' (cpu)
	
2003-03-31 Monday 00:00  tdb

	* configure.in (1.3, IDAR_1_0):

	Checks for strlcpy and atoll. These functions will need to be found
	for platforms that don't have them.
	
2003-03-30 Sunday 23:16  pajs

	* idar.c (1.7):

	Added support for sorting on the fly. I have followed a basic convention of
	a capital letter will do sorting, and a lower case letter will change the
	display properties.
	
	Currently q or Q will quit.
	C will sort by CPU
	S will sort by Swap
	M will sort by Memory
	L will sort by Load
	N will sort by Network. Network sorting is toggled thru 3 options. First
	time it will sort by rx+tx. 2nd time it will sort by rx, 3rd time tx. Then
	it will repeat to the start again.
	
	The display function has been updated slightly. The arguments it takes
	(num_lines) now means the number of lines on the screen, rather than
	the number of hosts to display. A status of what its sorting by has been
	added to the bottom line. This line could be used for other "stuff" in the
	future as well.
	
2003-03-30 Sunday 18:11  tdb

	* acinclude.m4 (1.1, IDAR_1_0), configure.in (1.2), idar.c (1.6):

	Now tests for either curses or ncurses. By default prefers to use curses,
	but will use ncurses if curses is not available or if forced by a configure
	flag. Also minor other tweaks.
	
2003-03-30 Sunday 11:58  pajs

	* idar.c (1.5):

	Allows the user to hit "q" to quit the program. The program is now interactive,
	as it now uses select to work out if it needs to do something from the user, or
	from the TCP connection.
	
2003-03-30 Sunday 02:14  pajs

	* idar.c (1.4):

	Now uses ncurses. Not complete, but more infustructure layed down.
	
2003-03-29 Saturday 19:27  tdb

	* AUTHORS (1.1, IDAR_1_0), Makefile.am (1.1, IDAR_1_0), NEWS (1.1),
	README (1.1), README.CVS (1.1, IDAR_1_0), configure.in (1.1),
	idar.c (1.3):

	Initial stab at the autoconf/automake stuff for idar. Not sure it's
	perfect, I've done a lot of this sort of stuff today ;)
	
2003-03-28 Friday 18:42  pajs

	* idar.c (1.2):

	The display function has been updated in preperation for being able to
	display what the user wishes on request.
	
	What to sort by is now a optional command line argument. Valid arguments are
	currently cpu, mem and load. This will also eventually be able to be changed
	"on the fly". The infastructure for doing this has been built in in this
	change.
	
2003-03-28 Friday 15:37  pajs

	* genmergesort.h (1.1, IDAR_1_0), idar.c (1.1):

	idar is a "top like" client which displays data collected by ihost.
	It currently displays cpu, load, pageing, mem, swap, net and disk io.
	There is infastructure to display much more in the future, and to be able
	to sort on more than just CPU.
	
	genmergesort is macro written by mtr to sort a linked list.
	
	Inital version 1.0 This compiles and works. It requires libxml2 (but it
	may work against libxml, but this has not been checked). It also requires
	ukcprog. This will not currently compile on linux (as it lacks strlcpy).
	
	Usage is
	
	idar <-d number_lines_to_display> machine_name port <"fqdn1;fqdn2;fqdn3">
	
