search.php 10.9 KB
Newer Older
D
Daniel Veillard 已提交
1 2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
D
Daniel Veillard 已提交
3 4 5 6 7 8 9 10
<!--
        This file is autogenerated from the PHP output
        Do not edit this file. Changes will be lost.
      -->
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <link rel="stylesheet" type="text/css" href="main.css" />
    <link rel="SHORTCUT ICON" href="32favicon.png" />
D
Daniel Veillard 已提交
11
    <title>Search the documentation on Libvir.org</title>
D
Daniel Veillard 已提交
12
    <meta name="description" content="libvirt, virtualization, virtualization API" />
D
Daniel Veillard 已提交
13 14
  </head>
  <body>
D
Daniel Veillard 已提交
15 16 17 18 19
    <div id="header">
      <div id="headerLogo"></div>
    </div>
    <div id="body">
      <div id="content">
20 21
<?php
    $query = $_GET['query'];
22
    // We handle only the first argument so far
23 24 25 26
    $query = ltrim ($query);
    if (! $query) {
        echo "<h1 align='center'>Search the documentation on Libvir.org</h1>";
    }
27
    $scope = $_GET['scope'];
28 29 30 31 32 33 34
    if ($scope == NULL)
        $scope = "any";
    $scope = ltrim ($scope);
    if ($scope == "")
        $scope = "any";

?>
D
Daniel Veillard 已提交
35
<p> The search service indexes the libvirt APIs and documentation as well as the libvir-list@redhat.com mailing-list archives. To use it simply provide a set of keywords:</p>
36
<form action="<?php echo $_SERVER['PHP_SELF'], "?query=", rawurlencode($query) ?>"
D
Daniel Veillard 已提交
37 38
      enctype="application/x-www-form-urlencoded" method="get">
  <input name="query" type="text" size="50" value="<?php echo $query?>"/>
39 40
  <select name="scope">
    <option value="any">Search All</option>
D
Daniel Veillard 已提交
41
    <option value="API" <?php if ($scope == 'API') print "selected='selected'"?>>Only the APIs</option>
42 43 44
    <option value="DOCS" <?php if ($scope == 'DOCS') print "selected"?>>Only the Documentation</option>
    <option value="LISTS" <?php if ($scope == 'LISTS') print "selected"?>>Only the lists archives</option>
  </select>
