mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 11:09:06 +00:00
Display .url files as webpage (#550)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// Copyright © 2017 Paddy Xu
|
||||
// Copyright © 2017 Paddy Xu
|
||||
//
|
||||
// This file is part of QuickLook program.
|
||||
//
|
||||
@@ -63,5 +63,25 @@ namespace QuickLook.Plugin.HtmlViewer
|
||||
key?.SetValue(appName, value, RegistryValueKind.DWord);
|
||||
}
|
||||
}
|
||||
|
||||
internal static string GetUrlPath(string url)
|
||||
{
|
||||
int index = -1;
|
||||
string[] lines = File.ReadAllLines(url);
|
||||
foreach (string line in lines)
|
||||
{
|
||||
if (line.ToLower().Contains("url="))
|
||||
{
|
||||
index = System.Array.IndexOf(lines, line);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (index != -1)
|
||||
{
|
||||
var fullLine = lines.GetValue(index);
|
||||
return fullLine.ToString().Substring(fullLine.ToString().LastIndexOf('=') + 1);
|
||||
}
|
||||
return url;
|
||||
}
|
||||
}
|
||||
}
|
@@ -26,7 +26,7 @@ namespace QuickLook.Plugin.HtmlViewer
|
||||
{
|
||||
public class Plugin : IViewer
|
||||
{
|
||||
private static readonly string[] Extensions = { ".mht", ".mhtml", ".htm", ".html", ".svg" };
|
||||
private static readonly string[] Extensions = { ".mht", ".mhtml", ".htm", ".html", ".svg", ".url" };
|
||||
|
||||
private WebpagePanel _panel;
|
||||
|
||||
@@ -44,7 +44,7 @@ namespace QuickLook.Plugin.HtmlViewer
|
||||
|
||||
public void Prepare(string path, ContextObject context)
|
||||
{
|
||||
context.PreferredSize = new Size(1000, 600);
|
||||
context.PreferredSize = new Size(1280, 720);
|
||||
}
|
||||
|
||||
public void View(string path, ContextObject context)
|
||||
@@ -53,6 +53,10 @@ namespace QuickLook.Plugin.HtmlViewer
|
||||
context.ViewerContent = _panel;
|
||||
context.Title = Path.IsPathRooted(path) ? Path.GetFileName(path) : path;
|
||||
|
||||
if (path.ToLower().EndsWith(".url"))
|
||||
{
|
||||
path = Helper.GetUrlPath(path);
|
||||
}
|
||||
_panel.LoadFile(path);
|
||||
_panel.Dispatcher.Invoke(() => { context.IsBusy = false; }, DispatcherPriority.Loaded);
|
||||
}
|
||||
|
@@ -115,6 +115,7 @@ namespace QuickLook.Plugin.HtmlViewer
|
||||
private void InnerBrowserNavigating(object sender, NavigatingCancelEventArgs e)
|
||||
{
|
||||
if (_loaded)
|
||||
if (_innerBrowser.Source != null)
|
||||
if (_innerBrowser.Source.Scheme != e.Uri.Scheme ||
|
||||
_innerBrowser.Source.AbsolutePath != e.Uri.AbsolutePath) // allow in-page navigation
|
||||
e.Cancel = true;
|
||||
|
Reference in New Issue
Block a user