blob: 56d99c0c7c034eb060929649f720db3db6bf6602 [file] [log] [blame]
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
/* 221934 - this page to remain on eclipse.org */
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/classes/projects/projectInfoData.class.php"); // use the project info system
$pageTitle = "Search Eclipse Projects";
include( '_commonLeftNav.php' );
ob_start();
?>
<style>
a.info{
position:relative; /*this is the key*/
z-index:24;
text-decoration:none}
a.info:hover{z-index:25; background-color:#ccc}
a.info span{display: none}
a.info:hover span{ /*the span will display just on :hover state*/
display:block;
position:absolute;
top:2em; left:-4em; width:8em;
border:1px solid #000;
background-color:#eee; color:#000;
text-align: center}
</style>
<div id="maincontent">
<div id="midcolumn">
<div class="homeitem3col">
<h3><a name="Search"></a>Search</h3>
<div style="margin: 5px">
Use Google to search over the Eclipse projects. <br>
Search for a project
name or a specific technology (or even two technologies!).
<p>
<!-- Google CSE Search Box Begins -->
<form action="http://www.google.com/cse"
id="searchbox_017941334893793413703:sqfrdtd112s">
<input type="hidden" name="cx" value="017941334893793413703:sqfrdtd112s" />
Google the Eclipse projects: <input type="text" name="q" size="60" <?php if( !is_null($_GET['q']) && isset($_GET['q']) )print("value=\"".htmlentities($_GET["q"])."\""); ?> />
<input type="submit" name="sa" value="Search" />
</form>
<script type="text/javascript"
src="http://www.google.com/coop/cse/brand?form=searchbox_017941334893793413703%3Asqfrdtd112s&lang=en"></script>
<!-- Google CSE Search Box Ends -->
</div>
</div><!-- homeitem3col -->
<div style="margin-left: -20px">
<img src="images/searchother.gif">
</div>
</div><!-- midcolumn -->
</div><!-- maincontent -->
<?php
# Paste your HTML content between the EOHTML markers!
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>