D
Daniel Veillard 已提交
45
  <input name="submit" type="submit" value="Search ..."/>
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
</form>
<?php
    function logQueryWord($word) {
        $result = mysql_query ("SELECT ID,Count FROM Queries WHERE Value='$word'");
	if ($result) {
	    $i = mysql_num_rows($result);
	    if ($i == 0) {
	        mysql_free_result($result);
		mysql_query ("INSERT INTO Queries (Value,Count) VALUES ('$word',1)");
	    } else {
	        $id = mysql_result($result, 0, 0);
		$count = mysql_result($result, 0, 1);
		$count ++;
		mysql_query ("UPDATE Queries SET Count=$count WHERE ID=$id");
	    }
	} else {
	    mysql_query ("INSERT INTO Queries (Value,Count) VALUES ('$word',1)");
	}
    }
    function queryWord($word) {
        $result = NULL;
	$j = 0;
        if ($word) {
	    $result = mysql_query ("SELECT words.relevance, symbols.name, symbols.type, symbols.module, symbols.descr FROM words, symbols WHERE LCASE(words.name) LIKE LCASE('$word') and words.symbol = symbols.name ORDER BY words.relevance DESC LIMIT 75");
	    if ($result) {
		$j = mysql_num_rows($result);
72
		if ($j == 0)
73 74 75 76 77 78 79 80 81 82 83 84 85
		    mysql_free_result($result);
	    }
	    logQueryWord($word);
	}
	return array($result, $j);
    }
    function queryHTMLWord($word) {
        $result = NULL;
	$j = 0;
        if ($word) {
	    $result = mysql_query ("SELECT relevance, name, id, resource, section FROM wordsHTML WHERE LCASE(name) LIKE LCASE('$word') ORDER BY relevance DESC LIMIT 75");
	    if ($result) {
		$j = mysql_num_rows($result);
86
		if ($j == 0)
87 88 89 90 91 92 93 94 95 96
		    mysql_free_result($result);
	    }
	    logQueryWord($word);
	}
	return array($result, $j);
    }
    function queryArchiveWord($word) {
        $result = NULL;
	$j = 0;
        if ($word) {
D
Daniel Veillard 已提交
97
	    $result = mysql_query ("SELECT wordsArchive.relevance, wordsArchive.name, 'libvir-list', archives.resource, archives.title FROM wordsArchive, archives WHERE LCASE(wordsArchive.name) LIKE LCASE('$word') and wordsArchive.ID = archives.ID ORDER BY relevance DESC LIMIT 75");
98 99
	    if ($result) {
		$j = mysql_num_rows($result);
100
		if ($j == 0)
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
		    mysql_free_result($result);
	    }
	    logQueryWord($word);
	}
	return array($result, $j);
    }
    function resSort ($a, $b) {
	list($ra,$ta,$ma,$na,$da) = $a;
	list($rb,$tb,$mb,$nb,$db) = $b;
	if ($ra == $rb) return 0;
	return ($ra > $rb) ? -1 : 1;
    }
    if (($query) && (strlen($query) <= 50)) {
	$link = mysql_connect ("localhost", "nobody");
	if (!$link) {
	    echo "<p> Could not connect to the database: ", mysql_error();
	} else {
	    mysql_select_db("libvir", $link);
	    $list = explode (" ", $query);
	    $results = array();
	    $number = 0;
	    for ($number = 0;$number < count($list);$number++) {

		$word = $list[$number];
		if (($scope == 'any') || ($scope == 'API')) {
		    list($result, $j) = queryWord($word);
		    if ($j > 0) {
			for ($i = 0; $i < $j; $i++) {
			    $relevance = mysql_result($result, $i, 0);
			    $name = mysql_result($result, $i, 1);
			    $type = mysql_result($result, $i, 2);
			    $module = mysql_result($result, $i, 3);
			    $desc = mysql_result($result, $i, 4);
			    if (array_key_exists($name, $results)) {
				list($r,$t,$m,$d,$w,$u) = $results[$name];
				$results[$name] = array(($r + $relevance) * 2,
							$t,$m,$d,$w,$u);
			    } else {
				$id = $name;
				$m = strtolower($module);
141
				$url = "html/libvirt-$module.html#$id";
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
				$results[$name] = array($relevance,$type,
						$module, $desc, $name, $url);
			    }
			}
			mysql_free_result($result);
		    }
		}
		if (($scope == 'any') || ($scope == 'DOCS')) {
		    list($result, $k) = queryHTMLWord($word);
		    if ($k > 0) {
			for ($i = 0; $i < $k; $i++) {
			    $relevance = mysql_result($result, $i, 0);
			    $name = mysql_result($result, $i, 1);
			    $id = mysql_result($result, $i, 2);
			    $module = mysql_result($result, $i, 3);
			    $desc = mysql_result($result, $i, 4);
			    $url = $module;
			    if ($id != "") {
				$url = $url + "#$id";
			    }
			    $results["$name _html_ $number _ $i"] =
					  array($relevance, "XML docs",
						$module, $desc, $name, $url);
			}
			mysql_free_result($result);
		    }
		}
		if (($scope == 'any') || ($scope == 'LISTS')) {
		    list($result, $j) = queryArchiveWord($word);
		    if ($j > 0) {
			for ($i = 0; $i < $j; $i++) {
			    $relevance = mysql_result($result, $i, 0);
			    $name = mysql_result($result, $i, 1);
			    $type = mysql_result($result, $i, 2);
			    $url = mysql_result($result, $i, 3);
			    $desc = mysql_result($result, $i, 4);
			    if (array_key_exists($url, $results)) {
				list($r,$t,$m,$d,$w,$u) = $results[$url];
				$results[$name] = array(($r + $relevance) * 2,
							$t,$m,$d,$w,$u);
			    } else {
				$id = $name;
				$m = strtolower($module);
				$u = str_replace(
186
			"http://www.redhat.com/archives/libvir-list/", "", $url);
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
				$results[$url] = array($relevance,$type,
						$u, $desc, $name, $url);
			    }
			}
			mysql_free_result($result);
		    }
		}
	    }
	    if ((count($results) == 0) && (count($list) == 1)) {
		$word = $list[0];
		if (($scope == 'any') || ($scope == 'XMLAPI')) {
		    list($result, $j) = queryWord("vir$word");
		    if ($j > 0) {
			for ($i = 0; $i < $j; $i++) {
			    $relevance = mysql_result($result, $i, 0);
			    $name = mysql_result($result, $i, 1);
			    $type = mysql_result($result, $i, 2);
			    $module = mysql_result($result, $i, 3);
			    $desc = mysql_result($result, $i, 4);
			    if (array_key_exists($name, $results)) {
				list($r,$t,$m,$d,$w,$u) = $results[$name];
				$results[$name] = array(($r + $relevance) * 2,
							$t,$m,$d,$w,$u);
			    } else {
				$id = $name;
				$m = strtolower($module);
213
				$url = "html/libvirt-$module.html#$id";
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
				$results[$name] = array($relevance,$type,
						$module, $desc, $name, $url);
			    }
			}
			mysql_free_result($result);
		    }
		}
	    }
	    mysql_close($link);
	    $nb = count($results);
	    echo "<h3 align='center'>Found $nb results for query $query</h3>\n";
	    usort($results, "resSort");

            if ($nb > 0) {
		printf("<table><tbody>\n");
		printf("<tr><td>Quality</td><td>Symbol</td><td>Type</td><td>module</td><td>Description</td></tr>\n");
		$i = 0;
		while (list ($name, $val) = each ($results)) {
		    list($r,$t,$m,$d,$s,$u) = $val;
		    $m = str_replace("<", "&lt;", $m);
		    $s = str_replace("<", "&lt;", $s);
		    $d = str_replace("<", "&lt;", $d);
		    echo "<tr><td>$r</td><td><a href='$u'>$s</a></td><td>$t</td><td>$m</td><td>$d</td></tr>";
		    $i = $i + 1;
		    if ($i > 75)
		        break;
		}
		printf("</tbody></table>\n");
	    }
	}
    }
