summaryrefslogtreecommitdiffstats
path: root/mlvirtmanager
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2007-10-17 16:34:23 +0100
committerRichard W.M. Jones <rjones@redhat.com>2007-10-17 16:34:23 +0100
commit9bb5f67c0d8a6e8dad7de72e2488ee73c90f7d43 (patch)
tree6018351784418e4ae965f353c4e96719c4009a5e /mlvirtmanager
parent0e09861c06a0c274bcfdacceaee347f8aaa969cb (diff)
downloadvirt-top-9bb5f67c0d8a6e8dad7de72e2488ee73c90f7d43.tar.gz
virt-top-9bb5f67c0d8a6e8dad7de72e2488ee73c90f7d43.tar.xz
virt-top-9bb5f67c0d8a6e8dad7de72e2488ee73c90f7d43.zip
Added GNU GPL/LGPL copyright notices everywhere.
Fixed display of time which was accidentally broken in previous code move.
Diffstat (limited to 'mlvirtmanager')
-rw-r--r--mlvirtmanager/Makefile.in17
-rw-r--r--mlvirtmanager/mlvirtmanager.ml14
-rw-r--r--mlvirtmanager/mlvirtmanager_connections.ml14
-rw-r--r--mlvirtmanager/mlvirtmanager_connections.mli14
-rw-r--r--mlvirtmanager/mlvirtmanager_domain_ops.ml14
-rw-r--r--mlvirtmanager/mlvirtmanager_domain_ops.mli14
-rw-r--r--mlvirtmanager/mlvirtmanager_helpers.ml14
-rw-r--r--mlvirtmanager/mlvirtmanager_helpers.mli14
-rw-r--r--mlvirtmanager/mlvirtmanager_mainwindow.ml14
-rw-r--r--mlvirtmanager/mlvirtmanager_mainwindow.mli14
10 files changed, 143 insertions, 0 deletions
diff --git a/mlvirtmanager/Makefile.in b/mlvirtmanager/Makefile.in
index d21968c..15e55c6 100644
--- a/mlvirtmanager/Makefile.in
+++ b/mlvirtmanager/Makefile.in
@@ -1,3 +1,20 @@
+# mlvirtmanager
+# Copyright (C) 2007 Red Hat Inc., Richard W.M. Jones
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
INSTALL := @INSTALL@
prefix = @prefix@
diff --git a/mlvirtmanager/mlvirtmanager.ml b/mlvirtmanager/mlvirtmanager.ml
index 010e832..12382fe 100644
--- a/mlvirtmanager/mlvirtmanager.ml
+++ b/mlvirtmanager/mlvirtmanager.ml
@@ -1,6 +1,20 @@
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*)
open Printf
diff --git a/mlvirtmanager/mlvirtmanager_connections.ml b/mlvirtmanager/mlvirtmanager_connections.ml
index a91db62..e72ffcd 100644
--- a/mlvirtmanager/mlvirtmanager_connections.ml
+++ b/mlvirtmanager/mlvirtmanager_connections.ml
@@ -1,6 +1,20 @@
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*)
open Printf
diff --git a/mlvirtmanager/mlvirtmanager_connections.mli b/mlvirtmanager/mlvirtmanager_connections.mli
index f05d140..7d4102c 100644
--- a/mlvirtmanager/mlvirtmanager_connections.mli
+++ b/mlvirtmanager/mlvirtmanager_connections.mli
@@ -2,6 +2,20 @@
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
Handle connections and the complicated GtkTreeView which
displays the connections / domains.
*)
diff --git a/mlvirtmanager/mlvirtmanager_domain_ops.ml b/mlvirtmanager/mlvirtmanager_domain_ops.ml
index b5fa09a..6de6c59 100644
--- a/mlvirtmanager/mlvirtmanager_domain_ops.ml
+++ b/mlvirtmanager/mlvirtmanager_domain_ops.ml
@@ -2,6 +2,20 @@
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
Domain operations buttons.
*)
diff --git a/mlvirtmanager/mlvirtmanager_domain_ops.mli b/mlvirtmanager/mlvirtmanager_domain_ops.mli
index af8902f..fd1bfc9 100644
--- a/mlvirtmanager/mlvirtmanager_domain_ops.mli
+++ b/mlvirtmanager/mlvirtmanager_domain_ops.mli
@@ -2,6 +2,20 @@
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
Domain operations buttons.
*)
diff --git a/mlvirtmanager/mlvirtmanager_helpers.ml b/mlvirtmanager/mlvirtmanager_helpers.ml
index 3605102..859b8f2 100644
--- a/mlvirtmanager/mlvirtmanager_helpers.ml
+++ b/mlvirtmanager/mlvirtmanager_helpers.ml
@@ -1,6 +1,20 @@
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*)
module C = Libvirt.Connect
diff --git a/mlvirtmanager/mlvirtmanager_helpers.mli b/mlvirtmanager/mlvirtmanager_helpers.mli
index 4129eb7..25c5417 100644
--- a/mlvirtmanager/mlvirtmanager_helpers.mli
+++ b/mlvirtmanager/mlvirtmanager_helpers.mli
@@ -2,6 +2,20 @@
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
Helper functions.
*)
diff --git a/mlvirtmanager/mlvirtmanager_mainwindow.ml b/mlvirtmanager/mlvirtmanager_mainwindow.ml
index 1a590e9..918c9a6 100644
--- a/mlvirtmanager/mlvirtmanager_mainwindow.ml
+++ b/mlvirtmanager/mlvirtmanager_mainwindow.ml
@@ -1,6 +1,20 @@
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*)
open Printf
diff --git a/mlvirtmanager/mlvirtmanager_mainwindow.mli b/mlvirtmanager/mlvirtmanager_mainwindow.mli
index 89eebc1..22fce47 100644
--- a/mlvirtmanager/mlvirtmanager_mainwindow.mli
+++ b/mlvirtmanager/mlvirtmanager_mainwindow.mli
@@ -2,6 +2,20 @@
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
Make the main window.
*)