~saiarcot895/ubuntu/wily/xdg-utils/fix-multiple-execs

« back to all changes in this revision

Viewing changes to scripts/xsl/sharedmime-list.xsl

  • Committer: Package Import Robot
  • Author(s): Per Olofsson
  • Date: 2011-12-12 12:04:25 UTC
  • mfrom: (1.2.8)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20111212120425-0rdnrl8tn45vz171
Tags: 1.1.0~rc1+git20111210-1
* New upstream git snapshot b961235b197647d6649ef3d48d7cc2cecafe3d47.
* Drop patches applied upstream:
  - xdg-mime-follow-symlinks.diff
  - x-www-browser.diff
  - xdg-mime-generic-use-mimetype.diff
  - bashisms.diff
  - xdg-screensaver-check-gnome.diff
* Modify patches to make changes to scripts/xdg-*.in, instead of the
  generated scripts.
* Also check for ~/.mutt/muttrc when deciding whether to use mutt as
  MUA or not. Thanks to martin f krafft. Closes: #648733.
* Build scripts/xdg-* from *.in files.
* Build-depend on xmlto and awk, as they are needed when building the
  scripts.
* Also build the manual pages.
* Bump Standards-Version to 3.9.2. No changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1"?>
 
2
<xsl:stylesheet version="1.0"
 
3
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 
4
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info">
 
5
<xsl:output method="text"
 
6
            encoding="UTF-8"
 
7
            indent="no"/>
 
8
<xsl:template match="/">
 
9
      <xsl:for-each select='mime:mime-info/mime:mime-type'>
 
10
        <xsl:value-of select="@type"/><xsl:text>&#10;</xsl:text>
 
11
      </xsl:for-each>
 
12
</xsl:template>
 
13
</xsl:stylesheet>