summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 21bcabbee6d10eab6739bad142cfc59b9233aafb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
2008-05-27  "Richard W.M. Jones  <rjones@redhat.com>

	* po/LINGUAS, po/pt_BR.po:
	Brazilian Portuguese translation by Herli Joaquim de Menezes and
	revised by Igor Pires Soares.
	[62536a905a58] [tip]

2008-05-01  "Richard W.M. Jones  <rjones@redhat.com>

	* .hgignore:
	Ignore tarball.
	[74f79bbb126f]

	* configure.ac, virt-top/virt_top.ml:
	Avoid an error when gettext is not available.
	[cfbcb3106dc9]

2008-04-17  rjones  <rjones@thinkpad>

	* META.in, TODO.libvirt, examples/.depend, examples/Makefile.in,
	examples/list_domains.ml, examples/node_info.ml, libvirt/.depend,
	libvirt/Makefile.in, libvirt/README, libvirt/generator.pl,
	libvirt/libvirt.ml, libvirt/libvirt.mli, libvirt/libvirt_c.c,
	libvirt/libvirt_c_epilogue.c, libvirt/libvirt_c_oneoffs.c,
	libvirt/libvirt_c_prologue.c, libvirt/libvirt_version.ml.in,
	libvirt/libvirt_version.mli, mlvirsh/.depend, mlvirsh/Makefile.in,
	mlvirsh/mlvirsh.ml, virt-ctrl/.depend, virt-ctrl/Makefile.in, virt-
	ctrl/mingw-gcc-wrapper.ml, virt-ctrl/rebuild-icons.sh, virt-
	ctrl/vc_connection_dlg.ml, virt-ctrl/vc_connection_dlg.mli, virt-
	ctrl/vc_connections.ml, virt-ctrl/vc_connections.mli, virt-
	ctrl/vc_dbus.ml, virt-ctrl/vc_dbus.mli, virt-ctrl/vc_domain_ops.ml,
	virt-ctrl/vc_domain_ops.mli, virt-ctrl/vc_helpers.ml, virt-
	ctrl/vc_helpers.mli, virt-ctrl/vc_icons.ml, virt-
	ctrl/vc_mainwindow.ml, virt-ctrl/vc_mainwindow.mli, virt-
	ctrl/virt_ctrl.ml, virt-df/.depend, virt-df/Makefile.in, virt-
	df/README, virt-df/virt-df.1, virt-df/virt-df.pod, virt-df/virt-
	df.txt, virt-df/virt_df.ml, virt-df/virt_df_ext2.ml, virt-
	df/virt_df_linux_swap.ml, virt-df/virt_df_lvm2.ml, virt-
	df/virt_df_main.ml:
	Merge.
	[ecc03271ec09]

	* virt-top/virt-top.1, virt-top/virt-top.pod:
	Remove bogus =end from end of manpage.
	[e5e25e49e2a2]

2008-04-16  "Richard W.M. Jones  <rjones@redhat.com>

	* configure.ac:
	Readded AC_PROG_INSTALL.
	[b39044967bfa]

	* META.in:
	Remove META file.
	[9130014736dc]

	* Makefile.in, README, TODO.libvirt, config.h.in, configure.ac,
	examples/.depend, libvirt/.depend, mlvirsh/.depend, virt-
	ctrl/.depend, virt-df/.depend, virt-top/.depend, virt-
	top/Makefile.in:
	*** THIS REPO IS JUST FOR VIRT-TOP NOW ***
	 - See http://hg.et.redhat.com/applications/virt/ for bindings and
	the other applications.
	[62bb48e4d36a]

	* MANIFEST, examples/Makefile.in, examples/list_domains.ml,
	examples/node_info.ml, libvirt/Makefile.in, libvirt/README,
	libvirt/generator.pl, libvirt/libvirt.ml, libvirt/libvirt.mli,
	libvirt/libvirt_c.c, libvirt/libvirt_c_epilogue.c,
	libvirt/libvirt_c_oneoffs.c, libvirt/libvirt_c_prologue.c,
	libvirt/libvirt_version.ml.in, libvirt/libvirt_version.mli,
	mlvirsh/Makefile.in, mlvirsh/mlvirsh.ml, virt-ctrl/Makefile.in,
	virt-ctrl/mingw-gcc-wrapper.ml, virt-ctrl/rebuild-icons.sh, virt-
	ctrl/vc_connection_dlg.ml, virt-ctrl/vc_connection_dlg.mli, virt-
	ctrl/vc_connections.ml, virt-ctrl/vc_connections.mli, virt-
	ctrl/vc_dbus.ml, virt-ctrl/vc_dbus.mli, virt-ctrl/vc_domain_ops.ml,
	virt-ctrl/vc_domain_ops.mli, virt-ctrl/vc_helpers.ml, virt-
	ctrl/vc_helpers.mli, virt-ctrl/vc_icons.ml, virt-
	ctrl/vc_mainwindow.ml, virt-ctrl/vc_mainwindow.mli, virt-
	ctrl/virt_ctrl.ml, virt-df/Makefile.in, virt-df/README, virt-df
	/virt-df.1, virt-df/virt-df.pod, virt-df/virt-df.txt, virt-
	df/virt_df.ml, virt-df/virt_df.mli, virt-df/virt_df_ext2.ml, virt-
	df/virt_df_ext2.mli, virt-df/virt_df_linux_swap.ml, virt-
	df/virt_df_linux_swap.mli, virt-df/virt_df_lvm2.ml, virt-
	df/virt_df_lvm2.mli, virt-df/virt_df_lvm2_lexer.mll, virt-
	df/virt_df_lvm2_metadata.ml, virt-df/virt_df_lvm2_metadata.mli,
	virt-df/virt_df_lvm2_parser.mly, virt-df/virt_df_main.ml, virt-
	df/virt_df_mbr.ml, virt-df/virt_df_mbr.mli:
	Removed virt-ctrl, virt-df, ocaml-libvirt - now in separate
	repositories.
	[a8b9c66bd47e]

	* MANIFEST:
	Updated MANIFEST.
	[1de9c9f4927e]

	* virt-df/virt-df.1, virt-df/virt-df.pod, virt-df/virt-df.txt:
	Update manpage.
	[a24d3fb90040]

	* virt-df/virt_df_main.ml:
	Fix alignment in -t option
	[86bf9eac1d18]

	* virt-df/virt_df_lvm2.ml:
	LVM2 parsing complete and working.
	[35e338c4324a]

	* virt-df/virt_df_mbr.ml:
	Use offset_device
	[c013e0eed60c]

	* virt-df/virt_df.ml, virt-df/virt_df.mli, virt-df/virt_df_main.ml:
	Added offset_device, canonical_uuid function, pass LV device with LV
	filesystems
	[076fa43ff09a]

	* virt-df/README:
	Minor clarifications to developer docs.
	[922145228d86]

	* virt-df/virt_df.ml, virt-df/virt_df.mli, virt-df/virt_df_lvm2.ml,
	virt-df/virt_df_main.ml, virt-df/virt_df_mbr.ml:
	Make debug selectable at runtime.
	[760eaf65f1e5]

