From bc17cc2bd42aeba27d5dcecabbf4816ae4344678 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Tue, 1 Jul 2014 23:19:36 -0400 Subject: [PATCH] Added source to find the documentation later --- .../DataFormats/FileSystem/SevenZip/SevenZipDataFormat.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/SevenZip/SevenZipDataFormat.cs b/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/SevenZip/SevenZipDataFormat.cs index a7355552..6975ac38 100644 --- a/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/SevenZip/SevenZipDataFormat.cs +++ b/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/SevenZip/SevenZipDataFormat.cs @@ -17,6 +17,7 @@ namespace UniversalEditor.DataFormats.FileSystem.SevenZip _dfr.Capabilities.Add(typeof(FileSystemObjectModel), DataFormatCapabilities.All); _dfr.Filters.Add("7-ZIP archive", new byte?[][] { new byte?[] { (byte)'7', (byte)'z', 0xBC, 0xAF, 0x27, 0x1C } }, new string[] { "*.7z" }); _dfr.ContentTypes.Add("application/x-7z-compressed"); + _dfr.Sources.Add("http://cpansearch.perl.org/src/BJOERN/Compress-Deflate7-1.0/7zip/DOC/7zFormat.txt"); } return _dfr; }