index.html.in 3.2 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE html>
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
  <head>
5 6 7
    <script type="text/javascript" src="js/jquery-3.1.1.min.js"> </script>
    <script type="text/javascript" src="js/moment.min.js"> </script>
    <script type="text/javascript" src="js/jquery.rss.min.js"> </script>
8 9 10 11 12 13 14 15 16 17 18 19 20 21

    <script type="text/javascript">
      <!--
      jQuery(function($) {
        $("#planet").rss("http://planet.virt-tools.org/atom.xml", {
          ssl: true,
          layoutTemplate: '<dl>{entries}</dl>',
          entryTemplate: '<dt><a href="{url}">{title}</a></dt><dd>by {author} on {date}</li>',
          dateFormat: 'DD MMM YYYY'
        })
      })
      // -->
    </script>
  </head>
22
  <body class="index">
23 24
    <h1>The virtualization API</h1>

25
    <div class="panel">
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
      <h2>Introduction</h2>
      <p>
        The libvirt project:
      </p>
      <ul>
        <li>is a toolkit to manage virtualization hosts</li>
        <li>is accessible from C, Python, Perl, Java and more</li>
        <li>is licensed under open source licenses</li>
        <li>supports <a href="drvqemu.html">KVM</a>,
          <a href="drvqemu.html">QEMU</a>, <a href="drvxen.html">Xen</a>,
          <a href="drvvirtuozzo.html">Virtuozzo</a>,
          <a href="drvesx.html">VMWare ESX</a>,
          <a href="drvlxc.html">LXC</a>,
          <a href="drvbhyve.html">BHyve</a> and
          <a href="drivers.html">more</a></li>
        <li>targets Linux, FreeBSD, <a href="windows.html">Windows</a> and OS-X</li>
42
        <li>is used by many <a href="apps.html">applications</a></li>
43
      </ul>
44
      <p>Recent / forthcoming <a href="news.html">release changes</a></p>
45
    </div>
46

47
    <div class="panel">
48 49 50 51 52 53 54
      <h2>Quick Links</h2>

      <dl>
        <dt><a href="contribute.html">New contributors</a></dt>
        <dd>Get involved in the libvirt community &amp; student outreach programs</dd>

        <dt><a href="securityprocess.html">Security vulnerabilities</a></dt>
55
        <dd>View security notices and report vulnerabilities to the libvirt security response team</dd>
56

57 58
        <dt><a href="bugs.html">Bug reporting</a></dt>
        <dd>View and report bugs in libvirt packages</dd>
59

60 61
        <dt><a href="format.html">XML configuration</a></dt>
        <dd>Description of the XML schemas for
62 63 64 65 66 67 68 69 70 71
          <a href="formatdomain.html">domains</a>,
          <a href="formatnetwork.html">networks</a>,
          <a href="formatnwfilter.html">network filtering</a>,
          <a href="formatstorage.html">storage</a>,
          <a href="formatstorageencryption.html">storage encryption</a>,
          <a href="formatcaps.html">capabilities</a>,
          <a href="formatdomaincaps.html">domain capabilities</a>,
          <a href="formatnode.html">node devices</a>,
          <a href="formatsecret.html">secrets</a>,
          <a href="formatsnapshot.html">snapshots</a></dd>
72 73 74
        <dt><a href="http://wiki.libvirt.org">Wiki</a></dt>
        <dd>Read further community contributed content</dd>
      </dl>
75 76 77
    </div>

    <div class="panel">
78 79 80
      <h2>Blog Planet</h2>
      <div id="planet">
      </div>
81

82 83 84
      <p>
        Read more on the <a href="http://planet.virt-tools.org/">Virt Tools blog planet</a>
      </p>
85 86 87
    </div>

    <br class="clear"/>
88 89 90

  </body>
</html>