├── .gitattributes ├── .gitignore ├── LICENSE ├── Projects ├── ClassDocumentation │ ├── seal.shfbproj │ └── sealDocumentation.sln ├── RazorEngine.NetCore │ ├── AttributeValue.cs │ ├── ClassDiagram.cd │ ├── Common │ │ ├── CrossAppDomainObject.cs │ │ ├── GlobalSuppressions.cs │ │ └── HashCodeCombiner.cs │ ├── Compilation │ │ ├── CSharp │ │ │ ├── CSharpDirectCompilerService.cs │ │ │ └── CSharpRoslynCompilerService.cs │ │ ├── CompilationData.cs │ │ ├── CompilerServiceBase.cs │ │ ├── CompilerServiceBuilder.cs │ │ ├── CompilerServicesUtility.cs │ │ ├── CrossAppDomainCleanUp.cs │ │ ├── DefaultCompilerServiceFactory.cs │ │ ├── DirectCompilerServiceBase.cs │ │ ├── DynamicObject │ │ │ └── Impromtu │ │ │ │ ├── ActLikeCaster.cs │ │ │ │ ├── ActLikeProxy.cs │ │ │ │ ├── ActLikeProxyAttribute.cs │ │ │ │ ├── ActLikeProxySerializationHelper.cs │ │ │ │ ├── AliasAttribute.cs │ │ │ │ ├── BareBonesList.cs │ │ │ │ ├── BinderHash.cs │ │ │ │ ├── BuildProxy.cs │ │ │ │ ├── Curry.cs │ │ │ │ ├── EmitExtensions.cs │ │ │ │ ├── IActLike.cs │ │ │ │ ├── IActLikeProxy.cs │ │ │ │ ├── IDynamicKnowLike.cs │ │ │ │ ├── ImpromptuForwarder.cs │ │ │ │ ├── ImpromptuForwarderAddRemove.cs │ │ │ │ ├── ImpromptuLateLibraryType.cs │ │ │ │ ├── Impromtu.cs │ │ │ │ ├── ImpromtuObject.cs │ │ │ │ ├── Invocation.cs │ │ │ │ ├── InvokeArg.cs │ │ │ │ ├── InvokeContext.cs │ │ │ │ ├── InvokeExt.cs │ │ │ │ ├── InvokeHelper-Regular.cs │ │ │ │ ├── InvokeHelper.cs │ │ │ │ ├── InvokeMemberName.cs │ │ │ │ ├── NonRecursiveInterfaceAttribute.cs │ │ │ │ ├── ThisFunction.cs │ │ │ │ ├── TypeHash.cs │ │ │ │ ├── UseNamedArgumentAttribute.cs │ │ │ │ └── Util.cs │ │ ├── ExecutionContextLessThread.cs │ │ ├── HasDynamicModelAttribute.cs │ │ ├── ICompilerService.cs │ │ ├── ICompilerServiceFactory.cs │ │ ├── Inspectors │ │ │ └── ICodeInspector.cs │ │ ├── RazorDynamicObject.cs │ │ ├── RazorPageGeneratorResult.cs │ │ ├── ReferenceResolver │ │ │ ├── CompilerReference.cs │ │ │ ├── IReferenceResolver.cs │ │ │ └── UseCurrentAssembliesReferenceResolver.cs │ │ ├── RoslynCompilerServiceBase.cs │ │ ├── RoslynCompilerServiceFactory.cs │ │ ├── TypeContext.cs │ │ └── VisualBasic │ │ │ ├── VBCodeParser.cs │ │ │ ├── VBDirectCompilerService.cs │ │ │ ├── VBRazorCodeGenerator.cs │ │ │ └── VBRazorCodeLanguage.cs │ ├── Configuration │ │ ├── Fluent │ │ │ ├── FluentConfigurationBuilder.cs │ │ │ ├── FluentTemplateServiceConfiguration.cs │ │ │ └── IConfigurationBuilder.cs │ │ ├── ITemplateServiceConfiguration.cs │ │ ├── RazorEngineConfigurationSection.cs │ │ ├── ReadOnlyTemplateServiceConfiguration.cs │ │ ├── TemplateServiceConfiguration.cs │ │ └── Xml │ │ │ ├── NamespaceConfigurationElement.cs │ │ │ ├── NamespaceConfigurationElementCollection.cs │ │ │ ├── TemplateServiceConfigurationElement.cs │ │ │ ├── TemplateServiceConfigurationElementCollection.cs │ │ │ └── XmlTemplateServiceConfiguration.cs │ ├── Encoding.cs │ ├── Engine.cs │ ├── Helpers │ │ └── RazorLanguageHelper.cs │ ├── Language.cs │ ├── Legacy │ │ ├── Razor.cs │ │ └── Templating │ │ │ ├── CachedTemplateItem.cs │ │ │ ├── DelegateTemplateResolver.cs │ │ │ ├── ITemplateResolver.cs │ │ │ ├── ITemplateService.cs │ │ │ ├── IsolatedTemplateService.cs │ │ │ ├── Parallel │ │ │ ├── DefaultParallelQueryPlan.cs │ │ │ └── IParallelQueryPlan.cs │ │ │ └── TemplateService.cs │ ├── PositionTagged.cs │ ├── RazorEngine.NetCore.csproj │ ├── RazorEngine.snk │ ├── TaskRunner.cs │ ├── Templating │ │ ├── BaseTemplateKey.cs │ │ ├── CompiledTemplate.cs │ │ ├── DefaultActivator.cs │ │ ├── DefaultAppDomainFactory.cs │ │ ├── DefaultCachingProvider.cs │ │ ├── DelegateActivator.cs │ │ ├── DelegateAppDomainFactory.cs │ │ ├── DelegateTemplateManager.cs │ │ ├── DynamicViewBag.cs │ │ ├── DynamicWrapperService.cs │ │ ├── EmbeddedResourceTemplateManager.cs │ │ ├── ExecuteContext.cs │ │ ├── FullPathTemplateKey.cs │ │ ├── FullPathWithModifiedTimeTemplateKey.cs │ │ ├── HtmlTemplateBaseOfT.cs │ │ ├── IActivator.cs │ │ ├── IAppDomainFactory.cs │ │ ├── ICachingProvider.cs │ │ ├── ICompiledTemplate.cs │ │ ├── IInternalTemplateService.cs │ │ ├── IRazorEngineCore.cs │ │ ├── IRazorEngineService.cs │ │ ├── ITemplate.cs │ │ ├── ITemplateKey.cs │ │ ├── ITemplateManager.cs │ │ ├── ITemplateOfT.cs │ │ ├── ITemplateRunnerOfTModel.cs │ │ ├── ITemplateSource.cs │ │ ├── InstanceContext.cs │ │ ├── InternalTemplateService.cs │ │ ├── InvalidatingByModifiedTimeCachingProvider.cs │ │ ├── InvalidatingCachingProvider.cs │ │ ├── IsolatedRazorEngineService.cs │ │ ├── NameOnlyTemplateKey.cs │ │ ├── RazorEngineCore.cs │ │ ├── RazorEngineCoreWithCache.cs │ │ ├── RazorEngineService.cs │ │ ├── RazorEngineServiceExtensions.cs │ │ ├── ReferencesListForDynamicAssemblyResolution.cs │ │ ├── RequireNamespacesAttribute.cs │ │ ├── ResolvePathCheckModifiedTimeTemplateManager.cs │ │ ├── ResolvePathTemplateManager.cs │ │ ├── ResolveType.cs │ │ ├── TemplateBase.cs │ │ ├── TemplateBaseOfT.cs │ │ ├── TemplateCompilationException.cs │ │ ├── TemplateLoadingException.cs │ │ ├── TemplateParsingException.cs │ │ ├── TemplateRunnerExtensions.cs │ │ ├── TemplateRunnerOfTModel.cs │ │ ├── TemplateSource.cs │ │ ├── TemplateWriter.cs │ │ ├── TypeLoader.cs │ │ ├── WatchingResolvePathTemplateManager.cs │ │ └── WrapperTemplateManager.cs │ ├── Text │ │ ├── HtmlEncodedString.cs │ │ ├── HtmlEncodedStringFactory.cs │ │ ├── IEncodedString.cs │ │ ├── IEncodedStringFactory.cs │ │ ├── RawString.cs │ │ └── RawStringFactory.cs │ └── paket.references ├── Seal.sln ├── SealDocumentation │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Recipes.cshtml │ │ ├── Reports.cshtml │ │ ├── Server.cshtml │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _Layout.cshtml.css │ │ ├── Sources.cshtml │ │ ├── Tutorials.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SealDocumentation.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ ├── animate.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── custom.css │ │ ├── site.css │ │ ├── stroke.css │ │ └── style.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── images │ │ ├── CD-Data Source.png │ │ ├── CD-Report Model.png │ │ ├── CD-Report.png │ │ ├── CD-Security.png │ │ ├── Seal-Report-Logo.png │ │ ├── favicon.ico │ │ ├── model-linq.png │ │ ├── model-sql.png │ │ ├── overviewSeal.png │ │ ├── platforms.png │ │ ├── reportDesigner.jpg │ │ ├── seal1.jpg │ │ ├── seal2.jpg │ │ └── seal3.jpg │ │ ├── lib │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── custom.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery-ui-1.10.3.js │ │ ├── jquery-ui-1.10.3.min.js │ │ ├── jquery.fitvids.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.prettyPhoto.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── knockout-2.3.0.debug.js │ │ ├── knockout-2.3.0.js │ │ ├── main.js │ │ ├── modernizr-2.6.2.js │ │ ├── retina.js │ │ ├── syntax-highlighter │ │ ├── scripts │ │ │ ├── shAutoloader.js │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushAppleScript.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushSass.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── shCore.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDjango.css │ │ │ ├── shCoreEclipse.css │ │ │ ├── shCoreEmacs.css │ │ │ ├── shCoreFadeToGrey.css │ │ │ ├── shCoreMDUltra.css │ │ │ ├── shCoreMidnight.css │ │ │ ├── shCoreRDark.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ │ ├── typings │ │ ├── bootstrap │ │ │ └── index.d.ts │ │ ├── jquery │ │ │ └── jquery.d.ts │ │ └── jstree │ │ │ └── jstree.d.ts │ │ └── wow.js ├── SealLibrary │ ├── LICENSE.txt │ ├── SealLibrary.csproj │ ├── SealLibrary.xml │ └── sealNugetLogo.png ├── SealLibraryWin │ ├── BuildAttributeDate.cs │ ├── CD-Data Source.cd │ ├── CD-Report Model.cd │ ├── CD-Report.cd │ ├── CD-Security.cd │ ├── Converter │ │ ├── CssClassConverter.cs │ │ ├── CssStyleConverter.cs │ │ ├── CultureInfoConverter.cs │ │ ├── CultureNameConverter.cs │ │ ├── CustomFormatConverter.cs │ │ ├── CustomNameConverter.cs │ │ ├── DateKeywordConverter.cs │ │ ├── MenuNameConverter.cs │ │ ├── MetaEnumConverter.cs │ │ ├── MetaJoinConverter.cs │ │ ├── MetaSourceConverter.cs │ │ ├── NamedEnumConverter.cs │ │ ├── NamedEnumConverterNoDefault.cs │ │ ├── ReportModelConverter.cs │ │ ├── ReportTaskConverter.cs │ │ ├── ReportViewConverter.cs │ │ ├── RepositoryFolderConverter.cs │ │ ├── RestrictionDateConverter.cs │ │ ├── RestrictionOperatorConverter.cs │ │ ├── ScheduleRepeatConverter.cs │ │ ├── SecurityGroupNameConverter.cs │ │ ├── SecurityProviderConverter.cs │ │ ├── SerieDefinitionConverter.cs │ │ ├── SortOrderConverter.cs │ │ ├── SourceConnectionConverter.cs │ │ ├── SourceTableConverter.cs │ │ └── ViewParameterEnumConverter.cs │ ├── Directory.Build.props │ ├── DynamicTypeDescriptor │ │ ├── CustomComponentModel.cs │ │ ├── DynamicTypeDescriptor.cs │ │ ├── StandardValueEditorUI.cs │ │ ├── StandardValueEditorUI.designer.cs │ │ └── StandardValueEditorUI.resx │ ├── FindReplaceDialog │ │ ├── CharacterRange.cs │ │ ├── FindAllResults │ │ │ ├── FindAllResultsPanel.Designer.cs │ │ │ ├── FindAllResultsPanel.cs │ │ │ └── FindAllResultsPanel.resx │ │ ├── FindReplace │ │ │ ├── FindOption.cs │ │ │ ├── FindReplace.cs │ │ │ ├── FindReplaceDialog.Designer.cs │ │ │ ├── FindReplaceDialog.cs │ │ │ ├── FindReplaceDialog.resx │ │ │ ├── IncrementalSearcher.Designer.cs │ │ │ ├── IncrementalSearcher.cs │ │ │ ├── IncrementalSearcher.resx │ │ │ └── ToolStripIncrementalSearcher.cs │ │ └── GoTo │ │ │ ├── GoTo.cs │ │ │ ├── GoToDialog.Designer.cs │ │ │ ├── GoToDialog.cs │ │ │ └── GoToDialog.resx │ ├── Forms │ │ ├── AboutBoxForm.Designer.cs │ │ ├── AboutBoxForm.cs │ │ ├── AboutBoxForm.resx │ │ ├── ColumnsSelector.cs │ │ ├── DataSourcesSelector.cs │ │ ├── DifferenceForm.Designer.cs │ │ ├── DifferenceForm.cs │ │ ├── DifferenceForm.resx │ │ ├── EntityCollectionEditor.cs │ │ ├── ExecutionForm.Designer.cs │ │ ├── ExecutionForm.cs │ │ ├── ExecutionForm.resx │ │ ├── FormHelper.cs │ │ ├── FunctionsEditor.cs │ │ ├── HelperEditor.cs │ │ ├── IEntityHandler.cs │ │ ├── InformationErrorUITypeEditor.cs │ │ ├── JoinsEditor.cs │ │ ├── MultipleSelectForm.Designer.cs │ │ ├── MultipleSelectForm.cs │ │ ├── MultipleSelectForm.resx │ │ ├── ParametersEditor.cs │ │ ├── PartialTemplatesEditor.cs │ │ ├── ReportViewerForm.Designer.cs │ │ ├── ReportViewerForm.cs │ │ ├── ReportViewerForm.resx │ │ ├── RestrictionEnumValuesEditor.cs │ │ ├── RestrictionsEditor.cs │ │ ├── SQLEditor.cs │ │ ├── SQLEditorForm.Designer.cs │ │ ├── SQLEditorForm.cs │ │ ├── SQLEditorForm.resx │ │ ├── ScheduleCollectionEditor.cs │ │ ├── SmartCopyForm.Designer.cs │ │ ├── SmartCopyForm.cs │ │ ├── SmartCopyForm.resx │ │ ├── SplashScreen.Designer.cs │ │ ├── SplashScreen.cs │ │ ├── SplashScreen.resx │ │ ├── StringListEditor.cs │ │ ├── TemplateTextEditor.cs │ │ ├── TemplateTextEditorForm.Designer.cs │ │ ├── TemplateTextEditorForm.cs │ │ ├── TemplateTextEditorForm.resx │ │ ├── ToolStripEditorHelper.cs │ │ ├── ToolsHelper.cs │ │ └── WebBrowserHelper.cs │ ├── Helpers │ │ ├── AzureHelper.cs │ │ ├── CryptoHelper.cs │ │ ├── DataTableLoader.cs │ │ ├── ExcelHelper.cs │ │ ├── FileHelper.cs │ │ ├── Helper.cs │ │ ├── HelperForms.cs │ │ ├── Impersonator.cs │ │ ├── ObjectShredder.cs │ │ ├── PropertyGridHelper.cs │ │ ├── RazorHelper.cs │ │ ├── ScintillaHelper.cs │ │ ├── ScintillaRestrictionLexer.cs │ │ ├── TaskDatabaseHelper.cs │ │ ├── TaskHelper.cs │ │ ├── TreeViewEditorHelper.cs │ │ └── TreeViewHelper.cs │ ├── Model │ │ ├── Audit.cs │ │ ├── CategoryFolder.cs │ │ ├── CommonScript.cs │ │ ├── EditorTableDefinition.cs │ │ ├── Enums.cs │ │ ├── ExecutionInterface.cs │ │ ├── MenuReportViewsPool.cs │ │ ├── MetaColumn.cs │ │ ├── MetaConnection.cs │ │ ├── MetaData.cs │ │ ├── MetaEV.cs │ │ ├── MetaEnum.cs │ │ ├── MetaJoin.cs │ │ ├── MetaSource.cs │ │ ├── MetaTable.cs │ │ ├── MetaTableLink.cs │ │ ├── MetaTableTemplate.cs │ │ ├── Navigation.cs │ │ ├── NavigationContext.cs │ │ ├── NavigationLink.cs │ │ ├── OutputDevice.cs │ │ ├── OutputEMailDevice.cs │ │ ├── OutputFileServerDevice.cs │ │ ├── OutputFolderDevice.cs │ │ ├── Parameter.cs │ │ ├── Report.cs │ │ ├── ReportComponent.cs │ │ ├── ReportElement.cs │ │ ├── ReportExecution.cs │ │ ├── ReportModel.cs │ │ ├── ReportOutput.cs │ │ ├── ReportRestriction.cs │ │ ├── ReportSchedule.cs │ │ ├── ReportSource.cs │ │ ├── ReportTask.cs │ │ ├── ReportTaskTemplate.cs │ │ ├── ReportView.cs │ │ ├── ReportViewPartialTemplate.cs │ │ ├── ReportViewTemplate.cs │ │ ├── Repository.cs │ │ ├── RepositoryServer.cs │ │ ├── RepositoryTranslation.cs │ │ ├── ResultCell.cs │ │ ├── ResultData.cs │ │ ├── ResultPage.cs │ │ ├── ResultSerieValue.cs │ │ ├── ResultTable.cs │ │ ├── ResultTotalCell.cs │ │ ├── RootComponent.cs │ │ ├── RootEditor.cs │ │ ├── SealReportScheduler.cs │ │ ├── SealSchedule.cs │ │ ├── SealSecurity.cs │ │ ├── SealServerConfiguration.cs │ │ ├── SecurityColumn.cs │ │ ├── SecurityConnection.cs │ │ ├── SecurityDevice.cs │ │ ├── SecurityFolder.cs │ │ ├── SecurityGroup.cs │ │ ├── SecurityLogin.cs │ │ ├── SecurityProvider.cs │ │ ├── SecuritySource.cs │ │ ├── SecurityUser.cs │ │ ├── SecurityUserProfile.cs │ │ ├── StringPair.cs │ │ ├── SubReport.cs │ │ ├── WebInterfaceModels.cs │ │ └── WebMainModel.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Renderers │ │ ├── CSVRenderer.cs │ │ ├── ExcelRenderer.cs │ │ ├── ExcelResult.cs │ │ ├── HTML2PDFRenderer.cs │ │ ├── JsonRenderer.cs │ │ ├── JsonResult.cs │ │ ├── PDFRenderer.cs │ │ ├── PDFResult.cs │ │ ├── RootRenderer.cs │ │ ├── TextRenderer.cs │ │ └── XMLRenderer.cs │ ├── Resources │ │ ├── Clock.png │ │ ├── checkedBlue.png │ │ ├── checkedGreen.png │ │ ├── checkedRed.png │ │ ├── error.png │ │ ├── error2.png │ │ ├── execute.png │ │ ├── helper.png │ │ ├── information.png │ │ ├── render.png │ │ ├── reportDesigner.ico │ │ ├── reportDesigner2.ico │ │ ├── seal_barking.wav │ │ └── serverManager.ico │ ├── SealLibraryWin.csproj │ └── reportDesigner.ico ├── SealReportDesigner │ ├── BuildAttributeDate.cs │ ├── Control │ │ ├── ElementPanel.cs │ │ ├── ElementPanel.resx │ │ ├── ModelPanel.Designer.cs │ │ ├── ModelPanel.cs │ │ ├── ModelPanel.resx │ │ ├── RestrictionsPanel.Designer.cs │ │ ├── RestrictionsPanel.cs │ │ └── RestrictionsPanel.resx │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ReportDesigner.Designer.cs │ ├── ReportDesigner.cs │ ├── ReportDesigner.resx │ ├── Resources │ │ ├── chartAxis.png │ │ ├── chartSerie.png │ │ ├── chartSplitter.png │ │ ├── checkedBlue.png │ │ ├── checkedGreen.png │ │ ├── checkedRed.png │ │ ├── connection.png │ │ ├── database.png │ │ ├── delete.png │ │ ├── device.png │ │ ├── documentHTM.png │ │ ├── document_texte.png │ │ ├── element.png │ │ ├── enum.png │ │ ├── execute.png │ │ ├── exit.png │ │ ├── folder.png │ │ ├── help.png │ │ ├── helper.png │ │ ├── info.gif │ │ ├── join.png │ │ ├── label.png │ │ ├── link.png │ │ ├── login.png │ │ ├── model.png │ │ ├── modelLINQ.png │ │ ├── modelSQL.png │ │ ├── new.png │ │ ├── nosql.png │ │ ├── notepad.png │ │ ├── open.png │ │ ├── print.png │ │ ├── refresh.png │ │ ├── render.png │ │ ├── save.png │ │ ├── saveas.png │ │ ├── scroll.png │ │ ├── seal.ico │ │ ├── seal_about.JPG │ │ ├── seal_barking.wav │ │ ├── search.png │ │ ├── table.png │ │ ├── tableError.png │ │ ├── task.png │ │ ├── task2.png │ │ ├── template.png │ │ ├── view.png │ │ ├── view2.png │ │ ├── viewModel.png │ │ ├── viewModel2.png │ │ ├── viewWidget.png │ │ ├── viewWidget2.png │ │ └── wait.gif │ ├── SealReportDesigner.csproj │ ├── Settings.cs │ ├── _reportDesigner_ico │ ├── app.config │ └── reportDesigner.ico ├── SealSchedulerService │ ├── Program.cs │ ├── SealSchedulerService.csproj │ ├── SealSchedulerServiceInstall.ps1 │ ├── Worker.cs │ └── appsettings.json ├── SealSchedulerWorker │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SealSchedulerWorker.csproj │ ├── Worker.cs │ └── appsettings.json ├── SealServerManager │ ├── ConfigurationEditorForm.Designer.cs │ ├── ConfigurationEditorForm.cs │ ├── ConfigurationEditorForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest │ ├── Resources │ │ ├── chartAxis.png │ │ ├── chartSerie.png │ │ ├── chartSplitter.png │ │ ├── checkedBlue.png │ │ ├── checkedGreen.png │ │ ├── checkedRed.png │ │ ├── connection.png │ │ ├── database.png │ │ ├── delete.png │ │ ├── device.png │ │ ├── document_texte.png │ │ ├── element.png │ │ ├── enum.png │ │ ├── execute.png │ │ ├── exit.png │ │ ├── fileserver.png │ │ ├── filter.png │ │ ├── folder.png │ │ ├── help.png │ │ ├── join.png │ │ ├── label.png │ │ ├── login.png │ │ ├── new.png │ │ ├── nosql.png │ │ ├── notepad.png │ │ ├── open.png │ │ ├── print.png │ │ ├── refresh.png │ │ ├── save.png │ │ ├── save1.png │ │ ├── saveas.png │ │ ├── scroll.png │ │ ├── search.png │ │ ├── selectAll.png │ │ ├── sort.png │ │ ├── table.png │ │ ├── tableError.png │ │ ├── template.png │ │ └── wait.gif │ ├── SealServerManager.csproj │ ├── SecurityEditorForm.Designer.cs │ ├── SecurityEditorForm.cs │ ├── SecurityEditorForm.resx │ ├── ServerManager.Designer.cs │ ├── ServerManager.cs │ ├── ServerManager.resx │ ├── app.config │ └── serverManager.ico ├── SealTaskScheduler │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SealTaskScheduler.csproj │ └── appsettings.json ├── SealWebServer │ ├── .config │ │ └── dotnet-tools.json │ ├── Controllers │ │ ├── HomeController.cs │ │ ├── HomeControllerNETCore.cs │ │ ├── HomeControllerSWI.cs │ │ └── WebHelper.cs │ ├── Models │ │ └── Configuration │ │ │ ├── Authentication.cs │ │ │ ├── SessionConfiguration.cs │ │ │ ├── SessionProvider.cs │ │ │ └── SessionSqlServerConfiguration.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SealWebServer.csproj │ ├── SealWebServer.xml │ ├── Startup.DistributedCache.cs │ ├── Startup.cs │ ├── Views │ │ └── Home │ │ │ ├── Dialogs.cshtml │ │ │ ├── Main.cshtml │ │ │ └── Menu.cshtml │ ├── appsettings.Release.json │ ├── appsettings.json │ ├── global.json │ ├── web.config │ └── wwwroot │ │ ├── Content │ │ ├── 32px.png │ │ ├── 40px.png │ │ ├── Bootstrap-3.3.7 │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap-select.min.css │ │ ├── datatables.min.css │ │ ├── font-awesome.min.css │ │ ├── jstree-style.min.css │ │ ├── nv.d3.min.css │ │ ├── seal.css │ │ ├── sealweb.css │ │ └── throbber.gif │ │ ├── Images │ │ ├── favicon.ico │ │ ├── faviconWebServer.ico │ │ ├── faviconWebServer2.ico │ │ ├── logo.png │ │ └── logo.svg │ │ ├── Scripts │ │ ├── Chart.min.js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap-select.min.js │ │ ├── chartNVD3.js │ │ ├── chartjs-adapter-moment.min.js │ │ ├── chartjs-plugin-datalabels.min.js │ │ ├── common.js │ │ ├── d3-time-format.v2.min.js │ │ ├── d3-time.v1.min.js │ │ ├── d3.min.js │ │ ├── d3 │ │ │ ├── de.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── it.js │ │ │ ├── nl.js │ │ │ └── pt.js │ │ ├── datatables.min.js │ │ ├── datetime-moment.js │ │ ├── gauge.min.js │ │ ├── helpers.js │ │ ├── i18n │ │ │ ├── moment.de.js │ │ │ ├── moment.es.js │ │ │ ├── moment.fr.js │ │ │ ├── moment.it.js │ │ │ ├── moment.nl.js │ │ │ ├── moment.pt.js │ │ │ ├── selectpicker.de.min.js │ │ │ ├── selectpicker.es.min.js │ │ │ ├── selectpicker.fr.min.js │ │ │ ├── selectpicker.it.min.js │ │ │ ├── selectpicker.nl.min.js │ │ │ └── selectpicker.pt.min.js │ │ ├── jstree.min.js │ │ ├── moment.min.js │ │ ├── nv.d3.min.js │ │ ├── plotly-latest.min.js │ │ ├── plotly │ │ │ ├── plotly-locale-de.js │ │ │ ├── plotly-locale-es.js │ │ │ ├── plotly-locale-fr.js │ │ │ ├── plotly-locale-it.js │ │ │ ├── plotly-locale-nl.js │ │ │ └── plotly-locale-pt.js │ │ ├── swi-gateway.js │ │ ├── swi-gateway.js.map │ │ ├── swi-gateway.ts │ │ ├── swi-main.js │ │ ├── swi-main.js.map │ │ ├── swi-main.ts │ │ ├── swi-utils.js │ │ ├── swi-utils.js.map │ │ ├── swi-utils.ts │ │ └── typings │ │ │ ├── bootstrap │ │ │ └── index.d.ts │ │ │ ├── jquery │ │ │ └── jquery.d.ts │ │ │ ├── jstree │ │ │ └── jstree.d.ts │ │ │ └── main.d.ts │ │ ├── WebInterfaceAPI.html │ │ ├── WebInterfaceSamples.html │ │ ├── _app_offline.htm │ │ ├── favicon.ico │ │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── TestNuget │ ├── App.config │ ├── Program.cs │ └── TestNuget.csproj ├── Tests │ ├── TestReportExecution.cs │ └── Tests.csproj ├── global.json └── testWebApplication │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── TestWebApplication.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── README.md └── Repository ├── Databases ├── Audit_Empty.sqlite ├── Northwind employee objectives.xlsx ├── Translations.csv ├── databank.worldbank.org_health_population.xlsx └── excel samples.zip ├── Devices ├── Email │ ├── Email Device.scfx │ └── GMail Device.scfx └── FileServer │ ├── FTP Azure Device.scfx │ ├── FTP Device.scfx │ ├── SCP Device.scfx │ └── SFTP Device.scfx ├── Reports ├── Overview - Sales.srex ├── Renderer Excel - Orders.srex ├── Renderer PDF - Invoice.srex ├── Renderer PDF with Barcode - Invoice.srex ├── Renderer PDF with Merge.srex ├── Samples │ ├── 01-Simple list (Products).srex │ ├── 01-Tasks │ │ ├── 101-Task Refresh Enumerated Lists.srex │ │ ├── 102-Task Generate several Report Results.srex │ │ ├── 103-Task Update Navigation Link Text.srex │ │ ├── 104-Task Add borders to result tables.srex │ │ └── 105 - Task Build Dynamic Model.srex │ ├── 02-LINQ │ │ ├── 200-LINQ Source - Excel and CSV Sources.srex │ │ ├── 201-LINQ Samples CSV-Excel-HTML-JSON-XML.srex │ │ ├── 202-LINQ Source - File Download.srex │ │ ├── 203-LINQ Sample - MDX OLAP.srex │ │ ├── 204-LINQ Sample - Web Scraping - Countries Tables.srex │ │ ├── 210-Enumerated List LINQ - Dynamic Display.srex │ │ ├── 220-Mongo DB - Customer sales per year.srex │ │ ├── 221-Mongo DB - Customer sales detail.srex │ │ ├── 222-Mongo DB - Movies search.srex │ │ └── 223-Mongo DB - Movies - Northwind.srex │ ├── 02-Restrictions (Orders).srex │ ├── 03-Cross tab - Model layouts.srex │ ├── 03-Input Values │ │ ├── 300-Input Values - Connection and threshold.srex │ │ ├── 301-Input Values - Columns to display and Factor.srex │ │ └── 302-Input Values - Select view to execute.srex │ ├── 04-Charts Gallery - Chart JS Labels.srex │ ├── 04-Charts gallery - Basics.srex │ ├── 04-MS SQLServer │ │ ├── 400-SQL Server Temp Tables.srex │ │ ├── 401-SQL Server Stored Procedure with parameters.srex │ │ ├── 405-Task Backup SQLServer Database.srex │ │ ├── 406-Task Load Excel and CSV Table in SQLServer Database.srex │ │ └── 407-Task Load Table in SQLServer Database.srex │ ├── 05-Charts Gallery - Advanced.srex │ ├── 05-Gauges.srex │ ├── 05-Scripts │ │ ├── 500-Images - File Download.srex │ │ ├── 501-Cell Script - Progression and running totals.srex │ │ ├── 502-Init Script - Set default restriction values.srex │ │ ├── 503-Final Script - Change result table.srex │ │ ├── 504-Navigation - Execute reports from a report.srex │ │ ├── 505-Navigation - Custom buttons and report execution.srex │ │ └── 506-Navigation - File and fields Upload.srex │ ├── 06-Datatables - Fixed Header.srex │ ├── 06-Datatables - Scroll and Fixed Columns.srex │ ├── 06-Datatables - Scroller.srex │ ├── 06-ETL Tasks │ │ ├── 601-Load Excel Files.srex │ │ ├── 602-Load CSV Files.srex │ │ ├── 603-Execute Reports.srex │ │ ├── 604-Copy Tables from a Database.srex │ │ ├── 605-Unzip Files.srex │ │ ├── 606-Load XML File.srex │ │ ├── 610-Download Zip from FTP, Unzip and Load tables from Excel.srex │ │ └── 611-Generate Report Results, Zip and Upload to FTP Server.srex │ ├── 07-Outputs and schedules.srex │ ├── 08-SQL Model - Common Restrictions.srex │ ├── 09-Enumerated List - Dynamic Display.srex │ ├── 10-Container - Bootstrap Layout.srex │ ├── 10-Container - Grid Flex Layout.srex │ ├── 11-Tab Control - Model Layout.srex │ ├── 12-Pareto Graph.srex │ ├── 13-Sales comparison per month.srex │ ├── 14-Sharing Models and Views properties.srex │ ├── 15-Cards.srex │ ├── 20-KPI.srex │ ├── 30-Restrictions layout and options.srex │ ├── 31-Restrictions Views.srex │ ├── 40-Startup Report.srex │ └── 41-Startup Folder.srex ├── Search - Orders.srex └── System │ ├── 010 System Dashboard.srex │ ├── 100 Configuration - Security Summary.srex │ ├── 110 Configuration - List of Windows Groups and Users.srex │ ├── 200 Audit - Search.srex │ ├── 210 Audit - Last Errors.srex │ ├── 220 Audit - Login Failures.srex │ ├── 250 Audit - Users Activity.srex │ ├── 300 Reports - Inventory.srex │ ├── 310 Reports - Check Executions.srex │ ├── 320 Reports - Server Schedule Definitions.srex │ ├── 350 Reports - Executions.srex │ ├── 400 Sources - Check Sources.srex │ ├── 410 Sources - Refresh Enumerated Lists.srex │ ├── 420 Sources - Documentation.srex │ ├── 500 Publication - Web Report Server.srex │ ├── 510 Publication - Repository.srex │ └── 600 System - Repository Size.srex ├── Security ├── Providers │ ├── Basic Authentication.cshtml │ ├── Basic Windows Authentication.cshtml │ ├── Claims Principal.cshtml │ ├── Database Authentication.cshtml │ ├── Integrated Windows Authentication.cshtml │ ├── JWT.cshtml │ ├── LDAP Authentication.cshtml │ ├── No Security.cshtml │ └── OpenId.cshtml ├── Security.xml └── SecurityORI.xml ├── Settings ├── Configuration.xml ├── ConfigurationORI.xml ├── RepositoryTranslations.xlsx ├── Translations.ar.csv ├── Translations.es.csv ├── Translations.it.csv ├── Translations.nb.csv ├── Translations.pl.csv ├── Translations.pt.csv ├── Translations.ru.csv ├── Translations.xlsx └── Translations.zh.csv ├── Sources ├── Audit MS SQLServer_scfx ├── Audit SQLite.scfx ├── LINQ Sources.scfx ├── Local MS SQLServer.scfx ├── Mongo DB.scfx ├── Northwind.scfx ├── TableTemplates │ ├── Adomd OLAP MDX.cshtml │ ├── CSV.cshtml │ ├── Database.cshtml │ ├── Default.cshtml │ ├── Excel.cshtml │ ├── Generic.cshtml │ ├── HTML.cshtml │ ├── HTTPClient JSON.cshtml │ ├── Mongo DB.cshtml │ ├── Xml File.cshtml │ └── XmlReader RSS.cshtml └── TaskTemplates │ ├── Default.cshtml │ ├── Execute Report.cshtml │ ├── File Download Upload.cshtml │ ├── File Zip Unzip.cshtml │ ├── Load CSV To Database.cshtml │ ├── Load Excel To Database.cshtml │ ├── Load Model To Database.cshtml │ ├── Load Table To Database.cshtml │ ├── Load XML To Database.cshtml │ ├── Loop.cshtml │ └── Parallel.cshtml ├── SubReports ├── Customer Detail.srex ├── Employee Detail.srex ├── Order Detail.srex ├── Product Detail.srex └── Supplier Detail.srex └── Views ├── Card.config.cshtml ├── Card.cshtml ├── ChartJS.config.cshtml ├── ChartJS.cshtml ├── ChartNVD3.config.cshtml ├── ChartNVD3.cshtml ├── ChartPlotly.config.cshtml ├── ChartPlotly.cshtml ├── ChartScottplot.config.cshtml ├── ChartScottplot.cshtml ├── Container.config.cshtml ├── Container.cshtml ├── ContainerGridFlex.config.cshtml ├── ContainerGridFlex.cshtml ├── Content ├── Bootstrap-3.3.7 │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── bootstrap-datetimepicker.min.css ├── bootstrap-select.min.css ├── datatables.min.css ├── nv.d3.min.css └── seal.css ├── DataTable.config.cshtml ├── DataTable.cshtml ├── Fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── Free.config.cshtml ├── Free.cshtml ├── Gauge.config.cshtml ├── Gauge.cshtml ├── Images ├── favicon.ico ├── logo.png └── logo.svg ├── KPI.config.cshtml ├── KPI.cshtml ├── Model.config.cshtml ├── Model.cshtml ├── Model.iMenu.partial.cshtml ├── Model.iPages.partial.cshtml ├── Model.iSummaryTable.partial.cshtml ├── ModelDetail.config.cshtml ├── ModelDetail.cshtml ├── PageTable.config.cshtml ├── PageTable.cshtml ├── Renderers ├── CSV │ ├── Model.config.cshtml │ ├── Model.cshtml │ ├── Report.config.cshtml │ └── Report.cshtml ├── Default.config.cshtml ├── Default.cshtml ├── Excel │ ├── ChartJS.config.cshtml │ ├── ChartJS.cshtml │ ├── DataTable.config.cshtml │ ├── DataTable.cshtml │ ├── Model.config.cshtml │ ├── Model.cshtml │ ├── ModelDetail.config.cshtml │ ├── ModelDetail.cshtml │ ├── PageTable.config.cshtml │ ├── PageTable.cshtml │ ├── Report.config.cshtml │ ├── Report.cshtml │ ├── TabPage.config.cshtml │ ├── TabPage.cshtml │ ├── Widget.config.cshtml │ └── Widget.cshtml ├── HTML2PDF │ ├── Report.config.cshtml │ └── Report.cshtml ├── Json │ ├── Model.config.cshtml │ ├── Model.cshtml │ ├── Report.config.cshtml │ └── Report.cshtml ├── PDF │ ├── ChartJS.config.cshtml │ ├── ChartJS.cshtml │ ├── ChartNVD3.config.cshtml │ ├── ChartNVD3.cshtml │ ├── ChartPlotly.config.cshtml │ ├── ChartPlotly.cshtml │ ├── ChartScottplot.config.cshtml │ ├── ChartScottplot.cshtml │ ├── DataTable.config.cshtml │ ├── DataTable.cshtml │ ├── Default.config.cshtml │ ├── Default.cshtml │ ├── Gauge.config.cshtml │ ├── Gauge.cshtml │ ├── Model.config.cshtml │ ├── Model.cshtml │ ├── ModelDetail.config.cshtml │ ├── ModelDetail.cshtml │ ├── PageTable.config.cshtml │ ├── PageTable.cshtml │ ├── Report.config.cshtml │ ├── Report.cshtml │ ├── TabPage.config.cshtml │ ├── TabPage.cshtml │ ├── Widget.config.cshtml │ └── Widget.cshtml ├── Text │ ├── Model.config.cshtml │ └── Model.cshtml └── XML │ ├── Model.config.cshtml │ ├── Model.cshtml │ ├── Report.config.cshtml │ └── Report.cshtml ├── Report.config.cshtml ├── Report.cshtml ├── Report.iBody.partial.cshtml ├── Report.iContent.partial.cshtml ├── Report.iHeader.partial.cshtml ├── Report.iInformation.partial.cshtml ├── Report.iMessages.partial.cshtml ├── Report.iRestrictions.partial.cshtml ├── Report.iViews.partial.cshtml ├── Restrictions.config.cshtml ├── Restrictions.cshtml ├── Restrictions.iShared.partial.cshtml ├── Scripts ├── Chart.min.js ├── bootstrap-datetimepicker.min.js ├── bootstrap-select.min.js ├── chartNVD3.js ├── chartjs-adapter-moment.min.js ├── chartjs-plugin-datalabels.min.js ├── common.js ├── d3-time-format.v2.min.js ├── d3-time.v1.min.js ├── d3.min.js ├── d3 │ ├── de.js │ ├── es.js │ ├── fr.js │ ├── it.js │ ├── nl.js │ └── pt.js ├── datatables.min.js ├── datetime-moment.js ├── gauge.min.js ├── helpers.js ├── i18n │ ├── moment.de.js │ ├── moment.es.js │ ├── moment.fr.js │ ├── moment.it.js │ ├── moment.nl.js │ ├── moment.pt.js │ ├── selectpicker.de.min.js │ ├── selectpicker.es.min.js │ ├── selectpicker.fr.min.js │ ├── selectpicker.it.min.js │ ├── selectpicker.nl.min.js │ └── selectpicker.pt.min.js ├── moment.min.js ├── nv.d3.min.js ├── plotly-latest.min.js └── plotly │ ├── plotly-locale-de.js │ ├── plotly-locale-es.js │ ├── plotly-locale-fr.js │ ├── plotly-locale-it.js │ ├── plotly-locale-nl.js │ └── plotly-locale-pt.js ├── TabControl.config.cshtml ├── TabControl.cshtml ├── TabControl.iContent.partial.cshtml ├── TabControl.iMenu.partial.cshtml ├── TabPage.config.cshtml ├── TabPage.cshtml ├── Widget.config.cshtml └── Widget.cshtml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/LICENSE -------------------------------------------------------------------------------- /Projects/ClassDocumentation/seal.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/ClassDocumentation/seal.shfbproj -------------------------------------------------------------------------------- /Projects/ClassDocumentation/sealDocumentation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/ClassDocumentation/sealDocumentation.sln -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/AttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/AttributeValue.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/ClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/ClassDiagram.cd -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Common/CrossAppDomainObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Common/CrossAppDomainObject.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Common/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Common/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Common/HashCodeCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Common/HashCodeCombiner.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Compilation/CompilationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Compilation/CompilationData.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Compilation/ICompilerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Compilation/ICompilerService.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Compilation/TypeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Compilation/TypeContext.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Encoding.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Engine.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Helpers/RazorLanguageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Helpers/RazorLanguageHelper.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Language.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Legacy/Razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Legacy/Razor.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/PositionTagged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/PositionTagged.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/RazorEngine.NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/RazorEngine.NetCore.csproj -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/RazorEngine.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/RazorEngine.snk -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/TaskRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/TaskRunner.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/BaseTemplateKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/BaseTemplateKey.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/CompiledTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/CompiledTemplate.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/DefaultActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/DefaultActivator.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/DelegateActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/DelegateActivator.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/DynamicViewBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/DynamicViewBag.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/ExecuteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/ExecuteContext.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/IActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/IActivator.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/IAppDomainFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/IAppDomainFactory.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/ICachingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/ICachingProvider.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/IRazorEngineCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/IRazorEngineCore.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/ITemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/ITemplate.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/ITemplateKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/ITemplateKey.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/ITemplateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/ITemplateManager.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/ITemplateOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/ITemplateOfT.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/ITemplateSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/ITemplateSource.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/InstanceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/InstanceContext.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/RazorEngineCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/RazorEngineCore.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/ResolveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/ResolveType.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/TemplateBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/TemplateBase.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/TemplateBaseOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/TemplateBaseOfT.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/TemplateSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/TemplateSource.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/TemplateWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/TemplateWriter.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Templating/TypeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Templating/TypeLoader.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Text/HtmlEncodedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Text/HtmlEncodedString.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Text/IEncodedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Text/IEncodedString.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Text/IEncodedStringFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Text/IEncodedStringFactory.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Text/RawString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Text/RawString.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/Text/RawStringFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/Text/RawStringFactory.cs -------------------------------------------------------------------------------- /Projects/RazorEngine.NetCore/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/RazorEngine.NetCore/paket.references -------------------------------------------------------------------------------- /Projects/Seal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/Seal.sln -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/Index.cshtml -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/Recipes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/Recipes.cshtml -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/Reports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/Reports.cshtml -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/Server.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/Server.cshtml -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/Sources.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/Sources.cshtml -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/Tutorials.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/Tutorials.cshtml -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Projects/SealDocumentation/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Projects/SealDocumentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Program.cs -------------------------------------------------------------------------------- /Projects/SealDocumentation/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/Properties/launchSettings.json -------------------------------------------------------------------------------- /Projects/SealDocumentation/SealDocumentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/SealDocumentation.csproj -------------------------------------------------------------------------------- /Projects/SealDocumentation/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/appsettings.Development.json -------------------------------------------------------------------------------- /Projects/SealDocumentation/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/appsettings.json -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/css/animate.css -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/css/bootstrap.css -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/css/bootstrap.css.map -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/css/custom.css -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/css/site.css -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/css/stroke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/css/stroke.css -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/css/style.css -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/CD-Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/CD-Report.png -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/CD-Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/CD-Security.png -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/favicon.ico -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/model-linq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/model-linq.png -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/model-sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/model-sql.png -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/overviewSeal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/overviewSeal.png -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/platforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/platforms.png -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/seal1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/seal1.jpg -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/seal2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/seal2.jpg -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/images/seal3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/images/seal3.jpg -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/scripts/bootstrap.js -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/scripts/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/scripts/custom.js -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/scripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/scripts/jquery.min.js -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/scripts/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/scripts/jquery.min.map -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/scripts/main.js -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/scripts/retina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/scripts/retina.js -------------------------------------------------------------------------------- /Projects/SealDocumentation/wwwroot/scripts/wow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealDocumentation/wwwroot/scripts/wow.js -------------------------------------------------------------------------------- /Projects/SealLibrary/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibrary/LICENSE.txt -------------------------------------------------------------------------------- /Projects/SealLibrary/SealLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibrary/SealLibrary.csproj -------------------------------------------------------------------------------- /Projects/SealLibrary/SealLibrary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibrary/SealLibrary.xml -------------------------------------------------------------------------------- /Projects/SealLibrary/sealNugetLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibrary/sealNugetLogo.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/BuildAttributeDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/BuildAttributeDate.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/CD-Data Source.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/CD-Data Source.cd -------------------------------------------------------------------------------- /Projects/SealLibraryWin/CD-Report Model.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/CD-Report Model.cd -------------------------------------------------------------------------------- /Projects/SealLibraryWin/CD-Report.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/CD-Report.cd -------------------------------------------------------------------------------- /Projects/SealLibraryWin/CD-Security.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/CD-Security.cd -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/CssClassConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/CssClassConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/CssStyleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/CssStyleConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/CultureInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/CultureInfoConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/CultureNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/CultureNameConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/CustomFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/CustomFormatConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/CustomNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/CustomNameConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/DateKeywordConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/DateKeywordConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/MenuNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/MenuNameConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/MetaEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/MetaEnumConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/MetaJoinConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/MetaJoinConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/MetaSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/MetaSourceConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/NamedEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/NamedEnumConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/ReportModelConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/ReportModelConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/ReportTaskConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/ReportTaskConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/ReportViewConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/ReportViewConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/SortOrderConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/SortOrderConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Converter/SourceTableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Converter/SourceTableConverter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Directory.Build.props -------------------------------------------------------------------------------- /Projects/SealLibraryWin/FindReplaceDialog/CharacterRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/FindReplaceDialog/CharacterRange.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/FindReplaceDialog/GoTo/GoTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/FindReplaceDialog/GoTo/GoTo.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/AboutBoxForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/AboutBoxForm.Designer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/AboutBoxForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/AboutBoxForm.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/AboutBoxForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/AboutBoxForm.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ColumnsSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ColumnsSelector.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/DataSourcesSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/DataSourcesSelector.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/DifferenceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/DifferenceForm.Designer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/DifferenceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/DifferenceForm.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/DifferenceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/DifferenceForm.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/EntityCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/EntityCollectionEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ExecutionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ExecutionForm.Designer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ExecutionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ExecutionForm.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ExecutionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ExecutionForm.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/FormHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/FormHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/FunctionsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/FunctionsEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/HelperEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/HelperEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/IEntityHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/IEntityHandler.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/JoinsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/JoinsEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/MultipleSelectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/MultipleSelectForm.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/MultipleSelectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/MultipleSelectForm.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ParametersEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ParametersEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/PartialTemplatesEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/PartialTemplatesEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ReportViewerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ReportViewerForm.Designer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ReportViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ReportViewerForm.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ReportViewerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ReportViewerForm.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/RestrictionsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/RestrictionsEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SQLEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SQLEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SQLEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SQLEditorForm.Designer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SQLEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SQLEditorForm.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SQLEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SQLEditorForm.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ScheduleCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ScheduleCollectionEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SmartCopyForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SmartCopyForm.Designer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SmartCopyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SmartCopyForm.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SmartCopyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SmartCopyForm.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SplashScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SplashScreen.Designer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SplashScreen.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/SplashScreen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/SplashScreen.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/StringListEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/StringListEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/TemplateTextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/TemplateTextEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/TemplateTextEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/TemplateTextEditorForm.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/TemplateTextEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/TemplateTextEditorForm.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ToolStripEditorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ToolStripEditorHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/ToolsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/ToolsHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Forms/WebBrowserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Forms/WebBrowserHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/AzureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/AzureHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/CryptoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/CryptoHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/DataTableLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/DataTableLoader.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/ExcelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/ExcelHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/FileHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/Helper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/HelperForms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/HelperForms.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/Impersonator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/Impersonator.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/ObjectShredder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/ObjectShredder.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/PropertyGridHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/PropertyGridHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/RazorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/RazorHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/ScintillaHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/ScintillaHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/TaskDatabaseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/TaskDatabaseHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/TaskHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/TaskHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/TreeViewEditorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/TreeViewEditorHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Helpers/TreeViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Helpers/TreeViewHelper.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/Audit.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/CategoryFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/CategoryFolder.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/CommonScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/CommonScript.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/EditorTableDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/EditorTableDefinition.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/Enums.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ExecutionInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ExecutionInterface.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MenuReportViewsPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MenuReportViewsPool.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaColumn.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaConnection.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaData.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaEV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaEV.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaEnum.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaJoin.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaSource.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaTable.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaTableLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaTableLink.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/MetaTableTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/MetaTableTemplate.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/Navigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/Navigation.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/NavigationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/NavigationContext.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/NavigationLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/NavigationLink.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/OutputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/OutputDevice.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/OutputEMailDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/OutputEMailDevice.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/OutputFileServerDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/OutputFileServerDevice.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/OutputFolderDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/OutputFolderDevice.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/Parameter.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/Report.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportComponent.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportElement.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportExecution.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportModel.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportOutput.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportRestriction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportRestriction.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportSchedule.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportSource.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportTask.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportTaskTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportTaskTemplate.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportView.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportViewPartialTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportViewPartialTemplate.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ReportViewTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ReportViewTemplate.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/Repository.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/RepositoryServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/RepositoryServer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/RepositoryTranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/RepositoryTranslation.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ResultCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ResultCell.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ResultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ResultData.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ResultPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ResultPage.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ResultSerieValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ResultSerieValue.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ResultTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ResultTable.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/ResultTotalCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/ResultTotalCell.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/RootComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/RootComponent.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/RootEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/RootEditor.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SealReportScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SealReportScheduler.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SealSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SealSchedule.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SealSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SealSecurity.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SealServerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SealServerConfiguration.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecurityColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecurityColumn.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecurityConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecurityConnection.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecurityDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecurityDevice.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecurityFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecurityFolder.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecurityGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecurityGroup.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecurityLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecurityLogin.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecurityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecurityProvider.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecuritySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecuritySource.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecurityUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecurityUser.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SecurityUserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SecurityUserProfile.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/StringPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/StringPair.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/SubReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/SubReport.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/WebInterfaceModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/WebInterfaceModels.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Model/WebMainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Model/WebMainModel.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Properties/Resources.resx -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/CSVRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/CSVRenderer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/ExcelRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/ExcelRenderer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/ExcelResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/ExcelResult.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/HTML2PDFRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/HTML2PDFRenderer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/JsonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/JsonRenderer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/JsonResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/JsonResult.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/PDFRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/PDFRenderer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/PDFResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/PDFResult.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/RootRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/RootRenderer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/TextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/TextRenderer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Renderers/XMLRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Renderers/XMLRenderer.cs -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/Clock.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/checkedBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/checkedBlue.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/checkedGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/checkedGreen.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/checkedRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/checkedRed.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/error.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/error2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/error2.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/execute.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/helper.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/information.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/render.png -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/reportDesigner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/reportDesigner.ico -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/reportDesigner2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/reportDesigner2.ico -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/seal_barking.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/seal_barking.wav -------------------------------------------------------------------------------- /Projects/SealLibraryWin/Resources/serverManager.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/Resources/serverManager.ico -------------------------------------------------------------------------------- /Projects/SealLibraryWin/SealLibraryWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/SealLibraryWin.csproj -------------------------------------------------------------------------------- /Projects/SealLibraryWin/reportDesigner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealLibraryWin/reportDesigner.ico -------------------------------------------------------------------------------- /Projects/SealReportDesigner/BuildAttributeDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/BuildAttributeDate.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Control/ElementPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Control/ElementPanel.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Control/ElementPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Control/ElementPanel.resx -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Control/ModelPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Control/ModelPanel.Designer.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Control/ModelPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Control/ModelPanel.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Control/ModelPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Control/ModelPanel.resx -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Control/RestrictionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Control/RestrictionsPanel.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Control/RestrictionsPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Control/RestrictionsPanel.resx -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Program.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Properties/Resources.resx -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Properties/Settings.settings -------------------------------------------------------------------------------- /Projects/SealReportDesigner/ReportDesigner.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/ReportDesigner.Designer.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/ReportDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/ReportDesigner.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/ReportDesigner.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/ReportDesigner.resx -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/chartAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/chartAxis.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/chartSerie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/chartSerie.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/chartSplitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/chartSplitter.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/checkedBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/checkedBlue.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/checkedGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/checkedGreen.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/checkedRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/checkedRed.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/connection.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/database.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/delete.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/device.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/documentHTM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/documentHTM.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/document_texte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/document_texte.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/element.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/enum.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/execute.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/exit.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/folder.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/help.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/helper.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/info.gif -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/join.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/label.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/link.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/login.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/model.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/modelLINQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/modelLINQ.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/modelSQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/modelSQL.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/new.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/nosql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/nosql.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/notepad.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/open.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/print.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/refresh.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/render.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/save.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/saveas.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/scroll.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/seal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/seal.ico -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/seal_about.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/seal_about.JPG -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/seal_barking.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/seal_barking.wav -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/search.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/table.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/tableError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/tableError.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/task.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/task2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/task2.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/template.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/view.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/view2.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/viewModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/viewModel.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/viewModel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/viewModel2.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/viewWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/viewWidget.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/viewWidget2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/viewWidget2.png -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Resources/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Resources/wait.gif -------------------------------------------------------------------------------- /Projects/SealReportDesigner/SealReportDesigner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/SealReportDesigner.csproj -------------------------------------------------------------------------------- /Projects/SealReportDesigner/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/Settings.cs -------------------------------------------------------------------------------- /Projects/SealReportDesigner/_reportDesigner_ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/_reportDesigner_ico -------------------------------------------------------------------------------- /Projects/SealReportDesigner/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/app.config -------------------------------------------------------------------------------- /Projects/SealReportDesigner/reportDesigner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealReportDesigner/reportDesigner.ico -------------------------------------------------------------------------------- /Projects/SealSchedulerService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealSchedulerService/Program.cs -------------------------------------------------------------------------------- /Projects/SealSchedulerService/SealSchedulerService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealSchedulerService/SealSchedulerService.csproj -------------------------------------------------------------------------------- /Projects/SealSchedulerService/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealSchedulerService/Worker.cs -------------------------------------------------------------------------------- /Projects/SealSchedulerService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealSchedulerService/appsettings.json -------------------------------------------------------------------------------- /Projects/SealSchedulerWorker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealSchedulerWorker/Program.cs -------------------------------------------------------------------------------- /Projects/SealSchedulerWorker/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealSchedulerWorker/Properties/launchSettings.json -------------------------------------------------------------------------------- /Projects/SealSchedulerWorker/SealSchedulerWorker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealSchedulerWorker/SealSchedulerWorker.csproj -------------------------------------------------------------------------------- /Projects/SealSchedulerWorker/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealSchedulerWorker/Worker.cs -------------------------------------------------------------------------------- /Projects/SealSchedulerWorker/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealSchedulerWorker/appsettings.json -------------------------------------------------------------------------------- /Projects/SealServerManager/ConfigurationEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/ConfigurationEditorForm.cs -------------------------------------------------------------------------------- /Projects/SealServerManager/ConfigurationEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/ConfigurationEditorForm.resx -------------------------------------------------------------------------------- /Projects/SealServerManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Program.cs -------------------------------------------------------------------------------- /Projects/SealServerManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Projects/SealServerManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Properties/Resources.resx -------------------------------------------------------------------------------- /Projects/SealServerManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Projects/SealServerManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Properties/Settings.settings -------------------------------------------------------------------------------- /Projects/SealServerManager/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Properties/app.manifest -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/chartAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/chartAxis.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/chartSerie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/chartSerie.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/chartSplitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/chartSplitter.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/checkedBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/checkedBlue.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/checkedGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/checkedGreen.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/checkedRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/checkedRed.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/connection.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/database.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/delete.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/device.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/document_texte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/document_texte.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/element.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/enum.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/execute.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/exit.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/fileserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/fileserver.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/filter.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/folder.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/help.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/join.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/label.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/login.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/new.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/nosql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/nosql.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/notepad.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/open.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/print.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/refresh.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/save.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/save1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/save1.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/saveas.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/scroll.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/search.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/selectAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/selectAll.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/sort.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/table.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/tableError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/tableError.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/template.png -------------------------------------------------------------------------------- /Projects/SealServerManager/Resources/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/Resources/wait.gif -------------------------------------------------------------------------------- /Projects/SealServerManager/SealServerManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/SealServerManager.csproj -------------------------------------------------------------------------------- /Projects/SealServerManager/SecurityEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/SecurityEditorForm.Designer.cs -------------------------------------------------------------------------------- /Projects/SealServerManager/SecurityEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/SecurityEditorForm.cs -------------------------------------------------------------------------------- /Projects/SealServerManager/SecurityEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/SecurityEditorForm.resx -------------------------------------------------------------------------------- /Projects/SealServerManager/ServerManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/ServerManager.Designer.cs -------------------------------------------------------------------------------- /Projects/SealServerManager/ServerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/ServerManager.cs -------------------------------------------------------------------------------- /Projects/SealServerManager/ServerManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/ServerManager.resx -------------------------------------------------------------------------------- /Projects/SealServerManager/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/app.config -------------------------------------------------------------------------------- /Projects/SealServerManager/serverManager.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealServerManager/serverManager.ico -------------------------------------------------------------------------------- /Projects/SealTaskScheduler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealTaskScheduler/Program.cs -------------------------------------------------------------------------------- /Projects/SealTaskScheduler/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealTaskScheduler/Properties/launchSettings.json -------------------------------------------------------------------------------- /Projects/SealTaskScheduler/SealTaskScheduler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealTaskScheduler/SealTaskScheduler.csproj -------------------------------------------------------------------------------- /Projects/SealTaskScheduler/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealTaskScheduler/appsettings.json -------------------------------------------------------------------------------- /Projects/SealWebServer/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/.config/dotnet-tools.json -------------------------------------------------------------------------------- /Projects/SealWebServer/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Projects/SealWebServer/Controllers/HomeControllerNETCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Controllers/HomeControllerNETCore.cs -------------------------------------------------------------------------------- /Projects/SealWebServer/Controllers/HomeControllerSWI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Controllers/HomeControllerSWI.cs -------------------------------------------------------------------------------- /Projects/SealWebServer/Controllers/WebHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Controllers/WebHelper.cs -------------------------------------------------------------------------------- /Projects/SealWebServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Program.cs -------------------------------------------------------------------------------- /Projects/SealWebServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /Projects/SealWebServer/SealWebServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/SealWebServer.csproj -------------------------------------------------------------------------------- /Projects/SealWebServer/SealWebServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/SealWebServer.xml -------------------------------------------------------------------------------- /Projects/SealWebServer/Startup.DistributedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Startup.DistributedCache.cs -------------------------------------------------------------------------------- /Projects/SealWebServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Startup.cs -------------------------------------------------------------------------------- /Projects/SealWebServer/Views/Home/Dialogs.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Views/Home/Dialogs.cshtml -------------------------------------------------------------------------------- /Projects/SealWebServer/Views/Home/Main.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Views/Home/Main.cshtml -------------------------------------------------------------------------------- /Projects/SealWebServer/Views/Home/Menu.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/Views/Home/Menu.cshtml -------------------------------------------------------------------------------- /Projects/SealWebServer/appsettings.Release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/appsettings.Release.json -------------------------------------------------------------------------------- /Projects/SealWebServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/appsettings.json -------------------------------------------------------------------------------- /Projects/SealWebServer/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/global.json -------------------------------------------------------------------------------- /Projects/SealWebServer/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/web.config -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Content/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Content/32px.png -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Content/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Content/40px.png -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Content/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Content/datatables.min.css -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Content/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Content/font-awesome.min.css -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Content/jstree-style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Content/jstree-style.min.css -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Content/nv.d3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Content/nv.d3.min.css -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Content/seal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Content/seal.css -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Content/sealweb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Content/sealweb.css -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Content/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Content/throbber.gif -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Images/favicon.ico -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Images/faviconWebServer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Images/faviconWebServer.ico -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Images/faviconWebServer2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Images/faviconWebServer2.ico -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Images/logo.png -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Images/logo.svg -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/Chart.min.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/chartNVD3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/chartNVD3.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/common.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/d3-time.v1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/d3-time.v1.min.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/d3.min.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/d3/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/d3/de.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/d3/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/d3/es.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/d3/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/d3/fr.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/d3/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/d3/it.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/d3/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/d3/nl.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/d3/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/d3/pt.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/datatables.min.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/datetime-moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/datetime-moment.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/gauge.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/gauge.min.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/helpers.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/i18n/moment.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/i18n/moment.de.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/i18n/moment.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/i18n/moment.es.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/i18n/moment.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/i18n/moment.fr.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/i18n/moment.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/i18n/moment.it.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/i18n/moment.nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/i18n/moment.nl.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/i18n/moment.pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/i18n/moment.pt.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/jstree.min.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/moment.min.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/nv.d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/nv.d3.min.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/plotly-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/plotly-latest.min.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/swi-gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/swi-gateway.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/swi-gateway.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/swi-gateway.js.map -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/swi-gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/swi-gateway.ts -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/swi-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/swi-main.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/swi-main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/swi-main.js.map -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/swi-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/swi-main.ts -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/swi-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/swi-utils.js -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/swi-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/swi-utils.js.map -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/swi-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/swi-utils.ts -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/Scripts/typings/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/Scripts/typings/main.d.ts -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/WebInterfaceAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/WebInterfaceAPI.html -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/WebInterfaceSamples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/WebInterfaceSamples.html -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/_app_offline.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/_app_offline.htm -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Projects/SealWebServer/wwwroot/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/SealWebServer/wwwroot/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Projects/TestNuget/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/TestNuget/App.config -------------------------------------------------------------------------------- /Projects/TestNuget/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/TestNuget/Program.cs -------------------------------------------------------------------------------- /Projects/TestNuget/TestNuget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/TestNuget/TestNuget.csproj -------------------------------------------------------------------------------- /Projects/Tests/TestReportExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/Tests/TestReportExecution.cs -------------------------------------------------------------------------------- /Projects/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/Tests/Tests.csproj -------------------------------------------------------------------------------- /Projects/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/global.json -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/Error.cshtml -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/Index.cshtml -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Projects/testWebApplication/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Projects/testWebApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Program.cs -------------------------------------------------------------------------------- /Projects/testWebApplication/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/Properties/launchSettings.json -------------------------------------------------------------------------------- /Projects/testWebApplication/TestWebApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/TestWebApplication.csproj -------------------------------------------------------------------------------- /Projects/testWebApplication/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/appsettings.Development.json -------------------------------------------------------------------------------- /Projects/testWebApplication/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/appsettings.json -------------------------------------------------------------------------------- /Projects/testWebApplication/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/wwwroot/css/site.css -------------------------------------------------------------------------------- /Projects/testWebApplication/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Projects/testWebApplication/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/wwwroot/js/site.js -------------------------------------------------------------------------------- /Projects/testWebApplication/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Projects/testWebApplication/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Projects/testWebApplication/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/README.md -------------------------------------------------------------------------------- /Repository/Databases/Audit_Empty.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Databases/Audit_Empty.sqlite -------------------------------------------------------------------------------- /Repository/Databases/Northwind employee objectives.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Databases/Northwind employee objectives.xlsx -------------------------------------------------------------------------------- /Repository/Databases/Translations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Databases/Translations.csv -------------------------------------------------------------------------------- /Repository/Databases/excel samples.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Databases/excel samples.zip -------------------------------------------------------------------------------- /Repository/Devices/Email/Email Device.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Devices/Email/Email Device.scfx -------------------------------------------------------------------------------- /Repository/Devices/Email/GMail Device.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Devices/Email/GMail Device.scfx -------------------------------------------------------------------------------- /Repository/Devices/FileServer/FTP Azure Device.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Devices/FileServer/FTP Azure Device.scfx -------------------------------------------------------------------------------- /Repository/Devices/FileServer/FTP Device.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Devices/FileServer/FTP Device.scfx -------------------------------------------------------------------------------- /Repository/Devices/FileServer/SCP Device.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Devices/FileServer/SCP Device.scfx -------------------------------------------------------------------------------- /Repository/Devices/FileServer/SFTP Device.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Devices/FileServer/SFTP Device.scfx -------------------------------------------------------------------------------- /Repository/Reports/Overview - Sales.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Overview - Sales.srex -------------------------------------------------------------------------------- /Repository/Reports/Renderer Excel - Orders.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Renderer Excel - Orders.srex -------------------------------------------------------------------------------- /Repository/Reports/Renderer PDF - Invoice.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Renderer PDF - Invoice.srex -------------------------------------------------------------------------------- /Repository/Reports/Renderer PDF with Barcode - Invoice.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Renderer PDF with Barcode - Invoice.srex -------------------------------------------------------------------------------- /Repository/Reports/Renderer PDF with Merge.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Renderer PDF with Merge.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/01-Simple list (Products).srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/01-Simple list (Products).srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/02-Restrictions (Orders).srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/02-Restrictions (Orders).srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/04-Charts gallery - Basics.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/04-Charts gallery - Basics.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/05-Gauges.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/05-Gauges.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/06-Datatables - Scroller.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/06-Datatables - Scroller.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/07-Outputs and schedules.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/07-Outputs and schedules.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/12-Pareto Graph.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/12-Pareto Graph.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/15-Cards.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/15-Cards.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/20-KPI.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/20-KPI.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/31-Restrictions Views.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/31-Restrictions Views.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/40-Startup Report.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/40-Startup Report.srex -------------------------------------------------------------------------------- /Repository/Reports/Samples/41-Startup Folder.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Samples/41-Startup Folder.srex -------------------------------------------------------------------------------- /Repository/Reports/Search - Orders.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/Search - Orders.srex -------------------------------------------------------------------------------- /Repository/Reports/System/010 System Dashboard.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/010 System Dashboard.srex -------------------------------------------------------------------------------- /Repository/Reports/System/200 Audit - Search.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/200 Audit - Search.srex -------------------------------------------------------------------------------- /Repository/Reports/System/210 Audit - Last Errors.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/210 Audit - Last Errors.srex -------------------------------------------------------------------------------- /Repository/Reports/System/220 Audit - Login Failures.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/220 Audit - Login Failures.srex -------------------------------------------------------------------------------- /Repository/Reports/System/250 Audit - Users Activity.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/250 Audit - Users Activity.srex -------------------------------------------------------------------------------- /Repository/Reports/System/300 Reports - Inventory.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/300 Reports - Inventory.srex -------------------------------------------------------------------------------- /Repository/Reports/System/350 Reports - Executions.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/350 Reports - Executions.srex -------------------------------------------------------------------------------- /Repository/Reports/System/400 Sources - Check Sources.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/400 Sources - Check Sources.srex -------------------------------------------------------------------------------- /Repository/Reports/System/420 Sources - Documentation.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/420 Sources - Documentation.srex -------------------------------------------------------------------------------- /Repository/Reports/System/510 Publication - Repository.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/510 Publication - Repository.srex -------------------------------------------------------------------------------- /Repository/Reports/System/600 System - Repository Size.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Reports/System/600 System - Repository Size.srex -------------------------------------------------------------------------------- /Repository/Security/Providers/Basic Authentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Security/Providers/Basic Authentication.cshtml -------------------------------------------------------------------------------- /Repository/Security/Providers/Claims Principal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Security/Providers/Claims Principal.cshtml -------------------------------------------------------------------------------- /Repository/Security/Providers/JWT.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Security/Providers/JWT.cshtml -------------------------------------------------------------------------------- /Repository/Security/Providers/LDAP Authentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Security/Providers/LDAP Authentication.cshtml -------------------------------------------------------------------------------- /Repository/Security/Providers/No Security.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Security/Providers/No Security.cshtml -------------------------------------------------------------------------------- /Repository/Security/Providers/OpenId.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Security/Providers/OpenId.cshtml -------------------------------------------------------------------------------- /Repository/Security/Security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Security/Security.xml -------------------------------------------------------------------------------- /Repository/Security/SecurityORI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Security/SecurityORI.xml -------------------------------------------------------------------------------- /Repository/Settings/Configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Configuration.xml -------------------------------------------------------------------------------- /Repository/Settings/ConfigurationORI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/ConfigurationORI.xml -------------------------------------------------------------------------------- /Repository/Settings/RepositoryTranslations.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/RepositoryTranslations.xlsx -------------------------------------------------------------------------------- /Repository/Settings/Translations.ar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Translations.ar.csv -------------------------------------------------------------------------------- /Repository/Settings/Translations.es.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Translations.es.csv -------------------------------------------------------------------------------- /Repository/Settings/Translations.it.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Translations.it.csv -------------------------------------------------------------------------------- /Repository/Settings/Translations.nb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Translations.nb.csv -------------------------------------------------------------------------------- /Repository/Settings/Translations.pl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Translations.pl.csv -------------------------------------------------------------------------------- /Repository/Settings/Translations.pt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Translations.pt.csv -------------------------------------------------------------------------------- /Repository/Settings/Translations.ru.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Translations.ru.csv -------------------------------------------------------------------------------- /Repository/Settings/Translations.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Translations.xlsx -------------------------------------------------------------------------------- /Repository/Settings/Translations.zh.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Settings/Translations.zh.csv -------------------------------------------------------------------------------- /Repository/Sources/Audit MS SQLServer_scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/Audit MS SQLServer_scfx -------------------------------------------------------------------------------- /Repository/Sources/Audit SQLite.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/Audit SQLite.scfx -------------------------------------------------------------------------------- /Repository/Sources/LINQ Sources.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/LINQ Sources.scfx -------------------------------------------------------------------------------- /Repository/Sources/Local MS SQLServer.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/Local MS SQLServer.scfx -------------------------------------------------------------------------------- /Repository/Sources/Mongo DB.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/Mongo DB.scfx -------------------------------------------------------------------------------- /Repository/Sources/Northwind.scfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/Northwind.scfx -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/Adomd OLAP MDX.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/Adomd OLAP MDX.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/CSV.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/CSV.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/Database.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/Database.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/Default.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/Excel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/Excel.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/Generic.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/Generic.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/HTML.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/HTML.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/HTTPClient JSON.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/HTTPClient JSON.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/Mongo DB.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/Mongo DB.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/Xml File.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/Xml File.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TableTemplates/XmlReader RSS.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TableTemplates/XmlReader RSS.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TaskTemplates/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TaskTemplates/Default.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TaskTemplates/Execute Report.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TaskTemplates/Execute Report.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TaskTemplates/File Zip Unzip.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TaskTemplates/File Zip Unzip.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TaskTemplates/Loop.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TaskTemplates/Loop.cshtml -------------------------------------------------------------------------------- /Repository/Sources/TaskTemplates/Parallel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Sources/TaskTemplates/Parallel.cshtml -------------------------------------------------------------------------------- /Repository/SubReports/Customer Detail.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/SubReports/Customer Detail.srex -------------------------------------------------------------------------------- /Repository/SubReports/Employee Detail.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/SubReports/Employee Detail.srex -------------------------------------------------------------------------------- /Repository/SubReports/Order Detail.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/SubReports/Order Detail.srex -------------------------------------------------------------------------------- /Repository/SubReports/Product Detail.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/SubReports/Product Detail.srex -------------------------------------------------------------------------------- /Repository/SubReports/Supplier Detail.srex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/SubReports/Supplier Detail.srex -------------------------------------------------------------------------------- /Repository/Views/Card.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Card.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Card.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Card.cshtml -------------------------------------------------------------------------------- /Repository/Views/ChartJS.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ChartJS.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/ChartJS.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ChartJS.cshtml -------------------------------------------------------------------------------- /Repository/Views/ChartNVD3.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ChartNVD3.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/ChartNVD3.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ChartNVD3.cshtml -------------------------------------------------------------------------------- /Repository/Views/ChartPlotly.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ChartPlotly.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/ChartPlotly.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ChartPlotly.cshtml -------------------------------------------------------------------------------- /Repository/Views/ChartScottplot.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ChartScottplot.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/ChartScottplot.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ChartScottplot.cshtml -------------------------------------------------------------------------------- /Repository/Views/Container.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Container.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Container.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Container.cshtml -------------------------------------------------------------------------------- /Repository/Views/ContainerGridFlex.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ContainerGridFlex.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/ContainerGridFlex.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ContainerGridFlex.cshtml -------------------------------------------------------------------------------- /Repository/Views/Content/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Content/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /Repository/Views/Content/bootstrap-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Content/bootstrap-select.min.css -------------------------------------------------------------------------------- /Repository/Views/Content/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Content/datatables.min.css -------------------------------------------------------------------------------- /Repository/Views/Content/nv.d3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Content/nv.d3.min.css -------------------------------------------------------------------------------- /Repository/Views/Content/seal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Content/seal.css -------------------------------------------------------------------------------- /Repository/Views/DataTable.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/DataTable.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/DataTable.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/DataTable.cshtml -------------------------------------------------------------------------------- /Repository/Views/Fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Repository/Views/Fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Repository/Views/Fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Repository/Views/Fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Repository/Views/Fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Repository/Views/Free.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Free.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Free.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Free.cshtml -------------------------------------------------------------------------------- /Repository/Views/Gauge.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Gauge.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Gauge.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Gauge.cshtml -------------------------------------------------------------------------------- /Repository/Views/Images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Images/favicon.ico -------------------------------------------------------------------------------- /Repository/Views/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Images/logo.png -------------------------------------------------------------------------------- /Repository/Views/Images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Images/logo.svg -------------------------------------------------------------------------------- /Repository/Views/KPI.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/KPI.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/KPI.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/KPI.cshtml -------------------------------------------------------------------------------- /Repository/Views/Model.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Model.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Model.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Model.cshtml -------------------------------------------------------------------------------- /Repository/Views/Model.iMenu.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Model.iMenu.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Model.iPages.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Model.iPages.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Model.iSummaryTable.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Model.iSummaryTable.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/ModelDetail.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ModelDetail.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/ModelDetail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/ModelDetail.cshtml -------------------------------------------------------------------------------- /Repository/Views/PageTable.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/PageTable.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/PageTable.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/PageTable.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/CSV/Model.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/CSV/Model.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/CSV/Model.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/CSV/Model.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/CSV/Report.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/CSV/Report.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/CSV/Report.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/CSV/Report.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Default.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Default.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/ChartJS.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/ChartJS.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/ChartJS.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/ChartJS.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/DataTable.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/DataTable.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/DataTable.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/Model.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/Model.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/Model.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/Model.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/ModelDetail.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/ModelDetail.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/ModelDetail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/ModelDetail.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/PageTable.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/PageTable.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/PageTable.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/Report.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/Report.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/Report.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/Report.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/TabPage.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/TabPage.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/TabPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/TabPage.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/Widget.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/Widget.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Excel/Widget.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Excel/Widget.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/HTML2PDF/Report.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/HTML2PDF/Report.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/HTML2PDF/Report.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/HTML2PDF/Report.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Json/Model.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/Json/Model.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Json/Model.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Json/Report.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/Json/Report.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Json/Report.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ChartJS.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/ChartJS.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ChartJS.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/ChartJS.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ChartNVD3.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/ChartNVD3.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ChartNVD3.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/ChartNVD3.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ChartPlotly.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/ChartPlotly.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ChartPlotly.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/ChartPlotly.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ChartScottplot.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/ChartScottplot.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ChartScottplot.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/ChartScottplot.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/DataTable.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/DataTable.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/DataTable.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/DataTable.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Default.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/Default.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Gauge.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/Gauge.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Gauge.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/Gauge.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Model.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/Model.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Model.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/Model.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ModelDetail.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/ModelDetail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/ModelDetail.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/PageTable.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/PageTable.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/PageTable.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/PageTable.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Report.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/Report.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Report.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/Report.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/TabPage.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/TabPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/TabPage.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Widget.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/PDF/Widget.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/PDF/Widget.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/Text/Model.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/Text/Model.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/Text/Model.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/XML/Model.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/XML/Model.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/XML/Model.cshtml -------------------------------------------------------------------------------- /Repository/Views/Renderers/XML/Report.config.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Repository/Views/Renderers/XML/Report.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Renderers/XML/Report.cshtml -------------------------------------------------------------------------------- /Repository/Views/Report.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Report.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Report.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Report.cshtml -------------------------------------------------------------------------------- /Repository/Views/Report.iBody.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Report.iBody.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Report.iContent.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Report.iContent.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Report.iHeader.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Report.iHeader.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Report.iInformation.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Report.iInformation.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Report.iMessages.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Report.iMessages.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Report.iRestrictions.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Report.iRestrictions.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Report.iViews.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Report.iViews.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Restrictions.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Restrictions.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Restrictions.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Restrictions.cshtml -------------------------------------------------------------------------------- /Repository/Views/Restrictions.iShared.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Restrictions.iShared.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/Scripts/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/Chart.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/bootstrap-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/bootstrap-select.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/chartNVD3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/chartNVD3.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/chartjs-adapter-moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/chartjs-adapter-moment.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/chartjs-plugin-datalabels.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/chartjs-plugin-datalabels.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/common.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/d3-time-format.v2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/d3-time-format.v2.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/d3-time.v1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/d3-time.v1.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/d3.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/d3/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/d3/de.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/d3/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/d3/es.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/d3/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/d3/fr.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/d3/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/d3/it.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/d3/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/d3/nl.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/d3/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/d3/pt.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/datatables.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/datetime-moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/datetime-moment.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/gauge.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/gauge.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/helpers.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/moment.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/moment.de.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/moment.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/moment.es.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/moment.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/moment.fr.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/moment.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/moment.it.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/moment.nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/moment.nl.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/moment.pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/moment.pt.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/selectpicker.de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/selectpicker.de.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/selectpicker.es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/selectpicker.es.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/selectpicker.fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/selectpicker.fr.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/selectpicker.it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/selectpicker.it.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/selectpicker.nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/selectpicker.nl.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/i18n/selectpicker.pt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/i18n/selectpicker.pt.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/moment.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/nv.d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/nv.d3.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/plotly-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/plotly-latest.min.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/plotly/plotly-locale-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/plotly/plotly-locale-de.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/plotly/plotly-locale-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/plotly/plotly-locale-es.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/plotly/plotly-locale-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/plotly/plotly-locale-fr.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/plotly/plotly-locale-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/plotly/plotly-locale-it.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/plotly/plotly-locale-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/plotly/plotly-locale-nl.js -------------------------------------------------------------------------------- /Repository/Views/Scripts/plotly/plotly-locale-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Scripts/plotly/plotly-locale-pt.js -------------------------------------------------------------------------------- /Repository/Views/TabControl.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/TabControl.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/TabControl.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/TabControl.cshtml -------------------------------------------------------------------------------- /Repository/Views/TabControl.iContent.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/TabControl.iContent.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/TabControl.iMenu.partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/TabControl.iMenu.partial.cshtml -------------------------------------------------------------------------------- /Repository/Views/TabPage.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/TabPage.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/TabPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/TabPage.cshtml -------------------------------------------------------------------------------- /Repository/Views/Widget.config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Widget.config.cshtml -------------------------------------------------------------------------------- /Repository/Views/Widget.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariacom/Seal-Report/HEAD/Repository/Views/Widget.cshtml --------------------------------------------------------------------------------