?>
D
Daniel Veillard 已提交
246
      <img src="libvirtLogo.png" alt="libvirt Logo" />
D
Daniel Veillard 已提交
247
      </div>
D
Daniel Veillard 已提交
248 249 250 251 252 253 254 255 256 257 258 259
      <div id="menu">
        <ul class="l0"><li>
            <span class="active">Home</span>
          </li><li>
            <a title="Details of new features and bugs fixed in each release" class="inactive" href="news.html">News</a>
          </li><li>
            <a title="Get the latest source releases, binary builds and get access to the source repository" class="inactive" href="downloads.html">Downloads</a>
          </li><li>
            <a title="Information for users, administrators and developers" class="inactive" href="docs.html">Documentation</a>
          </li><li>
            <a title="User contributed content" class="inactive" href="http://wiki.libvirt.org">Wiki</a>
          </li><li>
C
Cole Robinson 已提交
260
            <a title="Frequently asked questions" class="inactive" href="http://wiki.libvirt.org/page/FAQ">FAQ</a>
D
Daniel Veillard 已提交
261 262 263 264 265 266 267 268 269
          </li><li>
            <a title="How and where to report bugs and request features" class="inactive" href="bugs.html">Bug reports</a>
          </li><li>
            <a title="How to contact the developers via email and IRC" class="inactive" href="contact.html">Contact</a>
          </li><li>
            <a title="Miscellaneous links of interest related to libvirt" class="inactive" href="relatedlinks.html">Related Links</a>
          </li><li>
            <a title="Overview of all content on the website" class="inactive" href="sitemap.html">Sitemap</a>
          </li></ul>
D
Daniel Veillard 已提交
270
      </div>
D
Daniel Veillard 已提交
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
    </div>
    <div id="footer">
      <div id="projects">
        <dl id="p1"><dt>
            <a href="http://augeas.net/">Augeas</a>
          </dt><dd>
            <span>A configuration editing tool and API</span>
          </dd><dt>
            <a href="http://libvirt.org/">libvirt</a>
          </dt><dd>
            <span>The open source virtualization API</span>
          </dd></dl>
        <dl id="p2"><dt>
            <a href="http://cobbler.et.redhat.com/">Cobbler</a>
          </dt><dd>
            <span>OS provisioning and profile management</span>
          </dd><dt>
            <a href="http://ovirt.org/">oVirt</a>
          </dt><dd>
            <span>Virtualization management across the data center</span>
          </dd></dl>
        <dl id="p3"><dt>
            <a href="http://freeipa.org/">FreeIPA</a>
          </dt><dd>
            <span>Identity, policy and audit management</span>
          </dd><dt>
            <a href="http://virt-manager.org/">Virtual Machine Manager</a>
          </dt><dd>
            <span>Virtualization management from the desktop</span>
          </dd></dl>
D
Daniel Veillard 已提交
301 302 303
      </div>
    </div>
  </body>
304
</html>