2008-04-15  "Richard W.M. Jones  <rjones@redhat.com>

	* virt-df/virt_df_lvm2.ml:
	Almost complete VG & LV metadata parsing.
	[a768e713b388]

	* virt-df/virt_df.ml, virt-df/virt_df.mli:
	Added range library function.
	[8a0ba5fe45f7]

	* virt-df/virt_df_lvm2_metadata.ml:
	Redundant newline.
	[ee6c883c5f0e]

	* virt-df/virt_df_lvm2_parser.mly:
	Removed some debugging prints.
	[561e6191c7f7]

	* virt-df/virt_df_lvm2_metadata.ml, virt-df/virt_df_lvm2_metadata.mli:
	Removed text-mode annotation.
	[fe5b95622f7d]

	* virt-df/README:
	Added developer documentation.
	[e98ab5d8113a]

	* .hgignore, Make.rules.in, virt-df/.depend, virt-df/Makefile.in,
	virt-df/virt_df_lvm2.ml, virt-df/virt_df_lvm2_lexer.mll, virt-
	df/virt_df_lvm2_metadata.ml, virt-df/virt_df_lvm2_metadata.mli,
	virt-df/virt_df_lvm2_parser.mly:
	Metadata parser.
	[9121d9415d01]

	* virt-df/.depend, virt-df/virt_df_ext2.mli, virt-
	df/virt_df_linux_swap.mli, virt-df/virt_df_lvm2.mli, virt-
	df/virt_df_mbr.mli:
	Empty *.mli files to stop those modules from exporting symbols.
	[74b1fb1285cd]

	* virt-df/virt_df_lvm2.ml:
	Cosmetic fixes and comments.
	[e3a4adf8ac70]

	* virt-df/virt_df_lvm2.ml:
	Read out the actual metadata.
	[2d0e0d9ecf18]

	* virt-df/virt_df_main.ml:
	Added a documentation note about RAID devices.
	[a6d23157db05]

	* virt-df/virt_df_lvm2.ml:
	Read out metadata offset & length from PV header.
	[e7a102764f6c]

	* virt-df/virt_df.ml, virt-df/virt_df.mli, virt-df/virt_df_lvm2.ml,
	virt-df/virt_df_main.ml:
	Refactor the types so we have distinct PV & LV types.
	[03cbf0351b6d]

	* virt-df/virt_df.ml, virt-df/virt_df.mli, virt-df/virt_df_main.ml:
	Infrastructure to detect filesystems on LVs.
	[2c2fd6a09bb3]

	* virt-df/.depend:
	Update deps.
	[0ec7e39399fd]

	* virt-df/virt_df_lvm2.ml:
	LVM2 PV detection.
	[a3c2ccf5dc4e]

	* virt-df/virt_df.ml, virt-df/virt_df.mli, virt-df/virt_df_main.ml:
	Add PV detection framework.
	[98de6ad72596]

	* virt-df/virt_df_ext2.ml, virt-df/virt_df_linux_swap.ml, virt-
	df/virt_df_lvm2.ml, virt-df/virt_df_mbr.ml:
	Don't need the ': device' typecasts any more.
	[7aea80dca42c]

	* virt-df/.depend, virt-df/virt_df.ml, virt-df/virt_df.mli, virt-
	df/virt_df_main.ml:
	Move main code to virt_df_main.ml and provide explicit interface
	virt_df.mli
	[d7ff48bb9319]

2008-04-14  "Richard W.M. Jones  <rjones@redhat.com>

	* po/LINGUAS, po/pl.po:
	Added Polish translation (thanks: Piotr Drąg)
	[4f8da9e00748]

	* virt-df/virt_df.ml, virt-df/virt_df_ext2.ml, virt-
	df/virt_df_linux_swap.ml, virt-df/virt_df_lvm2.ml, virt-
	df/virt_df_main.ml, virt-df/virt_df_mbr.ml:
	Complete rewrite of virt-df:
	  - Uses pa_bitmatch for robust parsing of disk structures.
	  - Completely modularized.
	[2312f2a9fa96]

	* virt-df/.depend:
	Updated deps.
	[ec2743be60aa]

	* virt-df/Makefile.in:
	pa_bitmatch package added. xml-light is now optional. MBR code now
	in its own file.
	[d18ad7c6f3a4]

	* README:
	Add new column for virt-df requirements.
	[78fc6062ae33]

	* configure.ac:
	Check for pa_bitmatch extension (now required by virt-df).
	[1cab41d4ca9c]

	* Make.rules.in:
	Allow extra OCAMLDEPFLAGS to be passed, eg to make syntax extensions
	possible.
	[f6a6861a232a]

