Landing page for the Javadocs plugin.
Signed-off-by: Eric Williams <ericwill@redhat.com>
diff --git a/projectPages/javadocs/index.php b/projectPages/javadocs/index.php
new file mode 100644
index 0000000..64b7f2e
--- /dev/null
+++ b/projectPages/javadocs/index.php
@@ -0,0 +1,59 @@
+<?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'
+ $pageTitle = "Linux Tools Project - Javadocs Support";
+ $pageKeywords = "linux, eclipse, downloads";
+ $pageAuthor = "Eric Williams";
+
+ # Add page-specific Nav bars here
+ # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+ # $Nav->addNavSeparator("My Page Links", "downloads.php");
+ # $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
+ # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
+
+ # End: page-specific settings
+ #
+
+ # Paste your HTML content between the EOHTML markers!
+ $html = <<<EOHTML
+
+ <div id="midcolumn">
+ <h1>$pageTitle</h1>
+
+ <h2>Overview</h2>
+ <p>
+ The Linux Tools Javadocs plugin displays Javadoc documents in Eclipse's built in
+ help system. For example, if one were to install a Javadoc package (i.e., xmvn-javadoc),
+ the Javadocs from that package would be browseable in the Eclipse help system. This plugin
+ is also capable of crawling user specified directories, and displaying the Javadocs within
+ those directories in the Eclipse help system.
+ </p>
+
+ <h2>Current Status</h2>
+ <p>
+ By default the plugin crawls /usr/share/javadoc for valid Javadocs to display. It can also display Javadocs
+ present in user specified directories.
+ </p>
+
+ <h2>Future Plans</h2>
+ <ul>
+ <li> Allow indexing and searching of Javadocs within the Eclipse help system </li>
+ </ul>
+
+ <h2>Try it out</h2>
+ <p>
+ You can download the plugin from our <a href="http://www.eclipse.org/linuxtools/downloads.php">update site</a>, or
+ check the project plugins out of Git directly from eclipse.org at git://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git.
+ <br/><br/>
+ </p>
+ <br/><br/><br/>
+ </div>
+
+
+ <div id="rightcolumn">
+ </div>
+
+EOHTML;
+
+
+ # Generate the web page
+ $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>