Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/issues.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/issues.html?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/issues.html (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/issues.html Wed Nov 16 22:14:47 2011
@@ -0,0 +1,225 @@
+<html>
+ <head>
+ <meta HTTP-EQUIV="content-type" CONTENT="text/html; charset=UTF-8">
+ </head>
+ <body>
+ <h2>Got Issues?</h2>
+ <p><i>Last updated 2002-06-03</i></p>
+ <br>
+ <h4>Why "Issues" And Not "Bugs"?</h4>
+ <p>Not all 'issues' are DEFECTS, which are more commonly known as
+ "bugs." Some issues will be <i>FEATURE Requests</i> or <i>ENHANCEMENT
+ Requests</i>, <i>PATCH submissions</i>, or even <i>TASKS</i>. For this
+ reason, we feel the term "issue" is a more appropriate one than
+ "bug". People often say 'bug' when they should really be referring to
+ an issue. Enter the tasks you're planning to work on as enhancement requests
+ and will help you track them and allow others to see what you plan to work on.
+ If people can see your flight plan, they can avoid duplicating your work and
+ can possibly help out or offer feedback
+ </p>
+ <br>
+ <h4>What Is IssueTracker?</h4>
+ <p>IssueTracker, a proprietary tool, is based on Mozilla's open-source <a href="http://www.mozilla.org/bugs/">
+ Bugzilla</a>, but has been generalized by <a href="http://www.collab.net">CollabNet</a>
+ to handle all kinds of issues, not just code-based issues. On OpenOffice.org,
+ the supported issue-types now include: DEFECT, ENHANCEMENT, FEATURE, TASK and
+ PATCH. We can add issue types in the future as necessary, and these can be
+ reported against specific components of a project, for example 'documentation',
+ 'code', 'ui', 'definition'. OpenOffice.org's projects are 'api', 'chart',
+ 'database access', 'drawing', 'formula editor', 'presentation', 'spreadsheet',
+ 'word processor' and 'xml' to name just a few. Take a look at the
+ projects/products list to see all of them.
+ </p>
+ <p>Reported issues will be assigned to an appropriate issue owner.</p>
+ <br>
+ <h4>What do you have an issue with?</h4>
+ <p>Do you want to report an issue with a milestone build or with a copy of
+ OpenOffice.org that you compiled yourself? IssueTracker is the place to submit
+ issue reports for software distributed by OpenOffice.org. This page gives an
+ overview of how IssueTracker works. Read the <a href="bug_writing_guidelines.html">
+ issue writing guidelines</a> as well, for tips on how to write useful issue
+ reports.
+ </p>
+ <br>
+ <h4>Anatomy Of An Issue</h4>
+ <p>Issues are composed of many fields. Some of them are described here.
+ </p>
+ <blockquote>
+ <dl>
+ <dt><b>Project</b></dt>
+ <dd>
+ OpenOffice.org is composed of different projects. Carefully read the <a href="http://projects.openoffice.org/">
+ project descriptions</a> if you're unsure of which project to attribute your
+ issue to (visit the projects themselves for fuller descriptions). The project
+ you choose determines which person IssueTracker assigns the issue to.
+ </dd>
+ <dt><b>Status Whiteboard</b></dt>
+ <dd>
+ The Status Whiteboard is used for writing short notes about the issue.
+ </dd>
+ <dt><b>Keywords</b></dt>
+ <dd>
+ This field is used to store various keywords.
+ </dd>
+ <dt><b>Special 'helpwanted' keyword and TASK issue-type</b> </dt>
+ <dd>
+ Developers can post <tt>helpwanted</tt> notices, and IssueTracker can help
+ match-make other developers and apprentices who wish to help out with a TASK.
+ Developers should Write <tt>helpwanted</tt> in the Keywords field of an issues,
+ perhaps changing the issue-type of the defect or enhancement to 'TASK'. Others
+ searching for things to do will find it and even accept the issue or TASK.
+ People interested in getting involved can search IssueTracker for issues and
+ ENHANCEMENTs marked <tt>helpwanted</tt>. Maybe one of them will have the
+ expertise and resources to help you with your problem.
+ </dd>
+ <dd>
+ Developers can use the TASK issue-type for project-work they'd like to
+ delegate. For instance, if your code has a issue on some platform which you
+ don't have access to, or with some language you don't know, try adding this
+ keyword. A developer can of course change an uncompleted TASK back to DEFECT,
+ ENHANCEMENT or FEATURE (whatever the issue was before it became a TASK again).
+ This could happen, for instance, when the initial issue owner decides nobody is
+ willing to help out with a task.
+ </dd>
+ <dd>
+ Or, as with any developer, you're probably swamped with issues. Some of these
+ issues will be lower priority than others. Try marking issues that you realize
+ you won't be able to any time soon as <tt>helpwanted</tt>. Someone else with
+ different priorities may see this and help you out.
+ </dd>
+ <dd>
+ When marking issues <tt>helpwanted</tt>, be sure to add a comment carefully
+ explaining what work needs to be done, and how to do it, if you know. The
+ better you can explain the problem and its solution, the more likely it is that
+ someone can provide a useful solution.
+ </dd>
+ <dt><b>Dependency</b></dt>
+ <dd>
+ If an issue can't be fixed until another issue is fixed, that's a dependency.
+ For any issue, you can list the issues it depends on and issues that depend on
+ it. IssueTracker can display a dependency graphs which shows which the issues it
+ depends on and are dependent dependent on it.
+ </dd>
+ <dt><b>Attachment</b></dt>
+ <dd>
+ Adding an attachment to an issue can be very useful. Test cases and screen
+ shots can help pinpoint the issue and help the developer reproduce it.
+ </dd>
+ <dt><b>Special patch-file 'Attachment' and PATCH issue-type</b></dt>
+ <dd>
+ If you've already fixed a defect or done an enhancement, you should report an
+ issue of type PATCH, and attach the patch-file to the issue. This is the
+ preferred way to keep track of patches since it makes it easier for others to
+ find and test. To make a patch, you need to generate a diff file containing the
+ differences between the file with your changes and the original file in the
+ repository. To generate a patch file enumerating changes for all files in the
+ current directory try:
+ <pre style="margin-left: 0.78in; margin-right: 0.39in; margin-bottom: 0.2in">cvs diff -u > mypatch.diff</pre>
+ To apply a patch, go to the proper directory and do:
+ <pre style="margin-left: 0.78in; margin-right: 0.39in; margin-bottom: 0.2in">patch < issuepatch.diff</pre>
+ </dd>
+ </dl>
+ </blockquote>
+ <h4>Life Cycle Of An Issue</h4>
+ <p>What happens to an issue when it is first reported depends on who reported it.
+ New IssueTracker accounts by default create issues which are <tt>UNCONFIRMED</tt>
+ . Currently, on IssueTracker, the quality assurance is done by a list of users
+ subscribed to a "virtual user" issues@<project>.openoffice.org.
+ <p>
+ You then use your regular IssueTracker account to login, then view, then further
+ "workflow" the issue.
+ <br>
+ <P><A NAME="emailreply"></A> With default settings for your account you will be
+ notified of any change made to the issue. Please do not reply via email to
+ notification messages. The proper way to comment is to login and use the web
+ based frontend. By sending mail to
+ issues-subscribe@<project>.openoffice.org, you can be notified of all
+ changes in bugs of this project.
+ </P>
+ <p>If you are a registered OpenOffice.org user, you can create <tt>UNCONFIRMED</tt>
+ issues. When an issue is confirmed and becomes <tt>NEW</tt>, the developer will
+ probably look at the issue and either accept it or give it to someone else. If
+ the issue remains new and inactive for more than a week, IssueTracker nags the
+ issue's owner with email until action is taken. Whenever an issue is reassigned
+ or has its component changed, its status is set back to <tt>NEW</tt>. The <tt>NEW</tt>
+ status means that the issue is newly added to a particular developer's plate,
+ not that the issue is newly reported. Think of "NEW" as an important
+ e-mail you need to answer, except, you answer in IssueTracker, and you can use
+ the tool to better track its progress than e-mail.
+ </p>
+ <p>Those to whom additional permissions have been given have the ability to
+ change all the fields of an issue (by default, you can only change a few).
+ Whenever you change a field in an issue its a good idea to add additional
+ comments to explain what you are doing and why. Make a note whenever you do
+ things like change the component, reassign the issue, create an attachment, add
+ a dependency or add someone to the CC list. Whenever someone makes a change to
+ the issue or adds a comment, they are added to the CC list and the owner,
+ reporter and the CC list are sent an email showing the changes to the issue
+ report.
+ </p>
+ <p>When a issue is fixed it's marked <tt>RESOLVED</tt> and given one of the
+ following resolutions.
+ </p>
+ <blockquote>
+ <dl>
+ <dt><b>FIXED</b></dt>
+ <dd>
+ A fix for this issue has been checked into the tree and tested by the person
+ marking it <tt>FIXED</tt>.
+ </dd>
+ <dt><b>INVALID</b></dt>
+ <dd>
+ The problem described is not a issue, or not a issue in OpenOffice.org.
+ </dd>
+ <dt><b>WONTFIX</b></dt>
+ <dd>
+ The problem described is a issue which will never be fixed.
+ </dd>
+ <dt><b>LATER</b></dt>
+ <dd>
+ The problem described is a issue which will not be fixed in this version of the
+ product.
+ </dd>
+ <dt><b>REMIND</b></dt>
+ <dd>
+ The problem described is a issue which will probably not be fixed in this
+ version of the product, but might still be.
+ </dd>
+ <dt><b>DUPLICATE</b></dt>
+ <dd>
+ The problem is a duplicate of an existing issue. Marking a issue duplicate
+ requires the issue number of the duplicating issue and will add a comment with
+ the issue number into the description field of the issue it is a duplicate of.
+ </dd>
+ <dt><b>WORKSFORME</b></dt>
+ <dd>
+ All attempts at reproducing this issue were futile. If more information appears
+ later, please re-assign the issue, for now, file it.
+ </dd>
+ <dt><b>MOVED</b></dt>
+ <dd>
+ The issue was specific to a particular OpenOffice.org-based distribution and
+ didn't affect OpenOffice.org code. One such scenario are defects reported
+ against Sun's product version of OpenOffice.org. The issue was moved to the bug
+ database of the distributor of the affected OpenOffice.org derivative.
+ </dd>
+ </dl>
+ </blockquote>
+ <p>
+ QA looks at resolved issues and to make sure the appropriate action has been
+ taken. If they agreee, the issue is marked <tt>VERIFIED</tt>. Issues remain in
+ this state until the product ships, at which time the issue is marked <tt>CLOSED</tt>.
+ issues may come back to life by becoming <tt>REOPENED</tt>.
+ </p>
+ <p>Be careful when changing the status of someone else's issues. Instead of
+ making the change yourself, its usually best to make a note of your proposed
+ change as a comment and to let the issue's owner review this and make the
+ change themselves. For instance, if you think one issue is a duplicate of
+ another, make a note of it in the <i>Additional Comments</i> section.
+ </p>
+ <p>If you make a lot of useful comments to someone's issues they may come to
+ trust your judgement and ask you to go ahead and make the changes yourself, but
+ unless they do, its best to be cautious and only make comments.
+ </p>
+ </body>
+</html>
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/issues.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/policies/regressions.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/policies/regressions.html?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/policies/regressions.html (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/policies/regressions.html Wed Nov 16 22:14:47 2011
@@ -0,0 +1,71 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+
+<html>
+ <head>
+ <style type="text/css"> /* <![CDATA[ */
+ @import "/css/qa.css";
+ /* ]]> */</style>
+ <title>Policies: Regressions</title>
+ </head>
+ <body>
+ <h1>Policies: Regressions</h1>
+ <p>There are three categories of regression issues we're interested in:
+
+ <ol><li>Functionality which is different from the same functionality in a
+ previous version, but the difference is intentional, since the
+ respective feature has been overworked, and specified differently than
+ before.</li>
+
+ <li>Functionality which is different from the same functionality in a
+ previous version, and should be fixed. However, the issue is considered
+ too minor to be a stopper for the next (micro) release.</li>
+
+ <li>Functionality which is different from the same functionality in a
+ previous version, and is serious enough to be a stopper for the next
+ (micro) release.</li>
+ </ol>
+ </p>
+
+ <p>Categorization of a regression issue into one of the three categories above
+ happens as follows:</li>
+
+ <ol><li>After adding a justification (i.e. saying that the change is
+ not considered a regression, but an implementation of a new/changed
+ concept), the issue is handled as usual. No particular keyword is to be
+ set. Any already existent regression keyword is to be revoked.
+ <br/>
+ In case that the changed functionality/behaviour is controversial, this
+ should be discussed in the project (corresponding to the Issue Tracker
+ Component), and may be brought to the project lead to come to a
+ decision. If neccesary, the issue could be escalated to the
+ project leads list. If you cannot escalate to the project leads list
+ yourself, contact the Community Contributor Representative at the
+ Community Council or the QA project.
+ <br/>
+ Alternatively and additionally, feel free to get support from other
+ people, expressed for instance by <a href="http://www.openoffice.org/scdocs/votehelp.html">votes</a>
+ on the issue</li>
+
+ <li>The <a href="http://www.openoffice.org/issues/describekeywords.cgi">keyword</a>
+ "regression" is added to the issue (if not already present), together with a comment
+ stating that the issue is not considered a blocker for the next release. The
+ <a href="http://www.openoffice.org/scdocs/notargetmilestone.html">target</a>
+ is set to the next train release (e.g. "OOo 2.x") or "OOo later", depending on the
+ judgement of the issue's severity. After that, the issue is handled as usual. In
+ particular, depending on user feedback (e.g. votes), it might be decided to fix
+ the issue in the next release.</li>
+
+ <li>The <a href="http://www.openoffice.org/issues/describekeywords.cgi">keyword</a>
+ "release_blocker" is added to the issue, the <a href="http://www.openoffice.org/scdocs/notargetmilestone.html">target</a>
+ is set to the next minor release.</li>
+ </ol>
+ </p>
+
+ <p>Resources:
+ <ul><li><a href="http://qa.openoffice.org/servlets/BrowseList?list=dev&by=thread&from=1451849" target="_blank">Proposal: Classification of regression issues</a>
+ </li>
+ </ul>
+ </p>
+ </body>
+</html>
+
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/policies/regressions.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/pre_submission.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/pre_submission.html?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/pre_submission.html (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/pre_submission.html Wed Nov 16 22:14:47 2011
@@ -0,0 +1,69 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+ <head>
+ <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
+ <title>Submit an Issue - Preparation</title>
+ </head>
+ <body>
+ <h1>Submit an Issue</h1>
+ <p>Thank you for taking the time to submit an issue! We really appreciate your help in constantly improving
+ OpenOffice.org!<br/>
+ <span style="font-style: italic; font-weight: bold;" >Before</span> you <a href="submission_gateway.html">proceed</a>,
+ please consider the following</p>
+
+ <h4><a name="login"></a>Are you registered and logged in?</h4>
+ <p>For submitting an issue, you need to <a href="/servlets/TLogin">log in</a>. If you do
+ not yet have an OpenOffice.org account, please <a href="/servlets/Join">join us</a>. This is
+ necessary, as issues are bound to their submitter, which, for example, enables other people who work on the reported
+ problem to ask you back in case of uncertainties.</p>
+
+ <h4><a name="duplicates"></a>Did you check if your problem is already reported?</h4>
+
+ <p></p>Unfortunately, too many issues get reported twice (or much more often).
+ You, as the submitter who exactly knows the problem, often are much
+ faster in finding the duplicates than other people. So please take some
+ minutes to see if your problem is already reported</a>. If so, you can add yourself to
+ the cc-list of the issue, to be notified whenever something in this
+ issue changes (e.g. when it's fixed):</p>
+
+ <p>Enter one or more of the main words having to do with your issue. For example:
+ 'LDAP', 'crash toolbar' or 'copy paste Writer':</p>
+ <form action="http://openoffice.org/bugzilla/buglist.cgi" method="get">
+ <table>
+ <tbody>
+ <tr>
+ <td>Summary or Description contains:</td>
+ <td><input size="30" name="quicksearch" type="text" class="inputtext"/></td>
+ <td><input value="Search" type="submit"></td>
+ <td>(<a href="http://openoffice.org/bugzilla/query.cgi?format=advanced">advanced search</a>)</td>
+ </tr>
+ </tbody>
+ </table>
+ </form>
+
+ <h4><a name="read_the_rules"></a>Do you know the rules?</h4>
+ <p>If this is the first issue you submit, please take a moment to read the
+ <a href="basic_rules.html">the basic rules</a>. They take you very
+ little time to follow, but potentially, they save a lot of other people
+ a lot of time. Short and simple, these are:<br>
+ <ul>
+ <li><a href="basic_rules.html#one_per_issue">One problem - one issue</a></li>
+ <li><a href="basic_rules.html#summary">Provide a meaningful summary</a></li>
+ <li><a href="basic_rules.html#reproducibility">Provide step-by-step descriptions</a></li>
+ <li><a href="basic_rules.html#bugdoc">Provide sample documents, if possible</a></li>
+ <li><a href="basic_rules.html#attachments">Use Attachments where possible</a></li>
+ <li><a href="basic_rules.html#complete">Put all relevant information into the issue</a></li>
+ </ul>
+
+ <h4><a name="help"></a>Do you need help with issue tracker?</h4>
+ <p>In case you need help for the control fields in the submission form: Besides most fields, there's
+ a link to a help text - make use of it! Or, read the detailed <a href="bug_writing_guidelines.html">Issue
+ Writing Guidelines</a> first.</p>
+
+ <p>Also note that native language projects provide help for issue tracker too.</p>
+
+ <div style="text-align: center;"><a style="font-weight: bold;"
+ href="submission_gateway.html"><font size="+1">Go on - submit the issue</font>
+ </a></div>
+ </body>
+</html>
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/pre_submission.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/project_issues.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/project_issues.html?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/project_issues.html (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/project_issues.html Wed Nov 16 22:14:47 2011
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+ <head>
+ <meta content="text/html; charset=UTF-8" http-equiv="content-type">
+ <title>Bugs&Issues Explained</title>
+ <style type="text/css">
+ @import "/css/qa.css";
+ app.li { margin-top:10px !important; }
+ </style>
+ </head>
+ <body>
+ <div class="Acta1">
+ <h1>About Issues</h1>
+ <h3>Contents</h3>
+ </div>
+ <ul>
+ <li>
+ <a href="#filing">Filing Issues</a></li>
+ <li>
+ <a href="#handling">Issue Handling</a>
+ </li>
+ <li>
+ <a href="#about">About Issue Tracker</a>
+ </li>
+ <li>
+ <a href="#using">Why Use Issue Tracker?</a>
+ </li>
+ <li>
+ <a href="#oooissues">OpenOffice.org Issues </a>
+ </li>
+ <li>
+ <a href="#oooinfrastructure">OpenOffice.org Infrastructure Problems</a>
+ </li>
+ </ul>
+ <div class="app">
+ <h4><a name="finding"></a>Filing Issues</h4>
+ <h5>Enter a new issue</h5>
+
+ <p>If your issue has not been reported, then you need to <a href="pre_submission.html">
+ <b>submit a new issue</b></a>. Read the <a href="bug_writing_guidelines.html">guidelines
+ for reporting issues</a> page to learn how to report an issue/bug. See also <a href="issues.html">
+ A Quick Introduction to IssueTracker</a>.</p>
+ <p><em>Attachments.</em><br/>
+ You can add attachments to issues. The
+ limit is 10MB, but please keep any attachment small, as most people use 56K
+ connections. Attaching a file to an issue is a two-step procedure and is <strong>not</strong>
+ obvious. You must first submit the issue or locate the issue to which you wish
+ to attach the file. Then, you can add the file as an attachment to that issue.
+ There will be a link in the issue body that reads:
+ <div class="indent">
+ <p class="code">Create a new attachment (proposed patch, test case, etc.)</p>
+ </div>
+ </p>
+
+ <h4><a name="handling"></a>Issue Handling</h4>
+
+ <p>Submitting issues is only the first step. Depending of the type of an issue, it will pass several
+ stations during its life time. For instance, when a bug is submitted, usually the following happens:<br/>
+ Somebody from the <a href="http://qa.openoffice.org">QA team</a> will have a look at it, to at least ensure
+ that it's in a useful state (btw: if you follow the <a href="basic_rules.html">rules for issue submission</a>,
+ you can already help a lot in creating an useful issue). After this, somebody needs to fix the issue (usually
+ an engineer, but possibly also somebody maintaining <a href="http://documentation.openoffice.org">documentation</a>).
+ Finally, when the fix made it into the product, somebody needs to verify it - usually again an QA engineer.
+ </p>
+ <p>To read more about this, visit the <a style="font-weight:bold" href="http://qa.openoffice.org/issue_handling">Issue handling section</a>
+ of the <a href="http://qa.openoffice.org">QA project</a>.
+ </p>
+
+ <h4><a name="about"></a>About Issue Tracker (Formerly IssueZilla)</h4>
+ <p>OpenOffice.org uses a modified version of <a href="http://www.mozilla.org">mozilla.org's</a>
+ <a href="http://www.mozilla.org/bugs/">BugZilla</a> to track issues. Issue
+ Tracker is integrated into <a href="http://www.collab.net/products/">CollabNet's
+ SourceCast</a>, upon which the OpenOffice.org website runs. This document was
+ written for IssueZilla, Issue Tracker's predecessor. It is still relevant.
+ However, an excellent account of the current Issue Tracker can be found in the <a target="_blank" href="http://www.openoffice.org/scdocs/ProjectIssues#aboutIZ">
+ Help</a>.
+ </p>
+ <p>If you are a registered user of OpenOffice.org, you can use Issue Tracker to
+ browse existing issues, enter new issues, or modify the details of an existing
+ issues. Please be aware that you'll need to enable cookies in your browser to
+ use IssueTracker.
+ </p>
+ <h4><a name="using"></a>Why Use Issue Tracker?</h4>
+ <p>
+ Why use Issue Tracker and not a mail list? Because it allows everyone to keep
+ track of the many big and small tasks, requests, enhancements, whatever that
+ circulate throughout an Open Source project. What is more, the issue tracker
+ makes it easier to determine if any another user has had similar problems. And
+ if the problem has been resolved, it can alert the relevant people to the
+ solutions found. In short, by registering and then filing issues with Issue
+ Tracker, you become a contributing member of OpenOffice.org.</p>
+ <p><strong>Note: </strong>You can delete your SourceCast account and thereby
+ disable your Issue Tracker account at any time. However, if you then decide to
+ re-register using the same account information, you will not be able to file
+ issues. This is because Issue Tracker accounts are never full deleted, only
+ disabled. You thus have to initiate a new account.</p>
+ <h4>
+ <a name="notification"></a>Issue Notifications</h4>
+ <p>Issue Tracker will notify you via email about changes made to issues you
+ reported. Please do not reply to these messages but login the website and add
+ your comments to the issue. If you don't want to receive these notification
+ emails you may want to edit your Issue Tracker preferences and change the email
+ settings.
+ </p>
+ <h4><a name="oooissues"></a>OpenOffice.org Issues</h4>
+ <p>You can report and query issues in the OpenOffice.org
+ code/documentation/ui/definition. Issue Tracker currently reports and tracks
+ the following issue-types: DEFECT, ENHANCEMENT, FEATURE, TASK and PATCH (we
+ can, of course, add new issue types as necessary). For example, you could
+ report a bug as DEFECT; Track ENHANCEMENT requests to existing features;
+ discuss adding new FEATURES; track a TASK for others to do (delegating or
+ requesting help). Furthermore Issue Tracker is also used to track PATCH
+ submissions.</p>
+ <h4>
+ <a name="oooinfrastructure"></a>OpenOffice.org Infrastructure Problems</h4>
+ <p>If you find an issue with some part of the OpenOffice.org infrastructure (not
+ the application), such as a problem with the site search engine, or a problem
+ with CVS, please use the <a href="http://www.openoffice.org/issues/enter_bug.cgi?component=www">component www</a>.
+ <br>
+ </div>
+ <hr noshade="1">
+ $Revision: 1.12 $ $Date: 2007/02/23 10:49:16 $
+ </body>
+</html>
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/project_issues.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/submission_gateway.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/submission_gateway.html?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/submission_gateway.html (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/submission_gateway.html Wed Nov 16 22:14:47 2011
@@ -0,0 +1,471 @@
+<!doctype html PUBLIC "-//W3C//DTD HTML 4.0//EN">
+
+<!-- submission_gateway.html is a generated file, do not edit it directly,
+see create_submission_gateway.pl instead -->
+
+<html lang="en">
+ <head>
+ <meta lang="en" http-equiv="content-type" content="text/html; charset=ISO-8859-1">
+ <title>Submit an Issue - choose component</title>
+ </head>
+ <body>
+ <!--BEGINNING OF APP CLASS-->
+ <div id="issuezilla" class="app">
+ <h1>Issue Tracker</h1>
+ <h2>... submit an Issue</h2>
+ <table width="100%">
+ <tbody>
+ <tr>
+ <td>You can submit issues for OpenOffice.org ...</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>
+ <ul>
+ <li><a href="#application">... by application</a></li>
+ <li><a href="#language">... by language</a></li>
+ <li><a href="#project">... by project</a></li>
+ <li><a href="#code_module">... by code module</a> (for hackers to submit patches)</li>
+ <li><a href="/issues/enter_bug.cgi">... the classical way</a> (for the fearless)</li>
+ </ul>
+ </td>
+ <td>
+ <form action="http://openoffice.org/bugzilla/buglist.cgi" method="get">
+ <table>
+ <tbody>
+ <tr>
+ <td colspan="4">Beforehand, you checked whether the issue is already reported - didn't you?</td>
+ <td/>
+ <td/>
+ </tr>
+ <tr>
+ <td>Summary or Description contains:</td>
+ <td><input size="30" name="quicksearch" type="text" class="inputtext"/></td>
+ <td><input value="Search" type="submit"></td>
+ </tr>
+ </tbody>
+ </table>
+ </form>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <table width="100%">
+ <tbody>
+ <tr>
+ <td>Or you can submit issues for ...</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>
+ <ul>
+ <li><a href="/issues/enter_bug.cgi?component=www&version=current">... the OpenOffice.org infrastructure</a>
+ (including the website, the wiki, mailing lists, Issue Tracker itself, etc.)</li>
+ </ul>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <h3><a name="application"></a>By Application</h3>
+ <table>
+ <tr>
+ <td>
+ <table border=0 cellspacing=1>
+ <tr><th>Application</th><th>To choose if the issue affects OpenOffice.org's...</th></tr>
+ <tr class="a">
+ <td><a href="/issues/enter_bug.cgi?component=Word%20processor">Writer</a></td>
+ <td>text processing application.</td>
+ </tr>
+ <tr class="b">
+ <td><a href="/issues/enter_bug.cgi?component=Spreadsheet">Calc</a></td>
+ <td>spreadsheet application.</td>
+ </tr>
+ <tr class="a">
+ <td><a href="/issues/enter_bug.cgi?component=Drawing">Drawing</a></td>
+ <td>drawing application.</td>
+ </tr>
+ <tr class="b">
+ <td><a href="/issues/enter_bug.cgi?component=Presentation">Impress</a></td>
+ <td>presentation application.</td>
+ </tr>
+ <tr class="a">
+ <td><a href="/issues/enter_bug.cgi?component=Database%20access">Database</a></td>
+ <td>database application.</td>
+ </tr>
+ <tr class="b">
+ <td><a href="/issues/enter_bug.cgi?component=Formula%20editor">Math</a></td>
+ <td>formula editor.</td>
+ </tr>
+ <tr class="a">
+ <td><a href="/issues/enter_bug.cgi?component=Chart">Chart</a></td>
+ <td>charting module.</td>
+ </tr>
+ <tr class="b">
+ <td><a href="/issues/enter_bug.cgi?component=framework">All</a></td>
+ <td>application framework - i.e. all applications.</td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </p>
+
+ <h3><a name="language"></a>By Language</h3>
+
+ <table>
+ <tr>
+ <td valign="top" align="left"><table border=0 cellspacing=1><tr class="a"><td><a href="/issues/enter_bug.cgi?component=eu">Basque</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=br-pt">Brazilian(Pt)</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=ca">Catalan</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=zh">Chinese</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=cs">Czech</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=da">Danish</a></td></tr>
+</table></td><td valign="top" align="left"><table border=0 cellspacing=1><tr class="a"><td><a href="/issues/enter_bug.cgi?component=fi">Finnish</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=fr">French</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=de">German</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=el">Greek</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=hi">Hindi</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=hu">Hungarian</a></td></tr>
+</table></td><td valign="top" align="left"><table border=0 cellspacing=1><tr class="a"><td><a href="/issues/enter_bug.cgi?component=ja">Japanese</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=ko">Korean</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=lo">Laotian</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=ms">Malaysian</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=nl">Netherlands</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=no">Norwegian</a></td></tr>
+</table></td><td valign="top" align="left"><table border=0 cellspacing=1><tr class="a"><td><a href="/issues/enter_bug.cgi?component=pt">Portugese</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=ro">Romanian</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=ru">Russian</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=sr">Serbian</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=sk">Slovak</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=sl">Slovenian</a></td></tr>
+</table></td><td valign="top" align="left"><table border=0 cellspacing=1><tr class="a"><td><a href="/issues/enter_bug.cgi?component=es">Spanish</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=sv">Swedish</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=ta">Tamil</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=th">Thai</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=tr">Turkish</a></td></tr>
+</table></td>
+ </tr>
+ </table>
+
+ <h3><a name="project"></a>By Project</h3>
+
+ <table>
+ <tr>
+ <td valign="top" align="left"><table><tr class="a"><td><a href="/issues/enter_bug.cgi?component=api">API</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=Database%20access">Database Access</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=documentation">Documentation</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=external">External Sources</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=framework">Application Framework</a></td></tr>
+</table></td><td valign="top" align="left"><table><tr class="a"><td><a href="/issues/enter_bug.cgi?component=Drawing">Graphics Applications</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=gsl">Graphic System Layer (GSL)</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=Installation">Installation</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=l10n">Localization and Internationalization (L10N/I18N)</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=porting">Porting</a></td></tr>
+</table></td><td valign="top" align="left"><table><tr class="a"><td><a href="/issues/enter_bug.cgi?component=qa">Quality Assurance (QA)</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=Spreadsheet">Spreadsheet</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=scripting">Scripting Engines</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=Word%20processor">Word Processing</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=tools">Tools</a></td></tr>
+</table></td><td valign="top" align="left"><table><tr class="a"><td><a href="/issues/enter_bug.cgi?component=ucb">Universal Content Broker (UCB)</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=udk">UNO Development Kit (UDK)</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=ui">User Interface Design</a></td></tr>
+<tr class="b"><td><a href="/issues/enter_bug.cgi?component=framework">Utilities</a></td></tr>
+<tr class="a"><td><a href="/issues/enter_bug.cgi?component=xml">XML</a></td></tr>
+</table></td>
+ </tr>
+ </table>
+
+ <h3><a name="code_module"></a>By Code Module</h3>
+
+ <p>
+ This is if you have a patch to submit. Choose the module below, and the new issue will automatically have
+ type <a href="/scdocs/ddIssues_EnterModify.html#issuetype">PATCH</a> and be assigned
+ to the respective module owner. This document is a generated document, to update it when maintainers change
+ or to add new modules, see
+ <a href="http://qa.openoffice.org/source/browse/qa/www/issue_handling/create_submission_gateway.pl?view=markup">create_submission_gateway.pl</a>
+ </p>
+
+ <p>
+ If you are not a hacker, you're probably wrong in this section.
+ </p>
+
+ <table>
+ <tr>
+ <tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=MathMLDTD:%20&assigned_to=mh@openoffice.org">MathMLDTD</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=UnoControls:%20&assigned_to=pl@openoffice.org">UnoControls</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=accessibility:%20&assigned_to=pl@openoffice.org">accessibility</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=afms:%20&assigned_to=pl@openoffice.org">afms</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=agg:%20&assigned_to=mh@openoffice.org">agg</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=animations:%20&assigned_to=thb@openoffice.org">animations</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=apache-commons:%20&assigned_to=mh@openoffice.org">apache-commons</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=apple_remote:%20&assigned_to=pl@openoffice.org">apple_remote</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=autodoc:%20&assigned_to=mh@openoffice.org">autodoc</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=automation:%20&assigned_to=gh@openoffice.org">automation</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=avmedia:%20&assigned_to=ka@openoffice.org">avmedia</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=scripting&subcomponent=code&issue_type=PATCH&short_desc=basctl:%20&assigned_to=kr@openoffice.org">basctl</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=basebmp:%20&assigned_to=pl@openoffice.org">basebmp</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=basegfx:%20&assigned_to=thb@openoffice.org">basegfx</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=scripting&subcomponent=code&issue_type=PATCH&short_desc=basic:%20&assigned_to=kr@openoffice.org">basic</td>
+<td><a href="/issues/enter_bug.cgi?component=api&subcomponent=code&issue_type=PATCH&short_desc=bean:%20&assigned_to=jsc@openoffice.org">bean</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=beanshell:%20&assigned_to=mh@openoffice.org">beanshell</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=berkeleydb:%20&assigned_to=mh@openoffice.org">berkeleydb</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=binfilter:%20&assigned_to=mba@openoffice.org">binfilter</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=bitstream_vera_fonts:%20&assigned_to=mh@openoffice.org">bitstream_vera_fonts</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=boost:%20&assigned_to=mh@openoffice.org">boost</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=bridges:%20&assigned_to=kr@openoffice.org">bridges</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=cairo:%20&assigned_to=thb@openoffice.org">cairo</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=canvas:%20&assigned_to=thb@openoffice.org">canvas</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=Chart&subcomponent=code&issue_type=PATCH&short_desc=chart2:%20&assigned_to=iha@openoffice.org">chart2</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=cli_ure:%20&assigned_to=kr@openoffice.org">cli_ure</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=codemaker:%20&assigned_to=kr@openoffice.org">codemaker</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=comphelper:%20&assigned_to=fs@openoffice.org">comphelper</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=configmgr:%20&assigned_to=sb@openoffice.org">configmgr</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=configure:%20&assigned_to=rene@openoffice.org">configure</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=Database%20access&subcomponent=code&issue_type=PATCH&short_desc=connectivity:%20&assigned_to=oj@openoffice.org">connectivity</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=cosv:%20&assigned_to=mh@openoffice.org">cosv</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=cppcanvas:%20&assigned_to=thb@openoffice.org">cppcanvas</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=cppu:%20&assigned_to=kr@openoffice.org">cppu</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=cppuhelper:%20&assigned_to=kr@openoffice.org">cppuhelper</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=cppunit:%20&assigned_to=mh@openoffice.org">cppunit</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=cpputools:%20&assigned_to=kr@openoffice.org">cpputools</td>
+<td><a href="/issues/enter_bug.cgi?component=porting&subcomponent=code&issue_type=PATCH&short_desc=crashrep:%20&assigned_to=mh@openoffice.org">crashrep</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=cui:%20&assigned_to=ka@openoffice.org">cui</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=curl:%20&assigned_to=mh@openoffice.org">curl</td>
+<td><a href="/issues/enter_bug.cgi?component=Database%20access&subcomponent=code&issue_type=PATCH&short_desc=dbaccess:%20&assigned_to=oj@openoffice.org">dbaccess</td>
+<td><a href="/issues/enter_bug.cgi?component=ui&subcomponent=code&issue_type=PATCH&short_desc=default_images:%20&assigned_to=os@openoffice.org">default_images</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=desktop:%20&assigned_to=mba@openoffice.org">desktop</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=dictionaries:%20&assigned_to=mh@openoffice.org">dictionaries</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=dmake:%20&assigned_to=mh@openoffice.org">dmake</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=drawinglayer:%20&assigned_to=ka@openoffice.org">drawinglayer</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=dtrans:%20&assigned_to=pl@openoffice.org">dtrans</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=editengine:%20&assigned_to=tl@openoffice.org">editengine</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=embeddedobj:%20&assigned_to=mba@openoffice.org">embeddedobj</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=embedserv:%20&assigned_to=mba@openoffice.org">embedserv</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=epm:%20&assigned_to=mh@openoffice.org">epm</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=eventattacher:%20&assigned_to=ab@openoffice.org">eventattacher</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=expat:%20&assigned_to=mh@openoffice.org">expat</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=extensions:%20&assigned_to=mh@openoffice.org">extensions</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=external:%20&assigned_to=mh@openoffice.org">external</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=external_images:%20&assigned_to=mh@openoffice.org">external_images</td>
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=extras:%20&assigned_to=is@openoffice.org">extras</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=fileaccess:%20&assigned_to=mav@openoffice.org">fileaccess</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=filter:%20&assigned_to=mba@openoffice.org">filter</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=fondu:%20&assigned_to=mh@openoffice.org">fondu</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=forms:%20&assigned_to=pl@openoffice.org">forms</td>
+<td><a href="/issues/enter_bug.cgi?component=Spreadsheet&subcomponent=code&issue_type=PATCH&short_desc=formula:%20&assigned_to=nn@openoffice.org">formula</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=fpicker:%20&assigned_to=pl@openoffice.org">fpicker</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=framework:%20&assigned_to=mba@openoffice.org">framework</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=goodies:%20&assigned_to=ka@openoffice.org">goodies</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=graphite:%20&assigned_to=hdu@openoffice.org">graphite</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=documentation&subcomponent=code&issue_type=PATCH&short_desc=helpcontent2:%20&assigned_to=kcarr@openoffice.org">helpcontent2</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=hsqldb:%20&assigned_to=oj@openoffice.org">hsqldb</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=hunspell:%20&assigned_to=nemeth@openoffice.org">hunspell</td>
+<td><a href="/issues/enter_bug.cgi?component=Word%20processor&subcomponent=code&issue_type=PATCH&short_desc=hwpfilter:%20&assigned_to=ama@openoffice.org">hwpfilter</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=hyphen:%20&assigned_to=nemeth@openoffice.org">hyphen</td>
+<td><a href="/issues/enter_bug.cgi?component=l10n&subcomponent=code&issue_type=PATCH&short_desc=i18npool:%20&assigned_to=er@openoffice.org">i18npool</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=l10n&subcomponent=code&issue_type=PATCH&short_desc=i18nutil:%20&assigned_to=er@openoffice.org">i18nutil</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=icc:%20&assigned_to=pl@openoffice.org">icc</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=icu:%20&assigned_to=er@openoffice.org">icu</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=idl:%20&assigned_to=mba@openoffice.org">idl</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=idlc:%20&assigned_to=kr@openoffice.org">idlc</td>
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=instsetoo_native:%20&assigned_to=is@openoffice.org">instsetoo_native</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=io:%20&assigned_to=sb@openoffice.org">io</td>
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=javainstaller2:%20&assigned_to=is@openoffice.org">javainstaller2</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=javaunohelper:%20&assigned_to=kr@openoffice.org">javaunohelper</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=jfreereport:%20&assigned_to=mh@openoffice.org">jfreereport</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=jpeg:%20&assigned_to=mh@openoffice.org">jpeg</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=jurt:%20&assigned_to=kr@openoffice.org">jurt</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=jvmaccess:%20&assigned_to=kr@openoffice.org">jvmaccess</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=jvmfwk:%20&assigned_to=jl@openoffice.org">jvmfwk</td>
+<td><a href="/issues/enter_bug.cgi?component=l10n&subcomponent=code&issue_type=PATCH&short_desc=l10n:%20&assigned_to=pjanik@openoffice.org">l10n</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=libegg:%20&assigned_to=mmeeks@openoffice.org">libegg</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=libtextcat:%20&assigned_to=mh@openoffice.org">libtextcat</td>
+<td><a href="/issues/enter_bug.cgi?component=wp&subcomponent=code&issue_type=PATCH&short_desc=libwpd:%20&assigned_to=fridrich_strba@openoffice.org">libwpd</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=libxml2:%20&assigned_to=mh@openoffice.org">libxml2</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=libxmlsec:%20&assigned_to=jl@openoffice.org">libxmlsec</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=libxslt:%20&assigned_to=mh@openoffice.org">libxslt</td>
+<td><a href="/issues/enter_bug.cgi?component=lingucomponent&subcomponent=code&issue_type=PATCH&short_desc=lingucomponent:%20">lingucomponent</td>
+<td><a href="/issues/enter_bug.cgi?component=Word%20processor&subcomponent=code&issue_type=PATCH&short_desc=linguistic:%20&assigned_to=ama@openoffice.org">linguistic</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=lpsolve:%20&assigned_to=mh@openoffice.org">lpsolve</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=lucene:%20&assigned_to=mh@openoffice.org">lucene</td>
+<td><a href="/issues/enter_bug.cgi?component=qa&subcomponent=code&issue_type=PATCH&short_desc=migrationanalysis:%20&assigned_to=ja@openoffice.org">migrationanalysis</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=moz:%20&assigned_to=mh@openoffice.org">moz</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=neon:%20&assigned_to=mh@openoffice.org">neon</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=np_sdk:%20&assigned_to=mh@openoffice.org">np_sdk</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=nss:%20&assigned_to=jl@openoffice.org">nss</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=o3tl:%20&assigned_to=thb@openoffice.org">o3tl</td>
+<td><a href="/issues/enter_bug.cgi?component=api&subcomponent=code&issue_type=PATCH&short_desc=odk:%20&assigned_to=jsc@openoffice.org">odk</td>
+<td><a href="/issues/enter_bug.cgi?component=api&subcomponent=code&issue_type=PATCH&short_desc=offapi:%20&assigned_to=jsc@openoffice.org">offapi</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=officecfg:%20&assigned_to=sb@openoffice.org">officecfg</td>
+<td><a href="/issues/enter_bug.cgi?component=api&subcomponent=code&issue_type=PATCH&short_desc=offuh:%20&assigned_to=jsc@openoffice.org">offuh</td>
+<td><a href="/issues/enter_bug.cgi?component=ui&subcomponent=code&issue_type=PATCH&short_desc=ooo_custom_images:%20&assigned_to=os@openoffice.org">ooo_custom_images</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=api&subcomponent=code&issue_type=PATCH&short_desc=oovbaapi:%20&assigned_to=npower@openoffice.org">oovbaapi</td>
+<td><a href="/issues/enter_bug.cgi?component=xml&subcomponent=code&issue_type=PATCH&short_desc=oox:%20&assigned_to=dr@openoffice.org">oox</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=openssl:%20&assigned_to=mh@openoffice.org">openssl</td>
+<td><a href="/issues/enter_bug.cgi?component=xml&subcomponent=code&issue_type=PATCH&short_desc=package:%20&assigned_to=mav@openoffice.org">package</td>
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=packimages:%20&assigned_to=is@openoffice.org">packimages</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=padmin:%20&assigned_to=pl@openoffice.org">padmin</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=postprocess:%20&assigned_to=is@openoffice.org">postprocess</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=psprint_config:%20&assigned_to=mh@openoffice.org">psprint_config</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=python:%20&assigned_to=mh@openoffice.org">python</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=pyuno:%20&assigned_to=jbu@openoffice.org">pyuno</td>
+<td><a href="/issues/enter_bug.cgi?component=qa&subcomponent=code&issue_type=PATCH&short_desc=qadevOOo:%20&assigned_to=ja@openoffice.org">qadevOOo</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=rdbmaker:%20&assigned_to=kr@openoffice.org">rdbmaker</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=readlicense_oo:%20&assigned_to=is@openoffice.org">readlicense_oo</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=redland:%20&assigned_to=mh@openoffice.org">redland</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=regexp:%20&assigned_to=mh@openoffice.org">regexp</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=registry:%20&assigned_to=kr@openoffice.org">registry</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=remotebridges:%20&assigned_to=kr@openoffice.org">remotebridges</td>
+<td><a href="/issues/enter_bug.cgi?component=Database%20access&subcomponent=code&issue_type=PATCH&short_desc=reportbuilder:%20&assigned_to=oj@openoffice.org">reportbuilder</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=Database%20access&subcomponent=code&issue_type=PATCH&short_desc=reportdesign:%20&assigned_to=oj@openoffice.org">reportdesign</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=rhino:%20&assigned_to=mh@openoffice.org">rhino</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=ridljar:%20&assigned_to=kr@openoffice.org">ridljar</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=rsc:%20&assigned_to=pl@openoffice.org">rsc</td>
+<td><a href="/issues/enter_bug.cgi?component=porting&subcomponent=code&issue_type=PATCH&short_desc=sal:%20&assigned_to=sb@openoffice.org">sal</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=salhelper:%20&assigned_to=kr@openoffice.org">salhelper</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=sane:%20&assigned_to=mh@openoffice.org">sane</td>
+<td><a href="/issues/enter_bug.cgi?component=xml&subcomponent=code&issue_type=PATCH&short_desc=sax:%20&assigned_to=mba@openoffice.org">sax</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=saxon:%20&assigned_to=mh@openoffice.org">saxon</td>
+<td><a href="/issues/enter_bug.cgi?component=Spreadsheet&subcomponent=code&issue_type=PATCH&short_desc=sc:%20&assigned_to=nn@openoffice.org">sc</td>
+<td><a href="/issues/enter_bug.cgi?component=Spreadsheet&subcomponent=code&issue_type=PATCH&short_desc=scaddins:%20&assigned_to=nn@openoffice.org">scaddins</td>
+<td><a href="/issues/enter_bug.cgi?component=Spreadsheet&subcomponent=code&issue_type=PATCH&short_desc=sccomp:%20&assigned_to=nn@openoffice.org">sccomp</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=scp2:%20&assigned_to=is@openoffice.org">scp2</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=scripting:%20&assigned_to=kr@openoffice.org">scripting</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=sd:%20">sd</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=sdext:%20&assigned_to=ka@openoffice.org">sdext</td>
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=setup_native:%20&assigned_to=is@openoffice.org">setup_native</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=sfx2:%20&assigned_to=mba@openoffice.org">sfx2</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=shell:%20&assigned_to=pl@openoffice.org">shell</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=slideshow:%20&assigned_to=thb@openoffice.org">slideshow</td>
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=smoketestoo_native:%20&assigned_to=is@openoffice.org">smoketestoo_native</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=soldep:%20&assigned_to=mh@openoffice.org">soldep</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=solenv:%20&assigned_to=mh@openoffice.org">solenv</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=soltools:%20&assigned_to=mh@openoffice.org">soltools</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=sot:%20&assigned_to=mav@openoffice.org">sot</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=splitbuild:%20&assigned_to=mh@openoffice.org">splitbuild</td>
+<td><a href="/issues/enter_bug.cgi?component=Word%20processor&subcomponent=code&issue_type=PATCH&short_desc=starmath:%20&assigned_to=ama@openoffice.org">starmath</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=stax:%20&assigned_to=mh@openoffice.org">stax</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=stlport:%20&assigned_to=mh@openoffice.org">stlport</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=stoc:%20&assigned_to=kr@openoffice.org">stoc</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=ucb&subcomponent=code&issue_type=PATCH&short_desc=store:%20&assigned_to=mhu@openoffice.org">store</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=svl:%20&assigned_to=cd@openoffice.org">svl</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=svtools:%20&assigned_to=cd@openoffice.org">svtools</td>
+<td><a href="/issues/enter_bug.cgi?component=Drawing&subcomponent=code&issue_type=PATCH&short_desc=svx:%20&assigned_to=ka@openoffice.org">svx</td>
+<td><a href="/issues/enter_bug.cgi?component=Word%20processor&subcomponent=code&issue_type=PATCH&short_desc=sw:%20&assigned_to=ama@openoffice.org">sw</td>
+<td><a href="/issues/enter_bug.cgi?component=Word%20processor&subcomponent=code&issue_type=PATCH&short_desc=swext:%20&assigned_to=ama@openoffice.org">swext</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=sysui:%20&assigned_to=pl@openoffice.org">sysui</td>
+<td><a href="/issues/enter_bug.cgi?component=qa&subcomponent=code&issue_type=PATCH&short_desc=test:%20&assigned_to=sb@openoffice.org">test</td>
+<td><a href="/issues/enter_bug.cgi?component=qa&subcomponent=code&issue_type=PATCH&short_desc=testautomation:%20&assigned_to=ja@openoffice.org">testautomation</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=testshl2:%20&assigned_to=mh@openoffice.org">testshl2</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=testtools:%20&assigned_to=kr@openoffice.org">testtools</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=tomcat:%20&assigned_to=mh@openoffice.org">tomcat</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=toolkit:%20&assigned_to=pl@openoffice.org">toolkit</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=tools:%20&assigned_to=cd@openoffice.org">tools</td>
+<td><a href="/issues/enter_bug.cgi?component=l10n&subcomponent=code&issue_type=PATCH&short_desc=transex3:%20&assigned_to=pjanik@openoffice.org">transex3</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=twain:%20&assigned_to=mh@openoffice.org">twain</td>
+<td><a href="/issues/enter_bug.cgi?component=ucb&subcomponent=code&issue_type=PATCH&short_desc=ucb:%20&assigned_to=mhu@openoffice.org">ucb</td>
+<td><a href="/issues/enter_bug.cgi?component=ucb&subcomponent=code&issue_type=PATCH&short_desc=ucbhelper:%20&assigned_to=mhu@openoffice.org">ucbhelper</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=api&subcomponent=code&issue_type=PATCH&short_desc=udkapi:%20&assigned_to=jsc@openoffice.org">udkapi</td>
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=udm:%20&assigned_to=mh@openoffice.org">udm</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=unixODBC:%20&assigned_to=oj@openoffice.org">unixODBC</td>
+<td><a href="/issues/enter_bug.cgi?component=api&subcomponent=code&issue_type=PATCH&short_desc=unodevtools:%20&assigned_to=jsc@openoffice.org">unodevtools</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=unoil:%20&assigned_to=kr@openoffice.org">unoil</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=unotools:%20&assigned_to=fs@openoffice.org">unotools</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=unoxml:%20&assigned_to=mba@openoffice.org">unoxml</td>
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=ure:%20&assigned_to=sb@openoffice.org">ure</td>
+<td><a href="/issues/enter_bug.cgi?component=ucb&subcomponent=code&issue_type=PATCH&short_desc=uui:%20&assigned_to=mhu@openoffice.org">uui</td>
+<td><a href="/issues/enter_bug.cgi?component=api&subcomponent=code&issue_type=PATCH&short_desc=vbahelper:%20&assigned_to=npower@openoffice.org">vbahelper</td>
+<td><a href="/issues/enter_bug.cgi?component=gsl&subcomponent=code&issue_type=PATCH&short_desc=vcl:%20&assigned_to=pl@openoffice.org">vcl</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=vigra:%20&assigned_to=thb@openoffice.org">vigra</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=udk&subcomponent=code&issue_type=PATCH&short_desc=vos:%20&assigned_to=kr@openoffice.org">vos</td>
+<td><a href="/issues/enter_bug.cgi?component=Installation&subcomponent=code&issue_type=PATCH&short_desc=wizards:%20&assigned_to=is@openoffice.org">wizards</td>
+<td><a href="/issues/enter_bug.cgi?component=Word%20processor&subcomponent=code&issue_type=PATCH&short_desc=writerfilter:%20&assigned_to=ama@openoffice.org">writerfilter</td>
+<td><a href="/issues/enter_bug.cgi?component=wp&subcomponent=code&issue_type=PATCH&short_desc=writerperfect:%20&assigned_to=fridrich_strba@openoffice.org">writerperfect</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=x11_extensions:%20&assigned_to=pl@openoffice.org">x11_extensions</td>
+<td><a href="/issues/enter_bug.cgi?component=xml&subcomponent=code&issue_type=PATCH&short_desc=xmerge:%20&assigned_to=mba@openoffice.org">xmerge</td>
+</tr>
+<tr class="b">
+<td><a href="/issues/enter_bug.cgi?component=tools&subcomponent=code&issue_type=PATCH&short_desc=xml2cmp:%20&assigned_to=mh@openoffice.org">xml2cmp</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=code&issue_type=PATCH&short_desc=xmlhelp:%20&assigned_to=ab@openoffice.org">xmlhelp</td>
+<td><a href="/issues/enter_bug.cgi?component=xml&subcomponent=code&issue_type=PATCH&short_desc=xmloff:%20&assigned_to=mba@openoffice.org">xmloff</td>
+<td><a href="/issues/enter_bug.cgi?component=framework&subcomponent=scripting&subcomponent=code&issue_type=PATCH&short_desc=xmlscript:%20&assigned_to=kr@openoffice.org">xmlscript</td>
+<td><a href="/issues/enter_bug.cgi?component=xml&subcomponent=code&issue_type=PATCH&short_desc=xmlsecurity:%20&assigned_to=mba@openoffice.org">xmlsecurity</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=xpdf:%20&assigned_to=mh@openoffice.org">xpdf</td>
+</tr>
+<tr class="a">
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=xsltml:%20&assigned_to=mav@openoffice.org">xsltml</td>
+<td><a href="/issues/enter_bug.cgi?component=external&subcomponent=code&issue_type=PATCH&short_desc=zlib:%20&assigned_to=mh@openoffice.org">zlib</td>
+</tr>
+
+ </tr>
+ </table>
+
+ <p/>
+
+ </div>
+ </body>
+</html>
+
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/submission_gateway.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/submission_gateway.template
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/submission_gateway.template?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/submission_gateway.template (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/submission_gateway.template Wed Nov 16 22:14:47 2011
@@ -0,0 +1,154 @@
+<!doctype html PUBLIC "-//W3C//DTD HTML 4.0//EN">
+
+<!-- submission_gateway.html is a generated file, do not edit it directly,
+see create_submission_gateway.pl instead -->
+
+<html lang="en">
+ <head>
+ <meta lang="en" http-equiv="content-type" content="text/html; charset=ISO-8859-1">
+ <title>Submit an Issue - choose component</title>
+ </head>
+ <body>
+ <!--BEGINNING OF APP CLASS-->
+ <div id="issuezilla" class="app">
+ <h1>Issue Tracker</h1>
+ <h2>... submit an Issue</h2>
+ <table width="100%">
+ <tbody>
+ <tr>
+ <td>You can submit issues for OpenOffice.org ...</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>
+ <ul>
+ <li><a href="#application">... by application</a></li>
+ <li><a href="#language">... by language</a></li>
+ <li><a href="#project">... by project</a></li>
+ <li><a href="#code_module">... by code module</a> (for hackers to submit patches)</li>
+ <li><a href="/issues/enter_bug.cgi">... the classical way</a> (for the fearless)</li>
+ </ul>
+ </td>
+ <td>
+ <form action="http://openoffice.org/bugzilla/buglist.cgi" method="get">
+ <table>
+ <tbody>
+ <tr>
+ <td colspan="4">Beforehand, you checked whether the issue is already reported - didn't you?</td>
+ <td/>
+ <td/>
+ </tr>
+ <tr>
+ <td>Summary or Description contains:</td>
+ <td><input size="30" name="quicksearch" type="text" class="inputtext"/></td>
+ <td><input value="Search" type="submit"></td>
+ </tr>
+ </tbody>
+ </table>
+ </form>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <table width="100%">
+ <tbody>
+ <tr>
+ <td>Or you can submit issues for ...</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>
+ <ul>
+ <li><a href="/issues/enter_bug.cgi?component=www&version=current">... the OpenOffice.org infrastructure</a>
+ (including the website, the wiki, mailing lists, Issue Tracker itself, etc.)</li>
+ </ul>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <h3><a name="application"></a>By Application</h3>
+ <table>
+ <tr>
+ <td>
+ <table border=0 cellspacing=1>
+ <tr><th>Application</th><th>To choose if the issue affects OpenOffice.org's...</th></tr>
+ <tr class="a">
+ <td><a href="/issues/enter_bug.cgi?component=Word%20processor">Writer</a></td>
+ <td>text processing application.</td>
+ </tr>
+ <tr class="b">
+ <td><a href="/issues/enter_bug.cgi?component=Spreadsheet">Calc</a></td>
+ <td>spreadsheet application.</td>
+ </tr>
+ <tr class="a">
+ <td><a href="/issues/enter_bug.cgi?component=Drawing">Drawing</a></td>
+ <td>drawing application.</td>
+ </tr>
+ <tr class="b">
+ <td><a href="/issues/enter_bug.cgi?component=Presentation">Impress</a></td>
+ <td>presentation application.</td>
+ </tr>
+ <tr class="a">
+ <td><a href="/issues/enter_bug.cgi?component=Database%20access">Database</a></td>
+ <td>database application.</td>
+ </tr>
+ <tr class="b">
+ <td><a href="/issues/enter_bug.cgi?component=Formula%20editor">Math</a></td>
+ <td>formula editor.</td>
+ </tr>
+ <tr class="a">
+ <td><a href="/issues/enter_bug.cgi?component=Chart">Chart</a></td>
+ <td>charting module.</td>
+ </tr>
+ <tr class="b">
+ <td><a href="/issues/enter_bug.cgi?component=framework">All</a></td>
+ <td>application framework - i.e. all applications.</td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </p>
+
+ <h3><a name="language"></a>By Language</h3>
+
+ <table>
+ <tr>
+ %% All langs %%
+ </tr>
+ </table>
+
+ <h3><a name="project"></a>By Project</h3>
+
+ <table>
+ <tr>
+ %% Toplevels %%
+ </tr>
+ </table>
+
+ <h3><a name="code_module"></a>By Code Module</h3>
+
+ <p>
+ This is if you have a patch to submit. Choose the module below, and the new issue will automatically have
+ type <a href="/scdocs/ddIssues_EnterModify.html#issuetype">PATCH</a> and be assigned
+ to the respective module owner. This document is a generated document, to update it when maintainers change
+ or to add new modules, see
+ <a href="http://qa.openoffice.org/source/browse/qa/www/issue_handling/create_submission_gateway.pl?view=markup">create_submission_gateway.pl</a>
+ </p>
+
+ <p>
+ If you are not a hacker, you're probably wrong in this section.
+ </p>
+
+ <table>
+ <tr>
+ %% All modules %%
+ </tr>
+ </table>
+
+ <p/>
+
+ </div>
+ </body>
+</html>
+
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_feature_QA.gif
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_feature_QA.gif?rev=1202908&view=auto
==============================================================================
Binary file - no diff available.
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_feature_QA.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_feature_implementation.gif
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_feature_implementation.gif?rev=1202908&view=auto
==============================================================================
Binary file - no diff available.
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_feature_implementation.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_feature_specification.gif
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_feature_specification.gif?rev=1202908&view=auto
==============================================================================
Binary file - no diff available.
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_feature_specification.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_issuezilla_confirm.jpg
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_issuezilla_confirm.jpg?rev=1202908&view=auto
==============================================================================
Binary file - no diff available.
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_issuezilla_confirm.jpg
------------------------------------------------------------------------------
svn:mime-type = image/jpeg
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_issuezilla_fix.jpg
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_issuezilla_fix.jpg?rev=1202908&view=auto
==============================================================================
Binary file - no diff available.
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_issuezilla_fix.jpg
------------------------------------------------------------------------------
svn:mime-type = image/jpeg
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_issuezilla_fix_close.jpg
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_issuezilla_fix_close.jpg?rev=1202908&view=auto
==============================================================================
Binary file - no diff available.
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/.inv/taskhandling_workflow_issuezilla_fix_close.jpg
------------------------------------------------------------------------------
svn:mime-type = image/jpeg
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/RFE_issues_by_QA.sxd
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/RFE_issues_by_QA.sxd?rev=1202908&view=auto
==============================================================================
Binary file - no diff available.
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/RFE_issues_by_QA.sxd
------------------------------------------------------------------------------
svn:executable = *
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/RFE_issues_by_QA.sxd
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/defect_triaging.pdf
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/defect_triaging.pdf?rev=1202908&view=auto
==============================================================================
Binary file - no diff available.
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/defect_triaging.pdf
------------------------------------------------------------------------------
svn:mime-type = application/pdf
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/evaluating_RFEs.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/evaluating_RFEs.html?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/evaluating_RFEs.html (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/evaluating_RFEs.html Wed Nov 16 22:14:47 2011
@@ -0,0 +1,10 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+ <head>
+ <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
+ <title>Evaluating RFEs</title>
+ </head>
+ <body>
+ <img style="width: 757px; height: 1513px;" alt="workflow for handling RFEs" src="workflow_for_RFE_issues_by_RFE_engineers.gif"/>
+ </body>
+</html>
\ No newline at end of file
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/evaluating_RFEs.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_QA.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_QA.html?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_QA.html (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_QA.html Wed Nov 16 22:14:47 2011
@@ -0,0 +1,12 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+ <head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8">
+ <title>Feature Implementation Workflow</title>
+ </head>
+ <body>
+ <p>
+ <img src=".inv/taskhandling_workflow_feature_QA.gif" name="graphic1"/>
+ </p>
+ </body>
+</html>
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_QA.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_implementation.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_implementation.html?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_implementation.html (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_implementation.html Wed Nov 16 22:14:47 2011
@@ -0,0 +1,12 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+ <head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8">
+ <title>Feature Implementation Workflow</title>
+ </head>
+ <body>
+ <p>
+ <img src=".inv/taskhandling_workflow_feature_implementation.gif" name="graphic1"/>
+ </p>
+ </body>
+</html>
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_implementation.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_specification.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_specification.html?rev=1202908&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_specification.html (added)
+++ incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_specification.html Wed Nov 16 22:14:47 2011
@@ -0,0 +1,12 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+ <head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8">
+ <title>Feature Specification Workflow</title>
+ </head>
+ <body>
+ <p>
+ <img src=".inv/taskhandling_workflow_feature_specification.gif" name="graphic1"/>
+ </p>
+ </body>
+</html>
Propchange: incubator/ooo/ooo-site/trunk/content/qa/issue_handling/workflowcharts/taskhandling_workflow_feature_specification.html
------------------------------------------------------------------------------
svn:eol-style = native
|