diff options
author | Jeff Morriss <jeff.morriss.ws@gmail.com> | 2012-12-19 20:59:41 +0000 |
---|---|---|
committer | Jeff Morriss <jeff.morriss.ws@gmail.com> | 2012-12-19 20:59:41 +0000 |
commit | 9780dcf7be0616317ee6b8eeeb69b8d9570c84b7 (patch) | |
tree | 17f80acbeb8e8af044f8416f1c153d3a47bfdfca /wireshark-mime-package.xml | |
parent | 10dbe80c650b03026e99acd65aab95ffc56c7d91 (diff) | |
download | wireshark-9780dcf7be0616317ee6b8eeeb69b8d9570c84b7.tar.gz wireshark-9780dcf7be0616317ee6b8eeeb69b8d9570c84b7.tar.bz2 wireshark-9780dcf7be0616317ee6b8eeeb69b8d9570c84b7.zip |
Add a mime-info file for freedesktop.org-compliant desktops; this one is
based on that from Fedora.
Define MIME information for PCAP, PCAPNG, and Snoop files.
svn path=/trunk/; revision=46620
Diffstat (limited to 'wireshark-mime-package.xml')
-rw-r--r-- | wireshark-mime-package.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/wireshark-mime-package.xml b/wireshark-mime-package.xml new file mode 100644 index 0000000000..441f5b5503 --- /dev/null +++ b/wireshark-mime-package.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- $Id$ --> + +<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> + <mime-type type="application/vnd.tcpdump.pcap"> + <comment>Packet Capture (PCAP)</comment> + <generic-icon name="application-wireshark-doc"/> + <alias type="application/x-pcap"/> + <alias type="application/pcap"/> + <glob pattern="*.pcap"/> + </mime-type> + + <mime-type type="application/x-pcapng"> + <comment>Packet Capture (PCAPNG)</comment> + <generic-icon name="application-wireshark-doc"/> + <glob pattern="*.pcapng"/> + </mime-type> + + <mime-type type="application/x-snoop"> + <comment>Packet Capture (Snoop)</comment> + <generic-icon name="application-wireshark-doc"/> + <glob pattern="*.snoop"/> + </mime-type> +</mime-info> |