├── .gitattributes ├── .gitignore ├── EpicorTraceDiffer.sln ├── EpicorTraceDiffer ├── App.config ├── ChangeLog.html ├── EpicorTraceDiffer.csproj ├── Methods.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TraceGroupFilter.Designer.cs ├── TraceGroupFilter.cs ├── TraceGroupFilter.resx ├── Tracer.txt ├── Update.xml ├── XPathDiscovery │ ├── AttributeXPathName.cs │ ├── CommentXPathName.cs │ ├── ElementXPathName.cs │ ├── IObjectXpathName.cs │ ├── TextXPathName.cs │ └── XpathExtension.cs ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── logoraw_notext_fw_Twv_icon.ico └── packages.config ├── EpicorTraceDifferSetup └── EpicorTraceDifferSetup.vdproj ├── LICENSE ├── README.md ├── XmlDiffLib.1.0.1.3 ├── .signature.p7s └── lib │ └── net40 │ └── XmlDiffLib.dll ├── Zips ├── EpicorDiffer.zip └── Installer.zip ├── _config.yml └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | bld/ 21 | [Bb]in/ 22 | [Oo]bj/ 23 | [Ll]og/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | project.fragment.lock.json 46 | artifacts/ 47 | 48 | *_i.c 49 | *_p.c 50 | *_i.h 51 | *.ilk 52 | *.meta 53 | *.obj 54 | *.pch 55 | *.pdb 56 | *.pgc 57 | *.pgd 58 | *.rsp 59 | *.sbr 60 | *.tlb 61 | *.tli 62 | *.tlh 63 | *.tmp 64 | *.tmp_proj 65 | *.log 66 | *.vspscc 67 | *.vssscc 68 | .builds 69 | *.pidb 70 | *.svclog 71 | *.scc 72 | 73 | # Chutzpah Test files 74 | _Chutzpah* 75 | 76 | # Visual C++ cache files 77 | ipch/ 78 | *.aps 79 | *.ncb 80 | *.opendb 81 | *.opensdf 82 | *.sdf 83 | *.cachefile 84 | *.VC.db 85 | *.VC.VC.opendb 86 | 87 | # Visual Studio profiler 88 | *.psess 89 | *.vsp 90 | *.vspx 91 | *.sap 92 | 93 | # TFS 2012 Local Workspace 94 | $tf/ 95 | 96 | # Guidance Automation Toolkit 97 | *.gpState 98 | 99 | # ReSharper is a .NET coding add-in 100 | _ReSharper*/ 101 | *.[Rr]e[Ss]harper 102 | *.DotSettings.user 103 | 104 | # JustCode is a .NET coding add-in 105 | .JustCode 106 | 107 | # TeamCity is a build add-in 108 | _TeamCity* 109 | 110 | # DotCover is a Code Coverage Tool 111 | *.dotCover 112 | 113 | # NCrunch 114 | _NCrunch_* 115 | .*crunch*.local.xml 116 | nCrunchTemp_* 117 | 118 | # MightyMoose 119 | *.mm.* 120 | AutoTest.Net/ 121 | 122 | # Web workbench (sass) 123 | .sass-cache/ 124 | 125 | # Installshield output folder 126 | [Ee]xpress/ 127 | 128 | # DocProject is a documentation generator add-in 129 | DocProject/buildhelp/ 130 | DocProject/Help/*.HxT 131 | DocProject/Help/*.HxC 132 | DocProject/Help/*.hhc 133 | DocProject/Help/*.hhk 134 | DocProject/Help/*.hhp 135 | DocProject/Help/Html2 136 | DocProject/Help/html 137 | 138 | # Click-Once directory 139 | publish/ 140 | 141 | # Publish Web Output 142 | *.[Pp]ublish.xml 143 | *.azurePubxml 144 | # TODO: Comment the next line if you want to checkin your web deploy settings 145 | # but database connection strings (with potential passwords) will be unencrypted 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 150 | # checkin your Azure Web App publish settings, but sensitive information contained 151 | # in these scripts will be unencrypted 152 | PublishScripts/ 153 | 154 | # NuGet Packages 155 | *.nupkg 156 | # The packages folder can be ignored because of Package Restore 157 | **/packages/* 158 | # except build/, which is used as an MSBuild target. 159 | !**/packages/build/ 160 | # Uncomment if necessary however generally it will be regenerated when needed 161 | #!**/packages/repositories.config 162 | # NuGet v3's project.json files produces more ignoreable files 163 | *.nuget.props 164 | *.nuget.targets 165 | 166 | # Microsoft Azure Build Output 167 | csx/ 168 | *.build.csdef 169 | 170 | # Microsoft Azure Emulator 171 | ecf/ 172 | rcf/ 173 | 174 | # Windows Store app package directories and files 175 | AppPackages/ 176 | BundleArtifacts/ 177 | Package.StoreAssociation.xml 178 | _pkginfo.txt 179 | 180 | # Visual Studio cache files 181 | # files ending in .cache can be ignored 182 | *.[Cc]ache 183 | # but keep track of directories ending in .cache 184 | !*.[Cc]ache/ 185 | 186 | # Others 187 | ClientBin/ 188 | ~$* 189 | *~ 190 | *.dbmdl 191 | *.dbproj.schemaview 192 | *.jfm 193 | *.pfx 194 | *.publishsettings 195 | node_modules/ 196 | orleans.codegen.cs 197 | 198 | # Since there are multiple workflows, uncomment next line to ignore bower_components 199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 200 | #bower_components/ 201 | 202 | # RIA/Silverlight projects 203 | Generated_Code/ 204 | 205 | # Backup & report files from converting an old project file 206 | # to a newer Visual Studio version. Backup files are not needed, 207 | # because we have git ;-) 208 | _UpgradeReport_Files/ 209 | Backup*/ 210 | UpgradeLog*.XML 211 | UpgradeLog*.htm 212 | 213 | # SQL Server files 214 | *.mdf 215 | *.ldf 216 | 217 | # Business Intelligence projects 218 | *.rdl.data 219 | *.bim.layout 220 | *.bim_*.settings 221 | 222 | # Microsoft Fakes 223 | FakesAssemblies/ 224 | 225 | # GhostDoc plugin setting file 226 | *.GhostDoc.xml 227 | 228 | # Node.js Tools for Visual Studio 229 | .ntvs_analysis.dat 230 | 231 | # Visual Studio 6 build log 232 | *.plg 233 | 234 | # Visual Studio 6 workspace options file 235 | *.opt 236 | 237 | # Visual Studio LightSwitch build output 238 | **/*.HTMLClient/GeneratedArtifacts 239 | **/*.DesktopClient/GeneratedArtifacts 240 | **/*.DesktopClient/ModelManifest.xml 241 | **/*.Server/GeneratedArtifacts 242 | **/*.Server/ModelManifest.xml 243 | _Pvt_Extensions 244 | 245 | # Paket dependency manager 246 | .paket/paket.exe 247 | paket-files/ 248 | 249 | # FAKE - F# Make 250 | .fake/ 251 | 252 | # JetBrains Rider 253 | .idea/ 254 | *.sln.iml 255 | 256 | # CodeRush 257 | .cr/ 258 | 259 | # Python Tools for Visual Studio (PTVS) 260 | __pycache__/ 261 | *.pyc -------------------------------------------------------------------------------- /EpicorTraceDiffer.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.28729.10 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EpicorTraceDiffer", "EpicorTraceDiffer\EpicorTraceDiffer.csproj", "{04297C8F-99A2-4536-A3D5-7CFEAA8A465A}" 7 | EndProject 8 | Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "EpicorTraceDifferSetup", "EpicorTraceDifferSetup\EpicorTraceDifferSetup.vdproj", "{04017351-4682-4721-A96B-E8FAB7A6B0B5}" 9 | EndProject 10 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8F4D6E91-2442-459C-9182-8CCD070B600B}" 11 | ProjectSection(SolutionItems) = preProject 12 | index.html = index.html 13 | README.md = README.md 14 | EndProjectSection 15 | EndProject 16 | Global 17 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 18 | Debug|Any CPU = Debug|Any CPU 19 | Release|Any CPU = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 22 | {04297C8F-99A2-4536-A3D5-7CFEAA8A465A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 23 | {04297C8F-99A2-4536-A3D5-7CFEAA8A465A}.Debug|Any CPU.Build.0 = Debug|Any CPU 24 | {04297C8F-99A2-4536-A3D5-7CFEAA8A465A}.Release|Any CPU.ActiveCfg = Release|Any CPU 25 | {04297C8F-99A2-4536-A3D5-7CFEAA8A465A}.Release|Any CPU.Build.0 = Release|Any CPU 26 | {04017351-4682-4721-A96B-E8FAB7A6B0B5}.Debug|Any CPU.ActiveCfg = Debug 27 | {04017351-4682-4721-A96B-E8FAB7A6B0B5}.Release|Any CPU.ActiveCfg = Release 28 | EndGlobalSection 29 | GlobalSection(SolutionProperties) = preSolution 30 | HideSolutionNode = FALSE 31 | EndGlobalSection 32 | GlobalSection(ExtensibilityGlobals) = postSolution 33 | SolutionGuid = {4DB940D0-CE95-4D45-8C23-13ED4436630E} 34 | EndGlobalSection 35 | EndGlobal 36 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | https://jose-josh-do-dev.github.io/EpicorTraceDiffer/EpicorTraceDiffer/Update.xml 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/ChangeLog.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | Template Library 8 | 9 | 12 | 13 | 15 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 32 | 33 |
34 | 35 | 36 | 37 | 38 | 39 |

Documentation

40 |
41 | 42 | 43 | 44 | 45 | 49 | 50 |
51 | 52 | 53 |
54 | 55 | 56 | 57 |
58 |

Change Log

59 | 60 |

Version 1.6.0

61 |

Release Date: 26/10/2010

62 | 63 |
    64 |
  • Comes with documentation, which is what you are looking at, so you probably know that.
  • 65 |
  • Added the $this->template->set(); method for assigning data with two arguments or a object/array.
  • 66 |
  • Fixed some random bugs with locating layouts, theme partials, etc.
  • 67 |
68 | 69 |

Version 1.5.0

70 |

Release Date: 28/09/2010

71 | 72 |
    73 |
  • Added magical methods __get() and __set() to allow Kohana-style $this->template->foo = 'bar'; for assigning data.
  • 74 |
  • Added mobile support.
  • 75 |
  • Third parameter for $this->template->set_partial(); is now an optional array/object for data specific to that partial only.
  • 76 |
77 | 78 |

Version 1.4.0

79 |

Release Date: 23/07/2010

80 | 81 |
    82 |
  • Removed possibility of duplicate SEO entries, call $this->template->set_metadata('keywords', 'foo'); twice and it will use the 2nd.
  • 83 |
  • Re-did inject logic, now its just for shoving a hunk of HTML into a partial.
  • 84 |
  • Fixed $this->template->theme_exists(), it was not using slug name so falsely returned true.
  • 85 |
86 | 87 |

Version 1.3.0

88 |

Release Date: 24/03/2010

89 | 90 |
    91 |
  • You can now use any extension for your files, not just whatever EXT is set to.
  • 92 |
  • Updated Template library to add support for getting theme layout lists and checking they exist.
  • 93 |
  • Added more options to the default config file.
  • 94 |
  • Now supports a config file that allows a default theme to be set and "Theme locations" to be used. That means you could have application/themes as one and third_party/themes as another.
  • 95 |