2008-03-28  "Richard W.M. Jones  <rjones@redhat.com>

	* po/ja.po, po/virt-top.pot:
	Updated PO files.
	[6b17c531db1c]

	* virt-top/.depend, virt-top/Makefile.in, virt-top/virt_top.ml, virt-
	top/virt_top_calendar1.ml, virt-top/virt_top_calendar2.ml, virt-
	top/virt_top_csv.ml, virt-top/virt_top_main.ml, virt-
	top/virt_top_utils.ml, virt-top/virt_top_xml.ml:
	Internationalize virt-top.
	[39a3676df13d]

	* po/ja.po, po/virt-top.pot:
	Updated PO files.
	[ca4525b2f289]

	* virt-df/.depend, virt-df/Makefile.in, virt-df/virt_df.ml, virt-
	df/virt_df_ext2.ml, virt-df/virt_df_linux_swap.ml, virt-
	df/virt_df_lvm2.ml:
	Internationalize virt-df program.
	[ad8ba4a8f63d]

	* virt-ctrl/Makefile.in:
	Should always link to program gettext package.
	[259d5267aa3c]

	* po/ja.po, po/virt-top.pot:
	Update translations. Added a couple of Japanese translations for
	testing.
	[a7ef9c70f560]

	* virt-ctrl/.depend, virt-ctrl/Makefile.in, virt-
	ctrl/vc_connection_dlg.ml, virt-ctrl/vc_connections.ml, virt-
	ctrl/vc_dbus.ml, virt-ctrl/vc_domain_ops.ml, virt-
	ctrl/vc_helpers.ml, virt-ctrl/vc_mainwindow.ml, virt-
	ctrl/virt_ctrl.ml:
	Internationalize virt-ctrl.
	[839a382f1010]

	* mlvirsh/.depend, mlvirsh/Makefile.in, mlvirsh/mlvirsh.ml:
	Make mlvirsh localizable.
	[cb2b80f71aab]

	* .hgignore, README, configure.ac, po/LINGUAS, po/Makefile.in,
	po/POTFILES, po/ja.po, po/virt-top.pot:
	Basic infrastructure for using gettext to translate.
	[dbe0b21bfbd7]

2008-03-19  "Richard W.M. Jones  <rjones@redhat.com>

	* configure.ac:
	Version 0.4.1.1 for release.
	[8c555d0decbe]

	* libvirt/Makefile.in:
	Install the *.cmi files as well.
	[68d75d3ad1f3]

	* libvirt/libvirt_c.c:
	Generated file updated by previous commit.
	[09ad4f482f2c]

	* libvirt/generator.pl:
	Use CAMLnoreturn to avoid compiler warning.
	[0edd45728adf]

2008-03-05  rjones  <rjones@thinkpad.home.annexia.org>

	* virt-df/Makefile.in:
	Don't link virt-df with ncurses.
	[255e7a143ee5]

2008-03-04  "Richard W.M. Jones  <rjones@redhat.com>

	* configure.ac:
	Version 0.4.1.0 for release.
	[4f220ce5a6aa]

	* virt-ctrl/vc_mainwindow.ml:
	Restructure main window code slightly.
	[c1c0af65039e]

	* virt-ctrl/vc_connection_dlg.ml, virt-ctrl/vc_connection_dlg.mli,
	virt-ctrl/vc_dbus.ml, virt-ctrl/vc_dbus.mli:
	New connection dialog with support for Avahi detection of libvirtd.
	[26f6935d52a8]

	* virt-ctrl/.depend:
	Updated deps.
	[5af2bab157de]

	* configure.ac, virt-ctrl/Makefile.in, virt-ctrl/rebuild-icons.sh,
	virt-ctrl/vc_icons.ml:
	Added support for compiled-in icons from a GNOME theme.
	[7693fd29725a]

	* MANIFEST:
	Updated MANIFEST.
	[7b9c6fd28351]

	* virt-df/.depend, virt-df/Makefile.in, virt-df/README, virt-df/virt-
	df.1, virt-df/virt-df.pod, virt-df/virt-df.txt, virt-df/virt_df.ml:
	"Finish off" this program, add manpage.
	[ac5101a43a8a]

	* README:
	Update list of dependencies.
	[cab6ed94a5fa]

2008-02-27  "Richard W.M. Jones  <rjones@redhat.com>

	* MANIFEST:
	Update MANIFEST.
	[c83e23544b6f]

	* README, virt-ctrl/.depend, virt-ctrl/Makefile.in, virt-
	ctrl/vc_connection_dlg.ml, virt-ctrl/vc_connection_dlg.mli, virt-
	ctrl/vc_mainwindow.ml:
	Move connection dialog to its own module. ocaml-dbus >= 0.04.
	[77c2bd140c4b]

2008-02-20  "Richard W.M. Jones  <rjones@redhat.com>

	* config.h.in, configure.ac, libvirt/generator.pl, libvirt/libvirt.ml,
	libvirt/libvirt.mli, libvirt/libvirt_c.c,
	libvirt/libvirt_c_oneoffs.c:
	Upgrade to released storage API in libvirt CVS.
	[cb4cd483107a]

	* TODO.virt-top:
	Extra tasks for jmh
	[989649d2c83b]

2008-02-16  "Richard W.M. Jones  <rjones@redhat.com>

	* virt-ctrl/.depend, virt-ctrl/vc_connections.ml, virt-
	ctrl/vc_connections.mli, virt-ctrl/vc_mainwindow.ml, virt-
	ctrl/vc_mainwindow.mli, virt-ctrl/virt_ctrl.ml:
	Move open_connection dialog.
	 - Move open_connection dialog into vc_mainwindow which is more
	logical.
	[8e20d115085f]

	* virt-ctrl/vc_connections.ml, virt-ctrl/vc_connections.mli, virt-
	ctrl/vc_domain_ops.ml, virt-ctrl/vc_domain_ops.mli, virt-
	ctrl/vc_mainwindow.ml, virt-ctrl/vc_mainwindow.mli, virt-
	ctrl/virt_ctrl.ml:
	Combine historical data, provide accessor functions.
	 - Historical data combined into a single array of dhentrys.
	 - Provide accessor functions.
	 - Clamp %CPU to 0..100.
	[b5c909eb265a]

	* virt-ctrl/vc_connections.ml:
	Store domain %CPU and memory history.
	[4b5ad2f075ec]

	* virt-ctrl/vc_mainwindow.ml, virt-ctrl/virt_ctrl.ml:
	Clean up memory handling.
	 - Call Gc.compact during timeout handler and when program exits to
	check for memory errors.
	 - Don't allow timeout exceptions to propagate - causes a segfault in
	lablgtk.
	 - Tidy up the About dialog.
	[9d0fa565a5ec]

	* MANIFEST, configure.ac, virt-ctrl/Makefile.in, virt-ctrl/vc_dbus.ml:
	Added a separate file and dependency for DBus.
	[9ae10c9816e4]

	* README:
	Rewrite the requirements section of the README file to make it
	clearer.
	[389c60021ea4]

2008-02-12  "Richard W.M. Jones  <rjones@redhat.com>

	* configure.ac:
	Version 0.4.0.3 released.
	[24f0856793d2]

	* virt-top/Makefile.in:
	Minor fix for calendar 1.x
	[3474159ff370]

