Changeset 16341
- Timestamp:
- 12/06/18 17:10:16 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Plugin.cs.frame
r16309 r16341 24 24 using System.Text; 25 25 using HeuristicLab.PluginInfrastructure; 26 using System.Runtime.InteropServices; 27 using System.IO; 26 28 27 29 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views { … … 47 49 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.4")] 48 50 public class HeuristicLabProblemsDataAnalysisSymbolicViewsPlugin : PluginBase { 51 // HeuristicLab is marked with zone identifier 'Internet' after download. 52 // This propagates to all extracted files and can be checked in the file properties. 53 // IE prevents execution of MathJax JavaScript inside of untrusted html 54 // Therefore we need to programmatically unblock the displayModelFrame.html file before extracting. 55 // see http://engram404.net/programmatically-unblocking-downloaded-files/ 56 57 // for removing the Zone.Identifier alternative NTFS stream (effectively unblocking the file) 58 [DllImport("kernel32.dll", SetLastError = true)] 59 private static extern bool DeleteFile(string lpFileName); 60 61 public override void OnLoad() { 62 base.OnLoad(); 63 64 // unblock mathjax.zip () 65 DeleteFile(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "displayModelFrame.html:Zone.Identifier")); 66 } 49 67 } 50 68 }
Note: See TracChangeset
for help on using the changeset viewer.