| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
| <?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' |
| |
| #***************************************************************************** |
| # |
| # |
| #**************************************************************************** |
| |
| # |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "PDE Incubator Dependency Visualization"; |
| $pageKeywords = "pde, build, ui, plug-in, development, environment, bundle, incubator, visualization, zest"; |
| |
| # 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 markers! |
| ob_start(); |
| ?> |
| |
| <html> |
| <head> |
| <meta name="generator" content="HTML Tidy, see www.w3.org"> |
| |
| <title></title> |
| </head> |
| |
| <body> |
| <div id="midcolumn"> |
| <h1><?= $pageTitle ?> |
| </h1> |
| |
| <p class="bar">Overview</p> |
| |
| <p>The dependency visualization aims to provide a set |
| of views to assist with plug-in dependency analysis |
| tasks. In particular, the views will provide cognitive |
| support to people as they attempt to understand the |
| dependencies between their plug-ins.<br> |
| <br> |
| This tool is part of the <a href= |
| "http://www.eclipse.org/eclipse/incubator">Eclipse |
| Incubator</a> project. For a complete description of |
| Eclipse incubation please read <a href= |
| "http://www.eclipse.org/projects/what-is-incubation.php"> |
| this.</a></p> |
| <img alt="" width="600px" src= |
| "images/pde_graph_view.JPG"> |
| |
| <p class="bar">Bugs and Feature Requests</p> |
| We use the <a href= |
| "https://bugs.eclipse.org/bugs/">Eclipse Bugzilla |
| System</a> for tracking issues with the Plug-in |
| Dependency Visualization Incubator project.<br> |
| <br> |
| Click <a href= |
| "https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=%5Bpde+viz%5D&classification=Eclipse&product=PDE&component=Incubators&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0="> |
| here</a> for a list of currently opened bugs.<br> |
| <br> |
| |
| |
| <p class="bar">M2 Available</p> |
| <a href="new/index.php"> New & Noteworthy</a> (2009-04-13) |
| |
| <br><br> |
| <ul> |
| <li> |
| <b>http://download.eclipse.org/eclipse/pde/incubator/visualization/site</b>(Eclipse 3.4 or later) |
| </li> |
| </ul> |
| |
| <br> |
| |
| <p class="bar">Accessing Source Code</p> |
| The PDE Dependency Visualization tool is |
| available in CVS. The tool is built using the <a href= |
| "http://www.eclipse.org/mylar/zest.php">Zest</a> |
| toolkit and <a href= |
| "http://www.eclipse.org/gef/">Draw2D</a>. In order to |
| get the source and build the PDE Dependency |
| Visualization Tool follow the instructions found <a |
| href="getsource.php">here</a>.<br> |
| <br> |
| |
| </div> |
| <?php |
| include $_SERVER['DOCUMENT_ROOT'] . "/pde/incubator/component-links.html"; |
| if (file_exists("dir-links.html")) {include "dir-links.html";} |
| ?><?php |
| $html = ob_get_contents(); |
| ob_end_clean(); |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |
| </body> |
| </html> |
| |