2008-02-12  rjones  <rjones@thinkpad.home.annexia.org>

	* MANIFEST, configure.ac, virt-top/.depend, virt-top/Makefile.in,
	virt-top/virt_top_calendar.ml, virt-top/virt_top_calendar1.ml, virt-
	top/virt_top_calendar2.ml:
	Support for calendar >= 2.0
	[ce979f97645a]

2008-01-20  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, libvirt/libvirt.ml, libvirt/libvirt.mli:
	Fix Volume.lookup_by_key and Volume.lookup_by_path
		* libvirt/libvirt.mli, libvirt/libvirt.ml: These functions take
	a connection object, not a pool, as first parameter.
	[f70137fdc6d6]

	* ChangeLog:
	Version 0.4.0.2 released.
	[f86032dd245e]

	* MANIFEST:
	Updated MANIFEST
	[c122110076ab]

	* libvirt/generator.pl, libvirt/libvirt_c.c:
	Implemented virStorageVolLookupByName & virStorageVolCreateXML.
	[245093f14557]

	* libvirt/generator.pl, libvirt/libvirt_c.c:
	Return UUID (packed byte array) correctly.
	[23390f3e4631]

2008-01-19  "Richard W.M. Jones  <rjones@redhat.com>

	* libvirt/generator.pl, libvirt/libvirt_c.c:
	Print signatures next to functions in the bindings.
	[bbda57b799a8]

	* libvirt/libvirt_c_epilogue.c:
	Don't hard-code Storage API errors, in case building with older
	libvirt.
	[4e7471a43237]

	* libvirt/generator.pl, libvirt/libvirt.ml, libvirt/libvirt.mli,
	libvirt/libvirt_c.c, libvirt/libvirt_c_oneoffs.c:
	Complete implementation of storage API.
	[8365aa420e40]

	* libvirt/generator.pl, libvirt/libvirt_c.c:
	Job functions should be marked as weak.
	[32f0ae263306]

	* libvirt/generator.pl, libvirt/libvirt.ml, libvirt/libvirt.mli,
	libvirt/libvirt_c.c, libvirt/libvirt_c_epilogue.c,
	libvirt/libvirt_c_oneoffs.c, libvirt/libvirt_c_prologue.c:
	Storage API almost completed, even more autogeneration.
	[0dec84861d77]

	* libvirt/generator.pl, libvirt/libvirt_c.c,
	libvirt/libvirt_c_oneoffs.c:
	Autogenerate *Free and *Destroy functions.
	[92c0eb2e1bc8]

	* libvirt/README, libvirt/generator.pl, libvirt/libvirt_c.c:
	Documentation updates.
	[c5df7a7e48e5]

	* libvirt/generator.pl, libvirt/libvirt_c.c,
	libvirt/libvirt_c_oneoffs.c:
	Autogenerate all GetUUID and GetUUIDString functions.
	[8aede084763f]

	* configure.ac, libvirt/Makefile.in, libvirt/generator.pl,
	libvirt/libvirt.ml, libvirt/libvirt.mli, libvirt/libvirt_c.c,
	libvirt/libvirt_c_epilogue.c, libvirt/libvirt_c_oneoffs.c:
	Further work on storage API and autogenerating bindings.
	[0e2cd2052975]

2008-01-18  "Richard W.M. Jones  <rjones@redhat.com>

	* libvirt/generator.pl:
	Notes.
	[e5be781663ef]

	* libvirt/Makefile.in:
	Add 'make autostatus' target so we can test how we autogeneration of
	bindings is going.
	[6e3544baec97]

	* .hgignore:
	Ignore config.cache (./configure -C)
	[54337986b88e]

	* config.h.in, configure.ac, libvirt/generator.pl,
	libvirt/libvirt_c.c, libvirt/libvirt_c_oneoffs.c:
	More bindings autogenerated, more coverage of storage API.
	[80e8ec8098b6]

	* ChangeLog, config.h.in, configure.ac, libvirt/Makefile.in,
	libvirt/README, libvirt/generator.pl, libvirt/libvirt.ml,
	libvirt/libvirt.mli, libvirt/libvirt_c.c,
	libvirt/libvirt_c_epilogue.c, libvirt/libvirt_c_oneoffs.c,
	libvirt/libvirt_c_prologue.c:
	Move to autogeneration of many C bindings.
		* configure.ac, libvirt/libvirt_c.c, libvirt/generator.pl: Many
	C bindings can now be autogenerated using a Perl script.
	Also includes preliminary support for the experimental
	storage API.
	[42f0b6fb4581]

	* configure.ac:
	List functions to test one-per-line to make it simpler to add more.
	[1260ff5b72c7]

	* README:
	Changing copyright notice for new year.
	[8ebe0cc759c3]