96 | 97 |
98 | 99 | 100 | 101 | 105 | 106 | 107 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/EpicorTraceDiffer.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {04297C8F-99A2-4536-A3D5-7CFEAA8A465A} 8 | WinExe 9 | EpicorTraceDiffer 10 | EpicorTraceDiffer 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | logoraw_notext_fw_Twv_icon.ico 37 | 38 | 39 | 40 | ..\packages\Autoupdater.NET.Official.1.5.4\lib\net40\AutoUpdater.NET.dll 41 | 42 | 43 | D:\Utils\Diff\Menees.Common\Menees.Common.dll 44 | 45 | 46 | D:\Utils\Diff\Menees.Diffs.Controls\Menees.Diffs.dll 47 | 48 | 49 | D:\Utils\Diff\Menees.Diffs.Controls\Menees.Diffs.Controls.dll 50 | 51 | 52 | D:\Utils\Diff\Menees.Diffs.Controls\Menees.Windows.Forms.dll 53 | 54 | 55 | ..\packages\jacobslusser.ScintillaNET.3.6.3\lib\net40\ScintillaNET.dll 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | ..\packages\XMLDiffPatch.1.0.8.28\lib\net\XmlDiffPatch.dll 70 | 71 | 72 | ..\packages\XMLDiffPatch.1.0.8.28\lib\net\XmlDiffPatch.View.dll 73 | 74 | 75 | 76 | 77 | Form 78 | 79 | 80 | frmMain.cs 81 | 82 | 83 | 84 | 85 | 86 | Form 87 | 88 | 89 | TraceGroupFilter.cs 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | frmMain.cs 99 | 100 | 101 | ResXFileCodeGenerator 102 | Resources.Designer.cs 103 | Designer 104 | 105 | 106 | True 107 | Resources.resx 108 | 109 | 110 | TraceGroupFilter.cs 111 | 112 | 113 | 114 | SettingsSingleFileGenerator 115 | Settings.Designer.cs 116 | 117 | 118 | True 119 | Settings.settings 120 | True 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | del $(TargetDir)..\..\..\Zips\EpicorDiffer.zip 135 | powershell.exe -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::CreateFromDirectory('$(TargetDir)', '$(TargetDir)..\..\..\Zips\EpicorDiffer.zip'); }" 136 | 137 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/Methods.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Xml.Linq; 7 | 8 | namespace EpicorTraceDiffer 9 | { 10 | public class Methods: IComparable, IEquatable 11 | { 12 | public string BO { get; set; } 13 | public string Method { get; set; } 14 | 15 | public string TraceGroup { get; set; } 16 | public XElement ReturnValue { get; set; } 17 | public XElement Parameters { get; set; } 18 | 19 | public XElement FullPacket { get; set; } 20 | public int CompareTo(object obj) 21 | { 22 | Methods o = obj as Methods; 23 | 24 | return $"{this.ToString()}".CompareTo($"{this.ToString()}"); 25 | } 26 | 27 | public override string ToString() 28 | { 29 | return $"{BO}.{Method}()"; 30 | } 31 | 32 | bool IEquatable.Equals(Methods other) 33 | { 34 | return this.Method.CompareTo(other) == 0; 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace EpicorTraceDiffer 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new frmTraceDiffer()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Epicor Trace Differ")] 9 | [assembly: AssemblyDescription("Application which allows you to easily parse and process Epicor Client Trace Files")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Jose and Josh Do Dev")] 12 | [assembly: AssemblyProduct("EpicorTraceDiffer")] 13 | [assembly: AssemblyCopyright("Copyright © 2019")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("04297c8f-99a2-4536-a3d5-7cfeaa8a465a")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.7")] 36 | [assembly: AssemblyFileVersion("1.0.0.7")] 37 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace EpicorTraceDiffer.Properties 12 | { 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Returns the cached ResourceManager instance used by this class. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EpicorTraceDiffer.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Overrides the current thread's CurrentUICulture property for all 56 | /// resource lookups using this strongly typed resource class. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace EpicorTraceDiffer.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.ApplicationScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.DefaultSettingValueAttribute("https://raw.githubusercontent.com/jose-josh-do-dev/EpicorTraceDiffer/master/Epico" + 29 | "rTraceDiffer/Update.xml")] 30 | public string UpdateURL { 31 | get { 32 | return ((string)(this["UpdateURL"])); 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | https://raw.githubusercontent.com/jose-josh-do-dev/EpicorTraceDiffer/master/EpicorTraceDiffer/Update.xml 7 | 8 | 9 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/TraceGroupFilter.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace EpicorTraceDiffer 2 | { 3 | partial class TraceGroupFilter 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TraceGroupFilter)); 32 | this.cmbTraceGroup = new System.Windows.Forms.ComboBox(); 33 | this.label1 = new System.Windows.Forms.Label(); 34 | this.btnOK = new System.Windows.Forms.Button(); 35 | this.btnCancel = new System.Windows.Forms.Button(); 36 | this.SuspendLayout(); 37 | // 38 | // cmbTraceGroup 39 | // 40 | this.cmbTraceGroup.FormattingEnabled = true; 41 | this.cmbTraceGroup.Location = new System.Drawing.Point(111, 22); 42 | this.cmbTraceGroup.Name = "cmbTraceGroup"; 43 | this.cmbTraceGroup.Size = new System.Drawing.Size(189, 21); 44 | this.cmbTraceGroup.TabIndex = 0; 45 | // 46 | // label1 47 | // 48 | this.label1.AutoSize = true; 49 | this.label1.Location = new System.Drawing.Point(13, 25); 50 | this.label1.Name = "label1"; 51 | this.label1.Size = new System.Drawing.Size(92, 13); 52 | this.label1.TabIndex = 1; 53 | this.label1.Text = "After Trace Group"; 54 | // 55 | // btnOK 56 | // 57 | this.btnOK.Location = new System.Drawing.Point(111, 50); 58 | this.btnOK.Name = "btnOK"; 59 | this.btnOK.Size = new System.Drawing.Size(75, 23); 60 | this.btnOK.TabIndex = 2; 61 | this.btnOK.Text = "OK"; 62 | this.btnOK.UseVisualStyleBackColor = true; 63 | this.btnOK.Click += new System.EventHandler(this.btnOK_Click); 64 | // 65 | // btnCancel 66 | // 67 | this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 68 | this.btnCancel.Location = new System.Drawing.Point(208, 50); 69 | this.btnCancel.Name = "btnCancel"; 70 | this.btnCancel.Size = new System.Drawing.Size(92, 23); 71 | this.btnCancel.TabIndex = 3; 72 | this.btnCancel.Text = "Cancel /Clear"; 73 | this.btnCancel.UseVisualStyleBackColor = true; 74 | this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); 75 | // 76 | // TraceGroupFilter 77 | // 78 | this.AcceptButton = this.btnOK; 79 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 80 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 81 | this.CancelButton = this.btnCancel; 82 | this.ClientSize = new System.Drawing.Size(330, 95); 83 | this.ControlBox = false; 84 | this.Controls.Add(this.btnCancel); 85 | this.Controls.Add(this.btnOK); 86 | this.Controls.Add(this.label1); 87 | this.Controls.Add(this.cmbTraceGroup); 88 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; 89 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 90 | this.Name = "TraceGroupFilter"; 91 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 92 | this.Text = "Trace Group Filter"; 93 | this.ResumeLayout(false); 94 | this.PerformLayout(); 95 | 96 | } 97 | 98 | #endregion 99 | 100 | private System.Windows.Forms.ComboBox cmbTraceGroup; 101 | private System.Windows.Forms.Label label1; 102 | private System.Windows.Forms.Button btnOK; 103 | private System.Windows.Forms.Button btnCancel; 104 | } 105 | } -------------------------------------------------------------------------------- /EpicorTraceDiffer/TraceGroupFilter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | using System.Xml.Linq; 11 | 12 | namespace EpicorTraceDiffer 13 | { 14 | public partial class TraceGroupFilter : Form 15 | { 16 | public XElement selectedTraceGroup = null; 17 | public TraceGroupFilter(List tgs) 18 | { 19 | InitializeComponent(); 20 | this.cmbTraceGroup.DataSource = tgs; 21 | this.cmbTraceGroup.DisplayMember = "FirstAttribute"; 22 | } 23 | 24 | private void btnOK_Click(object sender, EventArgs e) 25 | { 26 | this.selectedTraceGroup = cmbTraceGroup?.SelectedItem as XElement; 27 | this.DialogResult = DialogResult.OK; 28 | } 29 | 30 | private void btnCancel_Click(object sender, EventArgs e) 31 | { 32 | this.DialogResult = DialogResult.OK; 33 | this.selectedTraceGroup = null; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/Update.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 1.0.0.7 4 | https://jose-josh-do-dev.github.io/EpicorTraceDiffer/Zips/EpicorDiffer.zip 5 | https://jose-josh-do-dev.github.io/EpicorTraceDiffer/ 6 | false 7 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/XPathDiscovery/AttributeXPathName.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Xml.Linq; 3 | 4 | namespace EpicorTraceDiffer.XPathDiscovery 5 | { 6 | internal class AttributeXPathName : IObjectXpathName 7 | { 8 | public string GetXpathName(XObject node, IDictionary namespacePrefixes) 9 | { 10 | var xAttr = (XAttribute)node; 11 | string preffix; 12 | namespacePrefixes.TryGetValue(xAttr.Name.NamespaceName, out preffix); 13 | 14 | return "@" + XpathExtension.BuildXpathName(preffix, 15 | xAttr.Name.LocalName); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/XPathDiscovery/CommentXPathName.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Xml.Linq; 3 | 4 | namespace EpicorTraceDiffer.XPathDiscovery 5 | { 6 | internal class CommentXPathName : IObjectXpathName 7 | { 8 | public string GetXpathName(XObject node, IDictionary namespacePrefixes) 9 | { 10 | return "comment()"; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/XPathDiscovery/ElementXPathName.cs: -------------------------------------------------------------------------------- 1 | //Eli Algranti Copyright � 2013 2 | using System.Collections.Generic; 3 | using System.Xml.Linq; 4 | 5 | namespace EpicorTraceDiffer.XPathDiscovery 6 | { 7 | internal class ElementXPathName : IObjectXpathName 8 | { 9 | public string GetXpathName(XObject node, IDictionary namespacePrefixes) 10 | { 11 | var xElem = (XElement)node; 12 | string preffix; 13 | namespacePrefixes.TryGetValue(xElem.Name.NamespaceName, out preffix); 14 | 15 | return XpathExtension.BuildXpathName(preffix, 16 | xElem.Name.LocalName, 17 | xElem.GetCardinality()); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/XPathDiscovery/IObjectXpathName.cs: -------------------------------------------------------------------------------- 1 | //Eli Algranti Copyright � 2013 2 | using System.Collections.Generic; 3 | using System.Xml.Linq; 4 | 5 | namespace EpicorTraceDiffer.XPathDiscovery 6 | { 7 | internal interface IObjectXpathName 8 | { 9 | string GetXpathName(XObject node, IDictionary namespacePrefixes); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/XPathDiscovery/TextXPathName.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Xml.Linq; 3 | 4 | namespace EpicorTraceDiffer.XPathDiscovery 5 | { 6 | internal class TextXPathName : IObjectXpathName 7 | { 8 | public string GetXpathName(XObject node, IDictionary namespacePrefixes) 9 | { 10 | return "text()"; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/XPathDiscovery/XpathExtension.cs: -------------------------------------------------------------------------------- 1 | //Eli Algranti Copyright � 2013 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Xml.Linq; 7 | 8 | namespace EpicorTraceDiffer.XPathDiscovery 9 | { 10 | public static class XpathExtension 11 | { 12 | private static readonly IDictionary XpathNames = 13 | new Dictionary 14 | { 15 | {typeof(XElement), new ElementXPathName()}, 16 | {typeof(XAttribute), new AttributeXPathName()}, 17 | {typeof(XText), new TextXPathName()}, 18 | {typeof(XCData), new TextXPathName()}, 19 | {typeof(XComment), new CommentXPathName()} 20 | }; 21 | 22 | /// 23 | /// Constructs and returns the XPath for the in document. 24 | /// 25 | /// 26 | /// Can construct the XPath for instances of the following 27 | /// actual types: 28 | /// 29 | /// 30 | /// 31 | /// 32 | /// 33 | /// 34 | /// 35 | /// 36 | /// 37 | public static string GetXPath(this XObject xObject) 38 | { 39 | var builder = new StringBuilder(); 40 | 41 | var namespacePrefixes = new Dictionary(); 42 | var curObject = xObject; 43 | while (curObject != null) 44 | { 45 | var xElem = curObject as XElement; 46 | if (xElem != null) 47 | StoreNamespacePrefixed(xElem, namespacePrefixes); 48 | curObject = curObject.Parent; 49 | } 50 | 51 | curObject = xObject; 52 | 53 | while (curObject != null) 54 | { 55 | builder.Insert(0, GetXPathName(curObject, namespacePrefixes)); 56 | builder.Insert(0, '/'); 57 | curObject = curObject.Parent; 58 | } 59 | 60 | 61 | return builder.ToString(); 62 | } 63 | 64 | 65 | private static string GetXPathName(XObject xObject, IDictionary namespacePrefixes) 66 | { 67 | return XpathNames[xObject.GetType()].GetXpathName(xObject, namespacePrefixes); 68 | } 69 | 70 | public static int GetCardinality(this XElement xElement) 71 | { 72 | return xElement.ElementsBeforeSelf().Count(sib => sib.Name.Equals(xElement.Name)) + 1; 73 | } 74 | 75 | internal static string BuildXpathName(string preffix, string name, int cardinality=0) 76 | { 77 | var builder = new StringBuilder(); 78 | 79 | if (!String.IsNullOrEmpty(preffix)) 80 | { 81 | builder.Append(preffix); 82 | builder.Append(':'); 83 | } 84 | 85 | builder.Append(name); 86 | 87 | if (cardinality > 0) 88 | { 89 | builder.Append('['); 90 | builder.Append(cardinality); 91 | builder.Append(']'); 92 | } 93 | return builder.ToString(); 94 | } 95 | 96 | private static void StoreNamespacePrefixed(XElement xElem, IDictionary namespacePrefixes) 97 | { 98 | var nsAttributes = xElem.Attributes().Where(a => a.IsNamespaceDeclaration); 99 | 100 | foreach (var nsAttribute in nsAttributes) 101 | { 102 | var prefix = nsAttribute.Name.NamespaceName == String.Empty 103 | ? String.Empty 104 | : nsAttribute.Name.LocalName; 105 | namespacePrefixes.Add(nsAttribute.Value, prefix); 106 | } 107 | } 108 | } 109 | } 110 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/frmMain.Designer.cs: -------------------------------------------------------------------------------- 1 | using Menees.Diffs.Controls; 2 | 3 | namespace EpicorTraceDiffer 4 | { 5 | partial class frmTraceDiffer 6 | { 7 | /// 8 | /// Required designer variable. 9 | /// 10 | private System.ComponentModel.IContainer components = null; 11 | 12 | /// 13 | /// Clean up any resources being used. 14 | /// 15 | /// true if managed resources should be disposed; otherwise, false. 16 | protected override void Dispose(bool disposing) 17 | { 18 | if (disposing && (components != null)) 19 | { 20 | components.Dispose(); 21 | } 22 | base.Dispose(disposing); 23 | } 24 | 25 | #region Windows Form Designer generated code 26 | 27 | /// 28 | /// Required method for Designer support - do not modify 29 | /// the contents of this method with the code editor. 30 | /// 31 | private void InitializeComponent() 32 | { 33 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTraceDiffer)); 34 | this.btnTrace = new System.Windows.Forms.Button(); 35 | this.txtTraceFile = new System.Windows.Forms.TextBox(); 36 | this.cmbFrom = new System.Windows.Forms.ComboBox(); 37 | this.lblFromMethod = new System.Windows.Forms.Label(); 38 | this.lblToMethod = new System.Windows.Forms.Label(); 39 | this.cmdTo = new System.Windows.Forms.ComboBox(); 40 | this.spcMain = new System.Windows.Forms.SplitContainer(); 41 | this.btnCompare = new System.Windows.Forms.Button(); 42 | this.cmbBO = new System.Windows.Forms.ComboBox(); 43 | this.lblBO = new System.Windows.Forms.Label(); 44 | this.tabC = new System.Windows.Forms.TabControl(); 45 | this.tabPage3 = new System.Windows.Forms.TabPage(); 46 | this.splitTrace = new System.Windows.Forms.SplitContainer(); 47 | this.traceParams = new ScintillaNET.Scintilla(); 48 | this.scinTrace = new ScintillaNET.Scintilla(); 49 | this.tabPage1 = new System.Windows.Forms.TabPage(); 50 | this.dc = new Menees.Diffs.Controls.DiffControl(); 51 | this.tabPage2 = new System.Windows.Forms.TabPage(); 52 | this.menuStrip1 = new System.Windows.Forms.MenuStrip(); 53 | this.checkForUpdateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 54 | this.btnSortBOs = new System.Windows.Forms.Button(); 55 | this.filterTraceGroupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 56 | this.checkForUpdatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 57 | this.lblTG = new System.Windows.Forms.Label(); 58 | ((System.ComponentModel.ISupportInitialize)(this.spcMain)).BeginInit(); 59 | this.spcMain.SuspendLayout(); 60 | this.tabC.SuspendLayout(); 61 | this.tabPage3.SuspendLayout(); 62 | ((System.ComponentModel.ISupportInitialize)(this.splitTrace)).BeginInit(); 63 | this.splitTrace.Panel1.SuspendLayout(); 64 | this.splitTrace.Panel2.SuspendLayout(); 65 | this.splitTrace.SuspendLayout(); 66 | this.tabPage1.SuspendLayout(); 67 | this.tabPage2.SuspendLayout(); 68 | this.menuStrip1.SuspendLayout(); 69 | this.SuspendLayout(); 70 | // 71 | // btnTrace 72 | // 73 | this.btnTrace.Location = new System.Drawing.Point(12, 32); 74 | this.btnTrace.Name = "btnTrace"; 75 | this.btnTrace.Size = new System.Drawing.Size(75, 23); 76 | this.btnTrace.TabIndex = 0; 77 | this.btnTrace.Text = "Trace File"; 78 | this.btnTrace.UseVisualStyleBackColor = true; 79 | this.btnTrace.Click += new System.EventHandler(this.btnTrace_Click); 80 | // 81 | // txtTraceFile 82 | // 83 | this.txtTraceFile.Location = new System.Drawing.Point(94, 34); 84 | this.txtTraceFile.Name = "txtTraceFile"; 85 | this.txtTraceFile.Size = new System.Drawing.Size(450, 20); 86 | this.txtTraceFile.TabIndex = 1; 87 | // 88 | // cmbFrom 89 | // 90 | this.cmbFrom.FormattingEnabled = true; 91 | this.cmbFrom.Location = new System.Drawing.Point(600, 97); 92 | this.cmbFrom.Name = "cmbFrom"; 93 | this.cmbFrom.Size = new System.Drawing.Size(369, 21); 94 | this.cmbFrom.TabIndex = 2; 95 | this.cmbFrom.SelectedIndexChanged += new System.EventHandler(this.CmbFrom_SelectedIndexChanged); 96 | // 97 | // lblFromMethod 98 | // 99 | this.lblFromMethod.AutoSize = true; 100 | this.lblFromMethod.Location = new System.Drawing.Point(527, 100); 101 | this.lblFromMethod.Name = "lblFromMethod"; 102 | this.lblFromMethod.Size = new System.Drawing.Size(67, 13); 103 | this.lblFromMethod.TabIndex = 3; 104 | this.lblFromMethod.Text = "Prior Method"; 105 | // 106 | // lblToMethod 107 | // 108 | this.lblToMethod.AutoSize = true; 109 | this.lblToMethod.Location = new System.Drawing.Point(13, 100); 110 | this.lblToMethod.Name = "lblToMethod"; 111 | this.lblToMethod.Size = new System.Drawing.Size(75, 13); 112 | this.lblToMethod.TabIndex = 5; 113 | this.lblToMethod.Text = "Method to Call"; 114 | // 115 | // cmdTo 116 | // 117 | this.cmdTo.FormattingEnabled = true; 118 | this.cmdTo.Location = new System.Drawing.Point(94, 97); 119 | this.cmdTo.Name = "cmdTo"; 120 | this.cmdTo.Size = new System.Drawing.Size(369, 21); 121 | this.cmdTo.TabIndex = 4; 122 | this.cmdTo.SelectedIndexChanged += new System.EventHandler(this.CmdTo_SelectedIndexChanged); 123 | // 124 | // spcMain 125 | // 126 | this.spcMain.Dock = System.Windows.Forms.DockStyle.Fill; 127 | this.spcMain.IsSplitterFixed = true; 128 | this.spcMain.Location = new System.Drawing.Point(3, 3); 129 | this.spcMain.Name = "spcMain"; 130 | this.spcMain.Size = new System.Drawing.Size(952, 391); 131 | this.spcMain.SplitterDistance = 474; 132 | this.spcMain.SplitterWidth = 1; 133 | this.spcMain.TabIndex = 6; 134 | // 135 | // btnCompare 136 | // 137 | this.btnCompare.Location = new System.Drawing.Point(890, 124); 138 | this.btnCompare.Name = "btnCompare"; 139 | this.btnCompare.Size = new System.Drawing.Size(75, 23); 140 | this.btnCompare.TabIndex = 7; 141 | this.btnCompare.Text = "Compare"; 142 | this.btnCompare.UseVisualStyleBackColor = true; 143 | this.btnCompare.Click += new System.EventHandler(this.btnCompare_Click); 144 | // 145 | // cmbBO 146 | // 147 | this.cmbBO.FormattingEnabled = true; 148 | this.cmbBO.Location = new System.Drawing.Point(94, 70); 149 | this.cmbBO.Name = "cmbBO"; 150 | this.cmbBO.Size = new System.Drawing.Size(369, 21); 151 | this.cmbBO.TabIndex = 8; 152 | this.cmbBO.SelectedIndexChanged += new System.EventHandler(this.cmbBO_SelectedIndexChanged); 153 | // 154 | // lblBO 155 | // 156 | this.lblBO.AutoSize = true; 157 | this.lblBO.Location = new System.Drawing.Point(65, 73); 158 | this.lblBO.Name = "lblBO"; 159 | this.lblBO.Size = new System.Drawing.Size(22, 13); 160 | this.lblBO.TabIndex = 9; 161 | this.lblBO.Text = "BO"; 162 | // 163 | // tabC 164 | // 165 | this.tabC.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 166 | | System.Windows.Forms.AnchorStyles.Left) 167 | | System.Windows.Forms.AnchorStyles.Right))); 168 | this.tabC.Controls.Add(this.tabPage3); 169 | this.tabC.Controls.Add(this.tabPage1); 170 | this.tabC.Controls.Add(this.tabPage2); 171 | this.tabC.Location = new System.Drawing.Point(3, 159); 172 | this.tabC.Name = "tabC"; 173 | this.tabC.SelectedIndex = 0; 174 | this.tabC.Size = new System.Drawing.Size(966, 423); 175 | this.tabC.TabIndex = 10; 176 | // 177 | // tabPage3 178 | // 179 | this.tabPage3.Controls.Add(this.splitTrace); 180 | this.tabPage3.Location = new System.Drawing.Point(4, 22); 181 | this.tabPage3.Margin = new System.Windows.Forms.Padding(2); 182 | this.tabPage3.Name = "tabPage3"; 183 | this.tabPage3.Padding = new System.Windows.Forms.Padding(2); 184 | this.tabPage3.Size = new System.Drawing.Size(958, 397); 185 | this.tabPage3.TabIndex = 2; 186 | this.tabPage3.Text = "Method Trace Info"; 187 | this.tabPage3.UseVisualStyleBackColor = true; 188 | // 189 | // splitTrace 190 | // 191 | this.splitTrace.Dock = System.Windows.Forms.DockStyle.Fill; 192 | this.splitTrace.Location = new System.Drawing.Point(2, 2); 193 | this.splitTrace.Margin = new System.Windows.Forms.Padding(2); 194 | this.splitTrace.Name = "splitTrace"; 195 | this.splitTrace.Orientation = System.Windows.Forms.Orientation.Horizontal; 196 | // 197 | // splitTrace.Panel1 198 | // 199 | this.splitTrace.Panel1.Controls.Add(this.traceParams); 200 | // 201 | // splitTrace.Panel2 202 | // 203 | this.splitTrace.Panel2.Controls.Add(this.scinTrace); 204 | this.splitTrace.Size = new System.Drawing.Size(954, 393); 205 | this.splitTrace.SplitterDistance = 73; 206 | this.splitTrace.SplitterWidth = 1; 207 | this.splitTrace.TabIndex = 0; 208 | // 209 | // traceParams 210 | // 211 | this.traceParams.Dock = System.Windows.Forms.DockStyle.Fill; 212 | this.traceParams.Location = new System.Drawing.Point(0, 0); 213 | this.traceParams.Margin = new System.Windows.Forms.Padding(2); 214 | this.traceParams.Name = "traceParams"; 215 | this.traceParams.Size = new System.Drawing.Size(954, 73); 216 | this.traceParams.TabIndex = 0; 217 | // 218 | // scinTrace 219 | // 220 | this.scinTrace.Dock = System.Windows.Forms.DockStyle.Fill; 221 | this.scinTrace.Lexer = ScintillaNET.Lexer.Xml; 222 | this.scinTrace.Location = new System.Drawing.Point(0, 0); 223 | this.scinTrace.Margin = new System.Windows.Forms.Padding(2); 224 | this.scinTrace.Name = "scinTrace"; 225 | this.scinTrace.Size = new System.Drawing.Size(954, 319); 226 | this.scinTrace.TabIndex = 0; 227 | // 228 | // tabPage1 229 | // 230 | this.tabPage1.Controls.Add(this.dc); 231 | this.tabPage1.Location = new System.Drawing.Point(4, 22); 232 | this.tabPage1.Name = "tabPage1"; 233 | this.tabPage1.Padding = new System.Windows.Forms.Padding(3); 234 | this.tabPage1.Size = new System.Drawing.Size(958, 397); 235 | this.tabPage1.TabIndex = 0; 236 | this.tabPage1.Text = "Diff"; 237 | this.tabPage1.UseVisualStyleBackColor = true; 238 | // 239 | // dc 240 | // 241 | this.dc.Dock = System.Windows.Forms.DockStyle.Fill; 242 | this.dc.Font = new System.Drawing.Font("Segoe UI", 9F); 243 | this.dc.LineDiffHeight = 63; 244 | this.dc.Location = new System.Drawing.Point(3, 3); 245 | this.dc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 246 | this.dc.Name = "dc"; 247 | this.dc.OverviewWidth = 38; 248 | this.dc.ShowWhiteSpaceInLineDiff = true; 249 | this.dc.Size = new System.Drawing.Size(952, 391); 250 | this.dc.TabIndex = 0; 251 | this.dc.ViewFont = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 252 | // 253 | // tabPage2 254 | // 255 | this.tabPage2.Controls.Add(this.spcMain); 256 | this.tabPage2.Location = new System.Drawing.Point(4, 22); 257 | this.tabPage2.Name = "tabPage2"; 258 | this.tabPage2.Padding = new System.Windows.Forms.Padding(3); 259 | this.tabPage2.Size = new System.Drawing.Size(958, 397); 260 | this.tabPage2.TabIndex = 1; 261 | this.tabPage2.Text = "Code"; 262 | this.tabPage2.UseVisualStyleBackColor = true; 263 | // 264 | // menuStrip1 265 | // 266 | this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 267 | this.checkForUpdateToolStripMenuItem}); 268 | this.menuStrip1.Location = new System.Drawing.Point(0, 0); 269 | this.menuStrip1.Name = "menuStrip1"; 270 | this.menuStrip1.Size = new System.Drawing.Size(973, 24); 271 | this.menuStrip1.TabIndex = 11; 272 | this.menuStrip1.Text = "menuStrip1"; 273 | // 274 | // checkForUpdateToolStripMenuItem 275 | // 276 | this.checkForUpdateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 277 | this.filterTraceGroupToolStripMenuItem, 278 | this.checkForUpdatesToolStripMenuItem}); 279 | this.checkForUpdateToolStripMenuItem.Name = "checkForUpdateToolStripMenuItem"; 280 | this.checkForUpdateToolStripMenuItem.Size = new System.Drawing.Size(59, 20); 281 | this.checkForUpdateToolStripMenuItem.Text = "Actions"; 282 | this.checkForUpdateToolStripMenuItem.Click += new System.EventHandler(this.CheckForUpdateToolStripMenuItem_Click); 283 | // 284 | // btnSortBOs 285 | // 286 | this.btnSortBOs.Location = new System.Drawing.Point(470, 70); 287 | this.btnSortBOs.Name = "btnSortBOs"; 288 | this.btnSortBOs.Size = new System.Drawing.Size(75, 23); 289 | this.btnSortBOs.TabIndex = 12; 290 | this.btnSortBOs.Text = "Sort"; 291 | this.btnSortBOs.UseVisualStyleBackColor = true; 292 | this.btnSortBOs.Click += new System.EventHandler(this.BtnSortBOs_Click); 293 | // 294 | // filterTraceGroupToolStripMenuItem 295 | // 296 | this.filterTraceGroupToolStripMenuItem.Name = "filterTraceGroupToolStripMenuItem"; 297 | this.filterTraceGroupToolStripMenuItem.Size = new System.Drawing.Size(180, 22); 298 | this.filterTraceGroupToolStripMenuItem.Text = "Filter Trace Group"; 299 | this.filterTraceGroupToolStripMenuItem.Click += new System.EventHandler(this.filterTraceGroupToolStripMenuItem_Click); 300 | // 301 | // checkForUpdatesToolStripMenuItem 302 | // 303 | this.checkForUpdatesToolStripMenuItem.Name = "checkForUpdatesToolStripMenuItem"; 304 | this.checkForUpdatesToolStripMenuItem.Size = new System.Drawing.Size(180, 22); 305 | this.checkForUpdatesToolStripMenuItem.Text = "Check for Updates"; 306 | this.checkForUpdatesToolStripMenuItem.Click += new System.EventHandler(this.checkForUpdatesToolStripMenuItem_Click); 307 | // 308 | // lblTG 309 | // 310 | this.lblTG.AutoSize = true; 311 | this.lblTG.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 312 | this.lblTG.ForeColor = System.Drawing.Color.Red; 313 | this.lblTG.Location = new System.Drawing.Point(595, 34); 314 | this.lblTG.Name = "lblTG"; 315 | this.lblTG.Size = new System.Drawing.Size(0, 25); 316 | this.lblTG.TabIndex = 13; 317 | // 318 | // frmTraceDiffer 319 | // 320 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 321 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 322 | this.ClientSize = new System.Drawing.Size(973, 594); 323 | this.Controls.Add(this.lblTG); 324 | this.Controls.Add(this.btnSortBOs); 325 | this.Controls.Add(this.tabC); 326 | this.Controls.Add(this.lblBO); 327 | this.Controls.Add(this.cmbBO); 328 | this.Controls.Add(this.btnCompare); 329 | this.Controls.Add(this.lblToMethod); 330 | this.Controls.Add(this.cmdTo); 331 | this.Controls.Add(this.lblFromMethod); 332 | this.Controls.Add(this.cmbFrom); 333 | this.Controls.Add(this.txtTraceFile); 334 | this.Controls.Add(this.btnTrace); 335 | this.Controls.Add(this.menuStrip1); 336 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 337 | this.MainMenuStrip = this.menuStrip1; 338 | this.Name = "frmTraceDiffer"; 339 | this.Text = "Epicor Trace Parser"; 340 | this.Load += new System.EventHandler(this.frmTraceDiffer_Load); 341 | ((System.ComponentModel.ISupportInitialize)(this.spcMain)).EndInit(); 342 | this.spcMain.ResumeLayout(false); 343 | this.tabC.ResumeLayout(false); 344 | this.tabPage3.ResumeLayout(false); 345 | this.splitTrace.Panel1.ResumeLayout(false); 346 | this.splitTrace.Panel2.ResumeLayout(false); 347 | ((System.ComponentModel.ISupportInitialize)(this.splitTrace)).EndInit(); 348 | this.splitTrace.ResumeLayout(false); 349 | this.tabPage1.ResumeLayout(false); 350 | this.tabPage2.ResumeLayout(false); 351 | this.menuStrip1.ResumeLayout(false); 352 | this.menuStrip1.PerformLayout(); 353 | this.ResumeLayout(false); 354 | this.PerformLayout(); 355 | 356 | } 357 | 358 | #endregion 359 | 360 | private System.Windows.Forms.Button btnTrace; 361 | private System.Windows.Forms.TextBox txtTraceFile; 362 | private System.Windows.Forms.ComboBox cmbFrom; 363 | private System.Windows.Forms.Label lblFromMethod; 364 | private System.Windows.Forms.Label lblToMethod; 365 | private System.Windows.Forms.ComboBox cmdTo; 366 | private System.Windows.Forms.SplitContainer spcMain; 367 | private System.Windows.Forms.Button btnCompare; 368 | private System.Windows.Forms.ComboBox cmbBO; 369 | private System.Windows.Forms.Label lblBO; 370 | private System.Windows.Forms.TabControl tabC; 371 | private System.Windows.Forms.TabPage tabPage1; 372 | private System.Windows.Forms.TabPage tabPage2; 373 | private DiffControl dc; 374 | private System.Windows.Forms.TabPage tabPage3; 375 | private System.Windows.Forms.SplitContainer splitTrace; 376 | private ScintillaNET.Scintilla traceParams; 377 | private ScintillaNET.Scintilla scinTrace; 378 | private System.Windows.Forms.MenuStrip menuStrip1; 379 | private System.Windows.Forms.ToolStripMenuItem checkForUpdateToolStripMenuItem; 380 | private System.Windows.Forms.Button btnSortBOs; 381 | private System.Windows.Forms.ToolStripMenuItem filterTraceGroupToolStripMenuItem; 382 | private System.Windows.Forms.ToolStripMenuItem checkForUpdatesToolStripMenuItem; 383 | private System.Windows.Forms.Label lblTG; 384 | } 385 | } 386 | 387 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/frmMain.cs: -------------------------------------------------------------------------------- 1 | using EpicorTraceDiffer.XPathDiscovery; 2 | using Menees.Diffs; 3 | using Microsoft.XmlDiffPatch; 4 | using ScintillaNET; 5 | using System; 6 | using System.Collections.Generic; 7 | using System.ComponentModel; 8 | using System.Data; 9 | using System.Drawing; 10 | using System.IO; 11 | using System.Linq; 12 | using System.Text; 13 | using System.Threading.Tasks; 14 | using System.Windows.Forms; 15 | using System.Xml; 16 | using System.Xml.Linq; 17 | using AutoUpdaterDotNET; 18 | using EpicorTraceDiffer.Properties; 19 | 20 | 21 | namespace EpicorTraceDiffer 22 | { 23 | public partial class frmTraceDiffer : Form 24 | { 25 | public frmTraceDiffer() 26 | { 27 | InitializeComponent(); 28 | 29 | } 30 | ScintillaNET.Scintilla TextArea1, TextArea2; 31 | XDocument xmlDoc; 32 | List methods; 33 | List methodListFrom, methodListTo; 34 | List bos; 35 | //Menees.Diffs.Controls.DiffControl dc; 36 | private void frmTraceDiffer_Load(object sender, EventArgs e) 37 | { 38 | TextArea1 = new ScintillaNET.Scintilla(); 39 | TextArea2 = new ScintillaNET.Scintilla(); 40 | InitSyntaxColoring(TextArea1); 41 | InitSyntaxColoring(TextArea2); 42 | InitSyntaxColoring(traceParams); 43 | InitXmlSyntax(scinTrace); 44 | TextArea1.Dock = DockStyle.Fill; 45 | TextArea2.Dock = DockStyle.Fill; 46 | spcMain.Panel1.Controls.Add(TextArea1); 47 | spcMain.Panel2.Controls.Add(TextArea2); 48 | var mi = dc.GetType().GetField("btnViewFile", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic); 49 | var ts = mi.GetValue(dc); 50 | (ts as ToolStripButton).Visible = false; 51 | 52 | AutoUpdater.Start(Settings.Default.UpdateURL); 53 | 54 | } 55 | 56 | private void btnTrace_Click(object sender, EventArgs e) 57 | { 58 | OpenFileDialog ofd = new OpenFileDialog(); 59 | ofd.Filter="txt files (*.txt)|*.txt|xml files (*.xml)|*.xml"; 60 | if (ofd.ShowDialog() == DialogResult.OK) 61 | { 62 | txtTraceFile.Text = ofd.FileName; 63 | var fragments = File.ReadAllText(ofd.FileName); 64 | var myXml = $"{fragments}"; 65 | var xdoc = XDocument.Parse(myXml); 66 | ParseFile(xdoc.Root.Descendants("methodName").ToList()); 67 | } 68 | } 69 | 70 | private void ParseFile(List ofd) 71 | { 72 | methods = ofd; ; 73 | methodListFrom = new List(); 74 | methodListTo = new List(); 75 | bos = new List(); 76 | foreach (var x in methods) 77 | { 78 | Methods m = new Methods(); 79 | m.BO = (x.PreviousNode as XElement).Value; 80 | if (x.Parent?.PreviousNode != null && (x.Parent.PreviousNode as XElement).Name.ToString().Equals("tracegroup")) 81 | { 82 | m.TraceGroup = (x.Parent.PreviousNode as XElement).Attribute("name").Value; 83 | } 84 | m.Method = x.Value; 85 | m.Parameters = x.Parent.Descendants("parameters").FirstOrDefault(); 86 | m.ReturnValue = x.Parent.Descendants("returnValues").FirstOrDefault(); 87 | m.FullPacket = x.Parent; 88 | methodListFrom.Add(m); 89 | methodListTo.Add(m); 90 | if (!bos.Contains(m.BO)) 91 | bos.Add(m.BO); 92 | } 93 | 94 | cmbBO.DataSource = bos; 95 | } 96 | 97 | private void btnCompare_Click(object sender, EventArgs e) 98 | { 99 | if(cmbFrom.SelectedItem!=null && cmdTo.SelectedItem!=null) 100 | { 101 | Methods from = cmbFrom.SelectedItem as Methods; 102 | Methods to = cmdTo.SelectedItem as Methods; 103 | XElement fromDS=null; 104 | XElement toDS=null; 105 | bool equals = false; 106 | if(!from.BO.Equals(to.BO)) 107 | { 108 | MessageBox.Show("You can't compare methods in different BO's","Error",MessageBoxButtons.OK,MessageBoxIcon.Error); 109 | } 110 | else if(cmbFrom.SelectedIndex> cmdTo.SelectedIndex) 111 | { 112 | MessageBox.Show("You can't compare Methods in reverse order (swap prior and target to comapre","Error", MessageBoxButtons.OK, MessageBoxIcon.Error); 113 | } 114 | else if(from.Equals(to)) 115 | { 116 | fromDS = from.Parameters.Descendants().Where(d => d.Name.ToString().Contains("DataSet")).FirstOrDefault(); 117 | toDS = to.ReturnValue.Descendants().Where(d => d.Name.ToString().Contains("DataSet")).FirstOrDefault(); 118 | equals = true; 119 | } 120 | else if(from.ReturnValue==null) 121 | { 122 | MessageBox.Show("Prior method returns nothing, can't compare what changed!","Info", MessageBoxButtons.OK, MessageBoxIcon.Information); 123 | } 124 | else { 125 | 126 | fromDS =from.ReturnValue.Descendants().Where(d => d.Name.ToString().Contains("DataSet")).FirstOrDefault(); 127 | toDS = to.Parameters.Descendants().Where(d => d.Name.ToString().Contains("DataSet")).FirstOrDefault(); 128 | 129 | if(fromDS==null) 130 | { 131 | MessageBox.Show("The Prior Method isn't returning any data sets can't compare to another","Info", MessageBoxButtons.OK, MessageBoxIcon.Information); 132 | } 133 | else if(toDS==null) 134 | { 135 | MessageBox.Show("The Method to Run doesn't take a dataset parameter so we can't compare it to the prior method","Info", MessageBoxButtons.OK, MessageBoxIcon.Information); 136 | } 137 | else if(!fromDS.Name.Equals(toDS.Name)) 138 | { 139 | MessageBox.Show("These methods take / return different datasets can't realistically compare them", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); 140 | } 141 | 142 | } 143 | if(toDS!=null && fromDS!=null) 144 | { 145 | Comparer(fromDS, toDS, equals); 146 | } 147 | } 148 | else 149 | { 150 | MessageBox.Show("You must select which methods to compare"); 151 | } 152 | } 153 | 154 | private void Comparer(XElement fromDS, XElement toDS, bool equal = false) 155 | { 156 | string from = fromDS.ToString(); 157 | string to = toDS.ToString(); 158 | 159 | 160 | 161 | XmlDiff diff = new XmlDiff(); 162 | diff.IgnoreChildOrder = true; 163 | diff.IgnoreComments = true; 164 | diff.IgnoreDtd = true; 165 | diff.IgnoreNamespaces = true; 166 | diff.IgnorePI = true; 167 | diff.IgnorePrefixes = true; 168 | diff.IgnoreWhitespace = true; 169 | diff.IgnoreXmlDecl = true; 170 | 171 | StringWriter diffgramString = new StringWriter(); 172 | XmlTextWriter diffgramXml = new XmlTextWriter(diffgramString); 173 | bool diffBool = diff.Compare(new XmlTextReader(new StringReader(from)), new XmlTextReader(new StringReader(to)),diffgramXml); 174 | 175 | IList linesFrom = GetLines(from); ; 176 | IList linesTo = GetLines(to); 177 | TextDiff Diff = new TextDiff(HashType.Crc32, true, true); 178 | var es = Diff.Execute(linesFrom, linesTo); 179 | 180 | 181 | dc.SetData(linesFrom, linesTo, es,$"{(equal ? "Data Sent To:":"Returned From:")} {(cmbFrom.SelectedItem as Methods).Method}",$"{(equal ?"Data Returned From:":"Data Sent To:")}{(cmdTo.SelectedItem as Methods).Method}"); 182 | 183 | var dic = GenerateDiffCode(fromDS.Parent, XElement.Load(new StringReader(diffgramString.ToString()))); 184 | bool first = true; 185 | StringBuilder sbOrig = new StringBuilder(); 186 | sbOrig.AppendLine($"//Data Returned from Prior Method{Environment.NewLine}"); 187 | sbOrig.AppendLine("//Note data type of each field not known maye not be a string allow the compiler to assist"); 188 | StringBuilder sbChanged = new StringBuilder(); 189 | 190 | sbChanged.AppendLine($"//Data Changed and Sent to the Selected Method {Environment.NewLine}"); 191 | sbChanged.AppendLine("//Note data type of each field not known maye not be a string allow the compiler to assist"); 192 | if (!equal) 193 | foreach (var x in dic) 194 | { 195 | string[] ds = x.Key.GetXPath().Split('/'); 196 | bool found=false; 197 | string dataSet=""; 198 | string dataTable = ""; 199 | string field = ""; 200 | int dsIdx = -1; 201 | 202 | foreach(string s in ds) 203 | { 204 | dsIdx++; 205 | if (s.Contains("DataSet")) 206 | { 207 | found = true; 208 | break; 209 | } 210 | 211 | } 212 | if(found) 213 | { 214 | if(first) 215 | { 216 | dataSet = ds[dsIdx].Substring(0, ds[dsIdx].IndexOf("[")); 217 | sbOrig.AppendLine($"{dataSet} ds = new {dataSet}();"); 218 | sbChanged.AppendLine($"{dataSet} ds = new {dataSet}();"); 219 | first = false; 220 | } 221 | dataTable = ds[++dsIdx].Substring(0, ds[dsIdx].Length); //TODO: Josh fix this line to subtract 1 from index; 222 | sbOrig.Append($"ds.{dataTable}"); 223 | sbChanged.Append($"ds.{dataTable}"); 224 | field = ds[++dsIdx].Substring(0, ds[dsIdx].IndexOf("[")); 225 | sbOrig.Append($".{field} = "); 226 | sbChanged.Append($".{field} = "); 227 | sbOrig.AppendLine($"\"{x.Key.Value};\""); 228 | sbChanged.AppendLine($"\"{x.Value}\";"); 229 | } 230 | } 231 | TextArea1.Text = sbOrig.ToString(); 232 | TextArea2.Text = sbChanged.ToString(); 233 | 234 | 235 | 236 | 237 | } 238 | 239 | private Dictionary GenerateDiffCode(XElement fromDS, XElement xElement, Dictionary changedDta=null) 240 | { 241 | Dictionary dc; 242 | if (changedDta == null) 243 | dc = new Dictionary(); 244 | else 245 | dc = changedDta; 246 | //fromDS = fromDS.Parent; 247 | XNamespace ns = "http://schemas.microsoft.com/xmltools/2002/xmldiff"; 248 | foreach (var xe in xElement.Elements(ns + "node")) 249 | { 250 | var newfromDs = fromDS.Elements().ToList()[Convert.ToInt32(xe.Attribute("match").Value) -1]; 251 | 252 | 253 | if (xe.Elements(ns+"node").Count()>0) 254 | { 255 | dc=GenerateDiffCode(newfromDs, xe,dc); 256 | } 257 | else 258 | { 259 | dc.Add(newfromDs, xe.Value); 260 | } 261 | } 262 | return dc; 263 | } 264 | 265 | private IList GetLines(string text) 266 | { 267 | IList lines = new List(); 268 | foreach(var s in text.Split(new[] { Environment.NewLine },StringSplitOptions.None)) 269 | { 270 | lines.Add(s); 271 | } 272 | 273 | return lines; 274 | } 275 | 276 | private void cmbBO_SelectedIndexChanged(object sender, EventArgs e) 277 | { 278 | if(cmbBO.SelectedItem!=null) 279 | cmbFrom.DataSource = methodListFrom.Where(b => b.BO == cmbBO.SelectedItem.ToString()).ToList(); 280 | if (cmbBO.SelectedItem != null) 281 | cmdTo.DataSource = methodListTo.Where(b => b.BO == cmbBO.SelectedItem.ToString()).ToList(); 282 | } 283 | 284 | private void CmdTo_SelectedIndexChanged(object sender, EventArgs e) 285 | { 286 | var meth = cmdTo.SelectedItem as Methods; 287 | scinTrace.Text = meth.FullPacket.ToString(); 288 | traceParams.Text = $"//Method Parameters{Environment.NewLine}"; 289 | foreach (var param in meth.FullPacket.Descendants("parameter")) 290 | { 291 | string value = param.Value; 292 | if (param.Attribute("type").Value == "System.String") 293 | { 294 | value = $"\"{value}\""; 295 | } 296 | else if (param.Attribute("type").Value.Contains("DataSet")) 297 | { 298 | value = $"new {param.Attribute("type").Value}()"; 299 | } 300 | traceParams.Text += $"{param.Attribute("type").Value} {param.Attribute("name").Value} = {value}{(param.Attribute("type").Value.Contains("DataSet") ? ";//Dataset should not be new this is an example,rather use your current dataset or pull from adapter" : ";")}{Environment.NewLine}"; 301 | } 302 | ClearCompare(); 303 | } 304 | 305 | private void ClearCompare() 306 | { 307 | TextArea1.Text = ""; 308 | TextArea2.Text = ""; 309 | dc.ResetText(); 310 | } 311 | 312 | private void InitXmlSyntax(Scintilla TextArea) 313 | { 314 | TextArea.StyleResetDefault(); 315 | TextArea.Styles[Style.Default].Font = "Consolas"; 316 | TextArea.Styles[Style.Default].Size = 10; 317 | TextArea.Styles[Style.Default].BackColor = IntToColor(0x212121); 318 | TextArea.Styles[Style.Default].ForeColor = IntToColor(0xFFFFFF); 319 | TextArea.StyleClearAll(); 320 | TextArea.Styles[Style.Xml.Entity].ForeColor = IntToColor(0x1670C4); 321 | TextArea.Styles[Style.Xml.Attribute].ForeColor = IntToColor(0x95DBFD); 322 | TextArea.Styles[Style.Xml.AttributeUnknown].ForeColor = IntToColor(0x860023); 323 | TextArea.Styles[Style.Xml.CData].ForeColor = IntToColor(0xffffff); 324 | TextArea.Styles[Style.Xml.Default].ForeColor = IntToColor(0xffffff); 325 | TextArea.Styles[Style.Xml.DoubleString].ForeColor = Color.Salmon; 326 | TextArea.Styles[Style.Xml.Tag].ForeColor = IntToColor(0x1670C4); 327 | 328 | } 329 | 330 | private void CmbFrom_SelectedIndexChanged(object sender, EventArgs e) 331 | { 332 | ClearCompare(); 333 | } 334 | 335 | private void CheckForUpdateToolStripMenuItem_Click(object sender, EventArgs e) 336 | { 337 | 338 | } 339 | 340 | private void BtnSortBOs_Click(object sender, EventArgs e) 341 | { 342 | 343 | cmbBO.DataSource = null; 344 | bos.Sort(); 345 | cmbBO.DataSource = bos; 346 | 347 | } 348 | 349 | private void checkForUpdatesToolStripMenuItem_Click(object sender, EventArgs e) 350 | { 351 | AutoUpdater.Start(Settings.Default.UpdateURL); 352 | } 353 | 354 | private void filterTraceGroupToolStripMenuItem_Click(object sender, EventArgs e) 355 | { 356 | if (!string.IsNullOrEmpty(txtTraceFile.Text)) 357 | { 358 | var fragments = File.ReadAllText(txtTraceFile.Text); 359 | var myXml = $"{fragments}"; 360 | 361 | xmlDoc = XDocument.Parse(myXml); 362 | var traceGroups = xmlDoc.Descendants("tracegroup").ToList(); 363 | TraceGroupFilter tgF = new TraceGroupFilter(traceGroups); 364 | if (traceGroups != null) 365 | { 366 | if (tgF.ShowDialog(this) == DialogResult.OK) 367 | { 368 | var xe = tgF.selectedTraceGroup; 369 | if (xe != null) 370 | { 371 | List li = new List(); 372 | foreach (var n in xe.NodesAfterSelf()) 373 | { 374 | li.AddRange((n as XElement).Descendants("methodName").ToList()); 375 | } 376 | ParseFile(li); 377 | lblTG.Text = $"After Trace Group:{xe.Attribute("name").Value.ToString()}"; 378 | } 379 | else 380 | { 381 | ParseFile(xmlDoc.Root.Descendants("methodName").ToList()); 382 | lblTG.Text = ""; 383 | } 384 | } 385 | } 386 | else 387 | { 388 | MessageBox.Show("No TraceGroups were found in your Trace", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); 389 | } 390 | } 391 | } 392 | 393 | private void InitSyntaxColoring(ScintillaNET.Scintilla TextArea) 394 | { 395 | 396 | // Configure the default style 397 | TextArea.StyleResetDefault(); 398 | TextArea.Styles[Style.Default].Font = "Consolas"; 399 | TextArea.Styles[Style.Default].Size = 10; 400 | TextArea.Styles[Style.Default].BackColor = IntToColor(0x212121); 401 | TextArea.Styles[Style.Default].ForeColor = IntToColor(0xFFFFFF); 402 | TextArea.StyleClearAll(); 403 | 404 | // Configure the CPP (C#) lexer styles 405 | TextArea.Styles[Style.Cpp.Identifier].ForeColor = IntToColor(0xD0DAE2); 406 | TextArea.Styles[Style.Cpp.Comment].ForeColor = IntToColor(0xBD758B); 407 | TextArea.Styles[Style.Cpp.CommentLine].ForeColor = IntToColor(0x40BF57); 408 | TextArea.Styles[Style.Cpp.CommentDoc].ForeColor = IntToColor(0x2FAE35); 409 | TextArea.Styles[Style.Cpp.Number].ForeColor = IntToColor(0xFFFF00); 410 | TextArea.Styles[Style.Cpp.String].ForeColor = IntToColor(0xFFFF00); 411 | TextArea.Styles[Style.Cpp.Character].ForeColor = IntToColor(0xE95454); 412 | TextArea.Styles[Style.Cpp.Preprocessor].ForeColor = IntToColor(0x8AAFEE); 413 | TextArea.Styles[Style.Cpp.Operator].ForeColor = IntToColor(0xE0E0E0); 414 | TextArea.Styles[Style.Cpp.Regex].ForeColor = IntToColor(0xff00ff); 415 | TextArea.Styles[Style.Cpp.CommentLineDoc].ForeColor = IntToColor(0x77A7DB); 416 | TextArea.Styles[Style.Cpp.Word].ForeColor = IntToColor(0x48A8EE); 417 | TextArea.Styles[Style.Cpp.Word2].ForeColor = IntToColor(0xF98906); 418 | TextArea.Styles[Style.Cpp.CommentDocKeyword].ForeColor = IntToColor(0xB3D991); 419 | TextArea.Styles[Style.Cpp.CommentDocKeywordError].ForeColor = IntToColor(0xFF0000); 420 | TextArea.Styles[Style.Cpp.GlobalClass].ForeColor = IntToColor(0x48A8EE); 421 | 422 | TextArea.Lexer = Lexer.Cpp; 423 | 424 | TextArea.SetKeywords(0, "class extends implements import interface new case do while else if for in switch throw get set function var try catch finally while with default break continue delete return each const namespace package include use is as instanceof typeof author copy default deprecated eventType example exampleText exception haxe inheritDoc internal link mtasc mxmlc param private return see serial serialData serialField since throws usage version langversion playerversion productversion dynamic private public partial static intrinsic internal native override protected AS3 final super this arguments null Infinity NaN undefined true false abstract as base bool break by byte case catch char checked class const continue decimal default delegate do double descending explicit event extern else enum false finally fixed float for foreach from goto group if implicit in int interface internal into is lock long new null namespace object operator out override orderby params private protected public readonly ref return switch struct sbyte sealed short sizeof stackalloc static string select this throw true try typeof uint ulong unchecked unsafe ushort using var virtual volatile void while where yield"); 425 | TextArea.SetKeywords(1, "void Null ArgumentError arguments Array Boolean Class Date DefinitionError Error EvalError Function int Math Namespace Number Object RangeError ReferenceError RegExp SecurityError String SyntaxError TypeError uint XML XMLList Boolean Byte Char DateTime Decimal Double Int16 Int32 Int64 IntPtr SByte Single UInt16 UInt32 UInt64 UIntPtr Void Path File System Windows Forms ScintillaNET"); 426 | 427 | 428 | 429 | 430 | 431 | } 432 | 433 | public static Color IntToColor(int rgb) 434 | { 435 | return Color.FromArgb(255, (byte)(rgb >> 16), (byte)(rgb >> 8), (byte)rgb); 436 | } 437 | } 438 | } 439 | -------------------------------------------------------------------------------- /EpicorTraceDiffer/logoraw_notext_fw_Twv_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jose-josh-do-dev/EpicorTraceDiffer/0779c514826b8f1c2dff5c47588b0aca0407eada/EpicorTraceDiffer/logoraw_notext_fw_Twv_icon.ico -------------------------------------------------------------------------------- /EpicorTraceDiffer/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /EpicorTraceDifferSetup/EpicorTraceDifferSetup.vdproj: -------------------------------------------------------------------------------- 1 | "DeployProject" 2 | { 3 | "VSVersion" = "3:800" 4 | "ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" 5 | "IsWebType" = "8:FALSE" 6 | "ProjectName" = "8:EpicorTraceDifferSetup" 7 | "LanguageId" = "3:1033" 8 | "CodePage" = "3:1252" 9 | "UILanguageId" = "3:1033" 10 | "SccProjectName" = "8:" 11 | "SccLocalPath" = "8:" 12 | "SccAuxPath" = "8:" 13 | "SccProvider" = "8:" 14 | "Hierarchy" 15 | { 16 | "Entry" 17 | { 18 | "MsmKey" = "8:_30B44A4AE4BCA18CDEED6EC1FC78A1C3" 19 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 20 | "MsmSig" = "8:_UNDEFINED" 21 | } 22 | "Entry" 23 | { 24 | "MsmKey" = "8:_51556F1B3F482EEBDAD743108199D74C" 25 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 26 | "MsmSig" = "8:_UNDEFINED" 27 | } 28 | "Entry" 29 | { 30 | "MsmKey" = "8:_69E9097873E08BE1DFB997E32D3BDBD5" 31 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 32 | "MsmSig" = "8:_UNDEFINED" 33 | } 34 | "Entry" 35 | { 36 | "MsmKey" = "8:_7BF431E98E45C795493F47C5967F2826" 37 | "OwnerKey" = "8:_DB0928815DFB22C077ADBCBCF8599F10" 38 | "MsmSig" = "8:_UNDEFINED" 39 | } 40 | "Entry" 41 | { 42 | "MsmKey" = "8:_7BF431E98E45C795493F47C5967F2826" 43 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 44 | "MsmSig" = "8:_UNDEFINED" 45 | } 46 | "Entry" 47 | { 48 | "MsmKey" = "8:_98A9CF1429416AAE146DB3CF725258A2" 49 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 50 | "MsmSig" = "8:_UNDEFINED" 51 | } 52 | "Entry" 53 | { 54 | "MsmKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 55 | "OwnerKey" = "8:_UNDEFINED" 56 | "MsmSig" = "8:_UNDEFINED" 57 | } 58 | "Entry" 59 | { 60 | "MsmKey" = "8:_BA9ADC88F8281F2BE3947D7922D7472B" 61 | "OwnerKey" = "8:_DB0928815DFB22C077ADBCBCF8599F10" 62 | "MsmSig" = "8:_UNDEFINED" 63 | } 64 | "Entry" 65 | { 66 | "MsmKey" = "8:_BA9ADC88F8281F2BE3947D7922D7472B" 67 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 68 | "MsmSig" = "8:_UNDEFINED" 69 | } 70 | "Entry" 71 | { 72 | "MsmKey" = "8:_C79E452F76B7448591E155473BA75F13" 73 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 74 | "MsmSig" = "8:_UNDEFINED" 75 | } 76 | "Entry" 77 | { 78 | "MsmKey" = "8:_C79E452F76B7448591E155473BA75F13" 79 | "OwnerKey" = "8:_30B44A4AE4BCA18CDEED6EC1FC78A1C3" 80 | "MsmSig" = "8:_UNDEFINED" 81 | } 82 | "Entry" 83 | { 84 | "MsmKey" = "8:_DB0928815DFB22C077ADBCBCF8599F10" 85 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 86 | "MsmSig" = "8:_UNDEFINED" 87 | } 88 | "Entry" 89 | { 90 | "MsmKey" = "8:_DC7BDF79FA5D245BC85A1C7F4D12F813" 91 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 92 | "MsmSig" = "8:_UNDEFINED" 93 | } 94 | "Entry" 95 | { 96 | "MsmKey" = "8:_DC7BDF79FA5D245BC85A1C7F4D12F813" 97 | "OwnerKey" = "8:_DB0928815DFB22C077ADBCBCF8599F10" 98 | "MsmSig" = "8:_UNDEFINED" 99 | } 100 | "Entry" 101 | { 102 | "MsmKey" = "8:_DC7BDF79FA5D245BC85A1C7F4D12F813" 103 | "OwnerKey" = "8:_BA9ADC88F8281F2BE3947D7922D7472B" 104 | "MsmSig" = "8:_UNDEFINED" 105 | } 106 | "Entry" 107 | { 108 | "MsmKey" = "8:_UNDEFINED" 109 | "OwnerKey" = "8:_98A9CF1429416AAE146DB3CF725258A2" 110 | "MsmSig" = "8:_UNDEFINED" 111 | } 112 | "Entry" 113 | { 114 | "MsmKey" = "8:_UNDEFINED" 115 | "OwnerKey" = "8:_51556F1B3F482EEBDAD743108199D74C" 116 | "MsmSig" = "8:_UNDEFINED" 117 | } 118 | "Entry" 119 | { 120 | "MsmKey" = "8:_UNDEFINED" 121 | "OwnerKey" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 122 | "MsmSig" = "8:_UNDEFINED" 123 | } 124 | "Entry" 125 | { 126 | "MsmKey" = "8:_UNDEFINED" 127 | "OwnerKey" = "8:_DB0928815DFB22C077ADBCBCF8599F10" 128 | "MsmSig" = "8:_UNDEFINED" 129 | } 130 | "Entry" 131 | { 132 | "MsmKey" = "8:_UNDEFINED" 133 | "OwnerKey" = "8:_BA9ADC88F8281F2BE3947D7922D7472B" 134 | "MsmSig" = "8:_UNDEFINED" 135 | } 136 | "Entry" 137 | { 138 | "MsmKey" = "8:_UNDEFINED" 139 | "OwnerKey" = "8:_7BF431E98E45C795493F47C5967F2826" 140 | "MsmSig" = "8:_UNDEFINED" 141 | } 142 | "Entry" 143 | { 144 | "MsmKey" = "8:_UNDEFINED" 145 | "OwnerKey" = "8:_DC7BDF79FA5D245BC85A1C7F4D12F813" 146 | "MsmSig" = "8:_UNDEFINED" 147 | } 148 | "Entry" 149 | { 150 | "MsmKey" = "8:_UNDEFINED" 151 | "OwnerKey" = "8:_30B44A4AE4BCA18CDEED6EC1FC78A1C3" 152 | "MsmSig" = "8:_UNDEFINED" 153 | } 154 | "Entry" 155 | { 156 | "MsmKey" = "8:_UNDEFINED" 157 | "OwnerKey" = "8:_C79E452F76B7448591E155473BA75F13" 158 | "MsmSig" = "8:_UNDEFINED" 159 | } 160 | "Entry" 161 | { 162 | "MsmKey" = "8:_UNDEFINED" 163 | "OwnerKey" = "8:_69E9097873E08BE1DFB997E32D3BDBD5" 164 | "MsmSig" = "8:_UNDEFINED" 165 | } 166 | } 167 | "Configurations" 168 | { 169 | "Debug" 170 | { 171 | "DisplayName" = "8:Debug" 172 | "IsDebugOnly" = "11:TRUE" 173 | "IsReleaseOnly" = "11:FALSE" 174 | "OutputFilename" = "8:Debug\\EpicorTraceDifferSetup.msi" 175 | "PackageFilesAs" = "3:2" 176 | "PackageFileSize" = "3:-2147483648" 177 | "CabType" = "3:1" 178 | "Compression" = "3:2" 179 | "SignOutput" = "11:FALSE" 180 | "CertificateFile" = "8:" 181 | "PrivateKeyFile" = "8:" 182 | "TimeStampServer" = "8:" 183 | "InstallerBootstrapper" = "3:2" 184 | } 185 | "Release" 186 | { 187 | "DisplayName" = "8:Release" 188 | "IsDebugOnly" = "11:FALSE" 189 | "IsReleaseOnly" = "11:TRUE" 190 | "OutputFilename" = "8:Release\\EpicorTraceDifferSetup.msi" 191 | "PackageFilesAs" = "3:2" 192 | "PackageFileSize" = "3:-2147483648" 193 | "CabType" = "3:1" 194 | "Compression" = "3:2" 195 | "SignOutput" = "11:FALSE" 196 | "CertificateFile" = "8:" 197 | "PrivateKeyFile" = "8:" 198 | "TimeStampServer" = "8:" 199 | "InstallerBootstrapper" = "3:2" 200 | } 201 | } 202 | "Deployable" 203 | { 204 | "CustomAction" 205 | { 206 | } 207 | "DefaultFeature" 208 | { 209 | "Name" = "8:DefaultFeature" 210 | "Title" = "8:" 211 | "Description" = "8:" 212 | } 213 | "ExternalPersistence" 214 | { 215 | "LaunchCondition" 216 | { 217 | "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_47E0E889D5E34D8F8A2CC87C3D079C3D" 218 | { 219 | "Name" = "8:.NET Framework" 220 | "Message" = "8:[VSDNETMSG]" 221 | "FrameworkVersion" = "8:.NETFramework,Version=v4.6.1" 222 | "AllowLaterVersions" = "11:FALSE" 223 | "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728" 224 | } 225 | } 226 | } 227 | "File" 228 | { 229 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_30B44A4AE4BCA18CDEED6EC1FC78A1C3" 230 | { 231 | "AssemblyRegister" = "3:1" 232 | "AssemblyIsInGAC" = "11:FALSE" 233 | "AssemblyAsmDisplayName" = "8:XmlDiffPatch.View, Version=1.0.1493.40755, Culture=neutral" 234 | "ScatterAssemblies" 235 | { 236 | "_30B44A4AE4BCA18CDEED6EC1FC78A1C3" 237 | { 238 | "Name" = "8:XmlDiffPatch.View.dll" 239 | "Attributes" = "3:512" 240 | } 241 | } 242 | "SourcePath" = "8:XmlDiffPatch.View.dll" 243 | "TargetName" = "8:" 244 | "Tag" = "8:" 245 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 246 | "Condition" = "8:" 247 | "Transitive" = "11:FALSE" 248 | "Vital" = "11:TRUE" 249 | "ReadOnly" = "11:FALSE" 250 | "Hidden" = "11:FALSE" 251 | "System" = "11:FALSE" 252 | "Permanent" = "11:FALSE" 253 | "SharedLegacy" = "11:FALSE" 254 | "PackageAs" = "3:1" 255 | "Register" = "3:1" 256 | "Exclude" = "11:FALSE" 257 | "IsDependency" = "11:TRUE" 258 | "IsolateTo" = "8:" 259 | } 260 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51556F1B3F482EEBDAD743108199D74C" 261 | { 262 | "AssemblyRegister" = "3:1" 263 | "AssemblyIsInGAC" = "11:FALSE" 264 | "AssemblyAsmDisplayName" = "8:AutoUpdater.NET, Version=1.5.4.0, Culture=neutral, PublicKeyToken=501435c91b35f4bc, processorArchitecture=MSIL" 265 | "ScatterAssemblies" 266 | { 267 | "_51556F1B3F482EEBDAD743108199D74C" 268 | { 269 | "Name" = "8:AutoUpdater.NET.dll" 270 | "Attributes" = "3:512" 271 | } 272 | } 273 | "SourcePath" = "8:AutoUpdater.NET.dll" 274 | "TargetName" = "8:" 275 | "Tag" = "8:" 276 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 277 | "Condition" = "8:" 278 | "Transitive" = "11:FALSE" 279 | "Vital" = "11:TRUE" 280 | "ReadOnly" = "11:FALSE" 281 | "Hidden" = "11:FALSE" 282 | "System" = "11:FALSE" 283 | "Permanent" = "11:FALSE" 284 | "SharedLegacy" = "11:FALSE" 285 | "PackageAs" = "3:1" 286 | "Register" = "3:1" 287 | "Exclude" = "11:FALSE" 288 | "IsDependency" = "11:TRUE" 289 | "IsolateTo" = "8:" 290 | } 291 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_69E9097873E08BE1DFB997E32D3BDBD5" 292 | { 293 | "AssemblyRegister" = "3:1" 294 | "AssemblyIsInGAC" = "11:FALSE" 295 | "AssemblyAsmDisplayName" = "8:ScintillaNET, Version=3.6.3.0, Culture=neutral, processorArchitecture=MSIL" 296 | "ScatterAssemblies" 297 | { 298 | "_69E9097873E08BE1DFB997E32D3BDBD5" 299 | { 300 | "Name" = "8:ScintillaNET.dll" 301 | "Attributes" = "3:512" 302 | } 303 | } 304 | "SourcePath" = "8:ScintillaNET.dll" 305 | "TargetName" = "8:" 306 | "Tag" = "8:" 307 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 308 | "Condition" = "8:" 309 | "Transitive" = "11:FALSE" 310 | "Vital" = "11:TRUE" 311 | "ReadOnly" = "11:FALSE" 312 | "Hidden" = "11:FALSE" 313 | "System" = "11:FALSE" 314 | "Permanent" = "11:FALSE" 315 | "SharedLegacy" = "11:FALSE" 316 | "PackageAs" = "3:1" 317 | "Register" = "3:1" 318 | "Exclude" = "11:FALSE" 319 | "IsDependency" = "11:TRUE" 320 | "IsolateTo" = "8:" 321 | } 322 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7BF431E98E45C795493F47C5967F2826" 323 | { 324 | "AssemblyRegister" = "3:1" 325 | "AssemblyIsInGAC" = "11:FALSE" 326 | "AssemblyAsmDisplayName" = "8:Menees.Diffs, Version=4.0.2.0, Culture=neutral, PublicKeyToken=5115291defa18758, processorArchitecture=MSIL" 327 | "ScatterAssemblies" 328 | { 329 | "_7BF431E98E45C795493F47C5967F2826" 330 | { 331 | "Name" = "8:Menees.Diffs.dll" 332 | "Attributes" = "3:512" 333 | } 334 | } 335 | "SourcePath" = "8:Menees.Diffs.dll" 336 | "TargetName" = "8:" 337 | "Tag" = "8:" 338 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 339 | "Condition" = "8:" 340 | "Transitive" = "11:FALSE" 341 | "Vital" = "11:TRUE" 342 | "ReadOnly" = "11:FALSE" 343 | "Hidden" = "11:FALSE" 344 | "System" = "11:FALSE" 345 | "Permanent" = "11:FALSE" 346 | "SharedLegacy" = "11:FALSE" 347 | "PackageAs" = "3:1" 348 | "Register" = "3:1" 349 | "Exclude" = "11:FALSE" 350 | "IsDependency" = "11:TRUE" 351 | "IsolateTo" = "8:" 352 | } 353 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_98A9CF1429416AAE146DB3CF725258A2" 354 | { 355 | "AssemblyRegister" = "3:1" 356 | "AssemblyIsInGAC" = "11:FALSE" 357 | "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 358 | "ScatterAssemblies" 359 | { 360 | "_98A9CF1429416AAE146DB3CF725258A2" 361 | { 362 | "Name" = "8:System.Net.Http.dll" 363 | "Attributes" = "3:512" 364 | } 365 | } 366 | "SourcePath" = "8:System.Net.Http.dll" 367 | "TargetName" = "8:" 368 | "Tag" = "8:" 369 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 370 | "Condition" = "8:" 371 | "Transitive" = "11:FALSE" 372 | "Vital" = "11:TRUE" 373 | "ReadOnly" = "11:FALSE" 374 | "Hidden" = "11:FALSE" 375 | "System" = "11:FALSE" 376 | "Permanent" = "11:FALSE" 377 | "SharedLegacy" = "11:FALSE" 378 | "PackageAs" = "3:1" 379 | "Register" = "3:1" 380 | "Exclude" = "11:FALSE" 381 | "IsDependency" = "11:TRUE" 382 | "IsolateTo" = "8:" 383 | } 384 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BA9ADC88F8281F2BE3947D7922D7472B" 385 | { 386 | "AssemblyRegister" = "3:1" 387 | "AssemblyIsInGAC" = "11:FALSE" 388 | "AssemblyAsmDisplayName" = "8:Menees.Windows.Forms, Version=4.5.5691.32059, Culture=neutral, PublicKeyToken=5115291defa18758, processorArchitecture=MSIL" 389 | "ScatterAssemblies" 390 | { 391 | "_BA9ADC88F8281F2BE3947D7922D7472B" 392 | { 393 | "Name" = "8:Menees.Windows.Forms.dll" 394 | "Attributes" = "3:512" 395 | } 396 | } 397 | "SourcePath" = "8:Menees.Windows.Forms.dll" 398 | "TargetName" = "8:" 399 | "Tag" = "8:" 400 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 401 | "Condition" = "8:" 402 | "Transitive" = "11:FALSE" 403 | "Vital" = "11:TRUE" 404 | "ReadOnly" = "11:FALSE" 405 | "Hidden" = "11:FALSE" 406 | "System" = "11:FALSE" 407 | "Permanent" = "11:FALSE" 408 | "SharedLegacy" = "11:FALSE" 409 | "PackageAs" = "3:1" 410 | "Register" = "3:1" 411 | "Exclude" = "11:FALSE" 412 | "IsDependency" = "11:TRUE" 413 | "IsolateTo" = "8:" 414 | } 415 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C79E452F76B7448591E155473BA75F13" 416 | { 417 | "AssemblyRegister" = "3:1" 418 | "AssemblyIsInGAC" = "11:FALSE" 419 | "AssemblyAsmDisplayName" = "8:XmlDiffPatch, Version=1.0.8.28, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 420 | "ScatterAssemblies" 421 | { 422 | "_C79E452F76B7448591E155473BA75F13" 423 | { 424 | "Name" = "8:XmlDiffPatch.dll" 425 | "Attributes" = "3:512" 426 | } 427 | } 428 | "SourcePath" = "8:XmlDiffPatch.dll" 429 | "TargetName" = "8:" 430 | "Tag" = "8:" 431 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 432 | "Condition" = "8:" 433 | "Transitive" = "11:FALSE" 434 | "Vital" = "11:TRUE" 435 | "ReadOnly" = "11:FALSE" 436 | "Hidden" = "11:FALSE" 437 | "System" = "11:FALSE" 438 | "Permanent" = "11:FALSE" 439 | "SharedLegacy" = "11:FALSE" 440 | "PackageAs" = "3:1" 441 | "Register" = "3:1" 442 | "Exclude" = "11:FALSE" 443 | "IsDependency" = "11:TRUE" 444 | "IsolateTo" = "8:" 445 | } 446 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DB0928815DFB22C077ADBCBCF8599F10" 447 | { 448 | "AssemblyRegister" = "3:1" 449 | "AssemblyIsInGAC" = "11:FALSE" 450 | "AssemblyAsmDisplayName" = "8:Menees.Diffs.Controls, Version=4.0.2.0, Culture=neutral, PublicKeyToken=5115291defa18758, processorArchitecture=MSIL" 451 | "ScatterAssemblies" 452 | { 453 | "_DB0928815DFB22C077ADBCBCF8599F10" 454 | { 455 | "Name" = "8:Menees.Diffs.Controls.dll" 456 | "Attributes" = "3:512" 457 | } 458 | } 459 | "SourcePath" = "8:Menees.Diffs.Controls.dll" 460 | "TargetName" = "8:" 461 | "Tag" = "8:" 462 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 463 | "Condition" = "8:" 464 | "Transitive" = "11:FALSE" 465 | "Vital" = "11:TRUE" 466 | "ReadOnly" = "11:FALSE" 467 | "Hidden" = "11:FALSE" 468 | "System" = "11:FALSE" 469 | "Permanent" = "11:FALSE" 470 | "SharedLegacy" = "11:FALSE" 471 | "PackageAs" = "3:1" 472 | "Register" = "3:1" 473 | "Exclude" = "11:FALSE" 474 | "IsDependency" = "11:TRUE" 475 | "IsolateTo" = "8:" 476 | } 477 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DC7BDF79FA5D245BC85A1C7F4D12F813" 478 | { 479 | "AssemblyRegister" = "3:1" 480 | "AssemblyIsInGAC" = "11:FALSE" 481 | "AssemblyAsmDisplayName" = "8:Menees.Common, Version=4.5.5842.16608, Culture=neutral, PublicKeyToken=5115291defa18758, processorArchitecture=MSIL" 482 | "ScatterAssemblies" 483 | { 484 | "_DC7BDF79FA5D245BC85A1C7F4D12F813" 485 | { 486 | "Name" = "8:Menees.Common.dll" 487 | "Attributes" = "3:512" 488 | } 489 | } 490 | "SourcePath" = "8:Menees.Common.dll" 491 | "TargetName" = "8:" 492 | "Tag" = "8:" 493 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 494 | "Condition" = "8:" 495 | "Transitive" = "11:FALSE" 496 | "Vital" = "11:TRUE" 497 | "ReadOnly" = "11:FALSE" 498 | "Hidden" = "11:FALSE" 499 | "System" = "11:FALSE" 500 | "Permanent" = "11:FALSE" 501 | "SharedLegacy" = "11:FALSE" 502 | "PackageAs" = "3:1" 503 | "Register" = "3:1" 504 | "Exclude" = "11:FALSE" 505 | "IsDependency" = "11:TRUE" 506 | "IsolateTo" = "8:" 507 | } 508 | } 509 | "FileType" 510 | { 511 | } 512 | "Folder" 513 | { 514 | "{1525181F-901A-416C-8A58-119130FE478E}:_70ED573D8C4D4C5DA73CF4003BE71658" 515 | { 516 | "Name" = "8:#1919" 517 | "AlwaysCreate" = "11:FALSE" 518 | "Condition" = "8:" 519 | "Transitive" = "11:FALSE" 520 | "Property" = "8:ProgramMenuFolder" 521 | "Folders" 522 | { 523 | "{9EF0B969-E518-4E46-987F-47570745A589}:_BE6BD968455D463CA5BE9E2005CE33A5" 524 | { 525 | "Name" = "8:JJDD" 526 | "AlwaysCreate" = "11:FALSE" 527 | "Condition" = "8:" 528 | "Transitive" = "11:FALSE" 529 | "Property" = "8:_C6BD59942A7E45CCBA40E0D8F3E4EA62" 530 | "Folders" 531 | { 532 | } 533 | } 534 | } 535 | } 536 | "{3C67513D-01DD-4637-8A68-80971EB9504F}:_D11EE0F07E084188B09862BDCA9F5699" 537 | { 538 | "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" 539 | "Name" = "8:#1925" 540 | "AlwaysCreate" = "11:FALSE" 541 | "Condition" = "8:" 542 | "Transitive" = "11:FALSE" 543 | "Property" = "8:TARGETDIR" 544 | "Folders" 545 | { 546 | } 547 | } 548 | "{1525181F-901A-416C-8A58-119130FE478E}:_E661F3A187564FF2AC49D73B00522DF0" 549 | { 550 | "Name" = "8:#1916" 551 | "AlwaysCreate" = "11:FALSE" 552 | "Condition" = "8:" 553 | "Transitive" = "11:FALSE" 554 | "Property" = "8:DesktopFolder" 555 | "Folders" 556 | { 557 | } 558 | } 559 | } 560 | "LaunchCondition" 561 | { 562 | } 563 | "Locator" 564 | { 565 | } 566 | "MsiBootstrapper" 567 | { 568 | "LangId" = "3:1033" 569 | "RequiresElevation" = "11:FALSE" 570 | } 571 | "Product" 572 | { 573 | "Name" = "8:Microsoft Visual Studio" 574 | "ProductName" = "8:Epicor Trace Differ" 575 | "ProductCode" = "8:{CAF7D7E5-37B4-4151-BF43-6A1C99255082}" 576 | "PackageCode" = "8:{977C7DA0-70B3-41A5-BB0D-461E7DE1273F}" 577 | "UpgradeCode" = "8:{4D69FBB0-6BF5-4225-9B15-6620ABC72A55}" 578 | "AspNetVersion" = "8:4.0.30319.0" 579 | "RestartWWWService" = "11:FALSE" 580 | "RemovePreviousVersions" = "11:TRUE" 581 | "DetectNewerInstalledVersion" = "11:TRUE" 582 | "InstallAllUsers" = "11:TRUE" 583 | "ProductVersion" = "8:1.0.1" 584 | "Manufacturer" = "8:Jose and Josh Do Dev" 585 | "ARPHELPTELEPHONE" = "8:" 586 | "ARPHELPLINK" = "8:" 587 | "Title" = "8:Epicor Trace Differ" 588 | "Subject" = "8:" 589 | "ARPCONTACT" = "8:Jose and Josh Do Dev" 590 | "Keywords" = "8:" 591 | "ARPCOMMENTS" = "8:Epicor Trace File Differ allows you to easily parse and use Epicor Trace Files" 592 | "ARPURLINFOABOUT" = "8:https://github.com/jose-josh-do-dev" 593 | "ARPPRODUCTICON" = "8:" 594 | "ARPIconIndex" = "3:0" 595 | "SearchPath" = "8:" 596 | "UseSystemSearchPath" = "11:TRUE" 597 | "TargetPlatform" = "3:0" 598 | "PreBuildEvent" = "8:" 599 | "PostBuildEvent" = "8:" 600 | "RunPostBuildEvent" = "3:0" 601 | } 602 | "Registry" 603 | { 604 | "HKLM" 605 | { 606 | "Keys" 607 | { 608 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_860252269430462D9FD12EF17BB75848" 609 | { 610 | "Name" = "8:Software" 611 | "Condition" = "8:" 612 | "AlwaysCreate" = "11:FALSE" 613 | "DeleteAtUninstall" = "11:FALSE" 614 | "Transitive" = "11:FALSE" 615 | "Keys" 616 | { 617 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_E6BBF4A0B52244C0AD34197108869133" 618 | { 619 | "Name" = "8:[Manufacturer]" 620 | "Condition" = "8:" 621 | "AlwaysCreate" = "11:FALSE" 622 | "DeleteAtUninstall" = "11:FALSE" 623 | "Transitive" = "11:FALSE" 624 | "Keys" 625 | { 626 | } 627 | "Values" 628 | { 629 | } 630 | } 631 | } 632 | "Values" 633 | { 634 | } 635 | } 636 | } 637 | } 638 | "HKCU" 639 | { 640 | "Keys" 641 | { 642 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_71A520B242DA4EBFB79BD2672B6D2A53" 643 | { 644 | "Name" = "8:Software" 645 | "Condition" = "8:" 646 | "AlwaysCreate" = "11:FALSE" 647 | "DeleteAtUninstall" = "11:FALSE" 648 | "Transitive" = "11:FALSE" 649 | "Keys" 650 | { 651 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_83F30EC7521F461294E5F0C8E21D5201" 652 | { 653 | "Name" = "8:[Manufacturer]" 654 | "Condition" = "8:" 655 | "AlwaysCreate" = "11:FALSE" 656 | "DeleteAtUninstall" = "11:FALSE" 657 | "Transitive" = "11:FALSE" 658 | "Keys" 659 | { 660 | } 661 | "Values" 662 | { 663 | } 664 | } 665 | } 666 | "Values" 667 | { 668 | } 669 | } 670 | } 671 | } 672 | "HKCR" 673 | { 674 | "Keys" 675 | { 676 | } 677 | } 678 | "HKU" 679 | { 680 | "Keys" 681 | { 682 | } 683 | } 684 | "HKPU" 685 | { 686 | "Keys" 687 | { 688 | } 689 | } 690 | } 691 | "Sequences" 692 | { 693 | } 694 | "Shortcut" 695 | { 696 | "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_BE1858890112469E819A253B8CF1D765" 697 | { 698 | "Name" = "8:Epicor Trace Differ" 699 | "Arguments" = "8:" 700 | "Description" = "8:" 701 | "ShowCmd" = "3:1" 702 | "IconIndex" = "3:32512" 703 | "Transitive" = "11:TRUE" 704 | "Target" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 705 | "Folder" = "8:_E661F3A187564FF2AC49D73B00522DF0" 706 | "WorkingFolder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 707 | "Icon" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 708 | "Feature" = "8:" 709 | } 710 | "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_F360503093D7470E96233D5F9FEB5806" 711 | { 712 | "Name" = "8:Epicor Trace Differ" 713 | "Arguments" = "8:" 714 | "Description" = "8:" 715 | "ShowCmd" = "3:1" 716 | "IconIndex" = "3:32512" 717 | "Transitive" = "11:FALSE" 718 | "Target" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 719 | "Folder" = "8:_BE6BD968455D463CA5BE9E2005CE33A5" 720 | "WorkingFolder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 721 | "Icon" = "8:_B5F9ADF62075418EAD608C379F7A6FEB" 722 | "Feature" = "8:" 723 | } 724 | } 725 | "UserInterface" 726 | { 727 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_297FB1A3A88D42A780CC611B61A919A9" 728 | { 729 | "Name" = "8:#1902" 730 | "Sequence" = "3:2" 731 | "Attributes" = "3:3" 732 | "Dialogs" 733 | { 734 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2269E547C86F4F28826AF9EB3BE97D6F" 735 | { 736 | "Sequence" = "3:100" 737 | "DisplayName" = "8:Finished" 738 | "UseDynamicProperties" = "11:TRUE" 739 | "IsDependency" = "11:FALSE" 740 | "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" 741 | "Properties" 742 | { 743 | "BannerBitmap" 744 | { 745 | "Name" = "8:BannerBitmap" 746 | "DisplayName" = "8:#1001" 747 | "Description" = "8:#1101" 748 | "Type" = "3:8" 749 | "ContextData" = "8:Bitmap" 750 | "Attributes" = "3:4" 751 | "Setting" = "3:1" 752 | "UsePlugInResources" = "11:TRUE" 753 | } 754 | } 755 | } 756 | } 757 | } 758 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_47CC9070B73948EF8ABA8EDF542FA77F" 759 | { 760 | "Name" = "8:#1900" 761 | "Sequence" = "3:1" 762 | "Attributes" = "3:1" 763 | "Dialogs" 764 | { 765 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1785D1E03D1A4CC7955805DE34B0EF1D" 766 | { 767 | "Sequence" = "3:100" 768 | "DisplayName" = "8:Welcome" 769 | "UseDynamicProperties" = "11:TRUE" 770 | "IsDependency" = "11:FALSE" 771 | "SourcePath" = "8:\\VsdWelcomeDlg.wid" 772 | "Properties" 773 | { 774 | "BannerBitmap" 775 | { 776 | "Name" = "8:BannerBitmap" 777 | "DisplayName" = "8:#1001" 778 | "Description" = "8:#1101" 779 | "Type" = "3:8" 780 | "ContextData" = "8:Bitmap" 781 | "Attributes" = "3:4" 782 | "Setting" = "3:1" 783 | "UsePlugInResources" = "11:TRUE" 784 | } 785 | "CopyrightWarning" 786 | { 787 | "Name" = "8:CopyrightWarning" 788 | "DisplayName" = "8:#1002" 789 | "Description" = "8:#1102" 790 | "Type" = "3:3" 791 | "ContextData" = "8:" 792 | "Attributes" = "3:0" 793 | "Setting" = "3:1" 794 | "Value" = "8:#1202" 795 | "DefaultValue" = "8:#1202" 796 | "UsePlugInResources" = "11:TRUE" 797 | } 798 | "Welcome" 799 | { 800 | "Name" = "8:Welcome" 801 | "DisplayName" = "8:#1003" 802 | "Description" = "8:#1103" 803 | "Type" = "3:3" 804 | "ContextData" = "8:" 805 | "Attributes" = "3:0" 806 | "Setting" = "3:1" 807 | "Value" = "8:#1203" 808 | "DefaultValue" = "8:#1203" 809 | "UsePlugInResources" = "11:TRUE" 810 | } 811 | } 812 | } 813 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2960608BB9214FD8B1630F58A45E5AB2" 814 | { 815 | "Sequence" = "3:200" 816 | "DisplayName" = "8:Installation Folder" 817 | "UseDynamicProperties" = "11:TRUE" 818 | "IsDependency" = "11:FALSE" 819 | "SourcePath" = "8:\\VsdFolderDlg.wid" 820 | "Properties" 821 | { 822 | "BannerBitmap" 823 | { 824 | "Name" = "8:BannerBitmap" 825 | "DisplayName" = "8:#1001" 826 | "Description" = "8:#1101" 827 | "Type" = "3:8" 828 | "ContextData" = "8:Bitmap" 829 | "Attributes" = "3:4" 830 | "Setting" = "3:1" 831 | "UsePlugInResources" = "11:TRUE" 832 | } 833 | "InstallAllUsersVisible" 834 | { 835 | "Name" = "8:InstallAllUsersVisible" 836 | "DisplayName" = "8:#1059" 837 | "Description" = "8:#1159" 838 | "Type" = "3:5" 839 | "ContextData" = "8:1;True=1;False=0" 840 | "Attributes" = "3:0" 841 | "Setting" = "3:0" 842 | "Value" = "3:1" 843 | "DefaultValue" = "3:1" 844 | "UsePlugInResources" = "11:TRUE" 845 | } 846 | } 847 | } 848 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_582E1856712C459BB20106BB4066A40F" 849 | { 850 | "Sequence" = "3:300" 851 | "DisplayName" = "8:Confirm Installation" 852 | "UseDynamicProperties" = "11:TRUE" 853 | "IsDependency" = "11:FALSE" 854 | "SourcePath" = "8:\\VsdConfirmDlg.wid" 855 | "Properties" 856 | { 857 | "BannerBitmap" 858 | { 859 | "Name" = "8:BannerBitmap" 860 | "DisplayName" = "8:#1001" 861 | "Description" = "8:#1101" 862 | "Type" = "3:8" 863 | "ContextData" = "8:Bitmap" 864 | "Attributes" = "3:4" 865 | "Setting" = "3:1" 866 | "UsePlugInResources" = "11:TRUE" 867 | } 868 | } 869 | } 870 | } 871 | } 872 | "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_48E4F8D1DDAA452F8748CFFC2CD49B6F" 873 | { 874 | "UseDynamicProperties" = "11:FALSE" 875 | "IsDependency" = "11:FALSE" 876 | "SourcePath" = "8:\\VsdUserInterface.wim" 877 | } 878 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_735635F8757A48E3A415EDDCA22FD2C3" 879 | { 880 | "Name" = "8:#1901" 881 | "Sequence" = "3:1" 882 | "Attributes" = "3:2" 883 | "Dialogs" 884 | { 885 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A52C1C036149407EB72DB7C2A87DC36E" 886 | { 887 | "Sequence" = "3:100" 888 | "DisplayName" = "8:Progress" 889 | "UseDynamicProperties" = "11:TRUE" 890 | "IsDependency" = "11:FALSE" 891 | "SourcePath" = "8:\\VsdProgressDlg.wid" 892 | "Properties" 893 | { 894 | "BannerBitmap" 895 | { 896 | "Name" = "8:BannerBitmap" 897 | "DisplayName" = "8:#1001" 898 | "Description" = "8:#1101" 899 | "Type" = "3:8" 900 | "ContextData" = "8:Bitmap" 901 | "Attributes" = "3:4" 902 | "Setting" = "3:1" 903 | "UsePlugInResources" = "11:TRUE" 904 | } 905 | "ShowProgress" 906 | { 907 | "Name" = "8:ShowProgress" 908 | "DisplayName" = "8:#1009" 909 | "Description" = "8:#1109" 910 | "Type" = "3:5" 911 | "ContextData" = "8:1;True=1;False=0" 912 | "Attributes" = "3:0" 913 | "Setting" = "3:0" 914 | "Value" = "3:1" 915 | "DefaultValue" = "3:1" 916 | "UsePlugInResources" = "11:TRUE" 917 | } 918 | } 919 | } 920 | } 921 | } 922 | "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_74F875F716D24F71B2D72445A5357716" 923 | { 924 | "UseDynamicProperties" = "11:FALSE" 925 | "IsDependency" = "11:FALSE" 926 | "SourcePath" = "8:\\VsdBasicDialogs.wim" 927 | } 928 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_9BF9CB5476AD4A04AEA6F07E30CD88B6" 929 | { 930 | "Name" = "8:#1900" 931 | "Sequence" = "3:2" 932 | "Attributes" = "3:1" 933 | "Dialogs" 934 | { 935 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_4BEF6597A8E84891A1AB3B99E9C0E32F" 936 | { 937 | "Sequence" = "3:300" 938 | "DisplayName" = "8:Confirm Installation" 939 | "UseDynamicProperties" = "11:TRUE" 940 | "IsDependency" = "11:FALSE" 941 | "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" 942 | "Properties" 943 | { 944 | "BannerBitmap" 945 | { 946 | "Name" = "8:BannerBitmap" 947 | "DisplayName" = "8:#1001" 948 | "Description" = "8:#1101" 949 | "Type" = "3:8" 950 | "ContextData" = "8:Bitmap" 951 | "Attributes" = "3:4" 952 | "Setting" = "3:1" 953 | "UsePlugInResources" = "11:TRUE" 954 | } 955 | } 956 | } 957 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D3CF62893F25474FB674E96FCBCD7FB9" 958 | { 959 | "Sequence" = "3:200" 960 | "DisplayName" = "8:Installation Folder" 961 | "UseDynamicProperties" = "11:TRUE" 962 | "IsDependency" = "11:FALSE" 963 | "SourcePath" = "8:\\VsdAdminFolderDlg.wid" 964 | "Properties" 965 | { 966 | "BannerBitmap" 967 | { 968 | "Name" = "8:BannerBitmap" 969 | "DisplayName" = "8:#1001" 970 | "Description" = "8:#1101" 971 | "Type" = "3:8" 972 | "ContextData" = "8:Bitmap" 973 | "Attributes" = "3:4" 974 | "Setting" = "3:1" 975 | "UsePlugInResources" = "11:TRUE" 976 | } 977 | } 978 | } 979 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_E629A140DF144E0DBA86FCF0AA3E75F6" 980 | { 981 | "Sequence" = "3:100" 982 | "DisplayName" = "8:Welcome" 983 | "UseDynamicProperties" = "11:TRUE" 984 | "IsDependency" = "11:FALSE" 985 | "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" 986 | "Properties" 987 | { 988 | "BannerBitmap" 989 | { 990 | "Name" = "8:BannerBitmap" 991 | "DisplayName" = "8:#1001" 992 | "Description" = "8:#1101" 993 | "Type" = "3:8" 994 | "ContextData" = "8:Bitmap" 995 | "Attributes" = "3:4" 996 | "Setting" = "3:1" 997 | "UsePlugInResources" = "11:TRUE" 998 | } 999 | "CopyrightWarning" 1000 | { 1001 | "Name" = "8:CopyrightWarning" 1002 | "DisplayName" = "8:#1002" 1003 | "Description" = "8:#1102" 1004 | "Type" = "3:3" 1005 | "ContextData" = "8:" 1006 | "Attributes" = "3:0" 1007 | "Setting" = "3:1" 1008 | "Value" = "8:#1202" 1009 | "DefaultValue" = "8:#1202" 1010 | "UsePlugInResources" = "11:TRUE" 1011 | } 1012 | "Welcome" 1013 | { 1014 | "Name" = "8:Welcome" 1015 | "DisplayName" = "8:#1003" 1016 | "Description" = "8:#1103" 1017 | "Type" = "3:3" 1018 | "ContextData" = "8:" 1019 | "Attributes" = "3:0" 1020 | "Setting" = "3:1" 1021 | "Value" = "8:#1203" 1022 | "DefaultValue" = "8:#1203" 1023 | "UsePlugInResources" = "11:TRUE" 1024 | } 1025 | } 1026 | } 1027 | } 1028 | } 1029 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_D8AD2A0D77F349F383B4643AC8A78D5D" 1030 | { 1031 | "Name" = "8:#1901" 1032 | "Sequence" = "3:2" 1033 | "Attributes" = "3:2" 1034 | "Dialogs" 1035 | { 1036 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6404C3A027074D47BD7B0E7F3A8EECF9" 1037 | { 1038 | "Sequence" = "3:100" 1039 | "DisplayName" = "8:Progress" 1040 | "UseDynamicProperties" = "11:TRUE" 1041 | "IsDependency" = "11:FALSE" 1042 | "SourcePath" = "8:\\VsdAdminProgressDlg.wid" 1043 | "Properties" 1044 | { 1045 | "BannerBitmap" 1046 | { 1047 | "Name" = "8:BannerBitmap" 1048 | "DisplayName" = "8:#1001" 1049 | "Description" = "8:#1101" 1050 | "Type" = "3:8" 1051 | "ContextData" = "8:Bitmap" 1052 | "Attributes" = "3:4" 1053 | "Setting" = "3:1" 1054 | "UsePlugInResources" = "11:TRUE" 1055 | } 1056 | "ShowProgress" 1057 | { 1058 | "Name" = "8:ShowProgress" 1059 | "DisplayName" = "8:#1009" 1060 | "Description" = "8:#1109" 1061 | "Type" = "3:5" 1062 | "ContextData" = "8:1;True=1;False=0" 1063 | "Attributes" = "3:0" 1064 | "Setting" = "3:0" 1065 | "Value" = "3:1" 1066 | "DefaultValue" = "3:1" 1067 | "UsePlugInResources" = "11:TRUE" 1068 | } 1069 | } 1070 | } 1071 | } 1072 | } 1073 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F2C88EC3C13743C8A71605041B0D3F9E" 1074 | { 1075 | "Name" = "8:#1902" 1076 | "Sequence" = "3:1" 1077 | "Attributes" = "3:3" 1078 | "Dialogs" 1079 | { 1080 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7B3369034B584592866DFA7345248B3C" 1081 | { 1082 | "Sequence" = "3:100" 1083 | "DisplayName" = "8:Finished" 1084 | "UseDynamicProperties" = "11:TRUE" 1085 | "IsDependency" = "11:FALSE" 1086 | "SourcePath" = "8:\\VsdFinishedDlg.wid" 1087 | "Properties" 1088 | { 1089 | "BannerBitmap" 1090 | { 1091 | "Name" = "8:BannerBitmap" 1092 | "DisplayName" = "8:#1001" 1093 | "Description" = "8:#1101" 1094 | "Type" = "3:8" 1095 | "ContextData" = "8:Bitmap" 1096 | "Attributes" = "3:4" 1097 | "Setting" = "3:1" 1098 | "UsePlugInResources" = "11:TRUE" 1099 | } 1100 | "UpdateText" 1101 | { 1102 | "Name" = "8:UpdateText" 1103 | "DisplayName" = "8:#1058" 1104 | "Description" = "8:#1158" 1105 | "Type" = "3:15" 1106 | "ContextData" = "8:" 1107 | "Attributes" = "3:0" 1108 | "Setting" = "3:1" 1109 | "Value" = "8:#1258" 1110 | "DefaultValue" = "8:#1258" 1111 | "UsePlugInResources" = "11:TRUE" 1112 | } 1113 | } 1114 | } 1115 | } 1116 | } 1117 | } 1118 | "MergeModule" 1119 | { 1120 | } 1121 | "ProjectOutput" 1122 | { 1123 | "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B5F9ADF62075418EAD608C379F7A6FEB" 1124 | { 1125 | "SourcePath" = "8:..\\EpicorTraceDiffer\\obj\\Debug\\EpicorTraceDiffer.exe" 1126 | "TargetName" = "8:" 1127 | "Tag" = "8:" 1128 | "Folder" = "8:_D11EE0F07E084188B09862BDCA9F5699" 1129 | "Condition" = "8:" 1130 | "Transitive" = "11:FALSE" 1131 | "Vital" = "11:TRUE" 1132 | "ReadOnly" = "11:FALSE" 1133 | "Hidden" = "11:FALSE" 1134 | "System" = "11:FALSE" 1135 | "Permanent" = "11:FALSE" 1136 | "SharedLegacy" = "11:FALSE" 1137 | "PackageAs" = "3:1" 1138 | "Register" = "3:1" 1139 | "Exclude" = "11:FALSE" 1140 | "IsDependency" = "11:FALSE" 1141 | "IsolateTo" = "8:" 1142 | "ProjectOutputGroupRegister" = "3:1" 1143 | "OutputConfiguration" = "8:" 1144 | "OutputGroupCanonicalName" = "8:Built" 1145 | "OutputProjectGuid" = "8:{04297C8F-99A2-4536-A3D5-7CFEAA8A465A}" 1146 | "ShowKeyOutput" = "11:TRUE" 1147 | "ExcludeFilters" 1148 | { 1149 | } 1150 | } 1151 | } 1152 | } 1153 | } 1154 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EpicorTraceDiffer 2 | This is project which allows you to easily parse and understand the Epicor Trace Files. 3 | 4 | [See this thread on epiusers.help on how to use it](https://www.epiusers.help/t/trace-helper-utility-for-epicor-erp-10/) and latest features 5 | You can also see the Change Log here: [Change Log](https://jose-josh-do-dev.github.io/EpicorTraceDiffer/) 6 | -------------------------------------------------------------------------------- /XmlDiffLib.1.0.1.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jose-josh-do-dev/EpicorTraceDiffer/0779c514826b8f1c2dff5c47588b0aca0407eada/XmlDiffLib.1.0.1.3/.signature.p7s -------------------------------------------------------------------------------- /XmlDiffLib.1.0.1.3/lib/net40/XmlDiffLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jose-josh-do-dev/EpicorTraceDiffer/0779c514826b8f1c2dff5c47588b0aca0407eada/XmlDiffLib.1.0.1.3/lib/net40/XmlDiffLib.dll -------------------------------------------------------------------------------- /Zips/EpicorDiffer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jose-josh-do-dev/EpicorTraceDiffer/0779c514826b8f1c2dff5c47588b0aca0407eada/Zips/EpicorDiffer.zip -------------------------------------------------------------------------------- /Zips/Installer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jose-josh-do-dev/EpicorTraceDiffer/0779c514826b8f1c2dff5c47588b0aca0407eada/Zips/Installer.zip -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |

Change Log

6 |
    7 |
  • 1.0.0.7 - Added Trace Group filtering functionality to the Actions menu, see this post for more info
  • 8 |
  • 1.0.0.6 - Added sort option to BO drop down, fixed wording on some confusing messaging
  • 9 |
  • 1.0.0.5 - Small Bug Fixes
  • 10 |
  • 1.0.0.4 - Manual Update button check
  • 11 |
  • 1.0.0.3 - Testing Update Push
  • 12 |
  • 1.0.0.2 - Initial Release
  • 13 |
14 | --------------------------------------------------------------------------------