Bug 5373 - bug in mimetype database
Summary: bug in mimetype database
Status: RESOLVED FIXED
Alias: None
Product: shared-mime-info
Classification: Unclassified
Component: freedesktop.org.xml (show other bugs)
Version: unspecified
Hardware: Other Linux (All)
: high normal
Assignee: Jonathan Blandford
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-12-18 03:10 UTC by Jens Herden
Modified: 2006-02-21 08:59 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

Description Jens Herden 2005-12-18 03:10:36 UTC
There is a bug in this file: 
http://cvs.freedesktop.org/mime/shared-mime-info/freedesktop.org.xml.in?view=markup 
 
This part has wrong patterns: 
 
  <mime-type type="application/x-tex-gf"> 
    <_comment>generic font file</_comment> 
    <glob pattern="*.*gf"/> 
  </mime-type> 
  <mime-type type="application/x-tex-pk"> 
    <_comment>packed font file</_comment> 
    <glob pattern="*pk"/> 
  </mime-type> 
 
and should be replaced by: 
 
  <mime-type type="application/x-tex-gf"> 
    <_comment>generic font file</_comment> 
    <glob pattern="*.gf"/> 
  </mime-type> 
  <mime-type type="application/x-tex-pk"> 
    <_comment>packed font file</_comment> 
    <glob pattern="*.pk"/> 
  </mime-type>
Comment 1 Christian - Manny Calavera - Neumair 2006-02-22 03:59:24 UTC
Thanks, good catch! Fixed.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.