2008-01-08  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, virt-ctrl/vc_connections.ml, virt-
	ctrl/vc_connections.mli:
	Get node_info just once for each connection.
		* vc_connections.ml: Get node_info just once for each connection,
	which is more efficient.
		* vc_connections.mli: Tidy up.
	[4d4d3eaf7c4d]

	* ChangeLog, virt-ctrl/.depend, virt-ctrl/vc_domain_ops.ml, virt-
	ctrl/vc_domain_ops.mli, virt-ctrl/vc_mainwindow.mli:
	Type Vc_domain_ops.dops_callback_fn for clarity.
		* virt-ctrl/vc_domain_ops.mli, virt-ctrl/vc_domain_ops.ml,
	virt-ctrl/vc_mainwindow.mli: Give a type name to the domain_ops
	callback type, for extra clarity.
	[d6d63bbcc5a5]

	* ChangeLog, virt-ctrl/vc_connections.ml, virt-
	ctrl/vc_connections.mli, virt-ctrl/vc_domain_ops.ml, virt-
	ctrl/vc_domain_ops.mli, virt-ctrl/vc_helpers.ml, virt-
	ctrl/vc_helpers.mli, virt-ctrl/vc_mainwindow.ml, virt-
	ctrl/vc_mainwindow.mli, virt-ctrl/virt_ctrl.ml:
	Change comments virt-manager -> virt-ctrl.
		* virt-ctrl/*.ml, virt-ctrl/*.mli: Change comments virt-manager ->
	virt-ctrl.
	[fa80ccae60a4]

	* .hgignore, ChangeLog, Makefile.in, README, examples/.depend,
	examples/Makefile.in, examples/list_domains.ml,
	examples/node_info.ml, libvirt/libvirt.mli:
	Move programming information to libvirt generated doc.
		* README, libvirt/libvirt.mli: Moved programming information to
	libvirt generated documentation, greatly expanded examples and
	other issues.
		* examples/Makefile.in, examples/node_info.ml, examples/.depend:
	Added node_info example program.
		* .hgignore, Makefile.in: Ignore, clean up node_info binary.
		* examples/list_domains.ml: Make a read-only connection.
	[100b2a5b88db]

	* configure.ac:
	Bumped version number.
	[c50bacbcf59e]

	* ChangeLog, Makefile.in:
	Clean up *.exe files.
		* Makefile.in: Clean up *.exe files.
	[b1d9255d356c]

	* ChangeLog, Makefile.in:
	Version 0.4.0.1 released.
		* Makefile.in: Provide a 'winupload' target.
	[3f1a757719f4]

	* ChangeLog:
	Commit ChangeLog.
	[d3447156bed4]

	* virt-ctrl/vc_mainwindow.ml:
	Rename some dialogs in virt-ctrl.
		* virt-ctrl/vc_mainwindow.ml: Fix some "virtual machine manager" ->
	"virt-ctrl" dialogs in main window.
	[b7edeac61d5b]

	* .hgignore, wininstaller.nsis.in:
	Fix bad paths in wininstaller.nsis.in.
		* wininstaller.nsis.in:
		* .hgignore: Ignore *.orig files.
	[fe47f7cb46f2]

	* winlicense.rtf:
	Update Windows installer license to include GPL, LGPL text.
	[a01d4c9abdf9]

	* MANIFEST:
	Update MANIFEST.
	[c140a0dc9c65]

	* .hgignore, ChangeLog, virt-ctrl/Makefile.in, virt-ctrl/mingw-gcc-
	wrapper.ml:
	Fix native virt-ctrl on Windows.
		* virt-ctrl/Makefile.in, virt-ctrl/mingw-gcc-wrapper.ml: Wrapper
	around 'gcc' to fix native virt-ctrl builds on Windows/MinGW.
		* .hgignore: Ignore *.exe files.
	[5a168a4d4567]

2008-01-07  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, MANIFEST:
	Updated MANIFEST.
		* MANIFEST: Bring the MANIFEST file up to date.
	[0b840998f8c9]

	* .hgignore, ChangeLog, MANIFEST, Makefile.in, README, configure.ac,
	mlvirtmanager/.depend, mlvirtmanager/Makefile.in,
	mlvirtmanager/mlvirtmanager.ml,
	mlvirtmanager/mlvirtmanager_connections.ml,
	mlvirtmanager/mlvirtmanager_connections.mli,
	mlvirtmanager/mlvirtmanager_domain_ops.ml,
	mlvirtmanager/mlvirtmanager_domain_ops.mli,
	mlvirtmanager/mlvirtmanager_helpers.ml,
	mlvirtmanager/mlvirtmanager_helpers.mli,
	mlvirtmanager/mlvirtmanager_mainwindow.ml,
	mlvirtmanager/mlvirtmanager_mainwindow.mli, virt-ctrl/.depend, virt-
	ctrl/Makefile.in, virt-ctrl/vc_connections.ml, virt-
	ctrl/vc_connections.mli, virt-ctrl/vc_domain_ops.ml, virt-
	ctrl/vc_domain_ops.mli, virt-ctrl/vc_helpers.ml, virt-
	ctrl/vc_helpers.mli, virt-ctrl/vc_mainwindow.ml, virt-
	ctrl/vc_mainwindow.mli, virt-ctrl/virt_ctrl.ml,
	wininstaller.nsis.in:
	mlvirtmanager renamed as virt-ctrl.
		* .hgignore, Makefile.in, configure.ac: Rename mlvirtmanager
	as virt-ctrl to avoid any confusion with the real virt-
	manager.
		* mlvirtmanager/, virt-ctrl/: Subdirectory moved.
		* README: Supporting documentation updated.
	[d88fd14ebf8e]

	* virt-df/.depend:
	Missing virt-df/.depend.
	[eb351d8dcc51]

	* .hgignore, ChangeLog, Make.rules.in, Makefile.in, README,
	aclocal.m4, configure.ac, examples/Makefile.in, libvirt/.depend,
	libvirt/Makefile.in, mlvirsh/.depend, mlvirsh/Makefile.in,
	mlvirsh/mlvirsh.ml, mlvirtmanager/Makefile.in, wininstaller.nsis.in,
	winlicense.rtf:
	Fix executable permissions added by Windoze.
	[4f3cbf30aec2]

	* ChangeLog, Makefile.in, mlvirtmanager/Makefile.in,
	wininstaller.nsis.in:
	Include mlvirtmanager in the Windows installer.
		* wininstaller.nsis.in: Include mlvirtmanager in the Windows
	installer.
		* Makefile.in: Re-enable native code builds for Windows installer.
		* mlvirtmanager/Makefile.in: Pass $(LDFLAGS) when building on
	Windows - you need to specify the location of $GTK/lib.
	[165ed5a21553]

	* .hgignore, ChangeLog, Makefile.in, configure.ac, wininstaller.nsis,
	wininstaller.nsis.in:
	Bundle Gtk DLLs and support files in the Windows installer.
		* configure.ac: Detect library paths instead of hard- coding
	them.
		* wininstaller.nsis (removed): This file is now autogenerated.
		* wininstaller.nsis.in: Bundle Gtk DLLs and support files.
		* Makefile.in: More verbose messages from NSIS.
	[572da16cde21]

	* ChangeLog, README, wininstaller.nsis:
	Include required libraries in the Windows installer.
		* wininstaller.nsis: Include *.dll files.
	[d736592365d3]

	* ChangeLog:
	Update ChangeLog for Windows installer details.
	[4f17342c49ff]

	* .hgignore, Makefile.in, README, configure.ac, wininstaller.nsis,
	winlicense.rtf:
	Basic framework for NSIS.
	[1304d27b5cf2]

2008-01-05  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, README, configure.ac, mlvirtmanager/Makefile.in:
	mlvirtmanager compiles and runs on Windows (MinGW).
		* configure.ac: Directories to search for optional modules were
	specified incorrectly - fixed.
		* mlvirtmanager/Makefile.in: Changed so can build without
	ocamlfind, and checked it can build on Windows.
	[516672be48c6]

	* ChangeLog, README, configure.ac, mlvirsh/.depend,
	mlvirsh/Makefile.in, mlvirsh/mlvirsh.ml:
	mlvirsh can compile without extlib
		* mlvirsh/mlvirsh.ml: mlvirsh only needed three functions from
	extlib, so copy them in here to avoid the dependency.
		* configure.ac: No dependency on extlib for mlvirsh.
		* mlvirsh/Makefile.in: Changed so can build without ocamlfind.
		* README: Updated documentation.
	[25de50fd4dba]

	* ChangeLog, README:
	Update documentation for Windows.
		* README: Update documentation for Windows.
	[fb64077fb8a7]

	* .hgignore, COPYING, COPYING.LIB, ChangeLog, MANIFEST, META.in,
	Make.rules, Make.rules.in, Makefile.in, README, TODO.libvirt, TODO
	.virt-top, aclocal.m4, config.guess, config.h.in, config.sub,
	configure.ac, examples/.depend, examples/Makefile.in,
	examples/list_domains.ml, libvirt/.depend, libvirt/Makefile.in,
	libvirt/libvirt.ml, libvirt/libvirt.mli, libvirt/libvirt_c.c,
	libvirt/libvirt_version.ml.in, libvirt/libvirt_version.mli,
	mlvirsh/.depend, mlvirsh/Makefile.in, mlvirsh/mlvirsh.ml,
	mlvirtmanager/.depend, mlvirtmanager/Makefile.in,
	mlvirtmanager/mlvirtmanager.ml,
	mlvirtmanager/mlvirtmanager_connections.ml,
	mlvirtmanager/mlvirtmanager_connections.mli,
	mlvirtmanager/mlvirtmanager_domain_ops.ml,
	mlvirtmanager/mlvirtmanager_domain_ops.mli,
	mlvirtmanager/mlvirtmanager_helpers.ml,
	mlvirtmanager/mlvirtmanager_helpers.mli,
	mlvirtmanager/mlvirtmanager_mainwindow.ml,
	mlvirtmanager/mlvirtmanager_mainwindow.mli, virt-df/Makefile.in,
	virt-df/README, virt-df/virt_df.ml, virt-df/virt_df_ext2.ml, virt-
	df/virt_df_linux_swap.ml, virt-df/virt_df_lvm2.ml, virt-
	df/virt_df_main.ml, virt-top/.depend, virt-top/Makefile.in, virt-
	top/README, virt-top/virt-top.1, virt-top/virt-top.pod, virt-top
	/virt-top.txt, virt-top/virt_top.ml, virt-top/virt_top.mli, virt-
	top/virt_top_calendar.ml, virt-top/virt_top_csv.ml, virt-
	top/virt_top_main.ml, virt-top/virt_top_utils.ml, virt-
	top/virt_top_utils.mli, virt-top/virt_top_xml.ml:
	Build libvirt and examples on Windows (MinGW).
		* aclocal.m4: Add AC_CHECK_OCAML_MODULE to check for OCaml
	modules directly (without ocamlfind being needed).
		* configure.ac: Remove requirement for ocamlfind.
		* config.guess, config.sub: Ship these files to guess host,
	build and target.
		* libvirt/Makefile.in, examples/Makefile.in: Change these so
	they don't require ocamlfind, do the right thing on MinGW.
		* Make.rules.in: Make.rules is now generated from this file.
	File can use ocamlfind or direct ocaml commands as available.
		* .hgignore: Ignore some generated files on Windows.
	[d22bc9dc7698]

2008-01-04  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, Makefile.in, README, configure.ac, examples/Makefile.in,
	libvirt/Makefile.in, mlvirtmanager/Makefile.in:
	Make extlib an optional dependency.
		* Makefile.in, README, configure.ac, examples/Makefile.in,
	libvirt/Makefile.in, mlvirtmanager/Makefile.in: Much code
	doesn't really need extlib, so make it optional. Bail
	earlier in configure step if we don't have ocamlfind.
	[f0bbabbe0fef]

2007-12-20  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, libvirt/libvirt.ml, libvirt/libvirt.mli,
	libvirt/libvirt_c.c, virt-top/virt_top.ml:
	New exception Libvirt.Not_supported "function"
		* libvirt/libvirt.ml, libvirt/libvirt.mli, libvirt/libvirt_c.c:
	Change the ad-hoc "foo not supported" exception into a
	specific Libvirt.Not_supported "foo" exception.
		* virt-top/virt_top.ml: Change virt-top to understand new
	exception type.
	[ec7cb03d48de]

	* ChangeLog, configure.ac:
	Version 0.4.0.0 for release.
		* configure.ac: Version 0.4.0.0 for release.
	[de630177b7c3]

	* ChangeLog, libvirt/libvirt_c.c:
	Enable multithreaded OCaml programs.
		* libvirt/libvirt_c.c: Use enter/leave_blocking_section around
	synchronous libvirt API calls, so that multithreaded OCaml
	programs can be used.
	[409da276e68d]

2007-11-20  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, configure.ac, libvirt/libvirt.ml, libvirt/libvirt.mli,
	libvirt/libvirt_c.c:
	* libvirt/libvirt.mli, libvirt/libvirt.ml: New error numbers
	in base libvirt.
		* libvirt/libvirt_c.c: Gracefully handle the case where libvirt
	throws an error number we have not heard of before (eg. when
	dynamic linking with newer libvirt).
		* configure.ac: Check <libvirt/virterror.h> exists.
		* configure.ac: Version 0.3.3.4.
	[5369ab1bc6f7]

	* virt-top/virt-top.1, virt-top/virt-top.pod, virt-top/virt-top.txt:
	Changed the ocaml-libvirt website in the manpage.
	[f8a0f87fcb88]

2007-11-19  "Richard W.M. Jones  <rjones@redhat.com>

	* virt-top/virt-top.1, virt-top/virt-top.pod, virt-top/virt-top.txt:
	Example connection URIs in virt-top manpage (bug 390691).
	https://bugzilla.redhat.com/show_bug.cgi?id=390681
	[3023594b16f0]

2007-11-14  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, configure.ac, libvirt/libvirt.ml, libvirt/libvirt.mli:
	Version 0.3.3.3.
		* libvirt/libvirt.mli: Added filename = string type to clarify
	some function signatures which take a filename. Added lots
	of function documentation.
		* libvirt/libvirt.ml: Added VIR_FROM_OPENVZ.
	[ef33e6db0e58]

	* ChangeLog, Makefile.in, README:
	Version 0.3.3.2.
	 - New website is http://libvirt.org/ocaml/
	[4c584f201352]

	* ChangeLog:
	Added changes to ChangeLog.
	[889444faef41]

	* configure.ac:
	Start version 0.3.3.2.
	[ffe8d6709014]

	* config.h.in, configure.ac, libvirt/libvirt.ml, libvirt/libvirt.mli,
	libvirt/libvirt_c.c, mlvirsh/mlvirsh.ml:
	Added support for new API calls:
	 - virNodeGetFreeMemory
	 - virNodeGetCellsFreeMemory

	Release of 0.3.3.1.
	[8c8cf5418355]

2007-10-19  "Richard W.M. Jones  <rjones@redhat.com>

	* configure.ac:
	Version 0.3.3.1.
	[e8b6e08f9d14]

	* MANIFEST:
	Updated MANIFEST.
	[51efa8dbb966]

	* virt-top/virt-top.txt:
	Updated virt-top.txt.
	[c5a107283000]

	* ChangeLog, README, TODO.virt-top, configure.ac, virt-top/.depend,
	virt-top/Makefile.in, virt-top/README, virt-top/virt-top.1, virt-top
	/virt-top.pod, virt-top/virt-top.txt, virt-top/virt_top.ml, virt-
	top/virt_top.mli, virt-top/virt_top_calendar.ml:
	* virt-top/virt_top_calendar.ml: Added --end-time option.
	Extra optional dep on ocaml-calendar.
		* virt-top/virt-top.pod: Document how to compress and split
	CSV files. Document --end-time option and time formats.
		* virt-top/virt_top.ml: Allow sub-second delays when in batch
	and script mode.
	[f7754dfabd55]

	* ChangeLog, virt-top/.depend, virt-top/README, virt-top/virt_top.ml,
	virt-top/virt_top.mli, virt-top/virt_top_main.ml, virt-
	top/virt_top_utils.ml, virt-top/virt_top_utils.mli:
	Reorganised the code to put more utility functions into
	virt_top_utils. Added explicit interfaces for Virt_top_utils &
	Virt_top modules. Corrected use of endwin when _not_ in script mode.
	[d9276117a86d]

	* TODO.virt-top:
	Feature request 12.
	[694f9efe1428]

2007-10-18  "Richard W.M. Jones  <rjones@redhat.com>

	* configure.ac:
	Set version to 0.3.3.0 to match libvirt numbering.
	[3a0bd9c23c72]

	* MANIFEST:
	Updated MANIFEST.
	[a861bd04c1bb]

2007-10-17  "Richard W.M. Jones  <rjones@redhat.com>

	* TODO.virt-top:
	Added requests #10 & #11 from JMH.
	[afd189f4eb43]

	* virt-top/virt_top_main.ml:
	Don't call curses endwin if we are in script mode.
	[0e47b3c38cb6]

	* ChangeLog:
	Updated ChangeLog for previous changes
	[bcf7a7bae177]

	* Make.rules, Makefile.in, configure.ac, libvirt/Makefile.in,
	libvirt/libvirt.ml, libvirt/libvirt.mli, libvirt/libvirt_c.c,
	libvirt/libvirt_version.ml.in, libvirt/libvirt_version.mli,
	mlvirsh/Makefile.in, mlvirsh/mlvirsh.ml, mlvirtmanager/Makefile.in,
	mlvirtmanager/mlvirtmanager.ml,
	mlvirtmanager/mlvirtmanager_connections.ml,
	mlvirtmanager/mlvirtmanager_connections.mli,
	mlvirtmanager/mlvirtmanager_domain_ops.ml,
	mlvirtmanager/mlvirtmanager_domain_ops.mli,
	mlvirtmanager/mlvirtmanager_helpers.ml,
	mlvirtmanager/mlvirtmanager_helpers.mli,
	mlvirtmanager/mlvirtmanager_mainwindow.ml,
	mlvirtmanager/mlvirtmanager_mainwindow.mli, virt-df/Makefile.in,
	virt-df/virt_df.ml, virt-df/virt_df_ext2.ml, virt-
	df/virt_df_linux_swap.ml, virt-df/virt_df_lvm2.ml, virt-
	df/virt_df_main.ml, virt-top/Makefile.in, virt-top/virt-top.1, virt-
	top/virt-top.pod, virt-top/virt-top.txt, virt-top/virt_top.ml, virt-
	top/virt_top_csv.ml, virt-top/virt_top_main.ml, virt-
	top/virt_top_utils.ml, virt-top/virt_top_xml.ml:
	Added GNU GPL/LGPL copyright notices everywhere. Fixed display of
	time which was accidentally broken in previous code move.
	[c110cbf5d1e5]

	* Make.rules, Makefile.in, README, TODO.libvirt, TODO.virt-top,
	examples/Makefile.in, examples/list_domains.ml, libvirt/Makefile.in,
	libvirt/libvirt.ml, libvirt/libvirt.mli, libvirt/libvirt_c.c,
	libvirt/libvirt_version.ml.in, libvirt/libvirt_version.mli,
	mlvirsh/Makefile.in, mlvirsh/mlvirsh.ml, mlvirtmanager/Makefile.in,
	mlvirtmanager/mlvirtmanager.ml,
	mlvirtmanager/mlvirtmanager_connections.ml,
	mlvirtmanager/mlvirtmanager_connections.mli,
	mlvirtmanager/mlvirtmanager_domain_ops.ml,
	mlvirtmanager/mlvirtmanager_domain_ops.mli,
	mlvirtmanager/mlvirtmanager_helpers.ml,
	mlvirtmanager/mlvirtmanager_helpers.mli,
	mlvirtmanager/mlvirtmanager_mainwindow.ml,
	mlvirtmanager/mlvirtmanager_mainwindow.mli, virt-df/Makefile.in,
	virt-df/README, virt-df/virt_df.ml, virt-df/virt_df_ext2.ml, virt-
	df/virt_df_linux_swap.ml, virt-df/virt_df_lvm2.ml, virt-
	df/virt_df_main.ml, virt-top/Makefile.in, virt-top/README, virt-
	top/virt_top.ml, virt-top/virt_top_csv.ml, virt-
	top/virt_top_main.ml, virt-top/virt_top_utils.ml, virt-
	top/virt_top_xml.ml:
	Removed $Id$ everywhere. 'make distclean' now cleans more files.
	[be0c4d139d7e]

	* virt-top/virt-top.1, virt-top/virt-top.pod, virt-top/virt-top.txt,
	virt-top/virt_top.ml:
	Add the flags for enabling/disabling CPU, block and net stats.
	[4e7c75c75f75]

	* virt-top/.depend, virt-top/virt_top_csv.ml:
	Removed dep on libvirt & extlib -- unnecessary for this file.
	[d27e88125c19]

	* virt-top/virt_top.ml:
	Log domain data to CSV file.
	[04a4d4a249f5]

	* virt-top/README, virt-top/virt-top.1, virt-top/virt-top.pod, virt-
	top/virt-top.txt, virt-top/virt_top.ml, virt-top/virt_top_main.ml:
	Added --script option.

	Rearranged the code so that there are now separate functions to
	collect the data and update the display.
	[4e3ea38704be]

2007-09-27  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, Makefile.in, configure.ac, virt-df/Makefile.in, virt-
	df/README, virt-df/virt_df.ml, virt-df/virt_df_ext2.ml, virt-
	df/virt_df_linux_swap.ml, virt-df/virt_df_lvm2.ml, virt-
	df/virt_df_main.ml:
	* configure.ac: Changed version to 0.3.2.9.
		* Makefile.in: Re-enable virt-df.
		* virt-df/virt_df*.ml: Mostly finished off the core of virt-df.
	Ext2/3 support. No LVM as yet.
		* virt-df/README: Added README file.
	[0933cc22636a]

	* virt-top/README:
	Just fixed the README file.
	[50edb4413cab]

2007-09-24  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog:
	Updated ChangeLog.
	[93750c0a2bc8]

	* MANIFEST, configure.ac, virt-top/.depend, virt-top/Makefile.in,
	virt-top/virt-top.1, virt-top/virt-top.pod, virt-top/virt-top.txt,
	virt-top/virt_top.ml, virt-top/virt_top_utils.ml:
	Version 0.3.2.8. Added support for init files.
	[7ea9c0856152]

2007-09-20  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, virt-top/virt_top.ml:
	* virt-top/virt_top.ml: qemu:/// URIs (and others) don't support
	virConnectGetHostname. Catch this exception.
	[b6d1f67daf93]

	* ChangeLog, MANIFEST, Makefile.in:
	* Makefile.in: Disable virt-df in this release until I have
	time to fix it properly.
		* Makefile.in: Fix 'check-manifest' rule. Added 'make release'.
		* MANIFEST: Updated MANIFEST.
	[723daeca7dda]

	* ChangeLog, Makefile.in:
	* Makefile.in: Disable virt-df in this release until I have
	time to fix it properly.
	[3e344fb138b7]

2007-09-19  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, virt-top/virt_top.ml:
	* virt-top/virt_top.ml: Ignore transient error from
	C.num_of_defined_domains when it cannot contact xend; that
	was causing virt-top to exit when xend was restarted.
	[ecc011360271]

2007-09-18  "Richard W.M. Jones  <rjones@redhat.com>

	* ChangeLog, virt-df/virt_df.ml, virt-top/virt_top.ml:
	2007-09-18 Richard Jones <rjones@redhat.com>

	 * virt-df/virt_df.ml: Handle domains with partition-backed
	block devices.

	 * virt-top/virt_top.ml: Don't fail on older libvirt which
	would give an error if list_domains or
	list_defined_domains was called with n = 0.

	 * ChangeLog: Start tracking changes.
	[461106da1ff2]

2007-09-04  rjones  <rjones@amd>

	* .hgignore, Makefile.in, configure.ac, virt-df/Makefile.in, virt-
	df/virt_df.ml:
	Basic version, just prints the domains and disk/file mappings.
	[56fcfd4e96f9]

2007-08-30  "Richard W.M. Jones  <rjones@redhat.com>

	* examples/Makefile, libvirt/Makefile, mlvirsh/Makefile,
	mlvirtmanager/Makefile:
	Remove a few more generated files.
	[a9d1e8840b4c]

	* .cvsignore, .hgignore, examples/.cvsignore, libvirt/.cvsignore,
	libvirt/libvirt_version.ml, mlvirsh/.cvsignore,
	mlvirtmanager/.cvsignore, virt-top/.cvsignore, virt-top/Makefile:
	Convert .cvsignore files to .cvsignore files, and remove some
	generated files.
	[fe89f7c9bb2c]

2007-08-30  rjones  <rjones@localhost>

	* .cvsignore, COPYING, COPYING.LIB, MANIFEST, META.in, Make.rules,
	Makefile.in, README, TODO.libvirt, TODO.virt-top, aclocal.m4,
	config.h.in, configure.ac, examples/.cvsignore, examples/.depend,
	examples/Makefile, examples/Makefile.in, examples/list_domains.ml,
	install-sh, libvirt/.cvsignore, libvirt/.depend, libvirt/Makefile,
	libvirt/Makefile.in, libvirt/libvirt.ml, libvirt/libvirt.mli,
	libvirt/libvirt_c.c, libvirt/libvirt_version.ml,
	libvirt/libvirt_version.ml.in, libvirt/libvirt_version.mli,
	mlvirsh/.cvsignore, mlvirsh/.depend, mlvirsh/Makefile,
	mlvirsh/Makefile.in, mlvirsh/mlvirsh.ml, mlvirtmanager/.cvsignore,
	mlvirtmanager/.depend, mlvirtmanager/Makefile,
	mlvirtmanager/Makefile.in, mlvirtmanager/mlvirtmanager.ml,
	mlvirtmanager/mlvirtmanager_connections.ml,
	mlvirtmanager/mlvirtmanager_connections.mli,
	mlvirtmanager/mlvirtmanager_domain_ops.ml,
	mlvirtmanager/mlvirtmanager_domain_ops.mli,
	mlvirtmanager/mlvirtmanager_helpers.ml,
	mlvirtmanager/mlvirtmanager_helpers.mli,
	mlvirtmanager/mlvirtmanager_mainwindow.ml,
	mlvirtmanager/mlvirtmanager_mainwindow.mli, virt-top/.cvsignore,
	virt-top/.depend, virt-top/Makefile, virt-top/Makefile.in, virt-
	top/README, virt-top/virt-top.1, virt-top/virt-top.pod, virt-top
	/virt-top.txt, virt-top/virt_top.ml, virt-top/virt_top_csv.ml, virt-
	top/virt_top_main.ml, virt-top/virt_top_xml.ml:
	Initial import from CVS.
	[b8f5a54e6114]