Difference between revisions of "Duplicates"

From Apache OpenOffice Wiki
Jump to: navigation, search
Line 17: Line 17:
 
1. Query for set of issues closed as duplicate.
 
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).
+
2. Hit "Long Form" button to get full text. Save as HTML "<code>dupefilename.html</code>" or text "<code>dupefilename.html</code>".
  
 
3. Process with something 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>.
+
<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>  
 +
 
 +
(for HTML) or
 +
 
 +
<code>grep 'This issue has been marked as a duplicate' dupefilename.txt | cut --delim=' ' --fields=11  | sort | uniq -c | sort -nr | head -30</code>
 +
 
 +
(for text).
 +
 
 +
Here's a list of duplicates popular since the release of 2.0, generated 2005-12-16:
 +
 
 +
    10 52888
 +
      5 52775
 +
      4 58368
 +
      4 57834
 +
      4 53634
 +
      4 52629
 +
      4 50824
 +
      4 48789
 +
      4 46683
 +
      4 44177
 +
      4 25680
 +
      3 53243
 +
      3 53223
 +
      3 50626
 +
      3 47323
 +
      3 39622
 +
      3 35830
 +
      3 25391
 +
      2 7088
 +
      2 59037
 +
      2 58850
 +
      2 58777
 +
      2 58758
 +
      2 57816
 +
      2 57349
 +
      2 56916
 +
      2 56898
 +
      2 56651
 +
      2 56598
 +
      2 5658

Revision as of 17:45, 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 HTML "dupefilename.html" or text "dupefilename.html".

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

(for HTML) or

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

(for text).

Here's a list of duplicates popular since the release of 2.0, generated 2005-12-16:

    10 52888
     5 52775
     4 58368
     4 57834
     4 53634
     4 52629
     4 50824
     4 48789
     4 46683
     4 44177
     4 25680
     3 53243
     3 53223
     3 50626
     3 47323
     3 39622
     3 35830
     3 25391
     2 7088
     2 59037
     2 58850
     2 58777
     2 58758
     2 57816
     2 57349
     2 56916
     2 56898
     2 56651
     2 56598
     2 5658
Personal tools