Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: third_party/xdg-utils/scripts/xsl/sharedmime-list.xsl

Issue 151098: Patch from mdm@google.com... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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>
OLDNEW
« no previous file with comments | « third_party/xdg-utils/scripts/xsl/refentry2htmlindex.xsl ('k') | third_party/xdg-utils/scripts/xsl/sharedmime2mimelnk.xsl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698