-
Notifications
You must be signed in to change notification settings - Fork 1
/
06_trackers.php
62 lines (46 loc) · 3.72 KB
/
06_trackers.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
require_once('include/header.php.inc');
?>
<div id="content" class="content">
<h1>Issues</h1>
<p>PCGen maintains several <a href="http://jira.pcgen.org" title="You must log into JIRA in order to submit or monitor issues.">issues</a> to monitor development of Bugs, Feature Requests, Documentation, Output Sheets and more. This allows each specific issue to be tracked and managed over the lifespan of the project, and provides a historical record documenting why specific decisions were made.</p>
<!-- Karianna 26/04/2010 -->
<!-- Comment out Old tracking System -->
<!--
<h2>PCGen Trackers</h2>
<ul>
<li><a href="https://sourceforge.net/tracker/?atid=384719&group_id=25576&func=browse">Bugs</a> - Bug tracking system</li>
<li><a href="https://sourceforge.net/tracker/?atid=384722&group_id=25576&func=browse">Feature Requests</a> - Feature request tracking system</li>
<li><a href="https://sourceforge.net/tracker/?atid=384720&group_id=25576&func=browse">Support Requests</a> - Tech support tracking system</li>
</ul>
<h2>GMGen/Plugin Trackers</h2>
<ul>
<li><a href="https://sourceforge.net/tracker/?group_id=25576&atid=627102">Bugs</a> - GMGen bug tracking system</li>
<li><a href="https://sourceforge.net/tracker/?group_id=25576&atid=772045">Feature Requests</a> - GMGen feature request tracking system</li>
</ul>
<h2>Data Trackers</h2>
<ul>
<li><a href="https://sourceforge.net/tracker/?group_id=25576&atid=750091">Bugs</a> - Data bug tracking system</li>
<li><a href="https://sourceforge.net/tracker/?group_id=25576&atid=750092">Feature Requests</a> - Data feature request tracking system</li>
<li><a href="https://sourceforge.net/tracker/?atid=679269&group_id=25576&func=browse">New Source Material Requests</a> - Tracking system for new source material requests</li>
<li><a href="https://sourceforge.net/tracker/?atid=750093&group_id=25576&func=browse">prettylst.pl</a> - Tracking system for changes requests and bug reports for the <code>prettylst.pl</code> script</li>
</ul>
<h2>Documentation Trackers</h2>
<ul>
<li><a href="https://sourceforge.net/tracker/?atid=748234&group_id=25576&func=browse">Documentation Bugs</a> - Documentation bug tracking system</li>
<li><a href="https://sourceforge.net/tracker/?atid=748235&group_id=25576&func=browse">Documentation Feature Requests</a> - Documentation feature request tracking system</li>
</ul>
<h2>Output Sheet Trackers</h2>
<ul>
<li><a href="https://sourceforge.net/tracker/?atid=748296&group_id=25576&func=browse">Output Sheet Bugs</a> - Output sheet bug tracking system</li>
<li><a href="https://sourceforge.net/tracker/?atid=748297&group_id=25576&func=browse">Output Sheet Feature Requests</a> - Output sheet feature tracking system</li>
</ul>
-->
<h2>Submitting A New Tracker</h2>
<p>There are some <a href="http://pcgen.sourceforge.net/autobuilds/pcgen-docs/faqpages/faqsubmittingabugreport.html">Bug Submission Guidelines</a> and <a href="http://pcgen.sourceforge.net/autobuilds/pcgen-docs/faqpages/faqsubmittingafeaturerequest.html">Feature Request Submission Guidelines</a> to follow when submitting an issue.</p>
<h2>Monitoring Issues</h2>
<p>You may view a list of all the issues that you have submitted by customising a view in the JIRA system.</p>
</div> <!-- div content -->
<?php
require_once('include/footer.php.inc');
?>