blob: 418ade5f614962af04ca183bcf01bd26e87e32b5 [file] [log] [blame]
aclement3335b932006-05-19 14:42:19 +00001<?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'
2
3 #*****************************************************************************
4 #
5 # template.php
6 #
7 # Author: Denis Roy
8 # Date: 2005-06-16
9 #
10 # Description: Type your page comments here - these are not sent to the browser
11 #
12 #
13 #****************************************************************************
14
15 #
16 # Begin: page-specific settings. Change these.
17 $pageTitle = "AspectJ Bugs";
mchapman637802b2006-10-26 14:08:11 +000018 $pageKeywords = "AspectJ, AJDT, Aspect Oriented Software Development, Eclipse";
aclement3335b932006-05-19 14:42:19 +000019 $pageAuthor = "Andy Clement";
20
21 # Add page-specific Nav bars here
22 # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
23 # $Nav->addNavSeparator("My Page Links", "downloads.php");
24 # $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
25 # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
26
27 # End: page-specific settings
28 #
mchapman637802b2006-10-26 14:08:11 +000029
aclement3335b932006-05-19 14:42:19 +000030 # Paste your HTML content between the EOHTML markers!
31 $html = <<<EOHTML
32
33<div id="maincontent">
34 <div id="midcolumn">
35
mchapman637802b2006-10-26 14:08:11 +000036 <h1>Bugs</h1>
aclement3335b932006-05-19 14:42:19 +000037
38<p>The best way to report a problem or request a new feature in AspectJ
39is to use the Bugzilla system. Here are some useful links to get you
40started:</p>
41
42 <div class="homeitem3col">
43 <h3>Bugzilla Links</h3>
44 <ul>
45 <li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&product=AspectJ&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=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=blocker&bug_severity=critical&bug_severity=major&bug_severity=normal&bug_severity=minor&bug_severity=trivial&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=">
46 Show open bug reports</a>
47 <li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&product=AspectJ&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=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=enhancement&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=">
48 Show open enhancement requests</a>
49 <li><a href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=AspectJ">
50 Report a new bug or enhancement</a>
51 </ul>
52 </div>
53
54 <hr class="clearer" />
55 </div>
56
aclement3335b932006-05-19 14:42:19 +000057</div>
58
59
60EOHTML;
61
62
63 # Generate the web page
64 $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
65?>