Difference between revisions of "Duplicates"

From Apache OpenOffice Wiki
Jump to: navigation, search
Line 9: Line 9:
 
[http://qa.openoffice.org/issues/buglist.cgi?resolution=FIXED&resolution=WONTFIX&resolution=LATER&resolution=REMIND&resolution=WORKSFORME&resolution=MOVED&resolution=-blank-&email1=&emailtype1=exact&emailassigned_to1=1&emailreporter1=1&emailqa_contact1=1&emailcc1=1&emaillongdesc1=1&email2=&emailtype2=exact&emailreporter2=1&issueidtype=include&issue_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&short_desc=&short_desc_type=substring&long_desc=duplicate.*duplicate&long_desc_type=regexp&issue_file_loc=&issue_file_loc_type=substring&status_whiteboard=&status_whiteboard_type=substring&keywords=&keywords_type=anytokens&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Popularity&newqueryname=&order=Reuse+same+sort+as+last+time&Submit+query=Submit+query All issues which may have been reported more than twice]
 
[http://qa.openoffice.org/issues/buglist.cgi?resolution=FIXED&resolution=WONTFIX&resolution=LATER&resolution=REMIND&resolution=WORKSFORME&resolution=MOVED&resolution=-blank-&email1=&emailtype1=exact&emailassigned_to1=1&emailreporter1=1&emailqa_contact1=1&emailcc1=1&emaillongdesc1=1&email2=&emailtype2=exact&emailreporter2=1&issueidtype=include&issue_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&short_desc=&short_desc_type=substring&long_desc=duplicate.*duplicate&long_desc_type=regexp&issue_file_loc=&issue_file_loc_type=substring&status_whiteboard=&status_whiteboard_type=substring&keywords=&keywords_type=anytokens&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=Popularity&newqueryname=&order=Reuse+same+sort+as+last+time&Submit+query=Submit+query All issues which may have been reported more than twice]
  
[http://qa.openoffice.org/issues/buglist.cgi?issue_status=CLOSED&resolution=DUPLICATE&email1=&emailtype1=exact&emailassigned_to1=1&email2=&emailtype2=exact&emailreporter2=1&issueidtype=include&issue_id=&changedin=30&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&short_desc=&short_desc_type=substring&long_desc=&long_desc_type=substring&issue_file_loc=&issue_file_loc_type=substring&status_whiteboard=&status_whiteboard_type=substring&keywords=&keywords_type=anytokens&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&order=Reuse+same+sort+as+last+time&Submit+query=Submit+query Recent issues closed as duplicate]
+
[http://qa.openoffice.org/issues/buglist.cgi?issue_status=CLOSED&resolution=DUPLICATE&email1=&emailtype1=exact&emailassigned_to1=1&email2=&emailtype2=exact&emailreporter2=1&issueidtype=include&issue_id=&changedin=30&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&short_desc=&short_desc_type=substring&long_desc=&long_desc_type=substring&issue_file_loc=&issue_file_loc_type=substring&status_whiteboard=&status_whiteboard_type=substring&keywords=&keywords_type=anytokens&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&order=Reuse+same+sort+as+last+time&Submit+query=Submit+query Recently active issues closed as duplicate]
 +
 
 +
[http://qa.openoffice.org/issues/buglist.cgi?issue_status=CLOSED&resolution=DUPLICATE&email1=&emailtype1=exact&emailassigned_to1=1&email2=&emailtype2=exact&emailreporter2=1&issueidtype=include&issue_id=&changedin=&votes=&chfield=creation_ts&chfieldfrom=2005-10-20&chfieldto=Now&chfieldvalue=&short_desc=&short_desc_type=substring&long_desc=&long_desc_type=substring&issue_file_loc=&issue_file_loc_type=substring&status_whiteboard=&status_whiteboard_type=substring&keywords=&keywords_type=anytokens&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&order=Issue+Number&Submit+query=Submit+query Issues created since 2005-10-20 closed as duplicate]
 +
 
 +
How to make a list of popular duplicates:
 +
 
 +
1. Query for set of issues closed as duplicate.
 +
 
 +
2. Hit "Long Form" button to get full text. Save as "<code>dupefilename.html</code>" (or whatever you like).
 +
 
 +
3. Process with something like
 +
 
 +
<code>grep 'This issue has been marked as a duplicate' dupefilename.html | cut --delim=' ' --fields=11-12  | sort | uniq -c | sort -nr | head -30</code>.

Revision as of 17:18, 16 December 2005

Some issues get reported time and again.

OOo frequent duplicates list, circa 2002

Open issues which may have been reported more than once

Open issues which may have been reported more than twice

All issues which may have been reported more than twice

Recently active issues closed as duplicate

Issues created since 2005-10-20 closed as duplicate

How to make a list of popular duplicates:

1. Query for set of issues closed as duplicate.

2. Hit "Long Form" button to get full text. Save as "dupefilename.html" (or whatever you like).

3. Process with something like

grep 'This issue has been marked as a duplicate' dupefilename.html | cut --delim=' ' --fields=11-12 | sort | uniq -c | sort -nr | head -30.

Personal tools