diff options
author | Steven Knight <knight@baldmt.com> | 2006-08-05 12:51:11 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2006-08-05 12:51:11 (GMT) |
commit | 4b793651905d79e84995258d384a773cb2638623 (patch) | |
tree | 7d1ac089e28af2b59fb3303a8d23bbbb65a62192 | |
parent | dd9bbc79353ae90b2402c16b1613dad4e502d250 (diff) | |
download | SCons-4b793651905d79e84995258d384a773cb2638623.zip SCons-4b793651905d79e84995258d384a773cb2638623.tar.gz SCons-4b793651905d79e84995258d384a773cb2638623.tar.bz2 |
Try to customize our "Issue Tracker" page by adding a project_issues.html
file (which is how the Subversion project does it).
Begin by just trying to replicate the current layout with an added line.
-rw-r--r-- | www/project_issues.html | 87 | ||||
-rw-r--r-- | www/project_tools.html | 11 |
2 files changed, 93 insertions, 5 deletions
diff --git a/www/project_issues.html b/www/project_issues.html new file mode 100644 index 0000000..5555c56 --- /dev/null +++ b/www/project_issues.html @@ -0,0 +1,87 @@ +<div id="projectissues" class="application"> + + +<table class="axial"> + + <tr> + <th><a href="http://scons.tigris.org/issues/query.cgi">Query database</a></th> + <td> + Search for issues and defects here or find a specific issue. Always search first before reporting an issue to avoid duplication. + <form id="ProjectIssuesForm" method="get" action="http://scons.tigris.org/issues/show_bug.cgi"> + <p> + <input type="submit" value="Find" /> Issue # <input name="id" size="6" /> + + </p> + </form> + </td> +</tr> + + + <tr> + <th>Enter an issue</th> + <td> + + To enter an issue, you must first be a project member and know the component you want to report on. + + + +<p> + +Enter: +</p> + <ul> + <li><a href="http://scons.tigris.org/issues/enter_bug.cgi?issue_type=DEFECT">Defect</a></li> + <li><a href="http://scons.tigris.org/issues/enter_bug.cgi?issue_type=PATCH">Patch</a></li> + <li><a href="http://scons.tigris.org/issues/enter_bug.cgi?issue_type=TASK">Task</a></li> + <li><a href="http://scons.tigris.org/issues/enter_bug.cgi?issue_type=FEATURE">Feature</a></li> + <li><a href="http://scons.tigris.org/issues/enter_bug.cgi?issue_type=ENHANCEMENT">Enhancement</a></li> + +</ul> + </td> +</tr> + + + + <tr> + <th><a href="http://scons.tigris.org/issues/buglist.cgi?cmdtype=runuserdefault">My issues</a></th> + <td> + View both active issues assigned to you and those that you have entered. + </td> +</tr> + <tr> + <th><a href="http://scons.tigris.org/issues/userprefs.cgi">My preferences</a></th> + + <td> + View and edit your Issue Tracker user settings. + </td> +</tr> + + <tr> + <th><a href="http://scons.tigris.org/issues/reports.cgi">Reports</a></th> + <td> + Generate and view issue tracking reports. + </td> +</tr> + + + + <tr> + <th><a href="http://scons.tigris.org/issues/admin.cgi">Configuration options </a> + </th> + <td> + Add, view and edit Issue Tracker configuration parameters, including project member permissions, issue tracking groups, project components and subcomponents, etc. + </td> +</tr> + + + + <tr> + <th>Common queries + </th> + <td> + Placeholder for links to queries of open/closed bugs, patches, etc. + </td> +</tr> + +</table> +</div> diff --git a/www/project_tools.html b/www/project_tools.html index 242096c..201a6ef 100644 --- a/www/project_tools.html +++ b/www/project_tools.html @@ -9,14 +9,15 @@ <dd> <li> -<a href="/servlets/ProjectIssues">Issue Tracker</a> +<!-- <a href="/servlets/ProjectIssues">Issue Tracker</a> --> +<a href="/project_issues.html">Issue Tracker</a> <ul> -<li><a href="http://scons.tigris.org/bug-submission.html">Report a Bug</a></li> -<li><a href="http://scons.tigris.org/patch-submission.html">Submit a Patch</a></li> -<li><a href="http://scons.tigris.org/feature-request.html">Request a Feature</a></li> +<li><a href="/bug-submission.html">Report a Bug</a></li> +<li><a href="/patch-submission.html">Submit a Patch</a></li> +<li><a href="/feature-request.html">Request a Feature</a></li> </ul> </li> </dd> <dd> -<li><a href="http://scons.tigris.org/roadmap.html">Road map</a></li> +<li><a href="/roadmap.html">Road map</a></li> |