diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..76aeb39 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,33 @@ +# Copilot Instructions + + +## Project Overview +- **Fuchs Intranet** is an ASP.NET Core (.NET 10) web application — the intranet IS the entire website, served from `/`. +- Routes: `/{fn?}/{id?}/{code?}` → `IntranetController.Index`; `/do/{fn?}/{id?}/{code?}` → `IntranetController.Do`. +- Project structure (relative to `Fuchs/`): + - `Controllers/` — `IntranetController` partials (no area) + - `code/` — business logic, PDF, email, widgets, data models + - `css/intranet/` — intranet SCSS source files + - `js/intranet/` — intranet JS source files (modules in `js/intranet/modules/`) + - `Data/` — static data assets (images for PDF, HTML files) + - `Views/Intranet/` — Razor views; `Views/Shared/_Layout.cshtml`; `Views/Partials/` + +## Coding Standards +- All code must be written in C#. +- Keep files to a limit of 400 (max 600) lines of code to ensure maintainability and readability. Proactively refactor larger files into smaller, focused classes or components as needed. +- Follow standard C# naming conventions (PascalCase for classes and methods, camelCase for variables and parameters). +- Use modern, performance-oriented C# .NET 10 features and best practices, such as async/await for asynchronous programming, LINQ for data manipulation, and dependency injection for better testability and maintainability. + +## Configuration +- All application settings live in `Fuchs/appsettings.json` — **do not use `Web.config` or `System.Configuration.ConfigurationManager`**. +- App-specific settings are nested under the `"Fuchs"` key (e.g., `_config["Fuchs:SMS_APIKey"]`). +- Connection strings are stored under the standard `"ConnectionStrings"` key and read via `IConfiguration.GetConnectionString(...)`. +- `FuchsOcmsIntranet.Initialize(configuration)` must be called at app start (in `Program.cs`) before DI registration; `Fuchs_intranet` receives `IConfiguration` via its constructor. +- `appsettings.Development.json` (git-ignored) can override secrets for local development. + +## Libraries +- Do not upgrade Spire.PDF beyond version 8.10.5. +- Make use of OCORE libraries where possible, especially for common tasks such as logging, configuration management, and data access. +- Whenever possible, prefer OCORE_web_pdf / OCORE PDF functions for PDF-related tasks over rewriting. +- Do not use OCMS or OCMS_sharp; use only OCORE or OCORE_web. + diff --git a/.github/instructions/dataservice.instructions.md b/.github/instructions/dataservice.instructions.md new file mode 100644 index 0000000..7783fd2 --- /dev/null +++ b/.github/instructions/dataservice.instructions.md @@ -0,0 +1,57 @@ +--- +applyTo: "Fuchs_DataService/**" +--- + +# Fuchs_DataService Instructions + +## Overview +`Fuchs_DataService` is a .NET 10 Windows Service (via **Topshelf**) that synchronises MFR entity data into the Fuchs SQL database on a configurable schedule. + +## Key Classes +| Class | Role | +|-------|------| +| `FdsMainModule` | Entry point — builds `LoggerFactory`, creates `FdsService`, runs Topshelf | +| `FdsService` | Topshelf `ServiceControl` — owns `PeriodicHostedService` lifecycle | +| `PeriodicHostedService` | Runs one or more `PeriodicJobDefinition` jobs independently | +| `FdsMfr : IFdsMfr` | Singleton business logic — registered via DI constructor injection | +| `FdsMfrClient` | Wraps `MFRClient` + SQL write logic; instantiated per-use inside `FdsMfr` | +| `Archive` (FdsZip) | SevenZip wrapper; created per-use, accepts optional `ILogger` | +| `FdsConfig` | Static config accessor — reads from `appsettings.json` under `Fds:` key | +| `FdsShared` | Static SQL/stream helpers — use `FdsDebug.DebugLog` for errors in static methods | +| `FdsDebug` | Legacy static logger — **only for use in static helper methods** | +| `FdsLoggerProvider` | Custom `ILoggerProvider`: Debug output + file + prepared DB logging | + +## Dependency Injection +`FdsMfr` is the main business singleton. It receives: +- `ILogger` — for its own logging +- `ILoggerFactory` — to create loggers for `FdsMfrClient` and `Archive` it instantiates + +```csharp +// FdsService constructor +var mfr = new FdsMfr(loggerFactory.CreateLogger(), loggerFactory); +``` + +## Configuration (`appsettings.json`) +```json +{ + "ConnectionStrings": { + "fuchs_fds_ConnectionString": "...", + "fuchs_ConnectionString": "..." + }, + "Fds": { + "ExecutionFrequency_Minutes": 15, + "DebugDetails": false, + "MFR_UserName": "...", + "MFR_Password": "...", + "MFR_host": "https://..." + } +} +``` + +## Rules +- Do **not** use `System.Configuration.ConfigurationManager` — always use `FdsConfig` / `IConfiguration`. +- Do **not** use `OCMS` or `OCMS_sharp`. +- Use `FdsSqlOptions` for all SQL calls (`getSQLDatatable_async`, `getSQLDataSet_async`, `setSQLValue_async`). +- Classes that run async work must use `async/await` — never `.Wait()` or `.Result` in new code. +- Add new periodic jobs as `PeriodicJobDefinition` entries in `FdsService` — see `periodic_service.instructions.md`. +- Logging: see `logging.instructions.md`. \ No newline at end of file diff --git a/.github/instructions/frontend.instructions.md b/.github/instructions/frontend.instructions.md new file mode 100644 index 0000000..79a32b0 --- /dev/null +++ b/.github/instructions/frontend.instructions.md @@ -0,0 +1,176 @@ + +# Frontend Instructions + +## General Rules + +- **Never edit files inside `wwwroot/` directly.** All output files are generated by the Gulp build pipeline. +- All stylesheet sources must be written in **SCSS** (`.scss`), not plain CSS. +- After adding or changing source files, ensure they are listed in `Fuchs/bdlconfig.json` so they are picked up by the build. + +## Source File Locations + +| Type | Source path | +|------|-------------| +| SCSS (shared/global) | `Fuchs/css/intranet/` | +| SCSS (module-specific) | `Fuchs/js/intranet/modules//` (co-located with the module JS) | +| JavaScript (core) | `Fuchs/js/intranet/` | +| JavaScript (modules) | `Fuchs/js/intranet/modules//` | + +## Output / Bundle Locations + +All bundles are written to `Fuchs/web/` by the Gulp pipeline. Do not reference these paths as source. + +| Bundle | Context | Description | +|--------|---------|-------------| +| `web/fisb.min.css` | `intranet` | Bootstrap/login CSS | +| `web/fis.min.css` | `intranet` | Main intranet CSS | +| `web/fis.inv.min.css` | `intranet:inv` | Invoices module CSS | +| `web/fis.req.min.css` | `intranet:req` | Requests module CSS | +| `web/fis.rep.min.css` | `intranet:rep` | Reports module CSS | +| `web/fis.bam.min.css` | `intranet:bam` | BAM module CSS | +| `web/fisb.min.js` | `intranet` | Bootstrap/basic JS | +| `web/fis.min.js` | `intranet` | Main intranet JS | +| `web/fis.inv.de.js` | `intranet:inv` | Invoices module JS | +| `web/fis.req.de.js` | `intranet:req` | Requests module JS | +| `web/fis.rep.de.js` | `intranet:rep` | Reports module JS | +| `web/fis.bam.de.js` | `intranet:bam` | BAM module JS | + +## bdlconfig.json Entry Format + +`Fuchs/bdlconfig.json` drives all bundle definitions. Each entry has this shape: + +```json +{ + "context": "intranet", + "outputFileName": "web/.min.css", + "inputFiles": [ + "css/intranet/oci_variables.scss", + "css/intranet/fis_variables.scss", + "css/intranet/.scss" + ], + "minify": { "enabled": true } +} +``` + +### SCSS Variable Prepend Rule + +Every CSS bundle **must** include the two variable files as the first `inputFiles` entries, in this order: + +``` +css/intranet/oci_variables.scss +css/intranet/fis_variables.scss +``` + +These define the shared design tokens used across all SCSS files. Omitting them will cause compilation errors. + +### Module Co-location Pattern + +Module-specific SCSS files live alongside their JavaScript counterparts under `js/intranet/modules//`. When adding a new module: + +1. Create `js/intranet/modules//.scss` for module styles. +2. Add that path to the appropriate context bundle in `bdlconfig.json` (after the variable files). +3. Create `js/intranet/modules//.js` for module logic. +4. Add that path to the corresponding JS bundle in `bdlconfig.json`. + +## Build Pipeline + +The Gulp 4 pipeline (`Fuchs/gulpfile.js`) reads `bdlconfig.json` and `copyconfig.json`. + +### Available Tasks + +| Command | Description | +|---------|-------------| +| `gulp min:scss` | Compile and minify all SCSS bundles | +| `gulp min:js` | Concatenate and minify all JS bundles | +| `gulp min:html` | Minify HTML bundles | +| `gulp min` | Run `min:js`, `min:scss`, and `min:html` in parallel | +| `gulp copy` | Run file copy tasks from `copyconfig.json` | +| `gulp all` | Run `min` and `copy` in parallel (full build) | +| `gulp clean` | Delete all bundle output files | +| `gulp watch` | Watch source files and rebuild on change | + +Run from the `Fuchs/` directory: + +```powershell +cd Fuchs +npx gulp all +``` + +### How SCSS Compilation Works + +- All `.scss` files listed in a bundle's `inputFiles` are concatenated into a single stream, then compiled with `node-sass` via `gulp-sass`. +- The output is then minified with `gulp-cssmin` and written to `web/.min.css`. +- `.less` files in the same bundle are compiled separately and merged with the SCSS output before minification. + +### How JS Bundling Works + +- All JS files listed in `inputFiles` are concatenated with `gulp-concat`. +- Files listed in `inputFiles_tominify` are individually minified with `gulp-terser` before concatenation. +- When `minify.enabled` is `true` (default), the full bundle is also minified via `gulp-terser`. + +## npm Dependencies + +Runtime packages available via npm (do not copy these into source manually): + +| Package | Usage | +|---------|-------| +| `jquery` | DOM/AJAX | +| `js-cookie` | Cookie access | +| `fg-loadcss` | Async CSS loading (`loadCSS.js`, `onloadCSS_array.js`) | +| `tinymce` | Rich text editor | + +These are copied to `web/` or `wwwroot/lib/` via `copyconfig.json` entries and the `gulp copy` task. + +| Package | Destination (gulp copy) | Served at | +|---------|------------------------|-----------| +| `jquery` + `js-cookie` | concatenated into `Fuchs/web/tools.js` | `~/web/tools.js` | +| `tinymce` | `wwwroot/lib/tinymce/` | `~/lib/tinymce/tinymce.min.js` | + +## Layout Asset Wiring (`Views/Shared/_Layout.cshtml`) + +Asset loading follows a strict order and is split by authentication state. + +### Always loaded (before auth check) + +```razor + +``` + +`tools.js` contains jQuery and js-cookie. It must be first so all subsequent scripts can use `$` and `Cookies`. + +### Auth-conditional bundles + +```razor +@if (isAuth) +{ + + + +} +else +{ + + +} +``` + +- **Authenticated** (`fis.*`): full intranet styles + scripts + TinyMCE rich-text editor. +- **Unauthenticated** (`fisb.*`): login-page-only styles + scripts. TinyMCE is **not** loaded. +- TinyMCE is always loaded from `~/lib/tinymce/tinymce.min.js` (copied by `gulp copy` from `node_modules/tinymce`). Never use `~/Scripts/tinymce/` — that path does not exist. + +### `$ocms.auth` injection (always) + +A ` +} +``` + +`_Layout.cshtml` renders `@RenderSection("CustomHeader", required: false)` inside ``, so only the relevant module assets are fetched for each page. \ No newline at end of file diff --git a/.github/instructions/javascript.instructions.md b/.github/instructions/javascript.instructions.md new file mode 100644 index 0000000..e090445 --- /dev/null +++ b/.github/instructions/javascript.instructions.md @@ -0,0 +1,75 @@ + + + # JavaScript Instructions + + ## General Rules + + - **Never edit files inside `wwwroot/` directly.** All JS output files are generated by the Gulp build pipeline. + - After adding or modifying JS source files, ensure they are listed in `Fuchs/bdlconfig.json` under the correct bundle and context. + + ## Source File Locations + + | Type | Path | + |------|------| + | Core intranet JS | `Fuchs/js/intranet/` | + | Feature module JS | `Fuchs/js/intranet/modules//` | + + ## Bundle Contexts + + Each bundle in `bdlconfig.json` has a `context` field that determines which page(s) load it: + + | Context | Loaded on | + |---------|-----------| + | `intranet` | All intranet pages | + | `intranet:inv` | Invoices module only | + | `intranet:req` | Requests module only | + | `intranet:rep` | Reports module only | + | `intranet:bam` | BAM module only | + + ## Adding a JS File to a Bundle + + Locate the correct bundle entry in `Fuchs/bdlconfig.json` by matching the `context` and `outputFileName`, then add the source path to `inputFiles`: + + ```json + { + "context": "intranet:inv", + "outputFileName": "web/fis.inv.de.js", + "inputFiles": [ + "js/intranet/modules/invoices/invoices.js", + "js/intranet/modules/invoices/your-new-file.js" + ], + "minify": { "enabled": true } + } + ``` + + Files listed in `inputFiles_tominify` are minified individually before concatenation (use for third-party scripts that should be minified separately). + + ## Adding a New Module + + 1. Create `Fuchs/js/intranet/modules//.js`. + 2. If the module needs styles, create `Fuchs/js/intranet/modules//.scss`. + 3. Add both files to the appropriate bundle entries in `bdlconfig.json`. + 4. Run `npx gulp all` from the `Fuchs/` directory to rebuild. + + ## npm Packages + + Use packages already declared in `Fuchs/package.json` where possible. Available runtime packages: + + | Package | Global / Usage | + |---------|----------------| + | `jquery` | DOM, AJAX | + | `js-cookie` | Cookie read/write | + | `fg-loadcss` | Async CSS loading | + | `tinymce` | Rich text editor | + + Do not import npm packages directly in source files — they are copied to `web/` by `gulp copy` and referenced via bundle entries in `bdlconfig.json`. + + ## Build Commands + + Run from the `Fuchs/` directory: + + ```powershell + cd Fuchs + npx gulp min:js # rebuild JS bundles only + npx gulp all # full rebuild (JS + CSS + copy) + ``` \ No newline at end of file diff --git a/.github/instructions/logging.instructions.md b/.github/instructions/logging.instructions.md new file mode 100644 index 0000000..f2a7b0f --- /dev/null +++ b/.github/instructions/logging.instructions.md @@ -0,0 +1,63 @@ +--- +applyTo: "Fuchs/**,Fuchs_DataService/**,MFR_RESTClient/**,MT940Parser/**" +--- + +# Logging Instructions + +## Overview +All logging in this solution uses `Microsoft.Extensions.Logging.ILogger`. +**Never use** `System.Diagnostics.Debug.Print`, `Debug.WriteLine`, `Console.WriteLine`, or `OCMS.ocms_debug.debug_log` in business or library code. + +## Providers + +### Fuchs_DataService — `FdsLoggerProvider` +- Location: `Fuchs_DataService/Logging/FdsLoggerProvider.cs` +- Always active: **Debug output** (`System.Diagnostics.Debug.WriteLine`) + **file** (`tmp/DebugLog.txt`, `tmp/ErrorLog.txt`) +- Database logging: prepared via `WriteToDatabase()` but **disabled by default**. Activate with `FdsLoggerProvider.DatabaseLoggingEnabled = true`. +- Registered in `FdsMain.cs` via `LoggerFactory.Create(b => b.SetMinimumLevel(LogLevel.Debug).AddFdsLogging())`. + +### Fuchs — `FuchsLoggerProvider` +- Location: `Fuchs/Logging/FuchsLoggerProvider.cs` +- Always active: **Debug output** + **file** (`logs/AppLog.txt`, `logs/ErrorLog.txt`) +- Database logging: prepared but **disabled by default**. Activate with `FuchsLoggerProvider.DatabaseLoggingEnabled = true`. +- Registered in `Program.cs` via `builder.Logging.SetMinimumLevel(LogLevel.Debug).AddFuchsLogging()`. + +### MFR_RESTClient — Library (no provider) +- No logging provider — purely a library. +- `MFRClient` accepts `ILogger?` as an optional constructor parameter. +- Defaults to `NullLogger.Instance` when no logger is provided. +- Callers supply a logger from the host's `ILoggerFactory`. + +### MT940Parser — Library (no provider) +- Location: `../../WebProjectComponents/MT940Parser/` (shared external component) +- No logging provider — purely a library. +- **Public entry point only**: `Parser` accepts `ILogger?` as an optional constructor parameter and defaults to `NullLogger.Instance`. +- **Internal sub-parsers** (`StatementParser`, `BalanceParser`, `StatementLineParser`, `AdditionalInfoParser`) are pure algorithmic classes. They **do not hold logger fields**. Parse errors are thrown as exceptions (`InvalidDataException`, `FormatException`) and caught by `Parser.Parse()`, which logs them at `LogWarning`. +- Callers supply a logger when constructing `Parser`; the sub-parsers never need one directly. + +## Rules +- **DI classes** (singletons, scoped): receive `ILogger` via constructor injection. +- **Library classes** (`MFRClient`, `Parser`): accept `ILogger?` as an optional constructor parameter, default to `NullLogger.Instance`. +- **Internal library helpers** (`StatementParser`, `BalanceParser`, `StatementLineParser`, `AdditionalInfoParser`): pure algorithmic, no logger field. Throw exceptions; the public entry-point catches and logs. +- **Static helpers** (`FdsShared`, `Banking`): accept `ILogger?` as an optional method parameter, or delegate to `FdsDebug.DebugLog` for infrastructure-level errors. +- `FdsDebug` remains the **fallback for static infrastructure code only** (stream helpers, etc.). Do not use it in new class-level code. +- Use structured logging parameters: `_logger.LogError(ex, "Message {Param}", value)` — never string interpolation in the message template. + +## Log Levels +| Level | Use for | +|-------|---------| +| `LogDebug` | Timing, row counts, progress traces | +| `LogInformation` | Service start/stop, significant state changes | +| `LogWarning` | Recoverable issues, skipped items | +| `LogError` | Caught exceptions, data sync failures | +| `LogCritical` | Unrecoverable failures that stop a job | + +## Enabling Database Logging +```csharp +// Fuchs_DataService +FdsLoggerProvider.DatabaseLoggingEnabled = true; + +// Fuchs web +FuchsLoggerProvider.DatabaseLoggingEnabled = true; +``` +Uncomment the body of `WriteToDatabase()` in the respective provider and adjust the stored procedure name. \ No newline at end of file diff --git a/.github/instructions/periodic_service.instructions.md b/.github/instructions/periodic_service.instructions.md new file mode 100644 index 0000000..6b03369 --- /dev/null +++ b/.github/instructions/periodic_service.instructions.md @@ -0,0 +1,53 @@ +--- +applyTo: "Fuchs_DataService/**" +--- + +# PeriodicHostedService Instructions + +## Overview +`PeriodicHostedService` (`Fuchs_DataService/PeriodicHostedService.cs`) is a `BackgroundService` that runs multiple independent jobs, each on its own `PeriodicTimer`. It is started and stopped by the Topshelf `FdsService` (see `topshelf.instructions.md`). + +## Job Definition +Each job is a `PeriodicJobDefinition` record: +```csharp +public sealed record PeriodicJobDefinition( + string Name, + TimeSpan Interval, + Func Execute); +``` + +## Registering Jobs +Jobs are created in `FdsService` constructor and passed to `PeriodicHostedService`: +```csharp +var interval = TimeSpan.FromMinutes(FdsConfig.ExecutionFrequency_Minutes); +var jobs = new[] +{ + new PeriodicJobDefinition("MfrSync", interval, async ct => + { + await mfr.UpdateIfNecessary_async(debug); + await mfr.UpdateRequested_async(debug); + await mfr.GetInvoiceFiles_async(debug); + }), + // Add more jobs with different schedules here: + // new PeriodicJobDefinition("HourlyJob", TimeSpan.FromHours(1), async ct => { ... }) +}; +``` + +## Schedules +- Each job runs on its **own independent `PeriodicTimer`** — schedules do not interfere. +- Frequencies are configured in `appsettings.json` under the `Fds` section (e.g. `Fds:ExecutionFrequency_Minutes`). +- Add new config keys for additional job intervals as needed. + +## Error Handling +- Each job's `Execute` delegate is wrapped in a `try/catch` inside `RunJobAsync`. +- `OperationCanceledException` propagates normally (signals shutdown). +- All other exceptions are caught, logged via `ILogger`, and the job continues on its next tick. + +## Cancellation +- `PeriodicHostedService` respects the `CancellationToken` passed to `StartAsync`. +- `FdsService.Stop()` cancels the token, then awaits `StopAsync(CancellationToken.None)`. + +## Adding a New Job +1. Optionally add a new frequency key to `appsettings.json` and read it via `FdsConfig`. +2. Add a new `PeriodicJobDefinition` to the `jobs` array in `FdsService`. +3. No changes to `PeriodicHostedService` itself are needed. \ No newline at end of file diff --git a/.github/instructions/topshelf.instructions.md b/.github/instructions/topshelf.instructions.md new file mode 100644 index 0000000..142423a --- /dev/null +++ b/.github/instructions/topshelf.instructions.md @@ -0,0 +1,52 @@ +--- +applyTo: "Fuchs_DataService/**" +--- + +# Topshelf Instructions + +## Overview +`Fuchs_DataService` uses **Topshelf 4.x** as the Windows Service host. The hosted jobs run inside a `PeriodicHostedService` (see `periodic_service.instructions.md`), which is managed by the Topshelf `FdsService` class. + +## Structure + +``` +FdsMainModule.Main() + └── HostFactory.Run() + └── FdsService : ServiceControl + ├── Start() → _hostedService.StartAsync(_cts.Token) + └── Stop() → _cts.Cancel() + _hostedService.StopAsync() +``` + +## FdsService Rules +- `FdsService` owns a `CancellationTokenSource _cts` for cooperative cancellation. +- `FdsService` builds the `ILoggerFactory` (via `LoggerFactory.Create(b => b.AddFdsLogging())`) and passes it to all job objects. +- `FdsService` constructs `FdsMfr` directly: `new FdsMfr(loggerFactory.CreateLogger(), loggerFactory)`. +- `FdsService` constructs `PeriodicHostedService` with jobs and passes `loggerFactory.CreateLogger()`. +- Never use the generic `Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder` pattern here — Topshelf manages the host lifetime. + +## Topshelf Configuration +```csharp +HostFactory.Run(x => +{ + x.Service(s => + { + s.ConstructUsing(name => new FdsService()); + s.WhenStarted((tc, host) => tc.Start(host)); + s.WhenStopped((tc, host) => tc.Stop(host)); + s.WhenPaused((tc, host) => tc.Stop(host)); + s.WhenContinued((tc, host) => tc.Start(host)); + }); + x.EnablePauseAndContinue(); + x.StartAutomatically(); + x.RunAsLocalSystem(); + x.SetDescription("MFR Data Sync"); + x.SetDisplayName("MFR Data Sync"); + x.SetServiceName("MFR Data Sync"); +}); +``` + +## Dev-Machine Shortcut +On machines named `digital-pc` or `digital-dpc` the service runs in-process (console) instead of installing as a Windows Service. + +## Adding a New Job +Add a new `PeriodicJobDefinition` in `FdsService` constructor — see `periodic_service.instructions.md`. \ No newline at end of file diff --git a/.github/upgrades/scenarios/new-dotnet-version_16123a/assessment.csv b/.github/upgrades/scenarios/new-dotnet-version_16123a/assessment.csv new file mode 100644 index 0000000..277c923 --- /dev/null +++ b/.github/upgrades/scenarios/new-dotnet-version_16123a/assessment.csv @@ -0,0 +1,440 @@ +Issue ID,Description,State,Severity,Story Points,Project Path,Location Kind,Path,Line,Column,Incident ID,Help Link,Assembly Name,Assembly Version,Assembly Public Key,Snippet +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,ImageProcessor 2.9.1,,,,,"ImageProcessor, 2.9.1 Recommendation: No supported version found" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,ImageProcessor.Plugins.WebP 1.3.0,,,,,"ImageProcessor.Plugins.WebP, 1.3.0 Recommendation: No supported version found" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,ImageProcessor.Web 4.12.1,,,,,"ImageProcessor.Web, 4.12.1 Recommendation: No supported version found" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,ImageProcessor.Web.Config 2.6.0,,,,,"ImageProcessor.Web.Config, 2.6.0 Recommendation: No supported version found" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.AspNet.Mvc 5.2.9,,,,,"Microsoft.AspNet.Mvc, 5.2.9 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.AspNet.Razor 3.2.9,,,,,"Microsoft.AspNet.Razor, 3.2.9 Recommendation: Package functionality included with new framework reference" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.AspNet.TelemetryCorrelation 1.0.8,,,,,"Microsoft.AspNet.TelemetryCorrelation, 1.0.8 Recommendation: Microsoft.AspNet.TelemetryCorrelation, 1.0.3" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.AspNet.WebPages 3.2.9,,,,,"Microsoft.AspNet.WebPages, 3.2.9 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.CodeDom.Providers.DotNetCompilerPlatform 4.1.0,,,,,"Microsoft.CodeDom.Providers.DotNetCompilerPlatform, 4.1.0 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Microsoft.Web.Infrastructure 2.0.0,,,,,"Microsoft.Web.Infrastructure, 2.0.0 Recommendation: Package functionality included with new framework reference" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,Newtonsoft.Json 13.0.3,,,,,"Newtonsoft.Json, 13.0.3 Recommendation: Remove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,PDFsharp 1.50.5147,,,,,"PDFsharp, 1.50.5147 Recommendation: PDFsharp, 6.2.4" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,PDFsharp-MigraDoc 1.50.5147,,,,,"PDFsharp-MigraDoc, 1.50.5147 Recommendation: PDFsharp-MigraDoc, 6.2.4" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Buffers 4.5.1,,,,,"System.Buffers, 4.5.1 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Data.DataSetExtensions 4.5.0,,,,,"System.Data.DataSetExtensions, 4.5.0 Recommendation: Package functionality included with new framework reference" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Diagnostics.DiagnosticSource 7.0.2,,,,,"System.Diagnostics.DiagnosticSource, 7.0.2 Recommendation: Remove System.Diagnostics.DiagnosticSource, and replace with new package System.Diagnostics.DiagnosticSource 10.0.5" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Formats.Asn1 8.0.0,,,,,"System.Formats.Asn1, 8.0.0 Recommendation: Remove System.Formats.Asn1, and replace with new package System.Formats.Asn1 10.0.5" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Memory 4.5.5,,,,,"System.Memory, 4.5.5 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Numerics.Vectors 4.5.0,,,,,"System.Numerics.Vectors, 4.5.0 Recommendation: Package functionality included with new framework reference" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Runtime.CompilerServices.Unsafe 6.0.0,,,,,"System.Runtime.CompilerServices.Unsafe, 6.0.0 Recommendation: Remove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Text.Encoding.CodePages 7.0.0,,,,,"System.Text.Encoding.CodePages, 7.0.0 Recommendation: Remove System.Text.Encoding.CodePages, and replace with new package System.Text.Encoding.CodePages 10.0.5" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Threading.Tasks.Extensions 4.5.4,,,,,"System.Threading.Tasks.Extensions, 4.5.4 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.ValueTuple 4.5.0,,,,,"System.ValueTuple, 4.5.0 Recommendation: Package functionality included with new framework reference" +NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,BouncyCastle 1.8.9,,,,,"BouncyCastle, 1.8.9 Recommendation: BouncyCastle, 1.8.9" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,BouncyCastle 1.8.9,,,,,"BouncyCastle, 1.8.9 Recommendation: This package is no longer maintainted. Please, use official BouncyCastle.Cryptography package. See https://www.bouncycastle.org/csharp/ Remove BouncyCastle, and replace with new package BouncyCastle, 1.8.9" +NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,BouncyCastle.Cryptography 2.3.0,,,,,"BouncyCastle.Cryptography, 2.3.0 Recommendation: BouncyCastle.Cryptography, 2.6.2" +NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,MimeKit 4.4.0,,,,,"MimeKit, 4.4.0 Recommendation: MimeKit, 4.15.1" +NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,System.Formats.Asn1 8.0.0,,,,,"System.Formats.Asn1, 8.0.0 Recommendation: System.Formats.Asn1, 10.0.5" +NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,TinyMCE 6.3.1,,,,,"TinyMCE, 6.3.1 Recommendation: TinyMCE, 8.3.2" +Project.0001,Project file needs to be converted to SDK-style,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,,,,,, +Project.0002,Project's target framework(s) needs to be changed,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Fuchs.vbproj,,,,,,,,"Current target framework: .NETFramework,Version=v4.8 Recommended target framework: net10.0" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fucns_ocms_intranet_banking.vb,28,24,T:System.Data.SqlClient.SqlCommand,,,,,"dtwa.CommandAfter = New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fucns_ocms_intranet_banking.vb,28,24,M:System.Data.SqlClient.SqlCommand.#ctor(System.String),,,,,"dtwa.CommandAfter = New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fucns_ocms_intranet_banking.vb,22,24,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,"Dim tbl As DataTable = Global.Fuchs.intranet.banking.parseToDatatable(stream:=fle.InputStream, SchemaDatatable:=SchemaDatatable)" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,188,8,T:System.Web.Mvc.ViewResult,,,,,"Protected Overrides Function IntranetView() As ViewResult Return View(""intranet"", New Global.OCMS.intranet.intranet_model(Me, True)) End Function" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,P:System.Web.Mvc.ContentResult.Content,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,T:System.Web.Mvc.ContentResult,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,146,28,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id & If(code <> """", ""/"" & code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = ""text/json"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,P:System.Web.Mvc.ContentResult.Content,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,T:System.Web.Mvc.ContentResult,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,144,28,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = ""text/xml"", .ContentEncoding = Encoding.UTF8}" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,105,32,T:System.Configuration.ConfigurationManager,,,,,"Dim sets As String = System.Configuration.ConfigurationManager.AppSettings(""ocms_serviceemail"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet.vb,105,32,P:System.Configuration.ConfigurationManager.AppSettings,,,,,"Dim sets As String = System.Configuration.ConfigurationManager.AppSettings(""ocms_serviceemail"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet_invoices.vb,37,24,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() { SQL_BigInt(""@id"", Me.Form(""id"")), SQL_VarChar(""@entitytype"", ""report""), New SqlClient.SqlParameter(""@vat"", val), SQL_VarChar(""@userid"", Me.UserAccountID) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_ocms_intranet_invoices.vb,37,24,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() { SQL_BigInt(""@id"", Me.Form(""id"")), SQL_VarChar(""@entitytype"", ""report""), New SqlClient.SqlParameter(""@vat"", val), SQL_VarChar(""@userid"", Me.UserAccountID) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1028,24,"M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color)",,,,,"singlelineimage.SetPixel(x, y, System.Drawing.Color.Black)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1027,20,P:System.Drawing.Image.Height,,,,,For y As Integer = 0 To singlelineimage.Height - 1 +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1026,16,P:System.Drawing.Image.Width,,,,,For x As Integer = 0 To singlelineimage.Width - 1 +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1025,16,T:System.Drawing.Bitmap,,,,,"Dim singlelineimage As New System.Drawing.Bitmap(20, 1)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,1025,16,"M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32)",,,,,"Dim singlelineimage As New System.Drawing.Bitmap(20, 1)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,723,8,T:System.Drawing.Bitmap,,,,,"Public Function getPaycode(iban As String, bic As String, name As String, amount As Decimal, purpose As String) As System.Drawing.Bitmap Try 'Dim totp As New OtpNet.Totp(rfcKey) Dim generator As New QRCoder.PayloadGenerator.Girocode(iban:=iban, bic:=bic, name:=name, amount:=amount, typeOfRemittance:=QRCoder.PayloadGenerator.Girocode.TypeOfRemittance.Unstructured, remittanceInformation:=purpose) Dim payload As String = generator.ToString() Dim qrGenerator As New QRCoder.QRCodeGenerator() Dim qrCodeData As QRCoder.QRCodeData = qrGenerator.CreateQrCode(payload, QRCoder.QRCodeGenerator.ECCLevel.Q) Dim qrCode As New QRCoder.QRCode(qrCodeData) Return qrCode.GetGraphic(20) Catch ex As Exception Return Nothing End Try End Function" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,734,16,T:System.Drawing.Bitmap,,,,,Return qrCode.GetGraphic(20) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,687,20,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,Debug.Print(ex.Message & vbNewLine & ex.StackTrace) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,634,24,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,Debug.Print(gcex.Message & vbNewLine & gcex.StackTrace) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,629,24,T:System.Drawing.Bitmap,,,,,"Dim girocode As Drawing.Bitmap = getPaycode(iban:=""DE52301502000002091478"", bic:=""WELADED1KSD"", name:=""Sebastian Fuchs Bad und Heizung"", amount:=payamount, purpose:=""Rechnung "" & Rm.InvoiceId)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_pdf.vb,483,20,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,Debug.Print(ex.Message & vbNewLine & ex.StackTrace) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,435,16,P:System.Data.SqlClient.SqlParameter.Value,,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,435,16,T:System.Data.SqlClient.SqlParameter,,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,435,16,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)",,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,221,16,P:System.Data.SqlClient.SqlParameter.Value,,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,221,16,T:System.Data.SqlClient.SqlParameter,,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_intranet.vb,221,16,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)",,,,,"pl.Add(New SqlClient.SqlParameter(""@file"", dbType:=SqlDbType.VarBinary) With {.Value = ba})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb,318,24,M:System.Net.WebRequest.Create(System.String),,,,,Dim wqrequest As Net.HttpWebRequest = Net.WebRequest.Create(turib.ToString) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb,43,28,T:System.Drawing.Imaging.ImageFormat,,,,,"Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(""/"") & ""intranet/"", authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName & "".png"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb,43,28,T:System.Drawing.Imaging.ImageFormat,,,,,"Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(""/"") & ""intranet/"", authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName & "".png"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_fds_widgets.vb,43,28,P:System.Drawing.Imaging.ImageFormat.Png,,,,,"Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(""/"") & ""intranet/"", authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName & "".png"")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,286,16,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,286,16,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,278,28,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,278,28,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,274,32,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,274,32,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,P:System.Web.Mvc.ContentResult.Content,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,T:System.Web.Mvc.ContentResult,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,271,36,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,253,36,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,253,36,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,221,28,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,221,28,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,219,28,P:System.Web.Mvc.FileResult.FileDownloadName,,,,,"Return New Mvc.FileContentResult(chart, ""image/png"") With {.FileDownloadName = report.Replace("" "", ""_"") & ""_"" & Now().ToString(""yyyyMMdd_HHmm"") & "".png""}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,219,28,T:System.Web.Mvc.FileContentResult,,,,,"Return New Mvc.FileContentResult(chart, ""image/png"") With {.FileDownloadName = report.Replace("" "", ""_"") & ""_"" & Now().ToString(""yyyyMMdd_HHmm"") & "".png""}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,219,28,"M:System.Web.Mvc.FileContentResult.#ctor(System.Byte[],System.String)",,,,,"Return New Mvc.FileContentResult(chart, ""image/png"") With {.FileDownloadName = report.Replace("" "", ""_"") & ""_"" & Now().ToString(""yyyyMMdd_HHmm"") & "".png""}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,214,28,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,214,28,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,P:System.Web.Mvc.ContentResult.Content,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,T:System.Web.Mvc.ContentResult,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,210,32,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,187,32,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,187,32,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,171,28,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,171,28,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, ""Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,P:System.Web.Mvc.ContentResult.Content,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,T:System.Web.Mvc.ContentResult,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,167,32,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Return New Mvc.ContentResult() With {.Content = hp, .ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,160,32,T:System.Web.Mvc.HttpStatusCodeResult,,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,160,32,"M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)",,,,,"Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, ""No report defined"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,142,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim Catalog As SQLDataTable = Await getSQLDatatable_async(""EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;"", ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@report_name"", report), New SqlClient.SqlParameter(""@authuser"", ctrl.UserAccountID)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Areas\Intranet\code\fuchs_reports.vb,142,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim Catalog As SQLDataTable = Await getSQLDatatable_async(""EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;"", ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@report_name"", report), New SqlClient.SqlParameter(""@authuser"", ctrl.UserAccountID)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,105,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""OCMS_EmailSettings""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,94,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""FDS_Intranet_DebugState""),Boolean)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,85,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""FDS_EmailSettings""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,73,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""EmailTestAddresses""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\My Project\Settings.Designer.vb,64,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""EmailSettings""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,433,12,M:System.TimeSpan.FromMilliseconds(System.Double),,,,,"Return Regex.IsMatch(email, ""^(?("""")("""".+?(? 0, vbNewLine & ErrorMessage.ToArray.join(vbNewLine), """"), InternalCode:=OCMS_StatusCodes.exception)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,183,12,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"Result = New ExceptionResult(statusDescription:=""Die Email konnte nicht gesendet werden."" & If(ErrorMessage.Count > 0, vbNewLine & ErrorMessage.ToArray.join(vbNewLine), """"), InternalCode:=OCMS_StatusCodes.exception)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,178,12,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"Console.WriteLine(""Errors: "" & ErrorMessage.ToArray.join(vbNewLine))" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,169,20,T:System.Web.Mvc.HttpStatusCodeResult,,,,,Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,169,20,M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode),,,,,Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,166,20,T:System.Web.Mvc.HttpStatusCodeResult,,,,,Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,166,20,M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode),,,,,Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,65,8,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"body.append(New SOC(""p"").rwText(""Hallo Sebastian!"" & vbNewLine & Name & "" hat Interesse Teil des Teams zu werden."" & vbNewLine & ""Hier sind die Infos:""))" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,65,8,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"body.append(New SOC(""p"").rwText(""Hallo Sebastian!"" & vbNewLine & Name & "" hat Interesse Teil des Teams zu werden."" & vbNewLine & ""Hier sind die Infos:""))" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,24,4,T:System.Web.HttpPostedFileWrapper,,,,,Public Sub New(fle As HttpPostedFileWrapper) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,31,8,P:System.Web.HttpPostedFileWrapper.FileName,,,,,Me.filename = fle.FileName +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,27,12,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,fle.InputStream.CopyTo(memoryStream) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,26,12,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,fle.InputStream.Position = 0 +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,14,4,T:System.Web.HttpPostedFile,,,,,Public Sub New(fle As HttpPostedFile) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,21,8,P:System.Web.HttpPostedFile.FileName,,,,,Me.filename = fle.FileName +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,17,12,P:System.Web.HttpPostedFile.InputStream,,,,,fle.InputStream.CopyTo(memoryStream) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,16,12,P:System.Web.HttpPostedFile.InputStream,,,,,fle.InputStream.Position = 0 +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,24,4,T:System.Web.HttpPostedFileWrapper,,,,,Public Sub New(fle As HttpPostedFileWrapper) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,31,8,P:System.Web.HttpPostedFileWrapper.FileName,,,,,Me.filename = fle.FileName +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,27,12,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,fle.InputStream.CopyTo(memoryStream) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,26,12,P:System.Web.HttpPostedFileWrapper.InputStream,,,,,fle.InputStream.Position = 0 +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,14,4,T:System.Web.HttpPostedFile,,,,,Public Sub New(fle As HttpPostedFile) Using memoryStream = New IO.MemoryStream() fle.InputStream.Position = 0 fle.InputStream.CopyTo(memoryStream) Me.content = memoryStream.ToArray() End Using Me.filename = fle.FileName End Sub +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,21,8,P:System.Web.HttpPostedFile.FileName,,,,,Me.filename = fle.FileName +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,17,12,P:System.Web.HttpPostedFile.InputStream,,,,,fle.InputStream.CopyTo(memoryStream) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_email.vb,16,12,P:System.Web.HttpPostedFile.InputStream,,,,,fle.InputStream.Position = 0 +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,84,8,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(""EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;"", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session))}, tablenames:=New String() {""groups"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,84,8,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(""EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;"", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session))}, tablenames:=New String() {""groups"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,84,8,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(""EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;"", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session))}, tablenames:=New String() {""groups"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,84,8,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(""EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;"", SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session))}, tablenames:=New String() {""groups"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,60,4,T:System.Web.HttpFileCollectionBase,,,,,"Public Async Function sendSummary(ByVal Controller As Global.OCMS.ocms_ClientController, planner As String, session As String, files As HttpFileCollectionBase) As Threading.Tasks.Task(Of Boolean) Dim summary As PlannerSummary = Await getSummary(planner, session) Dim emailfiles As New List(Of EmailFile) For fli As Integer = 0 To files.Count - 1 emailfiles.Add(New EmailFile(files(fli))) Next Return Await fuchs_email.SendEmail(Controller, summary.SummaryHtml, summary.cformdictionary(""c_email""), summary.cformdictionary(""c_name""), files:=emailfiles.ToArray) End Function" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,65,12,T:System.Web.HttpPostedFileBase,,,,,emailfiles.Add(New EmailFile(files(fli))) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,65,12,P:System.Web.HttpFileCollectionBase.Item(System.Int32),,,,,emailfiles.Add(New EmailFile(files(fli))) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,64,8,P:System.Web.HttpFileCollectionBase.Count,,,,,For fli As Integer = 0 To files.Count - 1 +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,T:System.Data.SqlClient.SqlParameter,,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,T:System.Data.SqlClient.SqlParameter,,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,T:System.Data.SqlClient.SqlParameter,,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,T:System.Data.SqlClient.SqlParameter,,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,54,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"OCMS.SQLHandling.setSQLValue(""EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,53,8,T:System.Data.SqlClient.SqlConnection,,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString()) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,53,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString()) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,43,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,42,8,T:System.Data.SqlClient.SqlConnection,,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString()) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,42,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString()) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,32,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(""EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;"", sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(""@planner"", planner), New SqlClient.SqlParameter(""@session"", If(session = """", DBNull.Value, session)), New SqlClient.SqlParameter(""@group_code"", group_code), New SqlClient.SqlParameter(""@values"", values_string)}, tablenames:=New String() {""group"", ""options""})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,31,8,T:System.Data.SqlClient.SqlConnection,,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString()) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,31,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString()) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,7,4,T:System.Data.SqlClient.SqlConnection,,,,,"Friend Function SqlCon() As SqlClient.SqlConnection Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString) End Function" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,T:System.Configuration.ConfigurationManager,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,T:System.Data.SqlClient.SqlConnection,,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,8,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,"Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,T:System.Configuration.ConfigurationManager,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\code\fuchs_planner.vb,5,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return ConfigurationManager.ConnectionStrings(""ocms_ConnectionString"").ConnectionString" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,8,4,T:System.Web.Routing.RouteCollection,,,,,"Public Sub RegisterRoutes(ByVal routes As RouteCollection) routes.IgnoreRoute(""{resource}.axd/{*pathInfo}"") routes.MapRoute( name:=""Sitemap"", url:=""sitemap.xml"", defaults:=New With {.controller = ""Fuchs"", .action = ""SiteMap""} ) routes.MapRoute( name:=""html"", url:=""*.html"", defaults:=New With {.controller = ""Fuchs"", .action = ""html""} ) routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} ) routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} ) 'routes.MapRoute( ' name:=""FuchsImg"", ' url:=""img/{ident}"", ' defaults:=New With {.controller = ""Fuchs"", .action = ""Img"", .ident = UrlParameter.Optional} ') routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} ) End Sub" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,F:System.Web.Mvc.UrlParameter.Optional,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,36,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""Default"", url:=""{link}/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Index"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,F:System.Web.Mvc.UrlParameter.Optional,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,26,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""FuchsPlannerSvg"", url:=""psvg/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""psvg"", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,F:System.Web.Mvc.UrlParameter.Optional,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,T:System.Web.Mvc.UrlParameter,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,21,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""FuchsDo"", url:=""do/{ident}"", defaults:=New With {.controller = ""Fuchs"", .action = ""Do"", .link = """", .ident = UrlParameter.Optional} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,16,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""html"", url:=""*.html"", defaults:=New With {.controller = ""Fuchs"", .action = ""html""} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\RouteConfig.vb,11,8,T:System.Web.Routing.Route,,,,,"routes.MapRoute( name:=""Sitemap"", url:=""sitemap.xml"", defaults:=New With {.controller = ""Fuchs"", .action = ""SiteMap""} )" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,P:System.Web.Mvc.ContentResult.Content,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,T:System.Web.Mvc.ContentResult,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,245,20,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,P:System.Web.Mvc.ContentResult.Content,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,T:System.Web.Mvc.ContentResult,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,243,20,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Action = New ContentResult() With {.ContentType = ""image/svg+xml"", .Content = fc, .ContentEncoding = Encoding.UTF8}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,192,24,P:System.Web.Mvc.ContentResult.Content,,,,,html.Content = summary.SummaryHtml +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,187,24,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Dim html As New ContentResult With { .ContentType = ""text/html"" }" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,187,24,T:System.Web.Mvc.ContentResult,,,,,"Dim html As New ContentResult With { .ContentType = ""text/html"" }" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,187,24,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Dim html As New ContentResult With { .ContentType = ""text/html"" }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,152,24,T:System.Drawing.Imaging.ImageFormat,,,,,"Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=""captcha.png"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,152,24,T:System.Drawing.Imaging.ImageFormat,,,,,"Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=""captcha.png"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,152,24,P:System.Drawing.Imaging.ImageFormat.Png,,,,,"Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=""captcha.png"")" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,146,28,T:System.Data.SqlClient.SqlConnection,,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString()) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,146,28,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString()) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,P:System.Web.Mvc.ContentResult.Content,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,P:System.Web.Mvc.ContentResult.ContentEncoding,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,P:System.Web.Mvc.ContentResult.ContentType,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,T:System.Web.Mvc.ContentResult,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,84,24,M:System.Web.Mvc.ContentResult.#ctor,,,,,"Return New ContentResult() With {.ContentType = ""text/html"", .ContentEncoding = Encoding.UTF8, .Content = itc}" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,80,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString) +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,77,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString) +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,74,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString) +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,71,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString) +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,68,24,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString) +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs\Fuchs.vbproj,File,Fuchs\Controllers\FuchsController.vb,58,16,T:System.Uri,,,,,Return Redirect(ub.Uri.ToString) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\FilterConfig.vb,4,4,T:System.Web.Mvc.GlobalFilterCollection,,,,,Public Sub RegisterGlobalFilters(ByVal filters As GlobalFilterCollection) filters.Add(New HandleErrorAttribute()) filters.Add(New OCMS.OCMS_ActionFilterAttribute()) filters.Add(New OCMS.CompressAttribute()) End Sub +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\FilterConfig.vb,5,8,T:System.Web.Mvc.HandleErrorAttribute,,,,,filters.Add(New HandleErrorAttribute()) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\FilterConfig.vb,5,8,M:System.Web.Mvc.HandleErrorAttribute.#ctor,,,,,filters.Add(New HandleErrorAttribute()) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\App_Start\FilterConfig.vb,5,8,M:System.Web.Mvc.GlobalFilterCollection.Add(System.Object),,,,,filters.Add(New HandleErrorAttribute()) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,12,8,T:System.Web.Routing.RouteTable,,,,,RouteConfig.RegisterRoutes(RouteTable.Routes) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,12,8,T:System.Web.Routing.RouteCollection,,,,,RouteConfig.RegisterRoutes(RouteTable.Routes) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,12,8,P:System.Web.Routing.RouteTable.Routes,,,,,RouteConfig.RegisterRoutes(RouteTable.Routes) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,11,8,T:System.Web.Mvc.GlobalFilters,,,,,FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,11,8,T:System.Web.Mvc.GlobalFilterCollection,,,,,FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,11,8,P:System.Web.Mvc.GlobalFilters.Filters,,,,,FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,10,8,T:System.Web.Mvc.AreaRegistration,,,,,AreaRegistration.RegisterAllAreas() +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs\Fuchs.vbproj,File,Fuchs\Global.asax.vb,10,8,M:System.Web.Mvc.AreaRegistration.RegisterAllAreas,,,,,AreaRegistration.RegisterAllAreas() +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,Microsoft.AspNet.Razor 3.2.9,,,,,"Microsoft.AspNet.Razor, 3.2.9 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,Microsoft.Web.Infrastructure 2.0.0,,,,,"Microsoft.Web.Infrastructure, 2.0.0 Recommendation: Package functionality included with new framework reference" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,Newtonsoft.Json 13.0.3,,,,,"Newtonsoft.Json, 13.0.3 Recommendation: Remove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,System.Runtime.InteropServices.RuntimeInformation 4.3.0,,,,,"System.Runtime.InteropServices.RuntimeInformation, 4.3.0 Recommendation: Package functionality included with new framework reference" +Project.0001,Project file needs to be converted to SDK-style,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,,,,,, +Project.0002,Project's target framework(s) needs to be changed,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\Fuchs_DataService.vbproj,,,,,,,,"Current target framework: .NETFramework,Version=v4.8 Recommended target framework: net10.0" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,97,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_host""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,88,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_Password""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,79,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_UserName""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,70,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""DebugDetails""),Boolean)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\My Project\Settings.Designer.vb,61,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""ExecutionFrequency_Minutes""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,T:System.Data.SqlClient.SqlParameter,,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,T:System.Data.SqlClient.SqlParameter,,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,T:System.Data.SqlClient.SqlParameter,,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,T:System.Data.SqlClient.SqlParameter,,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,810,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"params = New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", False), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,T:System.Data.SqlClient.SqlParameter,,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,785,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() { New SqlClient.SqlParameter(""@tblname"", dtwa.DestinationTableName), New SqlClient.SqlParameter(""@table"", tbl.TableName), New SqlClient.SqlParameter(""@action"", If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, ""update_"", ""imdu_"") & UpdateNeed.ToString().ToLower()), New SqlClient.SqlParameter(""@setid"", SetID.ToLower), New SqlClient.SqlParameter(""@entityname"", Schema.ThisEntityName), New SqlClient.SqlParameter(""@info"", json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length > 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, "",""), Nothing)})), New SqlClient.SqlParameter(""@referencetable"", Schema.Entitytablename), New SqlClient.SqlParameter(""@tgtid"", If(If(EntityID, New Long() {}).Length > 0, EntityID(0).ToString, DBNull.Value)) })" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,782,40,T:System.Data.SqlClient.SqlCommand,,,,,"dtwa.CommandAfter = New SqlClient.SqlCommand('""SELECT * INTO [t_"" & SetID.ToLower & ""_"" & tbl.TableName & ""] FROM "" & dtwa.DestinationTableName & "";"" & ""EXECUTE [dbo].["" & (tbl.TableName).Replace(""__"", ""__updt__"") & ""] @tblname, @referencetable, @tgtid;"" & ""EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;"" & If(AdditionalCommandAfter, """"))" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,782,40,M:System.Data.SqlClient.SqlCommand.#ctor(System.String),,,,,"dtwa.CommandAfter = New SqlClient.SqlCommand('""SELECT * INTO [t_"" & SetID.ToLower & ""_"" & tbl.TableName & ""] FROM "" & dtwa.DestinationTableName & "";"" & ""EXECUTE [dbo].["" & (tbl.TableName).Replace(""__"", ""__updt__"") & ""] @tblname, @referencetable, @tgtid;"" & ""EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;"" & If(AdditionalCommandAfter, """"))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,763,40,T:System.Uri,,,,,MFR_Response = Await ReadOData(MFR_Response.nextlink.ToString) +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,762,36,T:System.Uri,,,,,"If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString <> """" Then" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,762,36,T:System.Uri,,,,,"If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString <> """" Then" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,T:System.Data.SqlClient.SqlParameter,,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,661,12,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim params As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@tbl"", ThisEntityName), New SqlClient.SqlParameter(""@state"", True), New SqlClient.SqlParameter(""@override"", False), New SqlClient.SqlParameter(""@setid"", SetID) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,90,40,P:System.Data.SqlClient.SqlParameter.SqlDbType,,,,,"Await setSQLValue_async(""EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;"", FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(""@Id"", id), SQL_VarChar(""@filename"", DocumentName), New SqlClient.SqlParameter(""@file"", fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,90,40,T:System.Data.SqlClient.SqlParameter,,,,,"Await setSQLValue_async(""EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;"", FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(""@Id"", id), SQL_VarChar(""@filename"", DocumentName), New SqlClient.SqlParameter(""@file"", fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_mfr.vb,90,40,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Await setSQLValue_async(""EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;"", FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(""@Id"", id), SQL_VarChar(""@filename"", DocumentName), New SqlClient.SqlParameter(""@file"", fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,223,8,T:System.Web.MimeMapping,,,,,Return System.Web.MimeMapping.GetMimeMapping(FI.Name) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,223,8,M:System.Web.MimeMapping.GetMimeMapping(System.String),,,,,Return System.Web.MimeMapping.GetMimeMapping(FI.Name) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,64,T:Microsoft.VisualBasic.MyServices.FileSystemProxy,,,,,My.Computer.FileSystem.DeleteFile(FilePath) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,64,P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem,,,,,My.Computer.FileSystem.DeleteFile(FilePath) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,64,M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteFile(System.String),,,,,My.Computer.FileSystem.DeleteFile(FilePath) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,12,T:Microsoft.VisualBasic.MyServices.FileSystemProxy,,,,,If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,12,P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem,,,,,If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,174,12,M:Microsoft.VisualBasic.MyServices.FileSystemProxy.FileExists(System.String),,,,,If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,10,4,T:System.Data.SqlClient.SqlConnection,,,,,"Friend Function SqlCon() As SqlClient.SqlConnection Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString) End Function" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,T:System.Configuration.ConfigurationManager,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,T:System.Data.SqlClient.SqlConnection,,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,11,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,"Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,T:System.Configuration.ConfigurationManager,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,8,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_fds_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,T:System.Configuration.ConfigurationManager,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,T:System.Configuration.ConnectionStringSettingsCollection,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,P:System.Configuration.ConfigurationManager.ConnectionStrings,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,T:System.Configuration.ConnectionStringSettings,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String),,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_shared.vb,5,8,P:System.Configuration.ConnectionStringSettings.ConnectionString,,,,,"Return Configuration.ConfigurationManager.ConnectionStrings(""fuchs_ConnectionString"").ConnectionString" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,444,12,P:System.IO.DirectoryInfo.FullName,,,,,"Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName & If(Strings.Right(TgtArchiveDirectory.FullName, 1) = ""\"", """", ""\"") & ArchiveName)" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,444,12,P:System.IO.DirectoryInfo.FullName,,,,,"Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName & If(Strings.Right(TgtArchiveDirectory.FullName, 1) = ""\"", """", ""\"") & ArchiveName)" +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,119,20,P:System.IO.DirectoryInfo.FullName,,,,,Me.ZipOut.ExtractArchive(TgtDirectory.FullName) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,114,20,P:System.IO.DirectoryInfo.FullName,,,,,"OCMS.debug_log(""DDA.intranet.Zipping Archive InitZipIn"", ex:=ex, data:=New With {.DataArchiveFilePath = DataArchiveFilePath.FullName, .TgtDirectory = TgtDirectory.FullName})" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,48,20,P:System.Reflection.AssemblyName.CodeBase,,,,,assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath) +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,48,20,T:System.Uri,,,,,assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath) +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_zip.vb,48,20,M:System.Uri.#ctor(System.String),,,,,assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,45,4,T:System.Data.SqlClient.SqlConnection,,,,," Public Sub DebugLog(CodeReference As String, SQLConnection As SqlClient.SqlConnection, Optional exc As Exception = Nothing, Optional data As String = """", Optional context As Object = Nothing) If CodeReference = """" OrElse IsNothing(SQLConnection) = True Then Exit Sub Dim note As String = Now.ToString(""yyyy.MM.dd HH:mm:ss"") & "" - "" & CodeReference Try Try If IsNothing(SQLConnection) = False Then Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) } Try Dim w As Integer = 0 If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close() If SQLConnection.State = ConnectionState.Connecting Then w = 0 While SQLConnection.State = ConnectionState.Connecting And w < 10 System.Threading.Thread.Sleep(100) w += 1 End While ElseIf Not SQLConnection.State = ConnectionState.Open Then SQLConnection.Open() End If w = 0 While Not SQLConnection.State = ConnectionState.Open And w < 10 System.Threading.Thread.Sleep(100) w += 1 End While Dim cmd As New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;"", SQLConnection) cmd.Parameters.AddRange(pl.ToArray) Call cmd.ExecuteNonQuery() 'SQLConnection.Close() cmd.Parameters.Clear() Catch sqlex As Exception End Try End If Catch dbex As Exception End Try If IsNothing(exc) = False Then note &= (vbCrLf & ""Exception:"" & exc.Message & vbCrLf & ""Stack:"" & exc.StackTrace.ToString).Replace(vbLf, vbLf & "" "") End If If data <> """" Then note &= (vbCrLf & ""Data:"" & data).Replace(vbLf, vbLf & "" "") End If note &= vbCrLf Dim DebugLogfile As IO.FileInfo = LogFile(""DebugLog.txt"") If DebugLogfile.Directory.Exists = True Then IO.File.AppendAllText(DebugLogfile.FullName, note) End If Catch logex As Exception Finally Console.Write(note) Debug.Print(note) End Try End Sub" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,79,24,T:System.Data.SqlClient.SqlParameterCollection,,,,,cmd.Parameters.Clear() +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,79,24,P:System.Data.SqlClient.SqlCommand.Parameters,,,,,cmd.Parameters.Clear() +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,79,24,M:System.Data.SqlClient.SqlParameterCollection.Clear,,,,,cmd.Parameters.Clear() +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,77,24,M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery,,,,,Call cmd.ExecuteNonQuery() +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,76,24,T:System.Data.SqlClient.SqlParameterCollection,,,,,cmd.Parameters.AddRange(pl.ToArray) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,76,24,P:System.Data.SqlClient.SqlCommand.Parameters,,,,,cmd.Parameters.AddRange(pl.ToArray) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,76,24,M:System.Data.SqlClient.SqlParameterCollection.AddRange(System.Data.SqlClient.SqlParameter[]),,,,,cmd.Parameters.AddRange(pl.ToArray) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,75,24,T:System.Data.SqlClient.SqlCommand,,,,,"Dim cmd As New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;"", SQLConnection)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,75,24,"M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection)",,,,,"Dim cmd As New SqlClient.SqlCommand(""EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;"", SQLConnection)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,71,24,P:System.Data.SqlClient.SqlConnection.State,,,,,While Not SQLConnection.State = ConnectionState.Open And w < 10 +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,68,28,M:System.Data.SqlClient.SqlConnection.Open,,,,,SQLConnection.Open() +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,67,24,P:System.Data.SqlClient.SqlConnection.State,,,,,ElseIf Not SQLConnection.State = ConnectionState.Open Then +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,63,28,P:System.Data.SqlClient.SqlConnection.State,,,,,While SQLConnection.State = ConnectionState.Connecting And w < 10 +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,61,24,P:System.Data.SqlClient.SqlConnection.State,,,,,If SQLConnection.State = ConnectionState.Connecting Then +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,60,77,M:System.Data.SqlClient.SqlConnection.Close,,,,,SQLConnection.Close() +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,60,24,P:System.Data.SqlClient.SqlConnection.State,,,,,If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close() +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,T:System.Data.SqlClient.SqlParameter,,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,52,20,"M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)",,,,,"Dim pl As New List(Of SqlClient.SqlParameter) From { New SqlClient.SqlParameter(""@CodeReference"", CodeReference), New SqlClient.SqlParameter(""@ExceptionMessage"", If(IsNothing(exc), DBNull.Value, exc.Message)), New SqlClient.SqlParameter(""@StackTrace"", If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)), New SqlClient.SqlParameter(""@data"", If(data, DBNull.Value)) }" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,39,8,T:System.Data.SqlClient.SqlConnection,,,,,Using con As New SqlClient.SqlConnection(SQLConnectionString) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,39,8,M:System.Data.SqlClient.SqlConnection.#ctor(System.String),,,,,Using con As New SqlClient.SqlConnection(SQLConnectionString) +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,19,8,T:Microsoft.VisualBasic.MyServices.FileSystemProxy,,,,,ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,19,8,P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem,,,,,ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,19,8,M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DirectoryExists(System.String),,,,,ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then +Api.0001,Binary incompatible for selected .NET version,Active,Mandatory,1,Fuchs_DataService\Fuchs_DataService.vbproj,File,Fuchs_DataService\fds_debug.vb,9,8,P:System.IO.DirectoryInfo.FullName,,,,,Return New IO.FileInfo(AppBaseDirectory().FullName & FileName) +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.AspNet.WebApi 5.2.9,,,,,"Microsoft.AspNet.WebApi, 5.2.9 Recommendation: Package functionality included with new framework reference" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.AspNet.WebApi.Core 5.2.9,,,,,"Microsoft.AspNet.WebApi.Core, 5.2.9 Recommendation: No supported version found" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.AspNet.WebApi.WebHost 5.2.9,,,,,"Microsoft.AspNet.WebApi.WebHost, 5.2.9 Recommendation: No supported version found" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.Bcl.AsyncInterfaces 7.0.0,,,,,"Microsoft.Bcl.AsyncInterfaces, 7.0.0 Recommendation: Remove Microsoft.Bcl.AsyncInterfaces, and replace with new package Microsoft.Bcl.AsyncInterfaces 10.0.5" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.NETCore.Platforms 7.0.4,,,,,"Microsoft.NETCore.Platforms, 7.0.4 Recommendation: Package functionality included with new framework reference" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.WindowsAzure.ConfigurationManager 3.2.3,,,,,"Microsoft.WindowsAzure.ConfigurationManager, 3.2.3 Recommendation: No supported version found" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Newtonsoft.Json 13.0.3,,,,,"Newtonsoft.Json, 13.0.3 Recommendation: Remove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Buffers 4.5.1,,,,,"System.Buffers, 4.5.1 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.IO 4.3.0,,,,,"System.IO, 4.3.0 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Memory 4.5.5,,,,,"System.Memory, 4.5.5 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Net.Http 4.3.4,,,,,"System.Net.Http, 4.3.4 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Numerics.Vectors 4.5.0,,,,,"System.Numerics.Vectors, 4.5.0 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Runtime 4.3.1,,,,,"System.Runtime, 4.3.1 Recommendation: Package functionality included with new framework reference" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Runtime.CompilerServices.Unsafe 6.0.0,,,,,"System.Runtime.CompilerServices.Unsafe, 6.0.0 Recommendation: Remove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Security.Cryptography.Algorithms 4.3.1,,,,,"System.Security.Cryptography.Algorithms, 4.3.1 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Security.Cryptography.Encoding 4.3.0,,,,,"System.Security.Cryptography.Encoding, 4.3.0 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Security.Cryptography.Primitives 4.3.0,,,,,"System.Security.Cryptography.Primitives, 4.3.0 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Security.Cryptography.X509Certificates 4.3.2,,,,,"System.Security.Cryptography.X509Certificates, 4.3.2 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Text.Encoding 4.3.0,,,,,"System.Text.Encoding, 4.3.0 Recommendation: Package functionality included with new framework reference" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Text.Encodings.Web 7.0.0,,,,,"System.Text.Encodings.Web, 7.0.0 Recommendation: Remove System.Text.Encodings.Web, and replace with new package System.Text.Encodings.Web 10.0.5" +NuGet.0002,NuGet package upgrade is recommended,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Text.Json 7.0.3,,,,,"System.Text.Json, 7.0.3 Recommendation: Remove System.Text.Json, and replace with new package System.Text.Json 10.0.5" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Threading.Tasks.Extensions 4.5.4,,,,,"System.Threading.Tasks.Extensions, 4.5.4 Recommendation: Package functionality included with new framework reference" +NuGet.0003,NuGet package functionality is included with framework reference,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.ValueTuple 4.5.0,,,,,"System.ValueTuple, 4.5.0 Recommendation: Package functionality included with new framework reference" +NuGet.0001,NuGet package is incompatible,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,WindowsAzure.ServiceBus 6.2.2,,,,,"WindowsAzure.ServiceBus, 6.2.2 Recommendation: No supported version found" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.Data.OData 5.8.5,,,,,"Microsoft.Data.OData, 5.8.5 Recommendation: Broken thread safe. See https://github.com/OData/odata.net/issues/2452 Remove Microsoft.Data.OData, and replace with new package Microsoft.Data.OData, 5.8.5" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.Abstractions 7.0.2,,,,,"Microsoft.IdentityModel.Abstractions, 7.0.2 Recommendation: Update to latest https://aka.ms/IdentityModel/LTS Remove Microsoft.IdentityModel.Abstractions, and replace with new package Microsoft.IdentityModel.Abstractions, 8.17.0" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.Clients.ActiveDirectory 5.3.0,,,,,"Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0 Recommendation: Please note, a newer package is available Microsoft.Identity.Client. This package will continue to receive critical bug fixes until December 2022, we strongly encourage you to upgrade. See https://docs.microsoft.com/azure/active-directory/develop/msal-net-migration for Migration guide and more details. Remove Microsoft.IdentityModel.Clients.ActiveDirectory, and replace with new package Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0" +NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.JsonWebTokens 7.0.2,,,,,"Microsoft.IdentityModel.JsonWebTokens, 7.0.2 Recommendation: Microsoft.IdentityModel.JsonWebTokens, 8.17.0" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.JsonWebTokens 7.0.2,,,,,"Microsoft.IdentityModel.JsonWebTokens, 7.0.2 Recommendation: Move to latest https://aka.ms/IdentityModel/LTS Remove Microsoft.IdentityModel.JsonWebTokens, and replace with new package Microsoft.IdentityModel.JsonWebTokens, 8.17.0" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.Logging 7.0.2,,,,,"Microsoft.IdentityModel.Logging, 7.0.2 Recommendation: Move to latest, see https://aka.ms/IdentityModel/LTS Remove Microsoft.IdentityModel.Logging, and replace with new package Microsoft.IdentityModel.Logging, 8.17.0" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.IdentityModel.Tokens 7.0.2,,,,,"Microsoft.IdentityModel.Tokens, 7.0.2 Recommendation: Move to latest Microsoft.IdentityModel.Tokens. See https://aka.ms/IdentityModel/LTS, Remove Microsoft.IdentityModel.Tokens, and replace with new package Microsoft.IdentityModel.Tokens, 8.17.0" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.Rest.ClientRuntime 2.3.24,,,,,"Microsoft.Rest.ClientRuntime, 2.3.24 Recommendation: Thank you for the interest in this package. The replacement package is available https://www.nuget.org/packages/Azure.Core/, you can find more information of this new package from https://learn.microsoft.com/en-us/dotnet/api/overview/azure/core-readme?view=azure-dotnet. This package is no longer maintained. Remove Microsoft.Rest.ClientRuntime, and replace with new package Microsoft.Rest.ClientRuntime, 2.3.24" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,Microsoft.WindowsAzure.ConfigurationManager 3.2.3,,,,,"Microsoft.WindowsAzure.ConfigurationManager, 3.2.3 Recommendation: Please note, this package is obsolete as of 3/31/2023 and is no longer maintained or monitored. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details. Remove Microsoft.WindowsAzure.ConfigurationManager, and replace with new package Microsoft.WindowsAzure.ConfigurationManager, 3.2.3" +NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,RestSharp 110.2.0,,,,,"RestSharp, 110.2.0 Recommendation: RestSharp, 114.0.0" +NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.IdentityModel.Tokens.Jwt 7.0.2,,,,,"System.IdentityModel.Tokens.Jwt, 7.0.2 Recommendation: System.IdentityModel.Tokens.Jwt, 8.17.0" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.IdentityModel.Tokens.Jwt 7.0.2,,,,,"System.IdentityModel.Tokens.Jwt, 7.0.2 Recommendation: Move to latest https://aka.ms/IdentityModel/LTS Remove System.IdentityModel.Tokens.Jwt, and replace with new package System.IdentityModel.Tokens.Jwt, 8.17.0" +NuGet.0004,NuGet package contains security vulnerability,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,System.Text.Json 7.0.3,,,,,"System.Text.Json, 7.0.3 Recommendation: System.Text.Json, 10.0.5" +NuGet.0005,NuGet package is deprecated,Active,Optional,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,WindowsAzure.ServiceBus 6.2.2,,,,,"WindowsAzure.ServiceBus, 6.2.2 Recommendation: Please note, this package is obsolete and will no longer be maintained after 9/30/2026. Microsoft encourages you to upgrade to the replacement package, Azure.Messaging.ServiceBus, to continue receiving updates. Refer to the migration guide (https://aka.ms/azsdk/net/migrate/sb) for guidance on upgrading. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details. Remove WindowsAzure.ServiceBus, and replace with new package WindowsAzure.ServiceBus, 4.1.11" +Project.0001,Project file needs to be converted to SDK-style,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,, +Project.0002,Project's target framework(s) needs to be changed,Active,Mandatory,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,,"Current target framework: .NETFramework,Version=v4.8 Recommended target framework: net10.0-windows" +UpgradeScenario.0040,Migrate .NET Framework WCF services to CoreWCF,Active,Optional,5,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,,"WCF behavior extension: name=connectionStatusBehavior, type=Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=" +UpgradeScenario.0040,Migrate .NET Framework WCF services to CoreWCF,Active,Optional,5,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,,"WCF behavior extension: name=transportClientEndpointBehavior, type=Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=" +UpgradeScenario.0040,Migrate .NET Framework WCF services to CoreWCF,Active,Optional,5,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFR_RESTClient.vbproj,,,,,,,,"WCF behavior extension: name=serviceRegistrySettings, type=Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,88,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Me(""MFR_Password"") = value" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,85,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_Password""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,76,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Me(""MFR_UserName"") = value" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,73,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_UserName""),String)" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,64,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Me(""MFR_host"") = value" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\My Project\Settings.Designer.vb,61,16,P:System.Configuration.ApplicationSettingsBase.Item(System.String),,,,,"Return CType(Me(""MFR_host""),String)" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,20,16,T:System.Uri,,,,,Me._nextlink = Nothing +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,T:System.Uri,,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,M:System.Uri.#ctor(System.String),,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,T:System.Uri,,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,T:System.Uri,,,,,"Me._metadata = New Uri(O(""odata.metadata""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,M:System.Uri.#ctor(System.String),,,,,"Me._metadata = New Uri(O(""odata.metadata""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,T:System.Uri,,,,,"Me._metadata = New Uri(O(""odata.metadata""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,4,0,T:System.Uri,,,,,Public Property nextlink As Uri +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,4,0,T:System.Uri,,,,,Public Property metadata As Uri +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,20,16,T:System.Uri,,,,,Me._nextlink = Nothing +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,T:System.Uri,,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,M:System.Uri.#ctor(System.String),,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,18,16,T:System.Uri,,,,,"Me._nextlink = New Uri(O(""odata.nextLink""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,T:System.Uri,,,,,"Me._metadata = New Uri(O(""odata.metadata""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,M:System.Uri.#ctor(System.String),,,,,"Me._metadata = New Uri(O(""odata.metadata""))" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClientClasses.vb,16,115,T:System.Uri,,,,,"Me._metadata = New Uri(O(""odata.metadata""))" +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClient.vb,126,12,F:Microsoft.VisualBasic.Constants.vbNewLine,,,,,"Diagnostics.Debug.Print(""execute rest issue: "" & message + Environment.NewLine + response.StatusDescription & vbNewLine & "" "" & request.Resource.ToString)" +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClient.vb,67,20,T:System.Uri,,,,,fle = .DownloadData(New Uri(address)) +Api.0003,Behavioral change in selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClient.vb,67,20,M:System.Uri.#ctor(System.String),,,,,fle = .DownloadData(New Uri(address)) +Api.0002,Source incompatible for selected .NET version,Active,Potential,1,MFR_RESTClient\MFR_RESTClient.vbproj,File,MFR_RESTClient\MFRClient.vb,60,8,M:System.Net.WebClient.#ctor,,,,,Using WC As New System.Net.WebClient +Project.0002,Project's target framework(s) needs to be changed,Active,Mandatory,1,P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj,File,P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj,,,,,,,,Current target framework: netstandard2.0;net472 Recommended target framework: netstandard2.0;net472;net10.0 diff --git a/.github/upgrades/scenarios/new-dotnet-version_16123a/assessment.json b/.github/upgrades/scenarios/new-dotnet-version_16123a/assessment.json new file mode 100644 index 0000000..9ebdb68 --- /dev/null +++ b/.github/upgrades/scenarios/new-dotnet-version_16123a/assessment.json @@ -0,0 +1,10555 @@ +{ + "settings": { + "components": { + "code": true, + "binaries": false + }, + "targetId": "net10.0", + "targetDisplayName": ".NETCoreApp,Version=v10.0" + }, + "analysisStartTime": "2026-03-29T20:19:32.6664919Z", + "analysisEndTime": "2026-03-29T20:19:44.0458714Z", + "privacyModeHelpUrl": "https://go.microsoft.com/fwlink/?linkid=2270980", + "stats": { + "summary": { + "projects": 4, + "issues": 14, + "incidents": 439, + "effort": 451 + }, + "charts": { + "severity": { + "Mandatory": 164, + "Optional": 23, + "Potential": 252, + "Information": 0 + }, + "category": { + "Project": 7, + "NuGet": 71, + "UpgradeScenario": 3, + "Api": 358 + } + } + }, + "projects": [ + { + "path": "Fuchs\\Fuchs.vbproj", + "startingProject": true, + "issues": 10, + "storyPoints": 255, + "properties": { + "appName": "Fuchs", + "projectKind": "Wap", + "frameworks": [ + "net48" + ], + "languages": [ + "Visual Basic" + ], + "tools": [ + "MSBuild" + ], + "isSdkStyle": false, + "numberOfFiles": 485, + "numberOfCodeFiles": 33, + "linesTotal": 3160373, + "linesOfCode": 6277, + "totalApiScanned": 7304, + "minLinesOfCodeToChange": 224, + "maxLinesOfCodeToChange": 224 + }, + "ruleInstances": [ + { + "incidentId": "56f67398-e459-4764-91df-a8db65062548", + "ruleId": "NuGet.0001", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "ImageProcessor, 2.9.1\n\nRecommendation:\n\nNo supported version found", + "protected": "ImageProcessor, 2.9.1\n\nRecommendation:\n\nNo supported version found" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "ImageProcessor, 2.9.1\n\nRecommendation:\n\nNo supported version found", + "protectedSnippet": "ImageProcessor, 2.9.1\n\nRecommendation:\n\nNo supported version found", + "label": "ImageProcessor 2.9.1", + "properties": { + "PackageId": "ImageProcessor", + "PackageVersion": "2.9.1", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "a476dd8c-e0c6-416f-b4f7-ed5ff635e098", + "ruleId": "NuGet.0001", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "ImageProcessor.Plugins.WebP, 1.3.0\n\nRecommendation:\n\nNo supported version found", + "protected": "ImageProcessor.Plugins.WebP, 1.3.0\n\nRecommendation:\n\nNo supported version found" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "ImageProcessor.Plugins.WebP, 1.3.0\n\nRecommendation:\n\nNo supported version found", + "protectedSnippet": "ImageProcessor.Plugins.WebP, 1.3.0\n\nRecommendation:\n\nNo supported version found", + "label": "ImageProcessor.Plugins.WebP 1.3.0", + "properties": { + "PackageId": "ImageProcessor.Plugins.WebP", + "PackageVersion": "1.3.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "3e4e4fb5-dd3f-46b9-a405-e2b9e4d033a5", + "ruleId": "NuGet.0001", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "ImageProcessor.Web, 4.12.1\n\nRecommendation:\n\nNo supported version found", + "protected": "ImageProcessor.Web, 4.12.1\n\nRecommendation:\n\nNo supported version found" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "ImageProcessor.Web, 4.12.1\n\nRecommendation:\n\nNo supported version found", + "protectedSnippet": "ImageProcessor.Web, 4.12.1\n\nRecommendation:\n\nNo supported version found", + "label": "ImageProcessor.Web 4.12.1", + "properties": { + "PackageId": "ImageProcessor.Web", + "PackageVersion": "4.12.1", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "023458d3-5de3-4459-82c5-cf8a64a899a2", + "ruleId": "NuGet.0001", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "ImageProcessor.Web.Config, 2.6.0\n\nRecommendation:\n\nNo supported version found", + "protected": "ImageProcessor.Web.Config, 2.6.0\n\nRecommendation:\n\nNo supported version found" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "ImageProcessor.Web.Config, 2.6.0\n\nRecommendation:\n\nNo supported version found", + "protectedSnippet": "ImageProcessor.Web.Config, 2.6.0\n\nRecommendation:\n\nNo supported version found", + "label": "ImageProcessor.Web.Config 2.6.0", + "properties": { + "PackageId": "ImageProcessor.Web.Config", + "PackageVersion": "2.6.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "6cb59e7d-afa3-42db-acde-000106182331", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.AspNet.Mvc, 5.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "Microsoft.AspNet.Mvc, 5.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "Microsoft.AspNet.Mvc, 5.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "Microsoft.AspNet.Mvc, 5.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "Microsoft.AspNet.Mvc 5.2.9", + "properties": { + "PackageId": "Microsoft.AspNet.Mvc", + "PackageVersion": "5.2.9", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "c5232df5-1720-4084-a030-a54338d2cb4e", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.AspNet.Razor, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "Microsoft.AspNet.Razor, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "Microsoft.AspNet.Razor, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "Microsoft.AspNet.Razor, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "Microsoft.AspNet.Razor 3.2.9", + "properties": { + "PackageId": "Microsoft.AspNet.Razor", + "PackageVersion": "3.2.9", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "3a2b5f45-5c61-427b-8863-5a33c2f00bce", + "ruleId": "NuGet.0001", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.AspNet.TelemetryCorrelation, 1.0.8\n\nRecommendation:\n\nMicrosoft.AspNet.TelemetryCorrelation, 1.0.3", + "protected": "Microsoft.AspNet.TelemetryCorrelation, 1.0.8\n\nRecommendation:\n\nMicrosoft.AspNet.TelemetryCorrelation, 1.0.3" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "Microsoft.AspNet.TelemetryCorrelation, 1.0.8\n\nRecommendation:\n\nMicrosoft.AspNet.TelemetryCorrelation, 1.0.3", + "protectedSnippet": "Microsoft.AspNet.TelemetryCorrelation, 1.0.8\n\nRecommendation:\n\nMicrosoft.AspNet.TelemetryCorrelation, 1.0.3", + "label": "Microsoft.AspNet.TelemetryCorrelation 1.0.8", + "properties": { + "PackageId": "Microsoft.AspNet.TelemetryCorrelation", + "PackageVersion": "1.0.8", + "PackageNewVersion": "1.0.3", + "PackageReplacements": null + } + } + }, + { + "incidentId": "34a9892c-349f-4919-83ad-a1be78e9f309", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.AspNet.WebPages, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "Microsoft.AspNet.WebPages, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "Microsoft.AspNet.WebPages, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "Microsoft.AspNet.WebPages, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "Microsoft.AspNet.WebPages 3.2.9", + "properties": { + "PackageId": "Microsoft.AspNet.WebPages", + "PackageVersion": "3.2.9", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "b477af5c-22cf-4de9-b71b-c08c43c48215", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.CodeDom.Providers.DotNetCompilerPlatform, 4.1.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "Microsoft.CodeDom.Providers.DotNetCompilerPlatform, 4.1.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "Microsoft.CodeDom.Providers.DotNetCompilerPlatform, 4.1.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "Microsoft.CodeDom.Providers.DotNetCompilerPlatform, 4.1.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "Microsoft.CodeDom.Providers.DotNetCompilerPlatform 4.1.0", + "properties": { + "PackageId": "Microsoft.CodeDom.Providers.DotNetCompilerPlatform", + "PackageVersion": "4.1.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "927d5dce-be4b-45fe-8b7a-c3648ead2924", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.Web.Infrastructure, 2.0.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "Microsoft.Web.Infrastructure, 2.0.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "Microsoft.Web.Infrastructure, 2.0.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "Microsoft.Web.Infrastructure, 2.0.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "Microsoft.Web.Infrastructure 2.0.0", + "properties": { + "PackageId": "Microsoft.Web.Infrastructure", + "PackageVersion": "2.0.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "fe1fee0e-c155-4638-846f-d1fe75a95128", + "ruleId": "NuGet.0002", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4", + "protected": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4", + "protectedSnippet": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4", + "label": "Newtonsoft.Json 13.0.3", + "properties": { + "PackageId": "Newtonsoft.Json", + "PackageVersion": "13.0.3", + "PackageNewVersion": "13.0.4", + "PackageReplacements": null + } + } + }, + { + "incidentId": "42ff0bca-e29e-4ba1-ac17-6d676aaf8d82", + "ruleId": "NuGet.0001", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "PDFsharp, 1.50.5147\n\nRecommendation:\n\nPDFsharp, 6.2.4", + "protected": "PDFsharp, 1.50.5147\n\nRecommendation:\n\nPDFsharp, 6.2.4" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "PDFsharp, 1.50.5147\n\nRecommendation:\n\nPDFsharp, 6.2.4", + "protectedSnippet": "PDFsharp, 1.50.5147\n\nRecommendation:\n\nPDFsharp, 6.2.4", + "label": "PDFsharp 1.50.5147", + "properties": { + "PackageId": "PDFsharp", + "PackageVersion": "1.50.5147", + "PackageNewVersion": "6.2.4", + "PackageReplacements": null + } + } + }, + { + "incidentId": "e95753fa-1e60-49da-8ffb-2c3673f2e2bb", + "ruleId": "NuGet.0001", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "PDFsharp-MigraDoc, 1.50.5147\n\nRecommendation:\n\nPDFsharp-MigraDoc, 6.2.4", + "protected": "PDFsharp-MigraDoc, 1.50.5147\n\nRecommendation:\n\nPDFsharp-MigraDoc, 6.2.4" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "PDFsharp-MigraDoc, 1.50.5147\n\nRecommendation:\n\nPDFsharp-MigraDoc, 6.2.4", + "protectedSnippet": "PDFsharp-MigraDoc, 1.50.5147\n\nRecommendation:\n\nPDFsharp-MigraDoc, 6.2.4", + "label": "PDFsharp-MigraDoc 1.50.5147", + "properties": { + "PackageId": "PDFsharp-MigraDoc", + "PackageVersion": "1.50.5147", + "PackageNewVersion": "6.2.4", + "PackageReplacements": null + } + } + }, + { + "incidentId": "8e230a3d-631e-481a-a37b-d04424996e4c", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Buffers, 4.5.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Buffers, 4.5.1\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Buffers, 4.5.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Buffers, 4.5.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Buffers 4.5.1", + "properties": { + "PackageId": "System.Buffers", + "PackageVersion": "4.5.1", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "f1e41de3-1cc8-419d-a72a-f281748bd6e0", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Data.DataSetExtensions, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Data.DataSetExtensions, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Data.DataSetExtensions, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Data.DataSetExtensions, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Data.DataSetExtensions 4.5.0", + "properties": { + "PackageId": "System.Data.DataSetExtensions", + "PackageVersion": "4.5.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "0dd832ed-bf84-4ab4-a6b7-81240f91fc65", + "ruleId": "NuGet.0002", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Diagnostics.DiagnosticSource, 7.0.2\n\nRecommendation:\n\nRemove System.Diagnostics.DiagnosticSource, and replace with new package System.Diagnostics.DiagnosticSource 10.0.5", + "protected": "System.Diagnostics.DiagnosticSource, 7.0.2\n\nRecommendation:\n\nRemove System.Diagnostics.DiagnosticSource, and replace with new package System.Diagnostics.DiagnosticSource 10.0.5" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Diagnostics.DiagnosticSource, 7.0.2\n\nRecommendation:\n\nRemove System.Diagnostics.DiagnosticSource, and replace with new package System.Diagnostics.DiagnosticSource 10.0.5", + "protectedSnippet": "System.Diagnostics.DiagnosticSource, 7.0.2\n\nRecommendation:\n\nRemove System.Diagnostics.DiagnosticSource, and replace with new package System.Diagnostics.DiagnosticSource 10.0.5", + "label": "System.Diagnostics.DiagnosticSource 7.0.2", + "properties": { + "PackageId": "System.Diagnostics.DiagnosticSource", + "PackageVersion": "7.0.2", + "PackageNewVersion": "10.0.5", + "PackageReplacements": null + } + } + }, + { + "incidentId": "88c53366-4c42-484b-b392-c73644fcb422", + "ruleId": "NuGet.0002", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Formats.Asn1, 8.0.0\n\nRecommendation:\n\nRemove System.Formats.Asn1, and replace with new package System.Formats.Asn1 10.0.5", + "protected": "System.Formats.Asn1, 8.0.0\n\nRecommendation:\n\nRemove System.Formats.Asn1, and replace with new package System.Formats.Asn1 10.0.5" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Formats.Asn1, 8.0.0\n\nRecommendation:\n\nRemove System.Formats.Asn1, and replace with new package System.Formats.Asn1 10.0.5", + "protectedSnippet": "System.Formats.Asn1, 8.0.0\n\nRecommendation:\n\nRemove System.Formats.Asn1, and replace with new package System.Formats.Asn1 10.0.5", + "label": "System.Formats.Asn1 8.0.0", + "properties": { + "PackageId": "System.Formats.Asn1", + "PackageVersion": "8.0.0", + "PackageNewVersion": "10.0.5", + "PackageReplacements": null + } + } + }, + { + "incidentId": "e4bb840c-91a0-4115-b1a4-ec5d09918636", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Memory, 4.5.5\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Memory, 4.5.5\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Memory, 4.5.5\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Memory, 4.5.5\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Memory 4.5.5", + "properties": { + "PackageId": "System.Memory", + "PackageVersion": "4.5.5", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "7963f403-7250-4466-8e35-e1e1c7f3c878", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Numerics.Vectors, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Numerics.Vectors, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Numerics.Vectors, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Numerics.Vectors, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Numerics.Vectors 4.5.0", + "properties": { + "PackageId": "System.Numerics.Vectors", + "PackageVersion": "4.5.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "3e8732dc-0f34-4571-a2f6-9b57fd3eb30f", + "ruleId": "NuGet.0002", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Runtime.CompilerServices.Unsafe, 6.0.0\n\nRecommendation:\n\nRemove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2", + "protected": "System.Runtime.CompilerServices.Unsafe, 6.0.0\n\nRecommendation:\n\nRemove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Runtime.CompilerServices.Unsafe, 6.0.0\n\nRecommendation:\n\nRemove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2", + "protectedSnippet": "System.Runtime.CompilerServices.Unsafe, 6.0.0\n\nRecommendation:\n\nRemove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2", + "label": "System.Runtime.CompilerServices.Unsafe 6.0.0", + "properties": { + "PackageId": "System.Runtime.CompilerServices.Unsafe", + "PackageVersion": "6.0.0", + "PackageNewVersion": "6.1.2", + "PackageReplacements": null + } + } + }, + { + "incidentId": "8e57b73e-813f-4271-802e-a9449973ac32", + "ruleId": "NuGet.0002", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Text.Encoding.CodePages, 7.0.0\n\nRecommendation:\n\nRemove System.Text.Encoding.CodePages, and replace with new package System.Text.Encoding.CodePages 10.0.5", + "protected": "System.Text.Encoding.CodePages, 7.0.0\n\nRecommendation:\n\nRemove System.Text.Encoding.CodePages, and replace with new package System.Text.Encoding.CodePages 10.0.5" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Text.Encoding.CodePages, 7.0.0\n\nRecommendation:\n\nRemove System.Text.Encoding.CodePages, and replace with new package System.Text.Encoding.CodePages 10.0.5", + "protectedSnippet": "System.Text.Encoding.CodePages, 7.0.0\n\nRecommendation:\n\nRemove System.Text.Encoding.CodePages, and replace with new package System.Text.Encoding.CodePages 10.0.5", + "label": "System.Text.Encoding.CodePages 7.0.0", + "properties": { + "PackageId": "System.Text.Encoding.CodePages", + "PackageVersion": "7.0.0", + "PackageNewVersion": "10.0.5", + "PackageReplacements": null + } + } + }, + { + "incidentId": "ea112155-1142-41a5-b4c2-d6d957842023", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Threading.Tasks.Extensions, 4.5.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Threading.Tasks.Extensions, 4.5.4\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Threading.Tasks.Extensions, 4.5.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Threading.Tasks.Extensions, 4.5.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Threading.Tasks.Extensions 4.5.4", + "properties": { + "PackageId": "System.Threading.Tasks.Extensions", + "PackageVersion": "4.5.4", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "51d3197b-0744-4b09-9ced-6a78608ca940", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.ValueTuple, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.ValueTuple, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.ValueTuple, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.ValueTuple, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.ValueTuple 4.5.0", + "properties": { + "PackageId": "System.ValueTuple", + "PackageVersion": "4.5.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "68eae302-b1d4-47e9-81a4-b3abdb0ef99d", + "ruleId": "NuGet.0004", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "BouncyCastle, 1.8.9\n\nRecommendation:\n\nBouncyCastle, 1.8.9", + "protected": "BouncyCastle, 1.8.9\n\nRecommendation:\n\nBouncyCastle, 1.8.9" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "BouncyCastle, 1.8.9\n\nRecommendation:\n\nBouncyCastle, 1.8.9", + "protectedSnippet": "BouncyCastle, 1.8.9\n\nRecommendation:\n\nBouncyCastle, 1.8.9", + "label": "BouncyCastle 1.8.9", + "properties": { + "PackageId": "BouncyCastle", + "PackageVersion": "1.8.9", + "PackageNewVersion": "1.8.9", + "PackageReplacements": null + } + } + }, + { + "incidentId": "decb293a-2173-4240-91c8-dbe11822fe88", + "ruleId": "NuGet.0005", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "BouncyCastle, 1.8.9\n\nRecommendation:\n\nThis package is no longer maintainted. Please, use official BouncyCastle.Cryptography package.\nSee https://www.bouncycastle.org/csharp/\nRemove BouncyCastle, and replace with new package BouncyCastle, 1.8.9", + "protected": "BouncyCastle, 1.8.9\n\nRecommendation:\n\nThis package is no longer maintainted. Please, use official BouncyCastle.Cryptography package.\nSee https://www.bouncycastle.org/csharp/\nRemove BouncyCastle, and replace with new package BouncyCastle, 1.8.9" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "BouncyCastle, 1.8.9\n\nRecommendation:\n\nThis package is no longer maintainted. Please, use official BouncyCastle.Cryptography package.\nSee https://www.bouncycastle.org/csharp/\nRemove BouncyCastle, and replace with new package BouncyCastle, 1.8.9", + "protectedSnippet": "BouncyCastle, 1.8.9\n\nRecommendation:\n\nThis package is no longer maintainted. Please, use official BouncyCastle.Cryptography package.\nSee https://www.bouncycastle.org/csharp/\nRemove BouncyCastle, and replace with new package BouncyCastle, 1.8.9", + "label": "BouncyCastle 1.8.9", + "properties": { + "PackageId": "BouncyCastle", + "PackageVersion": "1.8.9", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "17de6ec5-1fe2-4104-9399-518ade4be2a4", + "ruleId": "NuGet.0004", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "BouncyCastle.Cryptography, 2.3.0\n\nRecommendation:\n\nBouncyCastle.Cryptography, 2.6.2", + "protected": "BouncyCastle.Cryptography, 2.3.0\n\nRecommendation:\n\nBouncyCastle.Cryptography, 2.6.2" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "BouncyCastle.Cryptography, 2.3.0\n\nRecommendation:\n\nBouncyCastle.Cryptography, 2.6.2", + "protectedSnippet": "BouncyCastle.Cryptography, 2.3.0\n\nRecommendation:\n\nBouncyCastle.Cryptography, 2.6.2", + "label": "BouncyCastle.Cryptography 2.3.0", + "properties": { + "PackageId": "BouncyCastle.Cryptography", + "PackageVersion": "2.3.0", + "PackageNewVersion": "2.6.2", + "PackageReplacements": null + } + } + }, + { + "incidentId": "b2549d69-5d03-42f0-87be-2592e57603e3", + "ruleId": "NuGet.0004", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "MimeKit, 4.4.0\n\nRecommendation:\n\nMimeKit, 4.15.1", + "protected": "MimeKit, 4.4.0\n\nRecommendation:\n\nMimeKit, 4.15.1" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "MimeKit, 4.4.0\n\nRecommendation:\n\nMimeKit, 4.15.1", + "protectedSnippet": "MimeKit, 4.4.0\n\nRecommendation:\n\nMimeKit, 4.15.1", + "label": "MimeKit 4.4.0", + "properties": { + "PackageId": "MimeKit", + "PackageVersion": "4.4.0", + "PackageNewVersion": "4.15.1", + "PackageReplacements": null + } + } + }, + { + "incidentId": "4fe023a5-08ae-40c1-9010-5f91df4ad37e", + "ruleId": "NuGet.0004", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Formats.Asn1, 8.0.0\n\nRecommendation:\n\nSystem.Formats.Asn1, 10.0.5", + "protected": "System.Formats.Asn1, 8.0.0\n\nRecommendation:\n\nSystem.Formats.Asn1, 10.0.5" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "System.Formats.Asn1, 8.0.0\n\nRecommendation:\n\nSystem.Formats.Asn1, 10.0.5", + "protectedSnippet": "System.Formats.Asn1, 8.0.0\n\nRecommendation:\n\nSystem.Formats.Asn1, 10.0.5", + "label": "System.Formats.Asn1 8.0.0", + "properties": { + "PackageId": "System.Formats.Asn1", + "PackageVersion": "8.0.0", + "PackageNewVersion": "10.0.5", + "PackageReplacements": null + } + } + }, + { + "incidentId": "a29fdaae-cfff-4781-8500-d2f9d188383b", + "ruleId": "NuGet.0004", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "TinyMCE, 6.3.1\n\nRecommendation:\n\nTinyMCE, 8.3.2", + "protected": "TinyMCE, 6.3.1\n\nRecommendation:\n\nTinyMCE, 8.3.2" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "TinyMCE, 6.3.1\n\nRecommendation:\n\nTinyMCE, 8.3.2", + "protectedSnippet": "TinyMCE, 6.3.1\n\nRecommendation:\n\nTinyMCE, 8.3.2", + "label": "TinyMCE 6.3.1", + "properties": { + "PackageId": "TinyMCE", + "PackageVersion": "6.3.1", + "PackageNewVersion": "8.3.2", + "PackageReplacements": null + } + } + }, + { + "incidentId": "5c87ca44-8435-4666-adde-192c89dc4fcc", + "ruleId": "Project.0001", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj" + } + }, + { + "incidentId": "00fd8de6-2a5c-42ea-a540-d95fcbc8f21f", + "ruleId": "Project.0002", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0", + "protected": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0" + }, + "kind": "File", + "path": "Fuchs\\Fuchs.vbproj", + "snippet": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0", + "protectedSnippet": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0", + "properties": { + "CurrentTargetFramework": ".NETFramework,Version=v4.8", + "RecommendedTargetFramework": "net10.0" + } + } + }, + { + "incidentId": "c106b2b0-d61c-494a-91a5-c9d8fc5a8e4a", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter = New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;\u0022)", + "protected": "T:System.Data.SqlClient.SqlCommand" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fucns_ocms_intranet_banking.vb", + "snippet": "dtwa.CommandAfter = New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;\u0022)", + "protectedSnippet": "T:System.Data.SqlClient.SqlCommand", + "label": "T:System.Data.SqlClient.SqlCommand", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 28, + "column": 24 + } + }, + { + "incidentId": "cf960746-13ef-4597-a764-02c38db87c9b", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter = New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;\u0022)", + "protected": "M:System.Data.SqlClient.SqlCommand.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fucns_ocms_intranet_banking.vb", + "snippet": "dtwa.CommandAfter = New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__merge_bankingtransactions] @tblname, @authuser;\u0022)", + "protectedSnippet": "M:System.Data.SqlClient.SqlCommand.#ctor(System.String)", + "label": "M:System.Data.SqlClient.SqlCommand.#ctor(System.String)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 28, + "column": 24 + } + }, + { + "incidentId": "23cdc927-e8bb-423c-b5b1-98c9873c9e8b", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim tbl As DataTable = Global.Fuchs.intranet.banking.parseToDatatable(stream:=fle.InputStream, SchemaDatatable:=SchemaDatatable)", + "protected": "P:System.Web.HttpPostedFileWrapper.InputStream" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fucns_ocms_intranet_banking.vb", + "snippet": "Dim tbl As DataTable = Global.Fuchs.intranet.banking.parseToDatatable(stream:=fle.InputStream, SchemaDatatable:=SchemaDatatable)", + "protectedSnippet": "P:System.Web.HttpPostedFileWrapper.InputStream", + "label": "P:System.Web.HttpPostedFileWrapper.InputStream", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 22, + "column": 24 + } + }, + { + "incidentId": "02c8c21a-18b5-4e83-8218-d5ea5a6aed49", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ViewResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ViewResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Protected Overrides Function IntranetView() As ViewResult\r\n Return View(\u0022intranet\u0022, New Global.OCMS.intranet.intranet_model(Me, True))\r\n End Function", + "protected": "T:System.Web.Mvc.ViewResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Protected Overrides Function IntranetView() As ViewResult\r\n Return View(\u0022intranet\u0022, New Global.OCMS.intranet.intranet_model(Me, True))\r\n End Function", + "protectedSnippet": "T:System.Web.Mvc.ViewResult", + "label": "T:System.Web.Mvc.ViewResult", + "line": 188, + "column": 8 + } + }, + { + "incidentId": "eec6df50-4cd8-4f95-a5e4-173200a45b95", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentEncoding" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "label": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "line": 146, + "column": 28 + } + }, + { + "incidentId": "4dc0f388-d75d-4fdc-b05e-4aafce9837b3", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentType" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentType", + "label": "P:System.Web.Mvc.ContentResult.ContentType", + "line": 146, + "column": 28 + } + }, + { + "incidentId": "35d3ef8b-0662-4660-bd07-b11b359bb996", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.Content" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.Content", + "label": "P:System.Web.Mvc.ContentResult.Content", + "line": 146, + "column": 28 + } + }, + { + "incidentId": "53923ef2-ccef-4256-aaae-ee4cb110a8c0", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ContentResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ContentResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "T:System.Web.Mvc.ContentResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "T:System.Web.Mvc.ContentResult", + "label": "T:System.Web.Mvc.ContentResult", + "line": 146, + "column": 28 + } + }, + { + "incidentId": "be30e03d-be72-46f9-b460-ee3c14f08fb8", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "M:System.Web.Mvc.ContentResult.#ctor" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getAnything(id \u0026 If(code \u003C\u003E \u0022\u0022, \u0022/\u0022 \u0026 code, HttpUtility.UrlDecode(Me.Request.Url.Query)), throwerror_if_nOK:=False), .ContentType = \u0022text/json\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "M:System.Web.Mvc.ContentResult.#ctor", + "label": "M:System.Web.Mvc.ContentResult.#ctor", + "line": 146, + "column": 28 + } + }, + { + "incidentId": "28988650-81e3-4f0b-91c0-c768552828ce", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentEncoding" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "label": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "line": 144, + "column": 28 + } + }, + { + "incidentId": "c8cca4e0-69be-4ac3-a12f-b58418d32255", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentType" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentType", + "label": "P:System.Web.Mvc.ContentResult.ContentType", + "line": 144, + "column": 28 + } + }, + { + "incidentId": "47556e30-6c0d-4a44-bc70-12b2c0fda29c", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.Content" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.Content", + "label": "P:System.Web.Mvc.ContentResult.Content", + "line": 144, + "column": 28 + } + }, + { + "incidentId": "07ac0cc8-919f-4572-869c-25d18acf279a", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ContentResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ContentResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "T:System.Web.Mvc.ContentResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "T:System.Web.Mvc.ContentResult", + "label": "T:System.Web.Mvc.ContentResult", + "line": 144, + "column": 28 + } + }, + { + "incidentId": "a2106c7b-67ac-4047-8327-99c8b9c908ac", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "M:System.Web.Mvc.ContentResult.#ctor" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Action = New ContentResult() With {.Content = Await Global.fds.getSchema(), .ContentType = \u0022text/xml\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "M:System.Web.Mvc.ContentResult.#ctor", + "label": "M:System.Web.Mvc.ContentResult.#ctor", + "line": 144, + "column": 28 + } + }, + { + "incidentId": "cb2d504d-05d5-474f-8653-2e608c1ad98f", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim sets As String = System.Configuration.ConfigurationManager.AppSettings(\u0022ocms_serviceemail\u0022)", + "protected": "T:System.Configuration.ConfigurationManager" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Dim sets As String = System.Configuration.ConfigurationManager.AppSettings(\u0022ocms_serviceemail\u0022)", + "protectedSnippet": "T:System.Configuration.ConfigurationManager", + "label": "T:System.Configuration.ConfigurationManager", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 105, + "column": 32 + } + }, + { + "incidentId": "139c99e4-ce49-49aa-82f7-1f046786e530", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim sets As String = System.Configuration.ConfigurationManager.AppSettings(\u0022ocms_serviceemail\u0022)", + "protected": "P:System.Configuration.ConfigurationManager.AppSettings" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet.vb", + "snippet": "Dim sets As String = System.Configuration.ConfigurationManager.AppSettings(\u0022ocms_serviceemail\u0022)", + "protectedSnippet": "P:System.Configuration.ConfigurationManager.AppSettings", + "label": "P:System.Configuration.ConfigurationManager.AppSettings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 105, + "column": 32 + } + }, + { + "incidentId": "957feacc-e472-45c3-9f39-c552013411af", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() {\r\n SQL_BigInt(\u0022@id\u0022, Me.Form(\u0022id\u0022)),\r\n SQL_VarChar(\u0022@entitytype\u0022, \u0022report\u0022),\r\n New SqlClient.SqlParameter(\u0022@vat\u0022, val),\r\n SQL_VarChar(\u0022@userid\u0022, Me.UserAccountID)\r\n })", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet_invoices.vb", + "snippet": "Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() {\r\n SQL_BigInt(\u0022@id\u0022, Me.Form(\u0022id\u0022)),\r\n SQL_VarChar(\u0022@entitytype\u0022, \u0022report\u0022),\r\n New SqlClient.SqlParameter(\u0022@vat\u0022, val),\r\n SQL_VarChar(\u0022@userid\u0022, Me.UserAccountID)\r\n })", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 37, + "column": 24 + } + }, + { + "incidentId": "73f4515e-fe8c-45d3-ab46-b335320f5e45", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() {\r\n SQL_BigInt(\u0022@id\u0022, Me.Form(\u0022id\u0022)),\r\n SQL_VarChar(\u0022@entitytype\u0022, \u0022report\u0022),\r\n New SqlClient.SqlParameter(\u0022@vat\u0022, val),\r\n SQL_VarChar(\u0022@userid\u0022, Me.UserAccountID)\r\n })", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_ocms_intranet_invoices.vb", + "snippet": "Dim pl As ParamList = Me.StdParamlist(New SqlClient.SqlParameter() {\r\n SQL_BigInt(\u0022@id\u0022, Me.Form(\u0022id\u0022)),\r\n SQL_VarChar(\u0022@entitytype\u0022, \u0022report\u0022),\r\n New SqlClient.SqlParameter(\u0022@vat\u0022, val),\r\n SQL_VarChar(\u0022@userid\u0022, Me.UserAccountID)\r\n })", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 37, + "column": 24 + } + }, + { + "incidentId": "05e95840-6cb2-46f0-8e8b-ade23203b27a", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "singlelineimage.SetPixel(x, y, System.Drawing.Color.Black)", + "protected": "M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "singlelineimage.SetPixel(x, y, System.Drawing.Color.Black)", + "protectedSnippet": "M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color)", + "label": "M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color)", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 1028, + "column": 24 + } + }, + { + "incidentId": "9ba2df23-ac87-4752-b3e6-f2ebada9e1c7", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "For y As Integer = 0 To singlelineimage.Height - 1", + "protected": "P:System.Drawing.Image.Height" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "For y As Integer = 0 To singlelineimage.Height - 1", + "protectedSnippet": "P:System.Drawing.Image.Height", + "label": "P:System.Drawing.Image.Height", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 1027, + "column": 20 + } + }, + { + "incidentId": "356427d0-d73a-45c5-813f-493837515a16", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "For x As Integer = 0 To singlelineimage.Width - 1", + "protected": "P:System.Drawing.Image.Width" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "For x As Integer = 0 To singlelineimage.Width - 1", + "protectedSnippet": "P:System.Drawing.Image.Width", + "label": "P:System.Drawing.Image.Width", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 1026, + "column": 16 + } + }, + { + "incidentId": "6cee264b-7fe0-4b65-a0fe-946119931c11", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim singlelineimage As New System.Drawing.Bitmap(20, 1)", + "protected": "T:System.Drawing.Bitmap" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "Dim singlelineimage As New System.Drawing.Bitmap(20, 1)", + "protectedSnippet": "T:System.Drawing.Bitmap", + "label": "T:System.Drawing.Bitmap", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 1025, + "column": 16 + } + }, + { + "incidentId": "05677be4-5416-4915-8b30-b11805b7fdc1", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim singlelineimage As New System.Drawing.Bitmap(20, 1)", + "protected": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "Dim singlelineimage As New System.Drawing.Bitmap(20, 1)", + "protectedSnippet": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32)", + "label": "M:System.Drawing.Bitmap.#ctor(System.Int32,System.Int32)", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 1025, + "column": 16 + } + }, + { + "incidentId": "3f55c5c3-a518-49f4-95ad-20498e27f2b6", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Function getPaycode(iban As String, bic As String, name As String, amount As Decimal, purpose As String) As System.Drawing.Bitmap\r\n Try\r\n\r\n \u0027Dim totp As New OtpNet.Totp(rfcKey)\r\n Dim generator As New QRCoder.PayloadGenerator.Girocode(iban:=iban, bic:=bic, name:=name, amount:=amount, typeOfRemittance:=QRCoder.PayloadGenerator.Girocode.TypeOfRemittance.Unstructured, remittanceInformation:=purpose)\r\n\r\n Dim payload As String = generator.ToString()\r\n\r\n Dim qrGenerator As New QRCoder.QRCodeGenerator()\r\n Dim qrCodeData As QRCoder.QRCodeData = qrGenerator.CreateQrCode(payload, QRCoder.QRCodeGenerator.ECCLevel.Q)\r\n Dim qrCode As New QRCoder.QRCode(qrCodeData)\r\n Return qrCode.GetGraphic(20)\r\n\r\n Catch ex As Exception\r\n Return Nothing\r\n End Try\r\n End Function", + "protected": "T:System.Drawing.Bitmap" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "Public Function getPaycode(iban As String, bic As String, name As String, amount As Decimal, purpose As String) As System.Drawing.Bitmap\r\n Try\r\n\r\n \u0027Dim totp As New OtpNet.Totp(rfcKey)\r\n Dim generator As New QRCoder.PayloadGenerator.Girocode(iban:=iban, bic:=bic, name:=name, amount:=amount, typeOfRemittance:=QRCoder.PayloadGenerator.Girocode.TypeOfRemittance.Unstructured, remittanceInformation:=purpose)\r\n\r\n Dim payload As String = generator.ToString()\r\n\r\n Dim qrGenerator As New QRCoder.QRCodeGenerator()\r\n Dim qrCodeData As QRCoder.QRCodeData = qrGenerator.CreateQrCode(payload, QRCoder.QRCodeGenerator.ECCLevel.Q)\r\n Dim qrCode As New QRCoder.QRCode(qrCodeData)\r\n Return qrCode.GetGraphic(20)\r\n\r\n Catch ex As Exception\r\n Return Nothing\r\n End Try\r\n End Function", + "protectedSnippet": "T:System.Drawing.Bitmap", + "label": "T:System.Drawing.Bitmap", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 723, + "column": 8 + } + }, + { + "incidentId": "d555ecda-a4b3-46b8-9eda-3688ad8541f8", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return qrCode.GetGraphic(20)", + "protected": "T:System.Drawing.Bitmap" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "Return qrCode.GetGraphic(20)", + "protectedSnippet": "T:System.Drawing.Bitmap", + "label": "T:System.Drawing.Bitmap", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 734, + "column": 16 + } + }, + { + "incidentId": "661a7efd-1d7f-4c56-a1c4-aa2da9f6ec31", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Debug.Print(ex.Message \u0026 vbNewLine \u0026 ex.StackTrace)", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "Debug.Print(ex.Message \u0026 vbNewLine \u0026 ex.StackTrace)", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 687, + "column": 20 + } + }, + { + "incidentId": "29a0eab7-e3a3-49f6-a9f7-34a2d013fae0", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Debug.Print(gcex.Message \u0026 vbNewLine \u0026 gcex.StackTrace)", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "Debug.Print(gcex.Message \u0026 vbNewLine \u0026 gcex.StackTrace)", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 634, + "column": 24 + } + }, + { + "incidentId": "ebdf5bc3-c43b-4a74-8c07-c19ee8f20882", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim girocode As Drawing.Bitmap = getPaycode(iban:=\u0022DE52301502000002091478\u0022, bic:=\u0022WELADED1KSD\u0022, name:=\u0022Sebastian Fuchs Bad und Heizung\u0022, amount:=payamount, purpose:=\u0022Rechnung \u0022 \u0026 Rm.InvoiceId)", + "protected": "T:System.Drawing.Bitmap" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "Dim girocode As Drawing.Bitmap = getPaycode(iban:=\u0022DE52301502000002091478\u0022, bic:=\u0022WELADED1KSD\u0022, name:=\u0022Sebastian Fuchs Bad und Heizung\u0022, amount:=payamount, purpose:=\u0022Rechnung \u0022 \u0026 Rm.InvoiceId)", + "protectedSnippet": "T:System.Drawing.Bitmap", + "label": "T:System.Drawing.Bitmap", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 629, + "column": 24 + } + }, + { + "incidentId": "8b689bf8-7827-4e22-bc24-0c4666f827c2", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Debug.Print(ex.Message \u0026 vbNewLine \u0026 ex.StackTrace)", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_pdf.vb", + "snippet": "Debug.Print(ex.Message \u0026 vbNewLine \u0026 ex.StackTrace)", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 483, + "column": 20 + } + }, + { + "incidentId": "1fd1efd7-79d6-4d48-b95e-653375db4295", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protected": "P:System.Data.SqlClient.SqlParameter.Value" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_intranet.vb", + "snippet": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protectedSnippet": "P:System.Data.SqlClient.SqlParameter.Value", + "label": "P:System.Data.SqlClient.SqlParameter.Value", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 435, + "column": 16 + } + }, + { + "incidentId": "a5d84006-407c-4f44-b0df-c2a0c562f812", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_intranet.vb", + "snippet": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 435, + "column": 16 + } + }, + { + "incidentId": "6cda1d95-0d65-4119-87ce-12c46f70a634", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_intranet.vb", + "snippet": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 435, + "column": 16 + } + }, + { + "incidentId": "16760198-e386-4d0e-8f59-77af1df6bbff", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protected": "P:System.Data.SqlClient.SqlParameter.Value" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_intranet.vb", + "snippet": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protectedSnippet": "P:System.Data.SqlClient.SqlParameter.Value", + "label": "P:System.Data.SqlClient.SqlParameter.Value", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 221, + "column": 16 + } + }, + { + "incidentId": "603642fa-682d-41a7-bb3a-91b804ba7a78", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_intranet.vb", + "snippet": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 221, + "column": 16 + } + }, + { + "incidentId": "d92db660-851d-4dd8-b59f-da44b4b5cead", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_intranet.vb", + "snippet": "pl.Add(New SqlClient.SqlParameter(\u0022@file\u0022, dbType:=SqlDbType.VarBinary) With {.Value = ba})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 221, + "column": 16 + } + }, + { + "incidentId": "f1fe3adc-6abe-4352-984b-51a1b1e5c8bd", + "ruleId": "Api.0002", + "description": "WebRequest, HttpWebRequest, ServicePoint, and WebClient are obsolete. Use HttpClient instead. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim wqrequest As Net.HttpWebRequest = Net.WebRequest.Create(turib.ToString)", + "protected": "M:System.Net.WebRequest.Create(System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_widgets.vb", + "snippet": "Dim wqrequest As Net.HttpWebRequest = Net.WebRequest.Create(turib.ToString)", + "protectedSnippet": "M:System.Net.WebRequest.Create(System.String)", + "label": "M:System.Net.WebRequest.Create(System.String)", + "links": [ + { + "title": "API documentation", + "url": "https://aka.ms/dotnet-warnings/SYSLIB0014", + "isCustom": false + } + ], + "line": 318, + "column": 24 + } + }, + { + "incidentId": "11beb03f-6027-4de8-8eec-538589d73fc9", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(\u0022/\u0022) \u0026 \u0022intranet/\u0022, authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName \u0026 \u0022.png\u0022)", + "protected": "T:System.Drawing.Imaging.ImageFormat" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_widgets.vb", + "snippet": "Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(\u0022/\u0022) \u0026 \u0022intranet/\u0022, authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName \u0026 \u0022.png\u0022)", + "protectedSnippet": "T:System.Drawing.Imaging.ImageFormat", + "label": "T:System.Drawing.Imaging.ImageFormat", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 43, + "column": 28 + } + }, + { + "incidentId": "0d4d00bf-d534-4581-aded-085643d7578f", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(\u0022/\u0022) \u0026 \u0022intranet/\u0022, authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName \u0026 \u0022.png\u0022)", + "protected": "T:System.Drawing.Imaging.ImageFormat" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_widgets.vb", + "snippet": "Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(\u0022/\u0022) \u0026 \u0022intranet/\u0022, authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName \u0026 \u0022.png\u0022)", + "protectedSnippet": "T:System.Drawing.Imaging.ImageFormat", + "label": "T:System.Drawing.Imaging.ImageFormat", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 43, + "column": 28 + } + }, + { + "incidentId": "cc64ff67-6ec9-44ac-946a-e75f1b60832e", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(\u0022/\u0022) \u0026 \u0022intranet/\u0022, authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName \u0026 \u0022.png\u0022)", + "protected": "P:System.Drawing.Imaging.ImageFormat.Png" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_fds_widgets.vb", + "snippet": "Return Await ImgAsync(img_b64:=(Await Fuchs_WDG_OneWDG(wdg_dt.FirstRow(), Ctrl.StdParamlist(), constring:=Ctrl.Intranet.Intranet__SQLConnectionString, server_path:=Ctrl.Request.Url.BaseUrl.AppendIf(\u0022/\u0022) \u0026 \u0022intranet/\u0022, authlogin:=Ctrl.UserIdent.useraccount_id)).Item(ShortName), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=ShortName \u0026 \u0022.png\u0022)", + "protectedSnippet": "P:System.Drawing.Imaging.ImageFormat.Png", + "label": "P:System.Drawing.Imaging.ImageFormat.Png", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 43, + "column": 28 + } + }, + { + "incidentId": "f9cab823-a1ae-4c1e-ad39-58982b4d8959", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 286, + "column": 16 + } + }, + { + "incidentId": "402a103f-d0ba-4168-8154-6278ce73429c", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "line": 286, + "column": 16 + } + }, + { + "incidentId": "9501e772-6ecf-458e-9bc9-92e63f60eedb", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 278, + "column": 28 + } + }, + { + "incidentId": "c8894ded-3e2d-4650-852f-074efa98aaf7", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "line": 278, + "column": 28 + } + }, + { + "incidentId": "28a109b7-cb56-4e9a-af88-910652209015", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 274, + "column": 32 + } + }, + { + "incidentId": "aaa76fe1-1112-4ef8-9a9d-0d0a87181609", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "line": 274, + "column": 32 + } + }, + { + "incidentId": "4896d90f-78e1-414e-a9b7-e11ec7d06b6d", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentEncoding" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "label": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "line": 271, + "column": 36 + } + }, + { + "incidentId": "68c6ce26-01a6-4c5c-8483-18bee2845b42", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentType" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentType", + "label": "P:System.Web.Mvc.ContentResult.ContentType", + "line": 271, + "column": 36 + } + }, + { + "incidentId": "85e2f97a-7ed4-46fb-8fd3-570b7994754d", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.Content" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.Content", + "label": "P:System.Web.Mvc.ContentResult.Content", + "line": 271, + "column": 36 + } + }, + { + "incidentId": "cadbc179-77eb-4a15-9938-cc92eb7652d6", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ContentResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ContentResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "T:System.Web.Mvc.ContentResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "T:System.Web.Mvc.ContentResult", + "label": "T:System.Web.Mvc.ContentResult", + "line": 271, + "column": 36 + } + }, + { + "incidentId": "d6f4d74b-c472-41e8-9cbb-60e344358729", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "M:System.Web.Mvc.ContentResult.#ctor" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "M:System.Web.Mvc.ContentResult.#ctor", + "label": "M:System.Web.Mvc.ContentResult.#ctor", + "line": 271, + "column": 36 + } + }, + { + "incidentId": "c45ec931-a620-4fed-bff4-21ccce7d6403", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 253, + "column": 36 + } + }, + { + "incidentId": "a5a2b3e5-1745-45ee-8a27-15993ea602a6", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "line": 253, + "column": 36 + } + }, + { + "incidentId": "35d25e07-8ff1-475d-a1cd-9e9041389a4c", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 221, + "column": 28 + } + }, + { + "incidentId": "45816a3b-0ba3-4f84-92dd-0d1262de758a", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "line": 221, + "column": 28 + } + }, + { + "incidentId": "8222e900-0059-4b28-99d6-78b561362578", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.FileContentResult(chart, \u0022image/png\u0022) With {.FileDownloadName = report.Replace(\u0022 \u0022, \u0022_\u0022) \u0026 \u0022_\u0022 \u0026 Now().ToString(\u0022yyyyMMdd_HHmm\u0022) \u0026 \u0022.png\u0022}", + "protected": "P:System.Web.Mvc.FileResult.FileDownloadName" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.FileContentResult(chart, \u0022image/png\u0022) With {.FileDownloadName = report.Replace(\u0022 \u0022, \u0022_\u0022) \u0026 \u0022_\u0022 \u0026 Now().ToString(\u0022yyyyMMdd_HHmm\u0022) \u0026 \u0022.png\u0022}", + "protectedSnippet": "P:System.Web.Mvc.FileResult.FileDownloadName", + "label": "P:System.Web.Mvc.FileResult.FileDownloadName", + "line": 219, + "column": 28 + } + }, + { + "incidentId": "7f60e582-4e38-41bc-8450-de1115a29fa3", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.FileContentResult(chart, \u0022image/png\u0022) With {.FileDownloadName = report.Replace(\u0022 \u0022, \u0022_\u0022) \u0026 \u0022_\u0022 \u0026 Now().ToString(\u0022yyyyMMdd_HHmm\u0022) \u0026 \u0022.png\u0022}", + "protected": "T:System.Web.Mvc.FileContentResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.FileContentResult(chart, \u0022image/png\u0022) With {.FileDownloadName = report.Replace(\u0022 \u0022, \u0022_\u0022) \u0026 \u0022_\u0022 \u0026 Now().ToString(\u0022yyyyMMdd_HHmm\u0022) \u0026 \u0022.png\u0022}", + "protectedSnippet": "T:System.Web.Mvc.FileContentResult", + "label": "T:System.Web.Mvc.FileContentResult", + "line": 219, + "column": 28 + } + }, + { + "incidentId": "72b483c4-b2e0-4392-aae8-d61f6e488a02", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.FileContentResult(chart, \u0022image/png\u0022) With {.FileDownloadName = report.Replace(\u0022 \u0022, \u0022_\u0022) \u0026 \u0022_\u0022 \u0026 Now().ToString(\u0022yyyyMMdd_HHmm\u0022) \u0026 \u0022.png\u0022}", + "protected": "M:System.Web.Mvc.FileContentResult.#ctor(System.Byte[],System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.FileContentResult(chart, \u0022image/png\u0022) With {.FileDownloadName = report.Replace(\u0022 \u0022, \u0022_\u0022) \u0026 \u0022_\u0022 \u0026 Now().ToString(\u0022yyyyMMdd_HHmm\u0022) \u0026 \u0022.png\u0022}", + "protectedSnippet": "M:System.Web.Mvc.FileContentResult.#ctor(System.Byte[],System.String)", + "label": "M:System.Web.Mvc.FileContentResult.#ctor(System.Byte[],System.String)", + "line": 219, + "column": 28 + } + }, + { + "incidentId": "72242b26-d23a-4bc3-b128-deba70f2557d", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 214, + "column": 28 + } + }, + { + "incidentId": "6920cb8d-713e-47a3-aeb9-ed2e463e8571", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "line": 214, + "column": 28 + } + }, + { + "incidentId": "5e8b5d87-9295-46a1-9884-5b16ebbb86cf", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentEncoding" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "label": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "line": 210, + "column": 32 + } + }, + { + "incidentId": "69823e29-df51-4e84-8b82-c8dfd293cd59", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentType" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentType", + "label": "P:System.Web.Mvc.ContentResult.ContentType", + "line": 210, + "column": 32 + } + }, + { + "incidentId": "cd0ec350-f44a-4208-91cc-47a709d6b92a", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.Content" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.Content", + "label": "P:System.Web.Mvc.ContentResult.Content", + "line": 210, + "column": 32 + } + }, + { + "incidentId": "896eb486-900d-45f6-95a7-52536d13b79e", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ContentResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ContentResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "T:System.Web.Mvc.ContentResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "T:System.Web.Mvc.ContentResult", + "label": "T:System.Web.Mvc.ContentResult", + "line": 210, + "column": 32 + } + }, + { + "incidentId": "58de5057-07fa-4d4c-ad08-cd051e5a91fc", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "M:System.Web.Mvc.ContentResult.#ctor" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp.toString(destination:=ocms_visualization.destinationTypes.web), .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "M:System.Web.Mvc.ContentResult.#ctor", + "label": "M:System.Web.Mvc.ContentResult.#ctor", + "line": 210, + "column": 32 + } + }, + { + "incidentId": "2a3e44c2-26f7-471a-8ab4-5e4e976f0fa1", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 187, + "column": 32 + } + }, + { + "incidentId": "76adfc7d-8b07-4497-a00e-64081e4bae90", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "line": 187, + "column": 32 + } + }, + { + "incidentId": "0be1dd48-8296-4418-b62c-779bf5d6a996", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 171, + "column": 28 + } + }, + { + "incidentId": "e905c9e1-635c-40f5-955b-22b054b74729", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError, \u0022Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten.\u0022)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "line": 171, + "column": 28 + } + }, + { + "incidentId": "4fd1037c-2616-41f5-b0d2-4dbc0daddbc7", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentEncoding" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "label": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "line": 167, + "column": 32 + } + }, + { + "incidentId": "bea5b043-abd9-4445-a1c8-a949a333660a", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentType" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentType", + "label": "P:System.Web.Mvc.ContentResult.ContentType", + "line": 167, + "column": 32 + } + }, + { + "incidentId": "fe30377e-6940-4a8c-b525-7f382b5774f1", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.Content" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.Content", + "label": "P:System.Web.Mvc.ContentResult.Content", + "line": 167, + "column": 32 + } + }, + { + "incidentId": "2a79b2c7-a957-4a37-88b7-01ada996e6f9", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ContentResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ContentResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "T:System.Web.Mvc.ContentResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "T:System.Web.Mvc.ContentResult", + "label": "T:System.Web.Mvc.ContentResult", + "line": 167, + "column": 32 + } + }, + { + "incidentId": "1717d725-a642-4e39-ba0d-b71f8d9cacfc", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protected": "M:System.Web.Mvc.ContentResult.#ctor" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.ContentResult() With {.Content = hp, .ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "M:System.Web.Mvc.ContentResult.#ctor", + "label": "M:System.Web.Mvc.ContentResult.#ctor", + "line": 167, + "column": 32 + } + }, + { + "incidentId": "db330d6e-6bf1-4ece-8e4a-0790015520fb", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 160, + "column": 32 + } + }, + { + "incidentId": "133589ba-9245-48e9-9811-edf4ec26aaa9", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Return New Mvc.HttpStatusCodeResult(Net.HttpStatusCode.Ambiguous, \u0022No report defined\u0022)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String)", + "line": 160, + "column": 32 + } + }, + { + "incidentId": "735c923c-e11e-4185-96e6-51290e1cf7ae", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim Catalog As SQLDataTable = Await getSQLDatatable_async(\u0022EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;\u0022, ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@report_name\u0022, report), New SqlClient.SqlParameter(\u0022@authuser\u0022, ctrl.UserAccountID)})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Dim Catalog As SQLDataTable = Await getSQLDatatable_async(\u0022EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;\u0022, ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@report_name\u0022, report), New SqlClient.SqlParameter(\u0022@authuser\u0022, ctrl.UserAccountID)})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 142, + "column": 12 + } + }, + { + "incidentId": "713beeb8-5839-42a2-b899-208e3cd278e4", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim Catalog As SQLDataTable = Await getSQLDatatable_async(\u0022EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;\u0022, ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@report_name\u0022, report), New SqlClient.SqlParameter(\u0022@authuser\u0022, ctrl.UserAccountID)})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\Areas\\Intranet\\code\\fuchs_reports.vb", + "snippet": "Dim Catalog As SQLDataTable = Await getSQLDatatable_async(\u0022EXECUTE [dbo].[fds__admin_getReportCatalog] @report_name, @authuser;\u0022, ctrl.Intranet.Intranet__SQLConnectionString, SqlParameterList:=New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@report_name\u0022, report), New SqlClient.SqlParameter(\u0022@authuser\u0022, ctrl.UserAccountID)})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 142, + "column": 12 + } + }, + { + "incidentId": "21517295-9651-4a68-bcc8-7ab15d228126", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022OCMS_EmailSettings\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022OCMS_EmailSettings\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 105, + "column": 16 + } + }, + { + "incidentId": "eb3b7c49-7f08-4889-b756-ac2349398c21", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022FDS_Intranet_DebugState\u0022),Boolean)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022FDS_Intranet_DebugState\u0022),Boolean)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 94, + "column": 16 + } + }, + { + "incidentId": "c2864285-58f0-4c54-8685-ca42e5bbf5d2", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022FDS_EmailSettings\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022FDS_EmailSettings\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 85, + "column": 16 + } + }, + { + "incidentId": "ce1e3f10-9c2b-4cc6-8b44-000f6321a221", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022EmailTestAddresses\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022EmailTestAddresses\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 73, + "column": 16 + } + }, + { + "incidentId": "95c5160b-e7e8-4357-af7c-0736782909d7", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022EmailSettings\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022EmailSettings\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 64, + "column": 16 + } + }, + { + "incidentId": "2a418e6e-8b5d-4db2-87e3-b7bb367531a2", + "ruleId": "Api.0002", + "description": "Breaking change: New TimeSpan.From*() overloads that take integers ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Regex.IsMatch(email,\r\n \u0022^(?(\u0022\u0022)(\u0022\u0022.\u002B?(?\u003C!\\\\)\u0022\u0022@)|(([0-9a-z]((\\.(?!\\.))|[-!#\\$%\u0026\u0027\\*\\\u002B/=\\?\\^\u0060\\{\\}\\|~\\w])*)(?\u003C=[0-9a-z])@))\u0022 \u002B\r\n \u0022(?(\\[)(\\[(\\d{1,3}\\.){3}\\d{1,3}\\])|(([0-9a-z][-0-9a-z]*[0-9a-z]*\\.)\u002B[a-z0-9][\\-a-z0-9]{0,22}[a-z0-9]))$\u0022,\r\n RegexOptions.IgnoreCase, TimeSpan.FromMilliseconds(250))", + "protected": "M:System.TimeSpan.FromMilliseconds(System.Double)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Return Regex.IsMatch(email,\r\n \u0022^(?(\u0022\u0022)(\u0022\u0022.\u002B?(?\u003C!\\\\)\u0022\u0022@)|(([0-9a-z]((\\.(?!\\.))|[-!#\\$%\u0026\u0027\\*\\\u002B/=\\?\\^\u0060\\{\\}\\|~\\w])*)(?\u003C=[0-9a-z])@))\u0022 \u002B\r\n \u0022(?(\\[)(\\[(\\d{1,3}\\.){3}\\d{1,3}\\])|(([0-9a-z][-0-9a-z]*[0-9a-z]*\\.)\u002B[a-z0-9][\\-a-z0-9]{0,22}[a-z0-9]))$\u0022,\r\n RegexOptions.IgnoreCase, TimeSpan.FromMilliseconds(250))", + "protectedSnippet": "M:System.TimeSpan.FromMilliseconds(System.Double)", + "label": "M:System.TimeSpan.FromMilliseconds(System.Double)", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/core-libraries/9.0/timespan-from-overloads.md", + "isCustom": false + } + ], + "line": 433, + "column": 12 + } + }, + { + "incidentId": "a8055deb-c0b0-401f-b6c6-89e29ffc561e", + "ruleId": "Api.0002", + "description": "Breaking change: New TimeSpan.From*() overloads that take integers ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "email = Regex.Replace(email, \u0022(@)(.\u002B)$\u0022, DomainMapper, RegexOptions.None, TimeSpan.FromMilliseconds(200))", + "protected": "M:System.TimeSpan.FromMilliseconds(System.Double)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "email = Regex.Replace(email, \u0022(@)(.\u002B)$\u0022, DomainMapper, RegexOptions.None, TimeSpan.FromMilliseconds(200))", + "protectedSnippet": "M:System.TimeSpan.FromMilliseconds(System.Double)", + "label": "M:System.TimeSpan.FromMilliseconds(System.Double)", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/core-libraries/9.0/timespan-from-overloads.md", + "isCustom": false + } + ], + "line": 426, + "column": 12 + } + }, + { + "incidentId": "8192107a-991e-434d-9d41-ef4a58d19e1d", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Result = New OCMS.ExceptionResult(\u0022Die Email konnte nicht gesendet werden.\u0022 \u0026 vbNewLine \u0026 ErrorMessage.ToArray.join(vbNewLine), OCMS_StatusCodes.exception)", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Result = New OCMS.ExceptionResult(\u0022Die Email konnte nicht gesendet werden.\u0022 \u0026 vbNewLine \u0026 ErrorMessage.ToArray.join(vbNewLine), OCMS_StatusCodes.exception)", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 295, + "column": 12 + } + }, + { + "incidentId": "e3f8dd84-b2b8-4e3b-bfb6-7cc33ebfd862", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Result = New OCMS.ExceptionResult(\u0022Die Email konnte nicht gesendet werden.\u0022 \u0026 vbNewLine \u0026 ErrorMessage.ToArray.join(vbNewLine), OCMS_StatusCodes.exception)", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Result = New OCMS.ExceptionResult(\u0022Die Email konnte nicht gesendet werden.\u0022 \u0026 vbNewLine \u0026 ErrorMessage.ToArray.join(vbNewLine), OCMS_StatusCodes.exception)", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 295, + "column": 12 + } + }, + { + "incidentId": "48b9e2f5-777e-4876-bc47-cbb456190793", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Result = New ExceptionResult(statusDescription:=\u0022Die Email konnte nicht gesendet werden.\u0022 \u0026 If(ErrorMessage.Count \u003E 0, vbNewLine \u0026 ErrorMessage.ToArray.join(vbNewLine), \u0022\u0022), InternalCode:=OCMS_StatusCodes.exception)", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Result = New ExceptionResult(statusDescription:=\u0022Die Email konnte nicht gesendet werden.\u0022 \u0026 If(ErrorMessage.Count \u003E 0, vbNewLine \u0026 ErrorMessage.ToArray.join(vbNewLine), \u0022\u0022), InternalCode:=OCMS_StatusCodes.exception)", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 183, + "column": 12 + } + }, + { + "incidentId": "5790ff56-c759-4aed-a6a4-05a92e109d0e", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Result = New ExceptionResult(statusDescription:=\u0022Die Email konnte nicht gesendet werden.\u0022 \u0026 If(ErrorMessage.Count \u003E 0, vbNewLine \u0026 ErrorMessage.ToArray.join(vbNewLine), \u0022\u0022), InternalCode:=OCMS_StatusCodes.exception)", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Result = New ExceptionResult(statusDescription:=\u0022Die Email konnte nicht gesendet werden.\u0022 \u0026 If(ErrorMessage.Count \u003E 0, vbNewLine \u0026 ErrorMessage.ToArray.join(vbNewLine), \u0022\u0022), InternalCode:=OCMS_StatusCodes.exception)", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 183, + "column": 12 + } + }, + { + "incidentId": "9b3a33aa-65bd-4e90-9f52-e1ff96de792c", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Console.WriteLine(\u0022Errors: \u0022 \u0026 ErrorMessage.ToArray.join(vbNewLine))", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Console.WriteLine(\u0022Errors: \u0022 \u0026 ErrorMessage.ToArray.join(vbNewLine))", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 178, + "column": 12 + } + }, + { + "incidentId": "825aea05-972f-4118-a9cd-aac1ef27257f", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 169, + "column": 20 + } + }, + { + "incidentId": "aae716c1-a12d-4fd6-bea2-aae5f7083b7c", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Result = New HttpStatusCodeResult(Net.HttpStatusCode.InternalServerError)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode)", + "line": 169, + "column": 20 + } + }, + { + "incidentId": "42d49f2c-f225-417b-b6c3-e329d876763e", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.HttpStatusCodeResult is no longer supported. Use Microsoft.AspNetCore.Mvc.StatusCodeResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK)", + "protected": "T:System.Web.Mvc.HttpStatusCodeResult" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK)", + "protectedSnippet": "T:System.Web.Mvc.HttpStatusCodeResult", + "label": "T:System.Web.Mvc.HttpStatusCodeResult", + "line": 166, + "column": 20 + } + }, + { + "incidentId": "cdd6ad05-d95b-4022-b996-e698eeed66a4", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK)", + "protected": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Result = New HttpStatusCodeResult(Net.HttpStatusCode.OK)", + "protectedSnippet": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode)", + "label": "M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode)", + "line": 166, + "column": 20 + } + }, + { + "incidentId": "abc94eb4-357e-4c3e-9bee-27b7128c1453", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "body.append(New SOC(\u0022p\u0022).rwText(\u0022Hallo Sebastian!\u0022 \u0026 vbNewLine \u0026 Name \u0026 \u0022 hat Interesse Teil des Teams zu werden.\u0022 \u0026 vbNewLine \u0026 \u0022Hier sind die Infos:\u0022))", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "body.append(New SOC(\u0022p\u0022).rwText(\u0022Hallo Sebastian!\u0022 \u0026 vbNewLine \u0026 Name \u0026 \u0022 hat Interesse Teil des Teams zu werden.\u0022 \u0026 vbNewLine \u0026 \u0022Hier sind die Infos:\u0022))", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 65, + "column": 8 + } + }, + { + "incidentId": "6dca1bd0-7b99-460f-8b61-2b31ce7122d9", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "body.append(New SOC(\u0022p\u0022).rwText(\u0022Hallo Sebastian!\u0022 \u0026 vbNewLine \u0026 Name \u0026 \u0022 hat Interesse Teil des Teams zu werden.\u0022 \u0026 vbNewLine \u0026 \u0022Hier sind die Infos:\u0022))", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "body.append(New SOC(\u0022p\u0022).rwText(\u0022Hallo Sebastian!\u0022 \u0026 vbNewLine \u0026 Name \u0026 \u0022 hat Interesse Teil des Teams zu werden.\u0022 \u0026 vbNewLine \u0026 \u0022Hier sind die Infos:\u0022))", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 65, + "column": 8 + } + }, + { + "incidentId": "c562ad35-775e-4804-87e6-2e6e3d00e32e", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Sub New(fle As HttpPostedFileWrapper)\r\n Using memoryStream = New IO.MemoryStream()\r\n fle.InputStream.Position = 0\r\n fle.InputStream.CopyTo(memoryStream)\r\n\r\n Me.content = memoryStream.ToArray()\r\n End Using\r\n Me.filename = fle.FileName\r\n\r\n End Sub", + "protected": "T:System.Web.HttpPostedFileWrapper" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Public Sub New(fle As HttpPostedFileWrapper)\r\n Using memoryStream = New IO.MemoryStream()\r\n fle.InputStream.Position = 0\r\n fle.InputStream.CopyTo(memoryStream)\r\n\r\n Me.content = memoryStream.ToArray()\r\n End Using\r\n Me.filename = fle.FileName\r\n\r\n End Sub", + "protectedSnippet": "T:System.Web.HttpPostedFileWrapper", + "label": "T:System.Web.HttpPostedFileWrapper", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 24, + "column": 4 + } + }, + { + "incidentId": "5c113c6f-442c-4a5d-b2f4-6abf3d91bd19", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me.filename = fle.FileName", + "protected": "P:System.Web.HttpPostedFileWrapper.FileName" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Me.filename = fle.FileName", + "protectedSnippet": "P:System.Web.HttpPostedFileWrapper.FileName", + "label": "P:System.Web.HttpPostedFileWrapper.FileName", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 31, + "column": 8 + } + }, + { + "incidentId": "a5f60e16-cda2-4969-80f2-04770f905410", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle.InputStream.CopyTo(memoryStream)", + "protected": "P:System.Web.HttpPostedFileWrapper.InputStream" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "fle.InputStream.CopyTo(memoryStream)", + "protectedSnippet": "P:System.Web.HttpPostedFileWrapper.InputStream", + "label": "P:System.Web.HttpPostedFileWrapper.InputStream", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 27, + "column": 12 + } + }, + { + "incidentId": "77484fc1-fa7b-4f7b-9613-7570e9fbb7d8", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle.InputStream.Position = 0", + "protected": "P:System.Web.HttpPostedFileWrapper.InputStream" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "fle.InputStream.Position = 0", + "protectedSnippet": "P:System.Web.HttpPostedFileWrapper.InputStream", + "label": "P:System.Web.HttpPostedFileWrapper.InputStream", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 26, + "column": 12 + } + }, + { + "incidentId": "66eeb4a2-0051-4d87-9fe1-d2d60b990acb", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Sub New(fle As HttpPostedFile)\r\n Using memoryStream = New IO.MemoryStream()\r\n fle.InputStream.Position = 0\r\n fle.InputStream.CopyTo(memoryStream)\r\n\r\n Me.content = memoryStream.ToArray()\r\n End Using\r\n Me.filename = fle.FileName\r\n\r\n End Sub", + "protected": "T:System.Web.HttpPostedFile" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Public Sub New(fle As HttpPostedFile)\r\n Using memoryStream = New IO.MemoryStream()\r\n fle.InputStream.Position = 0\r\n fle.InputStream.CopyTo(memoryStream)\r\n\r\n Me.content = memoryStream.ToArray()\r\n End Using\r\n Me.filename = fle.FileName\r\n\r\n End Sub", + "protectedSnippet": "T:System.Web.HttpPostedFile", + "label": "T:System.Web.HttpPostedFile", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 14, + "column": 4 + } + }, + { + "incidentId": "5a9f2f6a-f73a-461f-9e7c-a368de1fcf66", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me.filename = fle.FileName", + "protected": "P:System.Web.HttpPostedFile.FileName" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Me.filename = fle.FileName", + "protectedSnippet": "P:System.Web.HttpPostedFile.FileName", + "label": "P:System.Web.HttpPostedFile.FileName", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 21, + "column": 8 + } + }, + { + "incidentId": "c39b01d8-9360-4b13-ba6c-faaa5ef50559", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle.InputStream.CopyTo(memoryStream)", + "protected": "P:System.Web.HttpPostedFile.InputStream" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "fle.InputStream.CopyTo(memoryStream)", + "protectedSnippet": "P:System.Web.HttpPostedFile.InputStream", + "label": "P:System.Web.HttpPostedFile.InputStream", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 17, + "column": 12 + } + }, + { + "incidentId": "db12408c-cd61-4a47-abf0-d1a350d2dc4e", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle.InputStream.Position = 0", + "protected": "P:System.Web.HttpPostedFile.InputStream" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "fle.InputStream.Position = 0", + "protectedSnippet": "P:System.Web.HttpPostedFile.InputStream", + "label": "P:System.Web.HttpPostedFile.InputStream", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 16, + "column": 12 + } + }, + { + "incidentId": "0a9d6062-a1d7-4ec0-b3d2-88f8abf433f2", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Sub New(fle As HttpPostedFileWrapper)\r\n Using memoryStream = New IO.MemoryStream()\r\n fle.InputStream.Position = 0\r\n fle.InputStream.CopyTo(memoryStream)\r\n\r\n Me.content = memoryStream.ToArray()\r\n End Using\r\n Me.filename = fle.FileName\r\n\r\n End Sub", + "protected": "T:System.Web.HttpPostedFileWrapper" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Public Sub New(fle As HttpPostedFileWrapper)\r\n Using memoryStream = New IO.MemoryStream()\r\n fle.InputStream.Position = 0\r\n fle.InputStream.CopyTo(memoryStream)\r\n\r\n Me.content = memoryStream.ToArray()\r\n End Using\r\n Me.filename = fle.FileName\r\n\r\n End Sub", + "protectedSnippet": "T:System.Web.HttpPostedFileWrapper", + "label": "T:System.Web.HttpPostedFileWrapper", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 24, + "column": 4 + } + }, + { + "incidentId": "0ecc48b6-edfa-4da7-9f9f-845a6d4b9a81", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me.filename = fle.FileName", + "protected": "P:System.Web.HttpPostedFileWrapper.FileName" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Me.filename = fle.FileName", + "protectedSnippet": "P:System.Web.HttpPostedFileWrapper.FileName", + "label": "P:System.Web.HttpPostedFileWrapper.FileName", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 31, + "column": 8 + } + }, + { + "incidentId": "a2042901-e5f4-43dd-95af-31b65d5cf20f", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle.InputStream.CopyTo(memoryStream)", + "protected": "P:System.Web.HttpPostedFileWrapper.InputStream" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "fle.InputStream.CopyTo(memoryStream)", + "protectedSnippet": "P:System.Web.HttpPostedFileWrapper.InputStream", + "label": "P:System.Web.HttpPostedFileWrapper.InputStream", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 27, + "column": 12 + } + }, + { + "incidentId": "14bbf138-fa01-4ed3-a536-610185c5e5f1", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle.InputStream.Position = 0", + "protected": "P:System.Web.HttpPostedFileWrapper.InputStream" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "fle.InputStream.Position = 0", + "protectedSnippet": "P:System.Web.HttpPostedFileWrapper.InputStream", + "label": "P:System.Web.HttpPostedFileWrapper.InputStream", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 26, + "column": 12 + } + }, + { + "incidentId": "398751cb-3bda-42f4-8bb7-693e7efef6d4", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Sub New(fle As HttpPostedFile)\r\n Using memoryStream = New IO.MemoryStream()\r\n fle.InputStream.Position = 0\r\n fle.InputStream.CopyTo(memoryStream)\r\n\r\n Me.content = memoryStream.ToArray()\r\n End Using\r\n Me.filename = fle.FileName\r\n\r\n End Sub", + "protected": "T:System.Web.HttpPostedFile" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Public Sub New(fle As HttpPostedFile)\r\n Using memoryStream = New IO.MemoryStream()\r\n fle.InputStream.Position = 0\r\n fle.InputStream.CopyTo(memoryStream)\r\n\r\n Me.content = memoryStream.ToArray()\r\n End Using\r\n Me.filename = fle.FileName\r\n\r\n End Sub", + "protectedSnippet": "T:System.Web.HttpPostedFile", + "label": "T:System.Web.HttpPostedFile", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 14, + "column": 4 + } + }, + { + "incidentId": "5356a64d-ea4a-4aa0-86b3-36d82856b1a5", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me.filename = fle.FileName", + "protected": "P:System.Web.HttpPostedFile.FileName" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "Me.filename = fle.FileName", + "protectedSnippet": "P:System.Web.HttpPostedFile.FileName", + "label": "P:System.Web.HttpPostedFile.FileName", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 21, + "column": 8 + } + }, + { + "incidentId": "023cd8ad-2036-497d-8701-07db7b79dbcf", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle.InputStream.CopyTo(memoryStream)", + "protected": "P:System.Web.HttpPostedFile.InputStream" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "fle.InputStream.CopyTo(memoryStream)", + "protectedSnippet": "P:System.Web.HttpPostedFile.InputStream", + "label": "P:System.Web.HttpPostedFile.InputStream", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 17, + "column": 12 + } + }, + { + "incidentId": "911f1573-9c0d-4035-9df3-3c19347da69d", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle.InputStream.Position = 0", + "protected": "P:System.Web.HttpPostedFile.InputStream" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_email.vb", + "snippet": "fle.InputStream.Position = 0", + "protectedSnippet": "P:System.Web.HttpPostedFile.InputStream", + "label": "P:System.Web.HttpPostedFile.InputStream", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 16, + "column": 12 + } + }, + { + "incidentId": "2d6710fd-dab2-4944-a992-ee1ac3c92dcb", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(\u0022EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;\u0022, SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session))}, tablenames:=New String() {\u0022groups\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(\u0022EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;\u0022, SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session))}, tablenames:=New String() {\u0022groups\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 84, + "column": 8 + } + }, + { + "incidentId": "5001602d-c3f1-46d4-8823-c159531770bc", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(\u0022EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;\u0022, SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session))}, tablenames:=New String() {\u0022groups\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(\u0022EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;\u0022, SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session))}, tablenames:=New String() {\u0022groups\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 84, + "column": 8 + } + }, + { + "incidentId": "a3b8734e-8e61-4904-adc5-bc7a8af27a16", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(\u0022EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;\u0022, SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session))}, tablenames:=New String() {\u0022groups\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(\u0022EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;\u0022, SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session))}, tablenames:=New String() {\u0022groups\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 84, + "column": 8 + } + }, + { + "incidentId": "b2e9434a-6cf9-474c-b59e-f82f83d253a0", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(\u0022EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;\u0022, SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session))}, tablenames:=New String() {\u0022groups\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As OCMS.SQLHandling.sql.SQLDataSet = Await OCMS.SQLHandling.getSQLDataSet_async(\u0022EXECUTE [dbo].[fuchs_planner_getSummary] @planner,@session;\u0022, SqlConnectionString:=SQLConnectionString(), New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session))}, tablenames:=New String() {\u0022groups\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 84, + "column": 8 + } + }, + { + "incidentId": "61a4df4a-b3ee-4437-b50b-e7a508cedf38", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Async Function sendSummary(ByVal Controller As Global.OCMS.ocms_ClientController, planner As String, session As String, files As HttpFileCollectionBase) As Threading.Tasks.Task(Of Boolean)\r\n\r\n Dim summary As PlannerSummary = Await getSummary(planner, session)\r\n Dim emailfiles As New List(Of EmailFile)\r\n For fli As Integer = 0 To files.Count - 1\r\n emailfiles.Add(New EmailFile(files(fli)))\r\n Next\r\n Return Await fuchs_email.SendEmail(Controller, summary.SummaryHtml, summary.cformdictionary(\u0022c_email\u0022), summary.cformdictionary(\u0022c_name\u0022), files:=emailfiles.ToArray)\r\n End Function", + "protected": "T:System.Web.HttpFileCollectionBase" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Public Async Function sendSummary(ByVal Controller As Global.OCMS.ocms_ClientController, planner As String, session As String, files As HttpFileCollectionBase) As Threading.Tasks.Task(Of Boolean)\r\n\r\n Dim summary As PlannerSummary = Await getSummary(planner, session)\r\n Dim emailfiles As New List(Of EmailFile)\r\n For fli As Integer = 0 To files.Count - 1\r\n emailfiles.Add(New EmailFile(files(fli)))\r\n Next\r\n Return Await fuchs_email.SendEmail(Controller, summary.SummaryHtml, summary.cformdictionary(\u0022c_email\u0022), summary.cformdictionary(\u0022c_name\u0022), files:=emailfiles.ToArray)\r\n End Function", + "protectedSnippet": "T:System.Web.HttpFileCollectionBase", + "label": "T:System.Web.HttpFileCollectionBase", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 60, + "column": 4 + } + }, + { + "incidentId": "b710c558-12ce-431c-9c4b-a42c9da5f943", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "emailfiles.Add(New EmailFile(files(fli)))", + "protected": "T:System.Web.HttpPostedFileBase" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "emailfiles.Add(New EmailFile(files(fli)))", + "protectedSnippet": "T:System.Web.HttpPostedFileBase", + "label": "T:System.Web.HttpPostedFileBase", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 65, + "column": 12 + } + }, + { + "incidentId": "2faa8d61-4911-4f29-a994-fc4aa2f7d4ff", + "ruleId": "Api.0002", + "description": "API is available in package Microsoft.AspNetCore.SystemWebAdapters, 1.4.0. Add package reference to Microsoft.AspNetCore.SystemWebAdapters, 1.4.0", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "emailfiles.Add(New EmailFile(files(fli)))", + "protected": "P:System.Web.HttpFileCollectionBase.Item(System.Int32)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "emailfiles.Add(New EmailFile(files(fli)))", + "protectedSnippet": "P:System.Web.HttpFileCollectionBase.Item(System.Int32)", + "label": "P:System.Web.HttpFileCollectionBase.Item(System.Int32)", + "properties": { + "PackageId": "Microsoft.AspNetCore.SystemWebAdapters", + "PackageNewVersion": "1.4.0" + }, + "line": 65, + "column": 12 + } + }, + { + "incidentId": "67184ffe-4673-4fb6-a601-f9334726ef63", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "For fli As Integer = 0 To files.Count - 1", + "protected": "P:System.Web.HttpFileCollectionBase.Count" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "For fli As Integer = 0 To files.Count - 1", + "protectedSnippet": "P:System.Web.HttpFileCollectionBase.Count", + "label": "P:System.Web.HttpFileCollectionBase.Count", + "line": 64, + "column": 8 + } + }, + { + "incidentId": "96f54d08-a37e-4784-8338-af773ecbb250", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 54, + "column": 12 + } + }, + { + "incidentId": "c2d006d3-edec-499a-bc73-7446843c95b9", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 54, + "column": 12 + } + }, + { + "incidentId": "a99710c9-02aa-4158-a707-983e850d257a", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 54, + "column": 12 + } + }, + { + "incidentId": "42a19cd5-b244-469c-92e8-bf9557fe42a0", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 54, + "column": 12 + } + }, + { + "incidentId": "cae2d5b8-b304-447b-8950-32a998f56795", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 54, + "column": 12 + } + }, + { + "incidentId": "a3fa3171-f552-4b58-97a5-017f93428ec7", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 54, + "column": 12 + } + }, + { + "incidentId": "0ef07abb-243c-496d-9d80-842b6cfca172", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 54, + "column": 12 + } + }, + { + "incidentId": "f4c73bb6-35fd-49c1-b729-9117a4fb9446", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "OCMS.SQLHandling.setSQLValue(\u0022EXECUTE [dbo].[fuchs_planner_submit] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 54, + "column": 12 + } + }, + { + "incidentId": "9050c439-2826-42e4-ad6a-8c50d8af8691", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 53, + "column": 8 + } + }, + { + "incidentId": "e13c6aec-00eb-469f-8634-53c673a60c37", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protected": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protectedSnippet": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "label": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 53, + "column": 8 + } + }, + { + "incidentId": "14106edd-772e-4562-9dc1-5314d5d45263", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 43, + "column": 12 + } + }, + { + "incidentId": "603880f1-c8f7-4a9f-98f1-82a759923f73", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 43, + "column": 12 + } + }, + { + "incidentId": "f202fd19-0ada-4e40-85c6-159c00e857d4", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 43, + "column": 12 + } + }, + { + "incidentId": "2887ee1c-9d84-4277-bb77-15640f013ca6", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 43, + "column": 12 + } + }, + { + "incidentId": "7156ef1f-c28f-41bd-85a6-b340826a84c3", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 43, + "column": 12 + } + }, + { + "incidentId": "8ef1c4df-9eb4-4c62-9aca-b831b4d01b79", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 43, + "column": 12 + } + }, + { + "incidentId": "7e3a8234-7339-42bb-8d7f-5303056aa636", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 43, + "column": 12 + } + }, + { + "incidentId": "2018b239-63c6-4bce-a2b9-1297d80def1e", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getPrev] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 43, + "column": 12 + } + }, + { + "incidentId": "adc08fc0-fb70-421c-a2f7-6ce8b011e131", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 42, + "column": 8 + } + }, + { + "incidentId": "e0b8f485-79c1-4810-b01c-1752674fa4ce", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protected": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protectedSnippet": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "label": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 42, + "column": 8 + } + }, + { + "incidentId": "709e8e06-8f19-4667-a7b2-66204e6cdf59", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 32, + "column": 12 + } + }, + { + "incidentId": "6c5a22b0-deb4-459b-ac93-cf81dced3fb3", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 32, + "column": 12 + } + }, + { + "incidentId": "1aab64ff-7183-4d77-b44b-c38f4cca70dd", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 32, + "column": 12 + } + }, + { + "incidentId": "a2907a85-b2fd-45f0-ae50-96315431e825", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 32, + "column": 12 + } + }, + { + "incidentId": "092e0218-3c32-4975-993f-20db72b3d89a", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 32, + "column": 12 + } + }, + { + "incidentId": "fd7e4713-3656-43e9-9496-a78d7b09a0d2", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 32, + "column": 12 + } + }, + { + "incidentId": "2f124647-db97-4955-9149-8e3a64176b67", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 32, + "column": 12 + } + }, + { + "incidentId": "9f234489-400e-4ced-b140-dae4ce9d3535", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Dim dset As DataSet = OCMS.SQLHandling.getSQLDataSet(\u0022EXECUTE [dbo].[fuchs_planner_getNext] @planner,@session,@group_code,@values;\u0022, sqlcon, New List(Of SqlClient.SqlParameter) From {New SqlClient.SqlParameter(\u0022@planner\u0022, planner), New SqlClient.SqlParameter(\u0022@session\u0022, If(session = \u0022\u0022, DBNull.Value, session)), New SqlClient.SqlParameter(\u0022@group_code\u0022, group_code), New SqlClient.SqlParameter(\u0022@values\u0022, values_string)}, tablenames:=New String() {\u0022group\u0022, \u0022options\u0022})", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 32, + "column": 12 + } + }, + { + "incidentId": "9d3b02f6-f73b-49e7-8ede-a4dc0fe4266b", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 31, + "column": 8 + } + }, + { + "incidentId": "b8b8988a-4252-4795-8a5f-a4d9601b073e", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protected": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protectedSnippet": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "label": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 31, + "column": 8 + } + }, + { + "incidentId": "bbfb4486-68f5-4ad1-b726-2bb6e23a3220", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Friend Function SqlCon() As SqlClient.SqlConnection\r\n Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)\r\n End Function", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Friend Function SqlCon() As SqlClient.SqlConnection\r\n Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)\r\n End Function", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 7, + "column": 4 + } + }, + { + "incidentId": "2889e46e-2d58-476b-b95a-07c572d5a211", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protected": "T:System.Configuration.ConfigurationManager" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "T:System.Configuration.ConfigurationManager", + "label": "T:System.Configuration.ConfigurationManager", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "c243cb69-ecdc-4fc6-9c3c-1f5e0441902e", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protected": "T:System.Configuration.ConnectionStringSettingsCollection" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettingsCollection", + "label": "T:System.Configuration.ConnectionStringSettingsCollection", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "687f6075-b46b-4d77-9ce2-f0aaad7088c1", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protected": "P:System.Configuration.ConfigurationManager.ConnectionStrings" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "label": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "f2ee0023-8d89-4689-827a-c56ab136a23a", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protected": "T:System.Configuration.ConnectionStringSettings" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettings", + "label": "T:System.Configuration.ConnectionStringSettings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "08bfbfaf-4bcc-4c2a-bc83-255ae4cf178c", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protected": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "label": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "4ad889eb-30ab-490c-af84-d2427d49fcde", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protected": "P:System.Configuration.ConnectionStringSettings.ConnectionString" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "label": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "5d44dbda-d2ce-497e-85c5-b841130fc53e", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "ee1f00f5-4381-4adc-90fe-57004471dfd1", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protected": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "label": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "615b0f6f-8aaa-4bf7-911f-4807045492b2", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protected": "T:System.Configuration.ConfigurationManager" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "T:System.Configuration.ConfigurationManager", + "label": "T:System.Configuration.ConfigurationManager", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "d99ba7a4-0915-4aa9-bd8b-7da548f69c01", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protected": "T:System.Configuration.ConnectionStringSettingsCollection" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettingsCollection", + "label": "T:System.Configuration.ConnectionStringSettingsCollection", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "bf2c5bf4-e206-42a2-bdc7-07343fbac3eb", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protected": "P:System.Configuration.ConfigurationManager.ConnectionStrings" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "label": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "02110f75-a8dd-4993-919e-9fc978a57f7a", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protected": "T:System.Configuration.ConnectionStringSettings" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettings", + "label": "T:System.Configuration.ConnectionStringSettings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "b4b5a059-ae10-4bb6-b078-fe5bcdaf59c4", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protected": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "label": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "3b80e506-8bf4-4b74-9f88-8018fd47a101", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protected": "P:System.Configuration.ConnectionStringSettings.ConnectionString" + }, + "kind": "File", + "path": "Fuchs\\code\\fuchs_planner.vb", + "snippet": "Return ConfigurationManager.ConnectionStrings(\u0022ocms_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "label": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "e5551701-79c6-497f-a657-a1a275fa77db", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Sub RegisterRoutes(ByVal routes As RouteCollection)\r\n routes.IgnoreRoute(\u0022{resource}.axd/{*pathInfo}\u0022)\r\n\r\n routes.MapRoute(\r\n name:=\u0022Sitemap\u0022,\r\n url:=\u0022sitemap.xml\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022SiteMap\u0022}\r\n )\r\n routes.MapRoute(\r\n name:=\u0022html\u0022,\r\n url:=\u0022*.html\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022html\u0022}\r\n )\r\n routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )\r\n routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )\r\n \u0027routes.MapRoute(\r\n \u0027 name:=\u0022FuchsImg\u0022,\r\n \u0027 url:=\u0022img/{ident}\u0022,\r\n \u0027 defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Img\u0022, .ident = UrlParameter.Optional}\r\n \u0027)\r\n routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )\r\n End Sub", + "protected": "T:System.Web.Routing.RouteCollection" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "Public Sub RegisterRoutes(ByVal routes As RouteCollection)\r\n routes.IgnoreRoute(\u0022{resource}.axd/{*pathInfo}\u0022)\r\n\r\n routes.MapRoute(\r\n name:=\u0022Sitemap\u0022,\r\n url:=\u0022sitemap.xml\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022SiteMap\u0022}\r\n )\r\n routes.MapRoute(\r\n name:=\u0022html\u0022,\r\n url:=\u0022*.html\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022html\u0022}\r\n )\r\n routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )\r\n routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )\r\n \u0027routes.MapRoute(\r\n \u0027 name:=\u0022FuchsImg\u0022,\r\n \u0027 url:=\u0022img/{ident}\u0022,\r\n \u0027 defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Img\u0022, .ident = UrlParameter.Optional}\r\n \u0027)\r\n routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )\r\n End Sub", + "protectedSnippet": "T:System.Web.Routing.RouteCollection", + "label": "T:System.Web.Routing.RouteCollection", + "line": 8, + "column": 4 + } + }, + { + "incidentId": "25f6c7a8-98fd-4a91-b73b-b7aecca86784", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Mvc.UrlParameter" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Mvc.UrlParameter", + "label": "T:System.Web.Mvc.UrlParameter", + "line": 36, + "column": 8 + } + }, + { + "incidentId": "d1556a71-964a-47f6-b250-eefe0d806936", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Mvc.UrlParameter" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Mvc.UrlParameter", + "label": "T:System.Web.Mvc.UrlParameter", + "line": 36, + "column": 8 + } + }, + { + "incidentId": "8434066e-1892-4655-9f63-a94e0cdcc057", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "F:System.Web.Mvc.UrlParameter.Optional" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "F:System.Web.Mvc.UrlParameter.Optional", + "label": "F:System.Web.Mvc.UrlParameter.Optional", + "line": 36, + "column": 8 + } + }, + { + "incidentId": "747c224d-d489-4f7b-9c0a-20a6053270d0", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Mvc.UrlParameter" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Mvc.UrlParameter", + "label": "T:System.Web.Mvc.UrlParameter", + "line": 36, + "column": 8 + } + }, + { + "incidentId": "a7d844d5-ceeb-4b9e-8ccf-4e625423b0ef", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Routing.Route" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022Default\u0022,\r\n url:=\u0022{link}/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Index\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Routing.Route", + "label": "T:System.Web.Routing.Route", + "line": 36, + "column": 8 + } + }, + { + "incidentId": "fb803dad-928b-490f-80c3-c5bf5e919756", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Mvc.UrlParameter" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Mvc.UrlParameter", + "label": "T:System.Web.Mvc.UrlParameter", + "line": 26, + "column": 8 + } + }, + { + "incidentId": "1b42c17c-0772-4cdf-ba45-f7d95833520c", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Mvc.UrlParameter" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Mvc.UrlParameter", + "label": "T:System.Web.Mvc.UrlParameter", + "line": 26, + "column": 8 + } + }, + { + "incidentId": "869b02d2-3292-47d2-97d2-c7cfd30e275a", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "F:System.Web.Mvc.UrlParameter.Optional" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "F:System.Web.Mvc.UrlParameter.Optional", + "label": "F:System.Web.Mvc.UrlParameter.Optional", + "line": 26, + "column": 8 + } + }, + { + "incidentId": "26769746-b46c-4698-bbbc-7ec26895c54e", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Mvc.UrlParameter" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Mvc.UrlParameter", + "label": "T:System.Web.Mvc.UrlParameter", + "line": 26, + "column": 8 + } + }, + { + "incidentId": "36eceecc-98e8-4869-af43-676f29e6e9f5", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Routing.Route" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsPlannerSvg\u0022,\r\n url:=\u0022psvg/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022psvg\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Routing.Route", + "label": "T:System.Web.Routing.Route", + "line": 26, + "column": 8 + } + }, + { + "incidentId": "6222b064-30fa-4326-82bc-9fcfbbfa1114", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Mvc.UrlParameter" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Mvc.UrlParameter", + "label": "T:System.Web.Mvc.UrlParameter", + "line": 21, + "column": 8 + } + }, + { + "incidentId": "1fe67f48-f9a6-4972-9f49-08adcd6899ab", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Mvc.UrlParameter" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Mvc.UrlParameter", + "label": "T:System.Web.Mvc.UrlParameter", + "line": 21, + "column": 8 + } + }, + { + "incidentId": "54785a0d-8208-4f86-b182-cca8487023db", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "F:System.Web.Mvc.UrlParameter.Optional" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "F:System.Web.Mvc.UrlParameter.Optional", + "label": "F:System.Web.Mvc.UrlParameter.Optional", + "line": 21, + "column": 8 + } + }, + { + "incidentId": "c59262f2-1763-47ae-9a5c-def34ae09197", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Mvc.UrlParameter" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Mvc.UrlParameter", + "label": "T:System.Web.Mvc.UrlParameter", + "line": 21, + "column": 8 + } + }, + { + "incidentId": "29cfaa89-a3be-47c5-a33b-c11f62b5daea", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protected": "T:System.Web.Routing.Route" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022FuchsDo\u0022,\r\n url:=\u0022do/{ident}\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022Do\u0022, .link = \u0022\u0022, .ident = UrlParameter.Optional}\r\n )", + "protectedSnippet": "T:System.Web.Routing.Route", + "label": "T:System.Web.Routing.Route", + "line": 21, + "column": 8 + } + }, + { + "incidentId": "56e44530-4da8-49ed-bad2-3147f966deeb", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022html\u0022,\r\n url:=\u0022*.html\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022html\u0022}\r\n )", + "protected": "T:System.Web.Routing.Route" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022html\u0022,\r\n url:=\u0022*.html\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022html\u0022}\r\n )", + "protectedSnippet": "T:System.Web.Routing.Route", + "label": "T:System.Web.Routing.Route", + "line": 16, + "column": 8 + } + }, + { + "incidentId": "36bcfe7a-4eb8-4ddb-a76f-94292aa3f989", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "routes.MapRoute(\r\n name:=\u0022Sitemap\u0022,\r\n url:=\u0022sitemap.xml\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022SiteMap\u0022}\r\n )", + "protected": "T:System.Web.Routing.Route" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\RouteConfig.vb", + "snippet": "routes.MapRoute(\r\n name:=\u0022Sitemap\u0022,\r\n url:=\u0022sitemap.xml\u0022,\r\n defaults:=New With {.controller = \u0022Fuchs\u0022, .action = \u0022SiteMap\u0022}\r\n )", + "protectedSnippet": "T:System.Web.Routing.Route", + "label": "T:System.Web.Routing.Route", + "line": 11, + "column": 8 + } + }, + { + "incidentId": "02c0b438-1c3a-467f-b889-0989e1e93705", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentEncoding" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "label": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "line": 245, + "column": 20 + } + }, + { + "incidentId": "a7e8aa5b-ca45-4fd3-bb4a-787839e79ed8", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.Content" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.Content", + "label": "P:System.Web.Mvc.ContentResult.Content", + "line": 245, + "column": 20 + } + }, + { + "incidentId": "9a873224-e44a-4ab2-884d-f5d6c031db9d", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentType" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentType", + "label": "P:System.Web.Mvc.ContentResult.ContentType", + "line": 245, + "column": 20 + } + }, + { + "incidentId": "a5140b39-50f2-4521-8856-52b13c263157", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ContentResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ContentResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "T:System.Web.Mvc.ContentResult" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "T:System.Web.Mvc.ContentResult", + "label": "T:System.Web.Mvc.ContentResult", + "line": 245, + "column": 20 + } + }, + { + "incidentId": "d4c4a70a-1144-483e-b47b-1fa47e524010", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "M:System.Web.Mvc.ContentResult.#ctor" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "M:System.Web.Mvc.ContentResult.#ctor", + "label": "M:System.Web.Mvc.ContentResult.#ctor", + "line": 245, + "column": 20 + } + }, + { + "incidentId": "58ab325c-de88-4bc9-9cc1-880a09aa04d9", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentEncoding" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "label": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "line": 243, + "column": 20 + } + }, + { + "incidentId": "8110204e-9620-49d7-aa38-86d812b1b69d", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.Content" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.Content", + "label": "P:System.Web.Mvc.ContentResult.Content", + "line": 243, + "column": 20 + } + }, + { + "incidentId": "2801f761-982c-4d4b-93ce-3e15c02c12d5", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "P:System.Web.Mvc.ContentResult.ContentType" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentType", + "label": "P:System.Web.Mvc.ContentResult.ContentType", + "line": 243, + "column": 20 + } + }, + { + "incidentId": "a1e51d10-c62e-4493-bbc6-b8b101e7d061", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ContentResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ContentResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "T:System.Web.Mvc.ContentResult" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "T:System.Web.Mvc.ContentResult", + "label": "T:System.Web.Mvc.ContentResult", + "line": 243, + "column": 20 + } + }, + { + "incidentId": "85df1495-bd81-43db-b0ac-e6653f999955", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protected": "M:System.Web.Mvc.ContentResult.#ctor" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = New ContentResult() With {.ContentType = \u0022image/svg\u002Bxml\u0022, .Content = fc, .ContentEncoding = Encoding.UTF8}", + "protectedSnippet": "M:System.Web.Mvc.ContentResult.#ctor", + "label": "M:System.Web.Mvc.ContentResult.#ctor", + "line": 243, + "column": 20 + } + }, + { + "incidentId": "dc51b89e-5d0b-424f-8320-6a319b58f35a", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "html.Content = summary.SummaryHtml", + "protected": "P:System.Web.Mvc.ContentResult.Content" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "html.Content = summary.SummaryHtml", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.Content", + "label": "P:System.Web.Mvc.ContentResult.Content", + "line": 192, + "column": 24 + } + }, + { + "incidentId": "84aeb37a-bf96-4e7c-8e28-496e90632202", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim html As New ContentResult With {\r\n .ContentType = \u0022text/html\u0022\r\n }", + "protected": "P:System.Web.Mvc.ContentResult.ContentType" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Dim html As New ContentResult With {\r\n .ContentType = \u0022text/html\u0022\r\n }", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentType", + "label": "P:System.Web.Mvc.ContentResult.ContentType", + "line": 187, + "column": 24 + } + }, + { + "incidentId": "a65e3f88-a467-4c52-a984-625308fc2c4c", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ContentResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ContentResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim html As New ContentResult With {\r\n .ContentType = \u0022text/html\u0022\r\n }", + "protected": "T:System.Web.Mvc.ContentResult" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Dim html As New ContentResult With {\r\n .ContentType = \u0022text/html\u0022\r\n }", + "protectedSnippet": "T:System.Web.Mvc.ContentResult", + "label": "T:System.Web.Mvc.ContentResult", + "line": 187, + "column": 24 + } + }, + { + "incidentId": "5d2955cf-e327-443f-a98c-e730954e20ec", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim html As New ContentResult With {\r\n .ContentType = \u0022text/html\u0022\r\n }", + "protected": "M:System.Web.Mvc.ContentResult.#ctor" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Dim html As New ContentResult With {\r\n .ContentType = \u0022text/html\u0022\r\n }", + "protectedSnippet": "M:System.Web.Mvc.ContentResult.#ctor", + "label": "M:System.Web.Mvc.ContentResult.#ctor", + "line": 187, + "column": 24 + } + }, + { + "incidentId": "a13448e5-3737-46f0-8886-7b286f897447", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=\u0022captcha.png\u0022)", + "protected": "T:System.Drawing.Imaging.ImageFormat" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=\u0022captcha.png\u0022)", + "protectedSnippet": "T:System.Drawing.Imaging.ImageFormat", + "label": "T:System.Drawing.Imaging.ImageFormat", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 152, + "column": 24 + } + }, + { + "incidentId": "69f244c8-e758-49d6-b250-12253d0bc098", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=\u0022captcha.png\u0022)", + "protected": "T:System.Drawing.Imaging.ImageFormat" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=\u0022captcha.png\u0022)", + "protectedSnippet": "T:System.Drawing.Imaging.ImageFormat", + "label": "T:System.Drawing.Imaging.ImageFormat", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 152, + "column": 24 + } + }, + { + "incidentId": "c852e6a1-53d5-43ee-8d3b-2c85dfcc252f", + "ruleId": "Api.0002", + "description": "API is available in package System.Drawing.Common, 8.0.6. Add package reference to System.Drawing.Common, 8.0.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=\u0022captcha.png\u0022)", + "protected": "P:System.Drawing.Imaging.ImageFormat.Png" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Action = Await ImgAsync(Await Global.OCMS.security.generateTotp_12h_captcha_async(Captcha_TOTP_SharedSecret, 4, _TextColor:=System.Drawing.Color.FromArgb(27, 67, 121)), format:=Drawing.Imaging.ImageFormat.Png, FileDownloadName:=\u0022captcha.png\u0022)", + "protectedSnippet": "P:System.Drawing.Imaging.ImageFormat.Png", + "label": "P:System.Drawing.Imaging.ImageFormat.Png", + "properties": { + "PackageId": "System.Drawing.Common", + "PackageNewVersion": "8.0.6" + }, + "line": 152, + "column": 24 + } + }, + { + "incidentId": "7892251a-6e5d-4799-ac58-6e84cc9c9a54", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 146, + "column": 28 + } + }, + { + "incidentId": "f5bdbddf-935f-4a6b-9b43-08b6c361f8f7", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protected": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Using sqlcon As SqlClient.SqlConnection = New SqlClient.SqlConnection(SQLConnectionString())", + "protectedSnippet": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "label": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 146, + "column": 28 + } + }, + { + "incidentId": "bcd563a5-d9a1-4286-935d-a7dcbe0c37da", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protected": "P:System.Web.Mvc.ContentResult.Content" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.Content", + "label": "P:System.Web.Mvc.ContentResult.Content", + "line": 84, + "column": 24 + } + }, + { + "incidentId": "330813e8-d7fe-4c8b-931e-4668f82fae2f", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protected": "P:System.Web.Mvc.ContentResult.ContentEncoding" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "label": "P:System.Web.Mvc.ContentResult.ContentEncoding", + "line": 84, + "column": 24 + } + }, + { + "incidentId": "ebe30824-a934-4d60-b281-9487cfef0bf2", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protected": "P:System.Web.Mvc.ContentResult.ContentType" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protectedSnippet": "P:System.Web.Mvc.ContentResult.ContentType", + "label": "P:System.Web.Mvc.ContentResult.ContentType", + "line": 84, + "column": 24 + } + }, + { + "incidentId": "4be8d852-23d7-4a90-abe4-993c3a20807a", + "ruleId": "Api.0001", + "description": "System.Web.Mvc.ContentResult is no longer supported. Use Microsoft.AspNetCore.Mvc.ContentResult instead.\n\nAPI is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protected": "T:System.Web.Mvc.ContentResult" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protectedSnippet": "T:System.Web.Mvc.ContentResult", + "label": "T:System.Web.Mvc.ContentResult", + "line": 84, + "column": 24 + } + }, + { + "incidentId": "e3046e4c-d730-4f15-a341-1fc24ca37b9b", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protected": "M:System.Web.Mvc.ContentResult.#ctor" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return New ContentResult() With {.ContentType = \u0022text/html\u0022, .ContentEncoding = Encoding.UTF8, .Content = itc}", + "protectedSnippet": "M:System.Web.Mvc.ContentResult.#ctor", + "label": "M:System.Web.Mvc.ContentResult.#ctor", + "line": 84, + "column": 24 + } + }, + { + "incidentId": "1ffb334a-d7b1-4cc8-b804-ed0e7cee045e", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Redirect(ub.Uri.ToString)", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return Redirect(ub.Uri.ToString)", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 80, + "column": 24 + } + }, + { + "incidentId": "122f0969-8fba-4d7e-acd4-24fb78eebbbf", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Redirect(ub.Uri.ToString)", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return Redirect(ub.Uri.ToString)", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 77, + "column": 24 + } + }, + { + "incidentId": "7e3aaf98-2d25-4fa3-8edd-38e34fafca65", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Redirect(ub.Uri.ToString)", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return Redirect(ub.Uri.ToString)", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 74, + "column": 24 + } + }, + { + "incidentId": "789e7c3b-b690-4b9f-9909-bf84a2bf851f", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Redirect(ub.Uri.ToString)", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return Redirect(ub.Uri.ToString)", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 71, + "column": 24 + } + }, + { + "incidentId": "2b8e28de-60ee-4522-b5aa-436f4e2df058", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Redirect(ub.Uri.ToString)", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return Redirect(ub.Uri.ToString)", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 68, + "column": 24 + } + }, + { + "incidentId": "e40d35e5-94d5-4544-97cc-bb421c851285", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Redirect(ub.Uri.ToString)", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs\\Controllers\\FuchsController.vb", + "snippet": "Return Redirect(ub.Uri.ToString)", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 58, + "column": 16 + } + }, + { + "incidentId": "59d714c6-1518-4940-827d-97f2b529996c", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Sub RegisterGlobalFilters(ByVal filters As GlobalFilterCollection)\r\n filters.Add(New HandleErrorAttribute())\r\n filters.Add(New OCMS.OCMS_ActionFilterAttribute())\r\n filters.Add(New OCMS.CompressAttribute())\r\n End Sub", + "protected": "T:System.Web.Mvc.GlobalFilterCollection" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\FilterConfig.vb", + "snippet": "Public Sub RegisterGlobalFilters(ByVal filters As GlobalFilterCollection)\r\n filters.Add(New HandleErrorAttribute())\r\n filters.Add(New OCMS.OCMS_ActionFilterAttribute())\r\n filters.Add(New OCMS.CompressAttribute())\r\n End Sub", + "protectedSnippet": "T:System.Web.Mvc.GlobalFilterCollection", + "label": "T:System.Web.Mvc.GlobalFilterCollection", + "line": 4, + "column": 4 + } + }, + { + "incidentId": "abdf3ce5-b04d-4c82-89ae-fbc88f6f8189", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "filters.Add(New HandleErrorAttribute())", + "protected": "T:System.Web.Mvc.HandleErrorAttribute" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\FilterConfig.vb", + "snippet": "filters.Add(New HandleErrorAttribute())", + "protectedSnippet": "T:System.Web.Mvc.HandleErrorAttribute", + "label": "T:System.Web.Mvc.HandleErrorAttribute", + "line": 5, + "column": 8 + } + }, + { + "incidentId": "8461b1fd-f4fc-4f52-a0a5-2de4a14de0cc", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "filters.Add(New HandleErrorAttribute())", + "protected": "M:System.Web.Mvc.HandleErrorAttribute.#ctor" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\FilterConfig.vb", + "snippet": "filters.Add(New HandleErrorAttribute())", + "protectedSnippet": "M:System.Web.Mvc.HandleErrorAttribute.#ctor", + "label": "M:System.Web.Mvc.HandleErrorAttribute.#ctor", + "line": 5, + "column": 8 + } + }, + { + "incidentId": "6a76c9aa-b8cc-459f-82cc-3b499f0a9c2d", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "filters.Add(New HandleErrorAttribute())", + "protected": "M:System.Web.Mvc.GlobalFilterCollection.Add(System.Object)" + }, + "kind": "File", + "path": "Fuchs\\App_Start\\FilterConfig.vb", + "snippet": "filters.Add(New HandleErrorAttribute())", + "protectedSnippet": "M:System.Web.Mvc.GlobalFilterCollection.Add(System.Object)", + "label": "M:System.Web.Mvc.GlobalFilterCollection.Add(System.Object)", + "line": 5, + "column": 8 + } + }, + { + "incidentId": "ec5485b7-ab34-41d1-b278-c514b66a5c8f", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "RouteConfig.RegisterRoutes(RouteTable.Routes)", + "protected": "T:System.Web.Routing.RouteTable" + }, + "kind": "File", + "path": "Fuchs\\Global.asax.vb", + "snippet": "RouteConfig.RegisterRoutes(RouteTable.Routes)", + "protectedSnippet": "T:System.Web.Routing.RouteTable", + "label": "T:System.Web.Routing.RouteTable", + "line": 12, + "column": 8 + } + }, + { + "incidentId": "6ea423c4-acd6-43b4-a117-bd6013e8d66c", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "RouteConfig.RegisterRoutes(RouteTable.Routes)", + "protected": "T:System.Web.Routing.RouteCollection" + }, + "kind": "File", + "path": "Fuchs\\Global.asax.vb", + "snippet": "RouteConfig.RegisterRoutes(RouteTable.Routes)", + "protectedSnippet": "T:System.Web.Routing.RouteCollection", + "label": "T:System.Web.Routing.RouteCollection", + "line": 12, + "column": 8 + } + }, + { + "incidentId": "ad2bd8c9-b24c-4385-9ac7-b744eb0f200b", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "RouteConfig.RegisterRoutes(RouteTable.Routes)", + "protected": "P:System.Web.Routing.RouteTable.Routes" + }, + "kind": "File", + "path": "Fuchs\\Global.asax.vb", + "snippet": "RouteConfig.RegisterRoutes(RouteTable.Routes)", + "protectedSnippet": "P:System.Web.Routing.RouteTable.Routes", + "label": "P:System.Web.Routing.RouteTable.Routes", + "line": 12, + "column": 8 + } + }, + { + "incidentId": "22029b2c-a992-42dd-8bd9-9bcdce21b448", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)", + "protected": "T:System.Web.Mvc.GlobalFilters" + }, + "kind": "File", + "path": "Fuchs\\Global.asax.vb", + "snippet": "FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)", + "protectedSnippet": "T:System.Web.Mvc.GlobalFilters", + "label": "T:System.Web.Mvc.GlobalFilters", + "line": 11, + "column": 8 + } + }, + { + "incidentId": "3e3168a2-980e-4cf8-ba6b-2459ce6a1ec6", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)", + "protected": "T:System.Web.Mvc.GlobalFilterCollection" + }, + "kind": "File", + "path": "Fuchs\\Global.asax.vb", + "snippet": "FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)", + "protectedSnippet": "T:System.Web.Mvc.GlobalFilterCollection", + "label": "T:System.Web.Mvc.GlobalFilterCollection", + "line": 11, + "column": 8 + } + }, + { + "incidentId": "de006132-b788-4cc8-abfd-09a564985fa7", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)", + "protected": "P:System.Web.Mvc.GlobalFilters.Filters" + }, + "kind": "File", + "path": "Fuchs\\Global.asax.vb", + "snippet": "FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters)", + "protectedSnippet": "P:System.Web.Mvc.GlobalFilters.Filters", + "label": "P:System.Web.Mvc.GlobalFilters.Filters", + "line": 11, + "column": 8 + } + }, + { + "incidentId": "3f53df37-e783-4d53-8ed8-7d9cfd0ff7eb", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "AreaRegistration.RegisterAllAreas()", + "protected": "T:System.Web.Mvc.AreaRegistration" + }, + "kind": "File", + "path": "Fuchs\\Global.asax.vb", + "snippet": "AreaRegistration.RegisterAllAreas()", + "protectedSnippet": "T:System.Web.Mvc.AreaRegistration", + "label": "T:System.Web.Mvc.AreaRegistration", + "line": 10, + "column": 8 + } + }, + { + "incidentId": "cf70fbff-9f10-420c-9dcf-6b42e5aba74f", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs\\Fuchs.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "AreaRegistration.RegisterAllAreas()", + "protected": "M:System.Web.Mvc.AreaRegistration.RegisterAllAreas" + }, + "kind": "File", + "path": "Fuchs\\Global.asax.vb", + "snippet": "AreaRegistration.RegisterAllAreas()", + "protectedSnippet": "M:System.Web.Mvc.AreaRegistration.RegisterAllAreas", + "label": "M:System.Web.Mvc.AreaRegistration.RegisterAllAreas", + "line": 10, + "column": 8 + } + } + ], + "features": [ + { + "featureId": "LegacyConfiguration", + "incidents": [ + "3b80e506-8bf4-4b74-9f88-8018fd47a101", + "b4b5a059-ae10-4bb6-b078-fe5bcdaf59c4", + "02110f75-a8dd-4993-919e-9fc978a57f7a", + "bf2c5bf4-e206-42a2-bdc7-07343fbac3eb", + "d99ba7a4-0915-4aa9-bd8b-7da548f69c01", + "615b0f6f-8aaa-4bf7-911f-4807045492b2", + "4ad889eb-30ab-490c-af84-d2427d49fcde", + "08bfbfaf-4bcc-4c2a-bc83-255ae4cf178c", + "f2ee0023-8d89-4689-827a-c56ab136a23a", + "687f6075-b46b-4d77-9ce2-f0aaad7088c1", + "c243cb69-ecdc-4fc6-9c3c-1f5e0441902e", + "2889e46e-2d58-476b-b95a-07c572d5a211", + "95c5160b-e7e8-4357-af7c-0736782909d7", + "ce1e3f10-9c2b-4cc6-8b44-000f6321a221", + "c2864285-58f0-4c54-8685-ca42e5bbf5d2", + "eb3b7c49-7f08-4889-b756-ac2349398c21", + "21517295-9651-4a68-bcc8-7ab15d228126", + "139c99e4-ce49-49aa-82f7-1f046786e530", + "cb2d504d-05d5-474f-8653-2e608c1ad98f" + ] + }, + { + "featureId": "GdiDrawing", + "incidents": [ + "c852e6a1-53d5-43ee-8d3b-2c85dfcc252f", + "69f244c8-e758-49d6-b250-12253d0bc098", + "a13448e5-3737-46f0-8886-7b286f897447", + "cc64ff67-6ec9-44ac-946a-e75f1b60832e", + "0d4d00bf-d534-4581-aded-085643d7578f", + "11beb03f-6027-4de8-8eec-538589d73fc9", + "ebdf5bc3-c43b-4a74-8c07-c19ee8f20882", + "d555ecda-a4b3-46b8-9eda-3688ad8541f8", + "3f55c5c3-a518-49f4-95ad-20498e27f2b6", + "05677be4-5416-4915-8b30-b11805b7fdc1", + "6cee264b-7fe0-4b65-a0fe-946119931c11", + "356427d0-d73a-45c5-813f-493837515a16", + "9ba2df23-ac87-4752-b3e6-f2ebada9e1c7", + "05e95840-6cb2-46f0-8e8b-ade23203b27a" + ] + }, + { + "featureId": "SystemWeb", + "incidents": [ + "cf70fbff-9f10-420c-9dcf-6b42e5aba74f", + "3f53df37-e783-4d53-8ed8-7d9cfd0ff7eb", + "de006132-b788-4cc8-abfd-09a564985fa7", + "3e3168a2-980e-4cf8-ba6b-2459ce6a1ec6", + "22029b2c-a992-42dd-8bd9-9bcdce21b448", + "ad2bd8c9-b24c-4385-9ac7-b744eb0f200b", + "6ea423c4-acd6-43b4-a117-bd6013e8d66c", + "ec5485b7-ab34-41d1-b278-c514b66a5c8f", + "6a76c9aa-b8cc-459f-82cc-3b499f0a9c2d", + "8461b1fd-f4fc-4f52-a0a5-2de4a14de0cc", + "abdf3ce5-b04d-4c82-89ae-fbc88f6f8189", + "59d714c6-1518-4940-827d-97f2b529996c", + "e3046e4c-d730-4f15-a341-1fc24ca37b9b", + "4be8d852-23d7-4a90-abe4-993c3a20807a", + "ebe30824-a934-4d60-b281-9487cfef0bf2", + "330813e8-d7fe-4c8b-931e-4668f82fae2f", + "bcd563a5-d9a1-4286-935d-a7dcbe0c37da", + "5d2955cf-e327-443f-a98c-e730954e20ec", + "a65e3f88-a467-4c52-a984-625308fc2c4c", + "84aeb37a-bf96-4e7c-8e28-496e90632202", + "dc51b89e-5d0b-424f-8320-6a319b58f35a", + "85df1495-bd81-43db-b0ac-e6653f999955", + "a1e51d10-c62e-4493-bbc6-b8b101e7d061", + "2801f761-982c-4d4b-93ce-3e15c02c12d5", + "8110204e-9620-49d7-aa38-86d812b1b69d", + "58ab325c-de88-4bc9-9cc1-880a09aa04d9", + "d4c4a70a-1144-483e-b47b-1fa47e524010", + "a5140b39-50f2-4521-8856-52b13c263157", + "9a873224-e44a-4ab2-884d-f5d6c031db9d", + "a7e8aa5b-ca45-4fd3-bb4a-787839e79ed8", + "02c0b438-1c3a-467f-b889-0989e1e93705", + "36bcfe7a-4eb8-4ddb-a76f-94292aa3f989", + "56e44530-4da8-49ed-bad2-3147f966deeb", + "29cfaa89-a3be-47c5-a33b-c11f62b5daea", + "c59262f2-1763-47ae-9a5c-def34ae09197", + "54785a0d-8208-4f86-b182-cca8487023db", + "1fe67f48-f9a6-4972-9f49-08adcd6899ab", + "6222b064-30fa-4326-82bc-9fcfbbfa1114", + "36eceecc-98e8-4869-af43-676f29e6e9f5", + "26769746-b46c-4698-bbbc-7ec26895c54e", + "869b02d2-3292-47d2-97d2-c7cfd30e275a", + "1b42c17c-0772-4cdf-ba45-f7d95833520c", + "fb803dad-928b-490f-80c3-c5bf5e919756", + "a7d844d5-ceeb-4b9e-8ccf-4e625423b0ef", + "747c224d-d489-4f7b-9c0a-20a6053270d0", + "8434066e-1892-4655-9f63-a94e0cdcc057", + "d1556a71-964a-47f6-b250-eefe0d806936", + "25f6c7a8-98fd-4a91-b73b-b7aecca86784", + "e5551701-79c6-497f-a657-a1a275fa77db", + "67184ffe-4673-4fb6-a601-f9334726ef63", + "2faa8d61-4911-4f29-a994-fc4aa2f7d4ff", + "b710c558-12ce-431c-9c4b-a42c9da5f943", + "61a4df4a-b3ee-4437-b50b-e7a508cedf38", + "911f1573-9c0d-4035-9df3-3c19347da69d", + "023cd8ad-2036-497d-8701-07db7b79dbcf", + "5356a64d-ea4a-4aa0-86b3-36d82856b1a5", + "398751cb-3bda-42f4-8bb7-693e7efef6d4", + "14bbf138-fa01-4ed3-a536-610185c5e5f1", + "a2042901-e5f4-43dd-95af-31b65d5cf20f", + "0ecc48b6-edfa-4da7-9f9f-845a6d4b9a81", + "0a9d6062-a1d7-4ec0-b3d2-88f8abf433f2", + "db12408c-cd61-4a47-abf0-d1a350d2dc4e", + "c39b01d8-9360-4b13-ba6c-faaa5ef50559", + "5a9f2f6a-f73a-461f-9e7c-a368de1fcf66", + "66eeb4a2-0051-4d87-9fe1-d2d60b990acb", + "77484fc1-fa7b-4f7b-9613-7570e9fbb7d8", + "a5f60e16-cda2-4969-80f2-04770f905410", + "5c113c6f-442c-4a5d-b2f4-6abf3d91bd19", + "c562ad35-775e-4804-87e6-2e6e3d00e32e", + "cdd6ad05-d95b-4022-b996-e698eeed66a4", + "42d49f2c-f225-417b-b6c3-e329d876763e", + "aae716c1-a12d-4fd6-bea2-aae5f7083b7c", + "825aea05-972f-4118-a9cd-aac1ef27257f", + "133589ba-9245-48e9-9811-edf4ec26aaa9", + "db330d6e-6bf1-4ece-8e4a-0790015520fb", + "1717d725-a642-4e39-ba0d-b71f8d9cacfc", + "2a79b2c7-a957-4a37-88b7-01ada996e6f9", + "fe30377e-6940-4a8c-b525-7f382b5774f1", + "bea5b043-abd9-4445-a1c8-a949a333660a", + "4fd1037c-2616-41f5-b0d2-4dbc0daddbc7", + "e905c9e1-635c-40f5-955b-22b054b74729", + "0be1dd48-8296-4418-b62c-779bf5d6a996", + "76adfc7d-8b07-4497-a00e-64081e4bae90", + "2a3e44c2-26f7-471a-8ab4-5e4e976f0fa1", + "58de5057-07fa-4d4c-ad08-cd051e5a91fc", + "896eb486-900d-45f6-95a7-52536d13b79e", + "cd0ec350-f44a-4208-91cc-47a709d6b92a", + "69823e29-df51-4e84-8b82-c8dfd293cd59", + "5e8b5d87-9295-46a1-9884-5b16ebbb86cf", + "6920cb8d-713e-47a3-aeb9-ed2e463e8571", + "72242b26-d23a-4bc3-b128-deba70f2557d", + "72b483c4-b2e0-4392-aae8-d61f6e488a02", + "7f60e582-4e38-41bc-8450-de1115a29fa3", + "8222e900-0059-4b28-99d6-78b561362578", + "45816a3b-0ba3-4f84-92dd-0d1262de758a", + "35d25e07-8ff1-475d-a1cd-9e9041389a4c", + "a5a2b3e5-1745-45ee-8a27-15993ea602a6", + "c45ec931-a620-4fed-bff4-21ccce7d6403", + "d6f4d74b-c472-41e8-9cbb-60e344358729", + "cadbc179-77eb-4a15-9938-cc92eb7652d6", + "85e2f97a-7ed4-46fb-8fd3-570b7994754d", + "68c6ce26-01a6-4c5c-8483-18bee2845b42", + "4896d90f-78e1-414e-a9b7-e11ec7d06b6d", + "aaa76fe1-1112-4ef8-9a9d-0d0a87181609", + "28a109b7-cb56-4e9a-af88-910652209015", + "c8894ded-3e2d-4650-852f-074efa98aaf7", + "9501e772-6ecf-458e-9bc9-92e63f60eedb", + "402a103f-d0ba-4168-8154-6278ce73429c", + "f9cab823-a1ae-4c1e-ad39-58982b4d8959", + "a2106c7b-67ac-4047-8327-99c8b9c908ac", + "07ac0cc8-919f-4572-869c-25d18acf279a", + "47556e30-6c0d-4a44-bc70-12b2c0fda29c", + "c8cca4e0-69be-4ac3-a12f-b58418d32255", + "28988650-81e3-4f0b-91c0-c768552828ce", + "be30e03d-be72-46f9-b460-ee3c14f08fb8", + "53923ef2-ccef-4256-aaae-ee4cb110a8c0", + "35d3ef8b-0662-4660-bd07-b11b359bb996", + "4dc0f388-d75d-4fdc-b05e-4aafce9837b3", + "eec6df50-4cd8-4f95-a5e4-173200a45b95", + "02c8c21a-18b5-4e83-8218-d5ea5a6aed49", + "23cdc927-e8bb-423c-b5b1-98c9873c9e8b" + ] + } + ] + }, + { + "path": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "startingProject": true, + "issues": 7, + "storyPoints": 114, + "properties": { + "appName": "Fuchs_DataService", + "projectKind": "ClassicDotNetApp", + "frameworks": [ + "net48" + ], + "languages": [ + "Visual Basic" + ], + "tools": [ + "MSBuild" + ], + "isSdkStyle": false, + "numberOfFiles": 13, + "numberOfCodeFiles": 9, + "linesTotal": 19400, + "linesOfCode": 2281, + "totalApiScanned": 2792, + "minLinesOfCodeToChange": 108, + "maxLinesOfCodeToChange": 108 + }, + "ruleInstances": [ + { + "incidentId": "17c2f73e-bc87-4c0a-90b7-97e926494dd2", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.AspNet.Razor, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "Microsoft.AspNet.Razor, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "snippet": "Microsoft.AspNet.Razor, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "Microsoft.AspNet.Razor, 3.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "Microsoft.AspNet.Razor 3.2.9", + "properties": { + "PackageId": "Microsoft.AspNet.Razor", + "PackageVersion": "3.2.9", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "04859abf-bce4-42f6-b232-3cf32426c8d6", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.Web.Infrastructure, 2.0.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "Microsoft.Web.Infrastructure, 2.0.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "snippet": "Microsoft.Web.Infrastructure, 2.0.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "Microsoft.Web.Infrastructure, 2.0.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "Microsoft.Web.Infrastructure 2.0.0", + "properties": { + "PackageId": "Microsoft.Web.Infrastructure", + "PackageVersion": "2.0.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "14ad89c3-78ca-4a70-8adb-9bb6725cebc4", + "ruleId": "NuGet.0002", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4", + "protected": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4" + }, + "kind": "File", + "path": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "snippet": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4", + "protectedSnippet": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4", + "label": "Newtonsoft.Json 13.0.3", + "properties": { + "PackageId": "Newtonsoft.Json", + "PackageVersion": "13.0.3", + "PackageNewVersion": "13.0.4", + "PackageReplacements": null + } + } + }, + { + "incidentId": "79620ee1-15dc-4761-b404-4eaf188a3347", + "ruleId": "NuGet.0003", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Runtime.InteropServices.RuntimeInformation, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Runtime.InteropServices.RuntimeInformation, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "snippet": "System.Runtime.InteropServices.RuntimeInformation, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Runtime.InteropServices.RuntimeInformation, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Runtime.InteropServices.RuntimeInformation 4.3.0", + "properties": { + "PackageId": "System.Runtime.InteropServices.RuntimeInformation", + "PackageVersion": "4.3.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "6d7e36d9-a863-492d-adbb-de5b5bb24dae", + "ruleId": "Project.0001", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "kind": "File", + "path": "Fuchs_DataService\\Fuchs_DataService.vbproj" + } + }, + { + "incidentId": "15950425-4395-43eb-85bf-b62fb5ff3073", + "ruleId": "Project.0002", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0", + "protected": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0" + }, + "kind": "File", + "path": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "snippet": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0", + "protectedSnippet": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0", + "properties": { + "CurrentTargetFramework": ".NETFramework,Version=v4.8", + "RecommendedTargetFramework": "net10.0" + } + } + }, + { + "incidentId": "8fb1be04-5e01-447d-892a-5c980c1ba8f4", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022MFR_host\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022MFR_host\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 97, + "column": 16 + } + }, + { + "incidentId": "51cc1051-6f93-4913-be80-3f83ddada8ed", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022MFR_Password\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022MFR_Password\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 88, + "column": 16 + } + }, + { + "incidentId": "4c6352e3-2dec-4317-b578-9b9b87c1bc9b", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022MFR_UserName\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022MFR_UserName\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 79, + "column": 16 + } + }, + { + "incidentId": "0f55cc92-05c5-4e03-b951-59df22c47db6", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022DebugDetails\u0022),Boolean)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022DebugDetails\u0022),Boolean)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 70, + "column": 16 + } + }, + { + "incidentId": "5b0e67bd-5289-416c-91dc-353431a31bd0", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022ExecutionFrequency_Minutes\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022ExecutionFrequency_Minutes\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 61, + "column": 16 + } + }, + { + "incidentId": "052889d2-94a8-4b59-98ba-d1753828f3cf", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 810, + "column": 20 + } + }, + { + "incidentId": "b5eebd41-09ef-4257-a982-29afe9d722e8", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 810, + "column": 20 + } + }, + { + "incidentId": "285d702f-9e04-4039-9874-06aca3124ac4", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 810, + "column": 20 + } + }, + { + "incidentId": "01529467-0a81-4d82-aae5-b24d56ad7d30", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 810, + "column": 20 + } + }, + { + "incidentId": "7f0160c2-9b3a-4c25-9d86-1985b75e962d", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 810, + "column": 20 + } + }, + { + "incidentId": "48eda6a5-469e-4fa8-bbb6-0fdbe5fbe930", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 810, + "column": 20 + } + }, + { + "incidentId": "bb9cd479-a27e-4889-a904-c5b66f41e012", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 810, + "column": 20 + } + }, + { + "incidentId": "edffc746-010c-4da7-9f4d-4b44af7ae2c3", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "params = New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 810, + "column": 20 + } + }, + { + "incidentId": "30707dc1-7abc-47ec-8e5a-08877139e5ad", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "eaf5b64b-246b-4fad-b920-43f9be11d974", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "62570fd1-7685-482c-90a4-16947d02835d", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "5e38ff6b-beb5-400f-9c5e-816bc4aea17a", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "a0f68138-a048-47ae-a267-8457182ba60d", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "486849cc-6ae4-43ce-9a87-dcc4f59df19c", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "cd313681-f7bc-4fdf-a090-bdfb610183e6", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "2bd20ecb-a745-4a4a-a1ed-3c6d91b0bdf7", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "5e095c2d-d033-4107-905a-6a7c2ae490e9", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "cd7f2a19-5aee-4a33-a2c1-790215a8d9a2", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "a445ac2d-676d-4096-9ee7-8f45a44b26e7", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "2c8fc432-8a2e-410f-87ba-b17b2e0d538e", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter.Parameters.AddRange(New SqlClient.SqlParameter() {\r\n New SqlClient.SqlParameter(\u0022@tblname\u0022, dtwa.DestinationTableName),\r\n New SqlClient.SqlParameter(\u0022@table\u0022, tbl.TableName),\r\n New SqlClient.SqlParameter(\u0022@action\u0022, If(tbl.TableName.ToLower = Schema.Entitytablename.ToLower, \u0022update_\u0022, \u0022imdu_\u0022) \u0026 UpdateNeed.ToString().ToLower()),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID.ToLower),\r\n New SqlClient.SqlParameter(\u0022@entityname\u0022, Schema.ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@info\u0022, json.SerializeObject(New With {.count = trc, .reference = Schema.Entitytablename, .id = If(If(EntityID, New Long() {}).Length \u003E 0, vbs.Join(EntityID.Convert(Of String)(Function(x As Long) x.ToString).ToArray, \u0022,\u0022), Nothing)})),\r\n New SqlClient.SqlParameter(\u0022@referencetable\u0022, Schema.Entitytablename),\r\n New SqlClient.SqlParameter(\u0022@tgtid\u0022, If(If(EntityID, New Long() {}).Length \u003E 0, EntityID(0).ToString, DBNull.Value))\r\n })", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 785, + "column": 40 + } + }, + { + "incidentId": "f086e6ee-6d57-4cb8-b7ba-cb4e0aa9d1fd", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter = New SqlClient.SqlCommand(\u0027\u0022SELECT * INTO [t_\u0022 \u0026 SetID.ToLower \u0026 \u0022_\u0022 \u0026 tbl.TableName \u0026 \u0022] FROM \u0022 \u0026 dtwa.DestinationTableName \u0026 \u0022;\u0022 \u0026\r\n \u0022EXECUTE [dbo].[\u0022 \u0026 (tbl.TableName).Replace(\u0022__\u0022, \u0022__updt__\u0022) \u0026 \u0022] @tblname, @referencetable, @tgtid;\u0022 \u0026\r\n \u0022EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;\u0022 \u0026 If(AdditionalCommandAfter, \u0022\u0022))", + "protected": "T:System.Data.SqlClient.SqlCommand" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter = New SqlClient.SqlCommand(\u0027\u0022SELECT * INTO [t_\u0022 \u0026 SetID.ToLower \u0026 \u0022_\u0022 \u0026 tbl.TableName \u0026 \u0022] FROM \u0022 \u0026 dtwa.DestinationTableName \u0026 \u0022;\u0022 \u0026\r\n \u0022EXECUTE [dbo].[\u0022 \u0026 (tbl.TableName).Replace(\u0022__\u0022, \u0022__updt__\u0022) \u0026 \u0022] @tblname, @referencetable, @tgtid;\u0022 \u0026\r\n \u0022EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;\u0022 \u0026 If(AdditionalCommandAfter, \u0022\u0022))", + "protectedSnippet": "T:System.Data.SqlClient.SqlCommand", + "label": "T:System.Data.SqlClient.SqlCommand", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 782, + "column": 40 + } + }, + { + "incidentId": "836303bd-aac1-4fbc-bd94-e840fea30851", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "dtwa.CommandAfter = New SqlClient.SqlCommand(\u0027\u0022SELECT * INTO [t_\u0022 \u0026 SetID.ToLower \u0026 \u0022_\u0022 \u0026 tbl.TableName \u0026 \u0022] FROM \u0022 \u0026 dtwa.DestinationTableName \u0026 \u0022;\u0022 \u0026\r\n \u0022EXECUTE [dbo].[\u0022 \u0026 (tbl.TableName).Replace(\u0022__\u0022, \u0022__updt__\u0022) \u0026 \u0022] @tblname, @referencetable, @tgtid;\u0022 \u0026\r\n \u0022EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;\u0022 \u0026 If(AdditionalCommandAfter, \u0022\u0022))", + "protected": "M:System.Data.SqlClient.SqlCommand.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "dtwa.CommandAfter = New SqlClient.SqlCommand(\u0027\u0022SELECT * INTO [t_\u0022 \u0026 SetID.ToLower \u0026 \u0022_\u0022 \u0026 tbl.TableName \u0026 \u0022] FROM \u0022 \u0026 dtwa.DestinationTableName \u0026 \u0022;\u0022 \u0026\r\n \u0022EXECUTE [dbo].[\u0022 \u0026 (tbl.TableName).Replace(\u0022__\u0022, \u0022__updt__\u0022) \u0026 \u0022] @tblname, @referencetable, @tgtid;\u0022 \u0026\r\n \u0022EXECUTE [dbo].[fds__setStatus] @table,@action,@setid,@info;\u0022 \u0026 If(AdditionalCommandAfter, \u0022\u0022))", + "protectedSnippet": "M:System.Data.SqlClient.SqlCommand.#ctor(System.String)", + "label": "M:System.Data.SqlClient.SqlCommand.#ctor(System.String)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 782, + "column": 40 + } + }, + { + "incidentId": "bb374d1e-ffa5-4794-bb08-8ca287524b0a", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "MFR_Response = Await ReadOData(MFR_Response.nextlink.ToString)", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "MFR_Response = Await ReadOData(MFR_Response.nextlink.ToString)", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 763, + "column": 40 + } + }, + { + "incidentId": "24975e5f-8a05-4c0f-8f5b-a24a58f496c6", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString \u003C\u003E \u0022\u0022 Then", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString \u003C\u003E \u0022\u0022 Then", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 762, + "column": 36 + } + }, + { + "incidentId": "ad7c483c-da20-494e-b6e3-a4be0a416462", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString \u003C\u003E \u0022\u0022 Then", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "If IsNothing(MFR_Response.nextlink) = False AndAlso MFR_Response.nextlink.ToString \u003C\u003E \u0022\u0022 Then", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 762, + "column": 36 + } + }, + { + "incidentId": "02d3fd96-83ef-4ff5-98fa-888780b5476f", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 661, + "column": 12 + } + }, + { + "incidentId": "b7cdb19b-0105-420b-908c-8d81fd5d79bd", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 661, + "column": 12 + } + }, + { + "incidentId": "94e0a214-8708-4b12-80fa-fd336e1acc89", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 661, + "column": 12 + } + }, + { + "incidentId": "d1ae8a75-647d-4ead-aebc-e30de5034516", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 661, + "column": 12 + } + }, + { + "incidentId": "eda258be-a20f-4ca2-94cf-1ffc2b89f859", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 661, + "column": 12 + } + }, + { + "incidentId": "00a8234a-19e9-42a0-8ed0-068b663fcdc3", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 661, + "column": 12 + } + }, + { + "incidentId": "a4557102-afd2-4e95-99d8-579d720cdfd9", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 661, + "column": 12 + } + }, + { + "incidentId": "5bc38ce8-beca-4f04-816c-50f1ee1eee0b", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Dim params As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@tbl\u0022, ThisEntityName),\r\n New SqlClient.SqlParameter(\u0022@state\u0022, True),\r\n New SqlClient.SqlParameter(\u0022@override\u0022, False),\r\n New SqlClient.SqlParameter(\u0022@setid\u0022, SetID)\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 661, + "column": 12 + } + }, + { + "incidentId": "25a9eb5b-18eb-4b82-bcf6-06b829a259c0", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Await setSQLValue_async(\u0022EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;\u0022, FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(\u0022@Id\u0022, id), SQL_VarChar(\u0022@filename\u0022, DocumentName), New SqlClient.SqlParameter(\u0022@file\u0022, fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())", + "protected": "P:System.Data.SqlClient.SqlParameter.SqlDbType" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Await setSQLValue_async(\u0022EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;\u0022, FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(\u0022@Id\u0022, id), SQL_VarChar(\u0022@filename\u0022, DocumentName), New SqlClient.SqlParameter(\u0022@file\u0022, fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())", + "protectedSnippet": "P:System.Data.SqlClient.SqlParameter.SqlDbType", + "label": "P:System.Data.SqlClient.SqlParameter.SqlDbType", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 90, + "column": 40 + } + }, + { + "incidentId": "43515255-e1b5-4c10-b380-b8c3765270f3", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Await setSQLValue_async(\u0022EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;\u0022, FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(\u0022@Id\u0022, id), SQL_VarChar(\u0022@filename\u0022, DocumentName), New SqlClient.SqlParameter(\u0022@file\u0022, fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Await setSQLValue_async(\u0022EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;\u0022, FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(\u0022@Id\u0022, id), SQL_VarChar(\u0022@filename\u0022, DocumentName), New SqlClient.SqlParameter(\u0022@file\u0022, fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 90, + "column": 40 + } + }, + { + "incidentId": "d2e20943-1d6c-41df-9fb7-a3702aaed213", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Await setSQLValue_async(\u0022EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;\u0022, FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(\u0022@Id\u0022, id), SQL_VarChar(\u0022@filename\u0022, DocumentName), New SqlClient.SqlParameter(\u0022@file\u0022, fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_mfr.vb", + "snippet": "Await setSQLValue_async(\u0022EXECUTE [dbo].[fds__setMFRInvoiceFile] @Id, @filename, @file;\u0022, FDSConnectionString, SqlParameterList:=New ParamList(SQL_VarChar(\u0022@Id\u0022, id), SQL_VarChar(\u0022@filename\u0022, DocumentName), New SqlClient.SqlParameter(\u0022@file\u0022, fl) With {.SqlDbType = SqlDbType.VarBinary}), options:=New fds_SQLOptions())", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 90, + "column": 40 + } + }, + { + "incidentId": "0aadd72b-7e5b-4334-9ae5-6a37b7679962", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return System.Web.MimeMapping.GetMimeMapping(FI.Name)", + "protected": "T:System.Web.MimeMapping" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return System.Web.MimeMapping.GetMimeMapping(FI.Name)", + "protectedSnippet": "T:System.Web.MimeMapping", + "label": "T:System.Web.MimeMapping", + "line": 223, + "column": 8 + } + }, + { + "incidentId": "8bc87b2d-d99d-46e4-b73c-3e276c731056", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return System.Web.MimeMapping.GetMimeMapping(FI.Name)", + "protected": "M:System.Web.MimeMapping.GetMimeMapping(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return System.Web.MimeMapping.GetMimeMapping(FI.Name)", + "protectedSnippet": "M:System.Web.MimeMapping.GetMimeMapping(System.String)", + "label": "M:System.Web.MimeMapping.GetMimeMapping(System.String)", + "line": 223, + "column": 8 + } + }, + { + "incidentId": "02c56805-5ec2-470f-be47-e1f5a08c9322", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "My.Computer.FileSystem.DeleteFile(FilePath)", + "protected": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "My.Computer.FileSystem.DeleteFile(FilePath)", + "protectedSnippet": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy", + "label": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy", + "line": 174, + "column": 64 + } + }, + { + "incidentId": "7ab824c0-f6b3-46f9-bd68-58b3bc2a2a44", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "My.Computer.FileSystem.DeleteFile(FilePath)", + "protected": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "My.Computer.FileSystem.DeleteFile(FilePath)", + "protectedSnippet": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem", + "label": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem", + "line": 174, + "column": 64 + } + }, + { + "incidentId": "516b6292-aee8-4903-95f1-1f90c858b312", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "My.Computer.FileSystem.DeleteFile(FilePath)", + "protected": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteFile(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "My.Computer.FileSystem.DeleteFile(FilePath)", + "protectedSnippet": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteFile(System.String)", + "label": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DeleteFile(System.String)", + "line": 174, + "column": 64 + } + }, + { + "incidentId": "5a239bd2-89e9-4677-9af9-1a6fb110d622", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)", + "protected": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)", + "protectedSnippet": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy", + "label": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy", + "line": 174, + "column": 12 + } + }, + { + "incidentId": "a5099336-1176-4d78-b8d7-1e907127770f", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)", + "protected": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)", + "protectedSnippet": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem", + "label": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem", + "line": 174, + "column": 12 + } + }, + { + "incidentId": "7a1d061a-0395-4023-892d-a4baff42fce3", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)", + "protected": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.FileExists(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "If My.Computer.FileSystem.FileExists(FilePath) Then My.Computer.FileSystem.DeleteFile(FilePath)", + "protectedSnippet": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.FileExists(System.String)", + "label": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.FileExists(System.String)", + "line": 174, + "column": 12 + } + }, + { + "incidentId": "2541a9f5-32f9-4d0a-b9df-6cf115cd354f", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Friend Function SqlCon() As SqlClient.SqlConnection\r\n Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)\r\n End Function", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Friend Function SqlCon() As SqlClient.SqlConnection\r\n Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)\r\n End Function", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 10, + "column": 4 + } + }, + { + "incidentId": "40496813-5ba6-4d57-b2e8-397525d7445b", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protected": "T:System.Configuration.ConfigurationManager" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "T:System.Configuration.ConfigurationManager", + "label": "T:System.Configuration.ConfigurationManager", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 11, + "column": 8 + } + }, + { + "incidentId": "58062be9-644f-40e8-b211-5a2bda259aef", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protected": "T:System.Configuration.ConnectionStringSettingsCollection" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettingsCollection", + "label": "T:System.Configuration.ConnectionStringSettingsCollection", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 11, + "column": 8 + } + }, + { + "incidentId": "6a164337-2cda-4056-b31c-610650e877a8", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protected": "P:System.Configuration.ConfigurationManager.ConnectionStrings" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "label": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 11, + "column": 8 + } + }, + { + "incidentId": "4a8a3184-2752-410c-98be-8583355cd56d", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protected": "T:System.Configuration.ConnectionStringSettings" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettings", + "label": "T:System.Configuration.ConnectionStringSettings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 11, + "column": 8 + } + }, + { + "incidentId": "5291c97e-fa16-4956-b2a5-bf689a61d3b1", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protected": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "label": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 11, + "column": 8 + } + }, + { + "incidentId": "fd3a5a3f-7dde-47ec-8554-6845ce4d6549", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protected": "P:System.Configuration.ConnectionStringSettings.ConnectionString" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "label": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 11, + "column": 8 + } + }, + { + "incidentId": "35ec0849-10a2-434d-ac6b-b930f4d9dd1c", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 11, + "column": 8 + } + }, + { + "incidentId": "5b4532f1-0913-4d89-9412-3f44d400509c", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protected": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return New SqlClient.SqlConnection(Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString)", + "protectedSnippet": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "label": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 11, + "column": 8 + } + }, + { + "incidentId": "2c7c4c58-7596-4425-a8a3-a14fb1349f0f", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protected": "T:System.Configuration.ConfigurationManager" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "T:System.Configuration.ConfigurationManager", + "label": "T:System.Configuration.ConfigurationManager", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "fe65b426-86b9-481c-a336-9b14cdcf26ff", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protected": "T:System.Configuration.ConnectionStringSettingsCollection" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettingsCollection", + "label": "T:System.Configuration.ConnectionStringSettingsCollection", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "3c281aac-f87c-44af-9389-a49ceb43225c", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protected": "P:System.Configuration.ConfigurationManager.ConnectionStrings" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "label": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "eb7056e5-4b15-4879-82e9-0833a6c000d4", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protected": "T:System.Configuration.ConnectionStringSettings" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettings", + "label": "T:System.Configuration.ConnectionStringSettings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "bfc2928c-81f3-411b-a29c-46b436419600", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protected": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "label": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "2f0032ae-5a93-4c9e-99c9-2f6e427fbd50", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protected": "P:System.Configuration.ConnectionStringSettings.ConnectionString" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_fds_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "label": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 8, + "column": 8 + } + }, + { + "incidentId": "34fe63cb-f904-477e-a090-9e21a5949de1", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protected": "T:System.Configuration.ConfigurationManager" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "T:System.Configuration.ConfigurationManager", + "label": "T:System.Configuration.ConfigurationManager", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "c9b95ff4-4eaa-4ab7-a248-e5bda7d7f1ca", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protected": "T:System.Configuration.ConnectionStringSettingsCollection" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettingsCollection", + "label": "T:System.Configuration.ConnectionStringSettingsCollection", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "fe7ab958-7b67-4435-8008-2b5f5cbc3360", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protected": "P:System.Configuration.ConfigurationManager.ConnectionStrings" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "label": "P:System.Configuration.ConfigurationManager.ConnectionStrings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "239b205f-240e-4b96-8d7c-9892424dde52", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protected": "T:System.Configuration.ConnectionStringSettings" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "T:System.Configuration.ConnectionStringSettings", + "label": "T:System.Configuration.ConnectionStringSettings", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "72e6bd3c-7c49-4685-b614-1fadc3076a93", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protected": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "label": "P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "eb884147-3703-4dab-99ba-50d8e7af396c", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protected": "P:System.Configuration.ConnectionStringSettings.ConnectionString" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_shared.vb", + "snippet": "Return Configuration.ConfigurationManager.ConnectionStrings(\u0022fuchs_ConnectionString\u0022).ConnectionString", + "protectedSnippet": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "label": "P:System.Configuration.ConnectionStringSettings.ConnectionString", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 5, + "column": 8 + } + }, + { + "incidentId": "054ad002-dd1f-4b04-85c5-ededca645573", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName \u0026 If(Strings.Right(TgtArchiveDirectory.FullName, 1) = \u0022\\\u0022, \u0022\u0022, \u0022\\\u0022) \u0026 ArchiveName)", + "protected": "P:System.IO.DirectoryInfo.FullName" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_zip.vb", + "snippet": "Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName \u0026 If(Strings.Right(TgtArchiveDirectory.FullName, 1) = \u0022\\\u0022, \u0022\u0022, \u0022\\\u0022) \u0026 ArchiveName)", + "protectedSnippet": "P:System.IO.DirectoryInfo.FullName", + "label": "P:System.IO.DirectoryInfo.FullName", + "line": 444, + "column": 12 + } + }, + { + "incidentId": "f80a3ac8-90a4-4874-8c7b-f0aad8b0a3fb", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName \u0026 If(Strings.Right(TgtArchiveDirectory.FullName, 1) = \u0022\\\u0022, \u0022\u0022, \u0022\\\u0022) \u0026 ArchiveName)", + "protected": "P:System.IO.DirectoryInfo.FullName" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_zip.vb", + "snippet": "Dim ArchiveFile As New FileInfo(TgtArchiveDirectory.FullName \u0026 If(Strings.Right(TgtArchiveDirectory.FullName, 1) = \u0022\\\u0022, \u0022\u0022, \u0022\\\u0022) \u0026 ArchiveName)", + "protectedSnippet": "P:System.IO.DirectoryInfo.FullName", + "label": "P:System.IO.DirectoryInfo.FullName", + "line": 444, + "column": 12 + } + }, + { + "incidentId": "f38f5297-ba53-44b5-a28d-b5977a991ec4", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me.ZipOut.ExtractArchive(TgtDirectory.FullName)", + "protected": "P:System.IO.DirectoryInfo.FullName" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_zip.vb", + "snippet": "Me.ZipOut.ExtractArchive(TgtDirectory.FullName)", + "protectedSnippet": "P:System.IO.DirectoryInfo.FullName", + "label": "P:System.IO.DirectoryInfo.FullName", + "line": 119, + "column": 20 + } + }, + { + "incidentId": "49c2d2c8-ff4a-4745-8449-7fdb2efbce28", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "OCMS.debug_log(\u0022DDA.intranet.Zipping Archive InitZipIn\u0022, ex:=ex, data:=New With {.DataArchiveFilePath = DataArchiveFilePath.FullName, .TgtDirectory = TgtDirectory.FullName})", + "protected": "P:System.IO.DirectoryInfo.FullName" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_zip.vb", + "snippet": "OCMS.debug_log(\u0022DDA.intranet.Zipping Archive InitZipIn\u0022, ex:=ex, data:=New With {.DataArchiveFilePath = DataArchiveFilePath.FullName, .TgtDirectory = TgtDirectory.FullName})", + "protectedSnippet": "P:System.IO.DirectoryInfo.FullName", + "label": "P:System.IO.DirectoryInfo.FullName", + "line": 114, + "column": 20 + } + }, + { + "incidentId": "4879e32c-48fc-4995-888e-09eda5dcfe07", + "ruleId": "Api.0002", + "description": "AssemblyName.CodeBase and AssemblyName.EscapedCodeBase are obsolete. Using them for loading an assembly is not supported. ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)", + "protected": "P:System.Reflection.AssemblyName.CodeBase" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_zip.vb", + "snippet": "assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)", + "protectedSnippet": "P:System.Reflection.AssemblyName.CodeBase", + "label": "P:System.Reflection.AssemblyName.CodeBase", + "links": [ + { + "title": "API documentation", + "url": "https://aka.ms/dotnet-warnings/SYSLIB0044", + "isCustom": false + } + ], + "line": 48, + "column": 20 + } + }, + { + "incidentId": "45cd203b-8bc5-44df-8b18-4e41e613adc2", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_zip.vb", + "snippet": "assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 48, + "column": 20 + } + }, + { + "incidentId": "36f6077c-fe3e-4882-8ce1-e5887fbafcc5", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)", + "protected": "M:System.Uri.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_zip.vb", + "snippet": "assemblydirectory = New IO.DirectoryInfo(New Uri(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)).LocalPath)", + "protectedSnippet": "M:System.Uri.#ctor(System.String)", + "label": "M:System.Uri.#ctor(System.String)", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 48, + "column": 20 + } + }, + { + "incidentId": "0ff5411d-6e9a-426e-870d-f155c1082b6f", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "\u003CDiagnostics.DebuggerStepThrough\u003E\r\n Public Sub DebugLog(CodeReference As String, SQLConnection As SqlClient.SqlConnection, Optional exc As Exception = Nothing, Optional data As String = \u0022\u0022, Optional context As Object = Nothing)\r\n If CodeReference = \u0022\u0022 OrElse IsNothing(SQLConnection) = True Then Exit Sub\r\n Dim note As String = Now.ToString(\u0022yyyy.MM.dd HH:mm:ss\u0022) \u0026 \u0022 - \u0022 \u0026 CodeReference\r\n Try\r\n Try\r\n If IsNothing(SQLConnection) = False Then\r\n Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }\r\n Try\r\n Dim w As Integer = 0\r\n If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close()\r\n If SQLConnection.State = ConnectionState.Connecting Then\r\n w = 0\r\n While SQLConnection.State = ConnectionState.Connecting And w \u003C 10\r\n System.Threading.Thread.Sleep(100)\r\n w \u002B= 1\r\n End While\r\n ElseIf Not SQLConnection.State = ConnectionState.Open Then\r\n SQLConnection.Open()\r\n End If\r\n w = 0\r\n While Not SQLConnection.State = ConnectionState.Open And w \u003C 10\r\n System.Threading.Thread.Sleep(100)\r\n w \u002B= 1\r\n End While\r\n Dim cmd As New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;\u0022, SQLConnection)\r\n cmd.Parameters.AddRange(pl.ToArray)\r\n Call cmd.ExecuteNonQuery()\r\n \u0027SQLConnection.Close()\r\n cmd.Parameters.Clear()\r\n\r\n Catch sqlex As Exception\r\n End Try\r\n\r\n End If\r\n Catch dbex As Exception\r\n\r\n End Try\r\n\r\n If IsNothing(exc) = False Then\r\n note \u0026= (vbCrLf \u0026 \u0022Exception:\u0022 \u0026 exc.Message \u0026 vbCrLf \u0026 \u0022Stack:\u0022 \u0026 exc.StackTrace.ToString).Replace(vbLf, vbLf \u0026 \u0022 \u0022)\r\n End If\r\n If data \u003C\u003E \u0022\u0022 Then\r\n note \u0026= (vbCrLf \u0026 \u0022Data:\u0022 \u0026 data).Replace(vbLf, vbLf \u0026 \u0022 \u0022)\r\n End If\r\n note \u0026= vbCrLf\r\n\r\n Dim DebugLogfile As IO.FileInfo = LogFile(\u0022DebugLog.txt\u0022)\r\n If DebugLogfile.Directory.Exists = True Then\r\n IO.File.AppendAllText(DebugLogfile.FullName, note)\r\n End If\r\n Catch logex As Exception\r\n\r\n Finally\r\n\r\n Console.Write(note)\r\n Debug.Print(note)\r\n End Try\r\n End Sub", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "\u003CDiagnostics.DebuggerStepThrough\u003E\r\n Public Sub DebugLog(CodeReference As String, SQLConnection As SqlClient.SqlConnection, Optional exc As Exception = Nothing, Optional data As String = \u0022\u0022, Optional context As Object = Nothing)\r\n If CodeReference = \u0022\u0022 OrElse IsNothing(SQLConnection) = True Then Exit Sub\r\n Dim note As String = Now.ToString(\u0022yyyy.MM.dd HH:mm:ss\u0022) \u0026 \u0022 - \u0022 \u0026 CodeReference\r\n Try\r\n Try\r\n If IsNothing(SQLConnection) = False Then\r\n Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }\r\n Try\r\n Dim w As Integer = 0\r\n If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close()\r\n If SQLConnection.State = ConnectionState.Connecting Then\r\n w = 0\r\n While SQLConnection.State = ConnectionState.Connecting And w \u003C 10\r\n System.Threading.Thread.Sleep(100)\r\n w \u002B= 1\r\n End While\r\n ElseIf Not SQLConnection.State = ConnectionState.Open Then\r\n SQLConnection.Open()\r\n End If\r\n w = 0\r\n While Not SQLConnection.State = ConnectionState.Open And w \u003C 10\r\n System.Threading.Thread.Sleep(100)\r\n w \u002B= 1\r\n End While\r\n Dim cmd As New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;\u0022, SQLConnection)\r\n cmd.Parameters.AddRange(pl.ToArray)\r\n Call cmd.ExecuteNonQuery()\r\n \u0027SQLConnection.Close()\r\n cmd.Parameters.Clear()\r\n\r\n Catch sqlex As Exception\r\n End Try\r\n\r\n End If\r\n Catch dbex As Exception\r\n\r\n End Try\r\n\r\n If IsNothing(exc) = False Then\r\n note \u0026= (vbCrLf \u0026 \u0022Exception:\u0022 \u0026 exc.Message \u0026 vbCrLf \u0026 \u0022Stack:\u0022 \u0026 exc.StackTrace.ToString).Replace(vbLf, vbLf \u0026 \u0022 \u0022)\r\n End If\r\n If data \u003C\u003E \u0022\u0022 Then\r\n note \u0026= (vbCrLf \u0026 \u0022Data:\u0022 \u0026 data).Replace(vbLf, vbLf \u0026 \u0022 \u0022)\r\n End If\r\n note \u0026= vbCrLf\r\n\r\n Dim DebugLogfile As IO.FileInfo = LogFile(\u0022DebugLog.txt\u0022)\r\n If DebugLogfile.Directory.Exists = True Then\r\n IO.File.AppendAllText(DebugLogfile.FullName, note)\r\n End If\r\n Catch logex As Exception\r\n\r\n Finally\r\n\r\n Console.Write(note)\r\n Debug.Print(note)\r\n End Try\r\n End Sub", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 45, + "column": 4 + } + }, + { + "incidentId": "dd603345-9369-47a6-99d2-231b1f6c6a38", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "cmd.Parameters.Clear()", + "protected": "T:System.Data.SqlClient.SqlParameterCollection" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "cmd.Parameters.Clear()", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameterCollection", + "label": "T:System.Data.SqlClient.SqlParameterCollection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 79, + "column": 24 + } + }, + { + "incidentId": "fb597fa8-e715-4d3d-bee1-e7ae82fc8daf", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "cmd.Parameters.Clear()", + "protected": "P:System.Data.SqlClient.SqlCommand.Parameters" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "cmd.Parameters.Clear()", + "protectedSnippet": "P:System.Data.SqlClient.SqlCommand.Parameters", + "label": "P:System.Data.SqlClient.SqlCommand.Parameters", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 79, + "column": 24 + } + }, + { + "incidentId": "9c4451ee-4ce8-4fd6-9baf-9e20f9eea792", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "cmd.Parameters.Clear()", + "protected": "M:System.Data.SqlClient.SqlParameterCollection.Clear" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "cmd.Parameters.Clear()", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameterCollection.Clear", + "label": "M:System.Data.SqlClient.SqlParameterCollection.Clear", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 79, + "column": 24 + } + }, + { + "incidentId": "4a96483e-5a3a-4b51-afd5-742046d06393", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Call cmd.ExecuteNonQuery()", + "protected": "M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Call cmd.ExecuteNonQuery()", + "protectedSnippet": "M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery", + "label": "M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 77, + "column": 24 + } + }, + { + "incidentId": "0073bb7a-4bd2-450b-9554-2cc3d6911054", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "cmd.Parameters.AddRange(pl.ToArray)", + "protected": "T:System.Data.SqlClient.SqlParameterCollection" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "cmd.Parameters.AddRange(pl.ToArray)", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameterCollection", + "label": "T:System.Data.SqlClient.SqlParameterCollection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 76, + "column": 24 + } + }, + { + "incidentId": "ff243dfd-2846-4e50-a4cb-4b53c2b59d2a", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "cmd.Parameters.AddRange(pl.ToArray)", + "protected": "P:System.Data.SqlClient.SqlCommand.Parameters" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "cmd.Parameters.AddRange(pl.ToArray)", + "protectedSnippet": "P:System.Data.SqlClient.SqlCommand.Parameters", + "label": "P:System.Data.SqlClient.SqlCommand.Parameters", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 76, + "column": 24 + } + }, + { + "incidentId": "35ba9496-d4cd-4429-96df-e7aed9c2ccb5", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "cmd.Parameters.AddRange(pl.ToArray)", + "protected": "M:System.Data.SqlClient.SqlParameterCollection.AddRange(System.Data.SqlClient.SqlParameter[])" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "cmd.Parameters.AddRange(pl.ToArray)", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameterCollection.AddRange(System.Data.SqlClient.SqlParameter[])", + "label": "M:System.Data.SqlClient.SqlParameterCollection.AddRange(System.Data.SqlClient.SqlParameter[])", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 76, + "column": 24 + } + }, + { + "incidentId": "c81d1a17-24d2-4a3b-b776-6130e9000e65", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim cmd As New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;\u0022, SQLConnection)", + "protected": "T:System.Data.SqlClient.SqlCommand" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim cmd As New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;\u0022, SQLConnection)", + "protectedSnippet": "T:System.Data.SqlClient.SqlCommand", + "label": "T:System.Data.SqlClient.SqlCommand", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 75, + "column": 24 + } + }, + { + "incidentId": "608c6122-38ae-4a50-97e7-f3e9f76166d1", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim cmd As New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;\u0022, SQLConnection)", + "protected": "M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim cmd As New SqlClient.SqlCommand(\u0022EXECUTE [dbo].[fds__admin_logdebug] @CodeReference,@ExceptionMessage,@StackTrace,@Data;\u0022, SQLConnection)", + "protectedSnippet": "M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection)", + "label": "M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 75, + "column": 24 + } + }, + { + "incidentId": "49213089-fadb-4bb9-a826-b9d9f46928a2", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "While Not SQLConnection.State = ConnectionState.Open And w \u003C 10", + "protected": "P:System.Data.SqlClient.SqlConnection.State" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "While Not SQLConnection.State = ConnectionState.Open And w \u003C 10", + "protectedSnippet": "P:System.Data.SqlClient.SqlConnection.State", + "label": "P:System.Data.SqlClient.SqlConnection.State", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 71, + "column": 24 + } + }, + { + "incidentId": "87dc7ad7-910c-4f5b-a596-7b440991f33c", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "SQLConnection.Open()", + "protected": "M:System.Data.SqlClient.SqlConnection.Open" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "SQLConnection.Open()", + "protectedSnippet": "M:System.Data.SqlClient.SqlConnection.Open", + "label": "M:System.Data.SqlClient.SqlConnection.Open", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 68, + "column": 28 + } + }, + { + "incidentId": "88ff344a-6ba1-42bc-84bf-823c2dfdca08", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "ElseIf Not SQLConnection.State = ConnectionState.Open Then", + "protected": "P:System.Data.SqlClient.SqlConnection.State" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "ElseIf Not SQLConnection.State = ConnectionState.Open Then", + "protectedSnippet": "P:System.Data.SqlClient.SqlConnection.State", + "label": "P:System.Data.SqlClient.SqlConnection.State", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 67, + "column": 24 + } + }, + { + "incidentId": "316bebe0-a109-42c7-b50f-925475739e79", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "While SQLConnection.State = ConnectionState.Connecting And w \u003C 10", + "protected": "P:System.Data.SqlClient.SqlConnection.State" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "While SQLConnection.State = ConnectionState.Connecting And w \u003C 10", + "protectedSnippet": "P:System.Data.SqlClient.SqlConnection.State", + "label": "P:System.Data.SqlClient.SqlConnection.State", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 63, + "column": 28 + } + }, + { + "incidentId": "1e5548f8-585c-4e93-bc87-8c2da944ec29", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "If SQLConnection.State = ConnectionState.Connecting Then", + "protected": "P:System.Data.SqlClient.SqlConnection.State" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "If SQLConnection.State = ConnectionState.Connecting Then", + "protectedSnippet": "P:System.Data.SqlClient.SqlConnection.State", + "label": "P:System.Data.SqlClient.SqlConnection.State", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 61, + "column": 24 + } + }, + { + "incidentId": "ae586446-473a-4984-9bbf-d52a56498f2f", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "SQLConnection.Close()", + "protected": "M:System.Data.SqlClient.SqlConnection.Close" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "SQLConnection.Close()", + "protectedSnippet": "M:System.Data.SqlClient.SqlConnection.Close", + "label": "M:System.Data.SqlClient.SqlConnection.Close", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 60, + "column": 77 + } + }, + { + "incidentId": "f0377380-660c-466b-81a4-e439df1bfdf2", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close()", + "protected": "P:System.Data.SqlClient.SqlConnection.State" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "If SQLConnection.State = ConnectionState.Broken Then SQLConnection.Close()", + "protectedSnippet": "P:System.Data.SqlClient.SqlConnection.State", + "label": "P:System.Data.SqlClient.SqlConnection.State", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 60, + "column": 24 + } + }, + { + "incidentId": "ff68eb63-03ea-4565-91a0-bc2b6cf25ffc", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 52, + "column": 20 + } + }, + { + "incidentId": "c013509c-ac80-4c74-aca8-a1b96af47d16", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 52, + "column": 20 + } + }, + { + "incidentId": "ae289992-5879-4b3a-8e98-e874ff6816b7", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 52, + "column": 20 + } + }, + { + "incidentId": "cc228ae1-ebaa-43c6-8832-4f6b367df2a1", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 52, + "column": 20 + } + }, + { + "incidentId": "d6ea6f8e-b5e2-4264-9268-94fcef3ff99c", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 52, + "column": 20 + } + }, + { + "incidentId": "65288288-4070-4bb0-aca7-d707cea8def6", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 52, + "column": 20 + } + }, + { + "incidentId": "1982bf45-8d2c-4d4d-bd66-766905c4434e", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protected": "T:System.Data.SqlClient.SqlParameter" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protectedSnippet": "T:System.Data.SqlClient.SqlParameter", + "label": "T:System.Data.SqlClient.SqlParameter", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 52, + "column": 20 + } + }, + { + "incidentId": "e26e187f-aace-465e-b578-78c828eeaff8", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protected": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Dim pl As New List(Of SqlClient.SqlParameter) From {\r\n New SqlClient.SqlParameter(\u0022@CodeReference\u0022, CodeReference),\r\n New SqlClient.SqlParameter(\u0022@ExceptionMessage\u0022, If(IsNothing(exc), DBNull.Value, exc.Message)),\r\n New SqlClient.SqlParameter(\u0022@StackTrace\u0022, If(IsNothing(exc), DBNull.Value, exc.StackTrace.ToString)),\r\n New SqlClient.SqlParameter(\u0022@data\u0022, If(data, DBNull.Value))\r\n }", + "protectedSnippet": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "label": "M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 52, + "column": 20 + } + }, + { + "incidentId": "52b30c2b-ffe3-4456-adfe-b947ee6b04eb", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using con As New SqlClient.SqlConnection(SQLConnectionString)", + "protected": "T:System.Data.SqlClient.SqlConnection" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Using con As New SqlClient.SqlConnection(SQLConnectionString)", + "protectedSnippet": "T:System.Data.SqlClient.SqlConnection", + "label": "T:System.Data.SqlClient.SqlConnection", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 39, + "column": 8 + } + }, + { + "incidentId": "b0384ed8-c416-4952-89e6-25cbdc48b3ed", + "ruleId": "Api.0002", + "description": "API is available in package System.Data.SqlClient, 4.8.6. Add package reference to System.Data.SqlClient, 4.8.6", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using con As New SqlClient.SqlConnection(SQLConnectionString)", + "protected": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Using con As New SqlClient.SqlConnection(SQLConnectionString)", + "protectedSnippet": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "label": "M:System.Data.SqlClient.SqlConnection.#ctor(System.String)", + "properties": { + "PackageId": "System.Data.SqlClient", + "PackageNewVersion": "4.8.6" + }, + "line": 39, + "column": 8 + } + }, + { + "incidentId": "2e120c27-bf51-48de-a9dc-f2bbe3038a84", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then", + "protected": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then", + "protectedSnippet": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy", + "label": "T:Microsoft.VisualBasic.MyServices.FileSystemProxy", + "line": 19, + "column": 8 + } + }, + { + "incidentId": "5dbe505e-3dab-4ce2-9d51-7084e978fcc9", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then", + "protected": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then", + "protectedSnippet": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem", + "label": "P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem", + "line": 19, + "column": 8 + } + }, + { + "incidentId": "33084b7f-032d-419e-a1ed-e0304ea6add3", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then", + "protected": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DirectoryExists(System.String)" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "ElseIf My.Computer.FileSystem.DirectoryExists(AppDomain.CurrentDomain.BaseDirectory) = True Then", + "protectedSnippet": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DirectoryExists(System.String)", + "label": "M:Microsoft.VisualBasic.MyServices.FileSystemProxy.DirectoryExists(System.String)", + "line": 19, + "column": 8 + } + }, + { + "incidentId": "0ca85547-d0c0-433a-ab9f-f16cceba3ec1", + "ruleId": "Api.0001", + "description": "API is unavailable in net8.0 ", + "projectPath": "Fuchs_DataService\\Fuchs_DataService.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return New IO.FileInfo(AppBaseDirectory().FullName \u0026 FileName)", + "protected": "P:System.IO.DirectoryInfo.FullName" + }, + "kind": "File", + "path": "Fuchs_DataService\\fds_debug.vb", + "snippet": "Return New IO.FileInfo(AppBaseDirectory().FullName \u0026 FileName)", + "protectedSnippet": "P:System.IO.DirectoryInfo.FullName", + "label": "P:System.IO.DirectoryInfo.FullName", + "line": 9, + "column": 8 + } + } + ], + "features": [ + { + "featureId": "SystemWeb", + "incidents": [ + "8bc87b2d-d99d-46e4-b73c-3e276c731056", + "0aadd72b-7e5b-4334-9ae5-6a37b7679962" + ] + }, + { + "featureId": "LegacyConfiguration", + "incidents": [ + "eb884147-3703-4dab-99ba-50d8e7af396c", + "72e6bd3c-7c49-4685-b614-1fadc3076a93", + "239b205f-240e-4b96-8d7c-9892424dde52", + "fe7ab958-7b67-4435-8008-2b5f5cbc3360", + "c9b95ff4-4eaa-4ab7-a248-e5bda7d7f1ca", + "34fe63cb-f904-477e-a090-9e21a5949de1", + "2f0032ae-5a93-4c9e-99c9-2f6e427fbd50", + "bfc2928c-81f3-411b-a29c-46b436419600", + "eb7056e5-4b15-4879-82e9-0833a6c000d4", + "3c281aac-f87c-44af-9389-a49ceb43225c", + "fe65b426-86b9-481c-a336-9b14cdcf26ff", + "2c7c4c58-7596-4425-a8a3-a14fb1349f0f", + "fd3a5a3f-7dde-47ec-8554-6845ce4d6549", + "5291c97e-fa16-4956-b2a5-bf689a61d3b1", + "4a8a3184-2752-410c-98be-8583355cd56d", + "6a164337-2cda-4056-b31c-610650e877a8", + "58062be9-644f-40e8-b211-5a2bda259aef", + "40496813-5ba6-4d57-b2e8-397525d7445b", + "5b0e67bd-5289-416c-91dc-353431a31bd0", + "0f55cc92-05c5-4e03-b951-59df22c47db6", + "4c6352e3-2dec-4317-b578-9b9b87c1bc9b", + "51cc1051-6f93-4913-be80-3f83ddada8ed", + "8fb1be04-5e01-447d-892a-5c980c1ba8f4" + ] + } + ] + }, + { + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "startingProject": true, + "issues": 10, + "storyPoints": 81, + "properties": { + "appName": "MFR_RESTClient", + "projectKind": "ClassicWinForms", + "frameworks": [ + "net48" + ], + "languages": [ + "Visual Basic" + ], + "tools": [ + "MSBuild" + ], + "isSdkStyle": false, + "numberOfFiles": 13, + "numberOfCodeFiles": 12, + "linesTotal": 738, + "linesOfCode": 621, + "totalApiScanned": 545, + "minLinesOfCodeToChange": 26, + "maxLinesOfCodeToChange": 26 + }, + "ruleInstances": [ + { + "incidentId": "91903134-da63-4340-986a-d94777efa85a", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.AspNet.WebApi, 5.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "Microsoft.AspNet.WebApi, 5.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.AspNet.WebApi, 5.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "Microsoft.AspNet.WebApi, 5.2.9\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "Microsoft.AspNet.WebApi 5.2.9", + "properties": { + "PackageId": "Microsoft.AspNet.WebApi", + "PackageVersion": "5.2.9", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "f6edb6ef-5996-46f4-b800-c74652408c81", + "ruleId": "NuGet.0001", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.AspNet.WebApi.Core, 5.2.9\n\nRecommendation:\n\nNo supported version found", + "protected": "Microsoft.AspNet.WebApi.Core, 5.2.9\n\nRecommendation:\n\nNo supported version found" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.AspNet.WebApi.Core, 5.2.9\n\nRecommendation:\n\nNo supported version found", + "protectedSnippet": "Microsoft.AspNet.WebApi.Core, 5.2.9\n\nRecommendation:\n\nNo supported version found", + "label": "Microsoft.AspNet.WebApi.Core 5.2.9", + "properties": { + "PackageId": "Microsoft.AspNet.WebApi.Core", + "PackageVersion": "5.2.9", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "e14877ac-7c65-4b00-bfff-b9c03b460000", + "ruleId": "NuGet.0001", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.AspNet.WebApi.WebHost, 5.2.9\n\nRecommendation:\n\nNo supported version found", + "protected": "Microsoft.AspNet.WebApi.WebHost, 5.2.9\n\nRecommendation:\n\nNo supported version found" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.AspNet.WebApi.WebHost, 5.2.9\n\nRecommendation:\n\nNo supported version found", + "protectedSnippet": "Microsoft.AspNet.WebApi.WebHost, 5.2.9\n\nRecommendation:\n\nNo supported version found", + "label": "Microsoft.AspNet.WebApi.WebHost 5.2.9", + "properties": { + "PackageId": "Microsoft.AspNet.WebApi.WebHost", + "PackageVersion": "5.2.9", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "b993d88e-8aae-4cca-821e-f7dc703d0be6", + "ruleId": "NuGet.0002", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.Bcl.AsyncInterfaces, 7.0.0\n\nRecommendation:\n\nRemove Microsoft.Bcl.AsyncInterfaces, and replace with new package Microsoft.Bcl.AsyncInterfaces 10.0.5", + "protected": "Microsoft.Bcl.AsyncInterfaces, 7.0.0\n\nRecommendation:\n\nRemove Microsoft.Bcl.AsyncInterfaces, and replace with new package Microsoft.Bcl.AsyncInterfaces 10.0.5" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.Bcl.AsyncInterfaces, 7.0.0\n\nRecommendation:\n\nRemove Microsoft.Bcl.AsyncInterfaces, and replace with new package Microsoft.Bcl.AsyncInterfaces 10.0.5", + "protectedSnippet": "Microsoft.Bcl.AsyncInterfaces, 7.0.0\n\nRecommendation:\n\nRemove Microsoft.Bcl.AsyncInterfaces, and replace with new package Microsoft.Bcl.AsyncInterfaces 10.0.5", + "label": "Microsoft.Bcl.AsyncInterfaces 7.0.0", + "properties": { + "PackageId": "Microsoft.Bcl.AsyncInterfaces", + "PackageVersion": "7.0.0", + "PackageNewVersion": "10.0.5", + "PackageReplacements": null + } + } + }, + { + "incidentId": "92e2966b-5482-470e-8d8a-49305a698c4d", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.NETCore.Platforms, 7.0.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "Microsoft.NETCore.Platforms, 7.0.4\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.NETCore.Platforms, 7.0.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "Microsoft.NETCore.Platforms, 7.0.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "Microsoft.NETCore.Platforms 7.0.4", + "properties": { + "PackageId": "Microsoft.NETCore.Platforms", + "PackageVersion": "7.0.4", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "04f65b31-67c4-4d83-a91d-afca03944b1f", + "ruleId": "NuGet.0001", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.WindowsAzure.ConfigurationManager, 3.2.3\n\nRecommendation:\n\nNo supported version found", + "protected": "Microsoft.WindowsAzure.ConfigurationManager, 3.2.3\n\nRecommendation:\n\nNo supported version found" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.WindowsAzure.ConfigurationManager, 3.2.3\n\nRecommendation:\n\nNo supported version found", + "protectedSnippet": "Microsoft.WindowsAzure.ConfigurationManager, 3.2.3\n\nRecommendation:\n\nNo supported version found", + "label": "Microsoft.WindowsAzure.ConfigurationManager 3.2.3", + "properties": { + "PackageId": "Microsoft.WindowsAzure.ConfigurationManager", + "PackageVersion": "3.2.3", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "3d5dd08f-2a4a-4a6a-878f-39ec490b979c", + "ruleId": "NuGet.0002", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4", + "protected": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4", + "protectedSnippet": "Newtonsoft.Json, 13.0.3\n\nRecommendation:\n\nRemove Newtonsoft.Json, and replace with new package Newtonsoft.Json 13.0.4", + "label": "Newtonsoft.Json 13.0.3", + "properties": { + "PackageId": "Newtonsoft.Json", + "PackageVersion": "13.0.3", + "PackageNewVersion": "13.0.4", + "PackageReplacements": null + } + } + }, + { + "incidentId": "42d8188a-728b-41eb-9b0b-1cac309d2c1d", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Buffers, 4.5.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Buffers, 4.5.1\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Buffers, 4.5.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Buffers, 4.5.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Buffers 4.5.1", + "properties": { + "PackageId": "System.Buffers", + "PackageVersion": "4.5.1", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "066274b5-b79f-485a-a589-60832cee82e4", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.IO, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.IO, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.IO, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.IO, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.IO 4.3.0", + "properties": { + "PackageId": "System.IO", + "PackageVersion": "4.3.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "fa9227f1-ed80-4ffb-856e-b8ce96f95ae9", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Memory, 4.5.5\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Memory, 4.5.5\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Memory, 4.5.5\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Memory, 4.5.5\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Memory 4.5.5", + "properties": { + "PackageId": "System.Memory", + "PackageVersion": "4.5.5", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "1488a426-bcc9-47bd-b476-dcd4f8bb4278", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Net.Http, 4.3.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Net.Http, 4.3.4\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Net.Http, 4.3.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Net.Http, 4.3.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Net.Http 4.3.4", + "properties": { + "PackageId": "System.Net.Http", + "PackageVersion": "4.3.4", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "046674ed-124b-40ed-97f0-07e0d9691036", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Numerics.Vectors, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Numerics.Vectors, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Numerics.Vectors, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Numerics.Vectors, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Numerics.Vectors 4.5.0", + "properties": { + "PackageId": "System.Numerics.Vectors", + "PackageVersion": "4.5.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "4f59bcb0-31d5-413a-a0cc-f7870a199cb8", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Runtime, 4.3.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Runtime, 4.3.1\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Runtime, 4.3.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Runtime, 4.3.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Runtime 4.3.1", + "properties": { + "PackageId": "System.Runtime", + "PackageVersion": "4.3.1", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "dae046b3-3456-4ba3-adfc-7ef3a5a21879", + "ruleId": "NuGet.0002", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Runtime.CompilerServices.Unsafe, 6.0.0\n\nRecommendation:\n\nRemove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2", + "protected": "System.Runtime.CompilerServices.Unsafe, 6.0.0\n\nRecommendation:\n\nRemove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Runtime.CompilerServices.Unsafe, 6.0.0\n\nRecommendation:\n\nRemove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2", + "protectedSnippet": "System.Runtime.CompilerServices.Unsafe, 6.0.0\n\nRecommendation:\n\nRemove System.Runtime.CompilerServices.Unsafe, and replace with new package System.Runtime.CompilerServices.Unsafe 6.1.2", + "label": "System.Runtime.CompilerServices.Unsafe 6.0.0", + "properties": { + "PackageId": "System.Runtime.CompilerServices.Unsafe", + "PackageVersion": "6.0.0", + "PackageNewVersion": "6.1.2", + "PackageReplacements": null + } + } + }, + { + "incidentId": "2eb009f7-63dc-41f9-bf33-b726711ee3aa", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Security.Cryptography.Algorithms, 4.3.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Security.Cryptography.Algorithms, 4.3.1\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Security.Cryptography.Algorithms, 4.3.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Security.Cryptography.Algorithms, 4.3.1\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Security.Cryptography.Algorithms 4.3.1", + "properties": { + "PackageId": "System.Security.Cryptography.Algorithms", + "PackageVersion": "4.3.1", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "73c6877f-cb00-4153-a573-ad28cc44703a", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Security.Cryptography.Encoding, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Security.Cryptography.Encoding, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Security.Cryptography.Encoding, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Security.Cryptography.Encoding, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Security.Cryptography.Encoding 4.3.0", + "properties": { + "PackageId": "System.Security.Cryptography.Encoding", + "PackageVersion": "4.3.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "cc8dd6c5-ee5e-45f7-8fda-51d243796160", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Security.Cryptography.Primitives, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Security.Cryptography.Primitives, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Security.Cryptography.Primitives, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Security.Cryptography.Primitives, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Security.Cryptography.Primitives 4.3.0", + "properties": { + "PackageId": "System.Security.Cryptography.Primitives", + "PackageVersion": "4.3.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "583ce237-f527-46d6-a8b0-a29a8b8a2e87", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Security.Cryptography.X509Certificates, 4.3.2\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Security.Cryptography.X509Certificates, 4.3.2\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Security.Cryptography.X509Certificates, 4.3.2\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Security.Cryptography.X509Certificates, 4.3.2\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Security.Cryptography.X509Certificates 4.3.2", + "properties": { + "PackageId": "System.Security.Cryptography.X509Certificates", + "PackageVersion": "4.3.2", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "a4681dc3-a3e3-4509-b4a0-215f7667232b", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Text.Encoding, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Text.Encoding, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Text.Encoding, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Text.Encoding, 4.3.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Text.Encoding 4.3.0", + "properties": { + "PackageId": "System.Text.Encoding", + "PackageVersion": "4.3.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "58f8f237-81fc-485b-a2c9-b3b28f9518a3", + "ruleId": "NuGet.0002", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Text.Encodings.Web, 7.0.0\n\nRecommendation:\n\nRemove System.Text.Encodings.Web, and replace with new package System.Text.Encodings.Web 10.0.5", + "protected": "System.Text.Encodings.Web, 7.0.0\n\nRecommendation:\n\nRemove System.Text.Encodings.Web, and replace with new package System.Text.Encodings.Web 10.0.5" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Text.Encodings.Web, 7.0.0\n\nRecommendation:\n\nRemove System.Text.Encodings.Web, and replace with new package System.Text.Encodings.Web 10.0.5", + "protectedSnippet": "System.Text.Encodings.Web, 7.0.0\n\nRecommendation:\n\nRemove System.Text.Encodings.Web, and replace with new package System.Text.Encodings.Web 10.0.5", + "label": "System.Text.Encodings.Web 7.0.0", + "properties": { + "PackageId": "System.Text.Encodings.Web", + "PackageVersion": "7.0.0", + "PackageNewVersion": "10.0.5", + "PackageReplacements": null + } + } + }, + { + "incidentId": "59bc4a67-9f4b-4e6e-bfc2-50a013ddef11", + "ruleId": "NuGet.0002", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Text.Json, 7.0.3\n\nRecommendation:\n\nRemove System.Text.Json, and replace with new package System.Text.Json 10.0.5", + "protected": "System.Text.Json, 7.0.3\n\nRecommendation:\n\nRemove System.Text.Json, and replace with new package System.Text.Json 10.0.5" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Text.Json, 7.0.3\n\nRecommendation:\n\nRemove System.Text.Json, and replace with new package System.Text.Json 10.0.5", + "protectedSnippet": "System.Text.Json, 7.0.3\n\nRecommendation:\n\nRemove System.Text.Json, and replace with new package System.Text.Json 10.0.5", + "label": "System.Text.Json 7.0.3", + "properties": { + "PackageId": "System.Text.Json", + "PackageVersion": "7.0.3", + "PackageNewVersion": "10.0.5", + "PackageReplacements": null + } + } + }, + { + "incidentId": "8379804f-ceaf-4597-b0b7-a96884125a58", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Threading.Tasks.Extensions, 4.5.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.Threading.Tasks.Extensions, 4.5.4\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Threading.Tasks.Extensions, 4.5.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.Threading.Tasks.Extensions, 4.5.4\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.Threading.Tasks.Extensions 4.5.4", + "properties": { + "PackageId": "System.Threading.Tasks.Extensions", + "PackageVersion": "4.5.4", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "8849a923-fa7e-421e-868b-34b2c7ab4159", + "ruleId": "NuGet.0003", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.ValueTuple, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protected": "System.ValueTuple, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.ValueTuple, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "protectedSnippet": "System.ValueTuple, 4.5.0\n\nRecommendation:\n\nPackage functionality included with new framework reference", + "label": "System.ValueTuple 4.5.0", + "properties": { + "PackageId": "System.ValueTuple", + "PackageVersion": "4.5.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "0f01a191-47ea-4400-8a7b-91f069dfaeed", + "ruleId": "NuGet.0001", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "WindowsAzure.ServiceBus, 6.2.2\n\nRecommendation:\n\nNo supported version found", + "protected": "WindowsAzure.ServiceBus, 6.2.2\n\nRecommendation:\n\nNo supported version found" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "WindowsAzure.ServiceBus, 6.2.2\n\nRecommendation:\n\nNo supported version found", + "protectedSnippet": "WindowsAzure.ServiceBus, 6.2.2\n\nRecommendation:\n\nNo supported version found", + "label": "WindowsAzure.ServiceBus 6.2.2", + "properties": { + "PackageId": "WindowsAzure.ServiceBus", + "PackageVersion": "6.2.2", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "0bb5a4be-cfde-47cf-beda-35407e18bd0c", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.Data.OData, 5.8.5\n\nRecommendation:\n\nBroken thread safe. See https://github.com/OData/odata.net/issues/2452\n\nRemove Microsoft.Data.OData, and replace with new package Microsoft.Data.OData, 5.8.5", + "protected": "Microsoft.Data.OData, 5.8.5\n\nRecommendation:\n\nBroken thread safe. See https://github.com/OData/odata.net/issues/2452\n\nRemove Microsoft.Data.OData, and replace with new package Microsoft.Data.OData, 5.8.5" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.Data.OData, 5.8.5\n\nRecommendation:\n\nBroken thread safe. See https://github.com/OData/odata.net/issues/2452\n\nRemove Microsoft.Data.OData, and replace with new package Microsoft.Data.OData, 5.8.5", + "protectedSnippet": "Microsoft.Data.OData, 5.8.5\n\nRecommendation:\n\nBroken thread safe. See https://github.com/OData/odata.net/issues/2452\n\nRemove Microsoft.Data.OData, and replace with new package Microsoft.Data.OData, 5.8.5", + "label": "Microsoft.Data.OData 5.8.5", + "properties": { + "PackageId": "Microsoft.Data.OData", + "PackageVersion": "5.8.5", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "691c1480-c1f0-4721-901d-949f173cf9ac", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.IdentityModel.Abstractions, 7.0.2\n\nRecommendation:\n\nUpdate to latest https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.Abstractions, and replace with new package Microsoft.IdentityModel.Abstractions, 8.17.0", + "protected": "Microsoft.IdentityModel.Abstractions, 7.0.2\n\nRecommendation:\n\nUpdate to latest https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.Abstractions, and replace with new package Microsoft.IdentityModel.Abstractions, 8.17.0" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.IdentityModel.Abstractions, 7.0.2\n\nRecommendation:\n\nUpdate to latest https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.Abstractions, and replace with new package Microsoft.IdentityModel.Abstractions, 8.17.0", + "protectedSnippet": "Microsoft.IdentityModel.Abstractions, 7.0.2\n\nRecommendation:\n\nUpdate to latest https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.Abstractions, and replace with new package Microsoft.IdentityModel.Abstractions, 8.17.0", + "label": "Microsoft.IdentityModel.Abstractions 7.0.2", + "properties": { + "PackageId": "Microsoft.IdentityModel.Abstractions", + "PackageVersion": "7.0.2", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "91e7cbe7-46ca-4caa-8a20-7a520b8e5899", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0\n\nRecommendation:\n\nPlease note, a newer package is available Microsoft.Identity.Client.\nThis package will continue to receive critical bug fixes until December 2022, we strongly encourage you to upgrade.\nSee https://docs.microsoft.com/azure/active-directory/develop/msal-net-migration for Migration guide and more details.\nRemove Microsoft.IdentityModel.Clients.ActiveDirectory, and replace with new package Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0", + "protected": "Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0\n\nRecommendation:\n\nPlease note, a newer package is available Microsoft.Identity.Client.\nThis package will continue to receive critical bug fixes until December 2022, we strongly encourage you to upgrade.\nSee https://docs.microsoft.com/azure/active-directory/develop/msal-net-migration for Migration guide and more details.\nRemove Microsoft.IdentityModel.Clients.ActiveDirectory, and replace with new package Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0\n\nRecommendation:\n\nPlease note, a newer package is available Microsoft.Identity.Client.\nThis package will continue to receive critical bug fixes until December 2022, we strongly encourage you to upgrade.\nSee https://docs.microsoft.com/azure/active-directory/develop/msal-net-migration for Migration guide and more details.\nRemove Microsoft.IdentityModel.Clients.ActiveDirectory, and replace with new package Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0", + "protectedSnippet": "Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0\n\nRecommendation:\n\nPlease note, a newer package is available Microsoft.Identity.Client.\nThis package will continue to receive critical bug fixes until December 2022, we strongly encourage you to upgrade.\nSee https://docs.microsoft.com/azure/active-directory/develop/msal-net-migration for Migration guide and more details.\nRemove Microsoft.IdentityModel.Clients.ActiveDirectory, and replace with new package Microsoft.IdentityModel.Clients.ActiveDirectory, 5.3.0", + "label": "Microsoft.IdentityModel.Clients.ActiveDirectory 5.3.0", + "properties": { + "PackageId": "Microsoft.IdentityModel.Clients.ActiveDirectory", + "PackageVersion": "5.3.0", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "a32f16e3-d36b-43f7-8516-656be6f6b882", + "ruleId": "NuGet.0004", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.IdentityModel.JsonWebTokens, 7.0.2\n\nRecommendation:\n\nMicrosoft.IdentityModel.JsonWebTokens, 8.17.0", + "protected": "Microsoft.IdentityModel.JsonWebTokens, 7.0.2\n\nRecommendation:\n\nMicrosoft.IdentityModel.JsonWebTokens, 8.17.0" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.IdentityModel.JsonWebTokens, 7.0.2\n\nRecommendation:\n\nMicrosoft.IdentityModel.JsonWebTokens, 8.17.0", + "protectedSnippet": "Microsoft.IdentityModel.JsonWebTokens, 7.0.2\n\nRecommendation:\n\nMicrosoft.IdentityModel.JsonWebTokens, 8.17.0", + "label": "Microsoft.IdentityModel.JsonWebTokens 7.0.2", + "properties": { + "PackageId": "Microsoft.IdentityModel.JsonWebTokens", + "PackageVersion": "7.0.2", + "PackageNewVersion": "8.17.0", + "PackageReplacements": null + } + } + }, + { + "incidentId": "a3cecea5-6509-4c4a-b597-ea9d86a987b8", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.IdentityModel.JsonWebTokens, 7.0.2\n\nRecommendation:\n\nMove to latest https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.JsonWebTokens, and replace with new package Microsoft.IdentityModel.JsonWebTokens, 8.17.0", + "protected": "Microsoft.IdentityModel.JsonWebTokens, 7.0.2\n\nRecommendation:\n\nMove to latest https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.JsonWebTokens, and replace with new package Microsoft.IdentityModel.JsonWebTokens, 8.17.0" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.IdentityModel.JsonWebTokens, 7.0.2\n\nRecommendation:\n\nMove to latest https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.JsonWebTokens, and replace with new package Microsoft.IdentityModel.JsonWebTokens, 8.17.0", + "protectedSnippet": "Microsoft.IdentityModel.JsonWebTokens, 7.0.2\n\nRecommendation:\n\nMove to latest https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.JsonWebTokens, and replace with new package Microsoft.IdentityModel.JsonWebTokens, 8.17.0", + "label": "Microsoft.IdentityModel.JsonWebTokens 7.0.2", + "properties": { + "PackageId": "Microsoft.IdentityModel.JsonWebTokens", + "PackageVersion": "7.0.2", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "7ab69f4f-10be-4b67-a672-1e60f65f42a0", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.IdentityModel.Logging, 7.0.2\n\nRecommendation:\n\nMove to latest, see https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.Logging, and replace with new package Microsoft.IdentityModel.Logging, 8.17.0", + "protected": "Microsoft.IdentityModel.Logging, 7.0.2\n\nRecommendation:\n\nMove to latest, see https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.Logging, and replace with new package Microsoft.IdentityModel.Logging, 8.17.0" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.IdentityModel.Logging, 7.0.2\n\nRecommendation:\n\nMove to latest, see https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.Logging, and replace with new package Microsoft.IdentityModel.Logging, 8.17.0", + "protectedSnippet": "Microsoft.IdentityModel.Logging, 7.0.2\n\nRecommendation:\n\nMove to latest, see https://aka.ms/IdentityModel/LTS\nRemove Microsoft.IdentityModel.Logging, and replace with new package Microsoft.IdentityModel.Logging, 8.17.0", + "label": "Microsoft.IdentityModel.Logging 7.0.2", + "properties": { + "PackageId": "Microsoft.IdentityModel.Logging", + "PackageVersion": "7.0.2", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "c5a4f112-0000-45ab-bd25-a14004cfdbd9", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.IdentityModel.Tokens, 7.0.2\n\nRecommendation:\n\nMove to latest Microsoft.IdentityModel.Tokens. See https://aka.ms/IdentityModel/LTS,\nRemove Microsoft.IdentityModel.Tokens, and replace with new package Microsoft.IdentityModel.Tokens, 8.17.0", + "protected": "Microsoft.IdentityModel.Tokens, 7.0.2\n\nRecommendation:\n\nMove to latest Microsoft.IdentityModel.Tokens. See https://aka.ms/IdentityModel/LTS,\nRemove Microsoft.IdentityModel.Tokens, and replace with new package Microsoft.IdentityModel.Tokens, 8.17.0" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.IdentityModel.Tokens, 7.0.2\n\nRecommendation:\n\nMove to latest Microsoft.IdentityModel.Tokens. See https://aka.ms/IdentityModel/LTS,\nRemove Microsoft.IdentityModel.Tokens, and replace with new package Microsoft.IdentityModel.Tokens, 8.17.0", + "protectedSnippet": "Microsoft.IdentityModel.Tokens, 7.0.2\n\nRecommendation:\n\nMove to latest Microsoft.IdentityModel.Tokens. See https://aka.ms/IdentityModel/LTS,\nRemove Microsoft.IdentityModel.Tokens, and replace with new package Microsoft.IdentityModel.Tokens, 8.17.0", + "label": "Microsoft.IdentityModel.Tokens 7.0.2", + "properties": { + "PackageId": "Microsoft.IdentityModel.Tokens", + "PackageVersion": "7.0.2", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "a49dd6a0-e3c0-49dd-9cc6-88fa93f1c9a5", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.Rest.ClientRuntime, 2.3.24\n\nRecommendation:\n\nThank you for the interest in this package.\n\nThe replacement package is available https://www.nuget.org/packages/Azure.Core/, you can find more information of this new package from https://learn.microsoft.com/en-us/dotnet/api/overview/azure/core-readme?view=azure-dotnet.\n\nThis package is no longer maintained.\nRemove Microsoft.Rest.ClientRuntime, and replace with new package Microsoft.Rest.ClientRuntime, 2.3.24", + "protected": "Microsoft.Rest.ClientRuntime, 2.3.24\n\nRecommendation:\n\nThank you for the interest in this package.\n\nThe replacement package is available https://www.nuget.org/packages/Azure.Core/, you can find more information of this new package from https://learn.microsoft.com/en-us/dotnet/api/overview/azure/core-readme?view=azure-dotnet.\n\nThis package is no longer maintained.\nRemove Microsoft.Rest.ClientRuntime, and replace with new package Microsoft.Rest.ClientRuntime, 2.3.24" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.Rest.ClientRuntime, 2.3.24\n\nRecommendation:\n\nThank you for the interest in this package.\n\nThe replacement package is available https://www.nuget.org/packages/Azure.Core/, you can find more information of this new package from https://learn.microsoft.com/en-us/dotnet/api/overview/azure/core-readme?view=azure-dotnet.\n\nThis package is no longer maintained.\nRemove Microsoft.Rest.ClientRuntime, and replace with new package Microsoft.Rest.ClientRuntime, 2.3.24", + "protectedSnippet": "Microsoft.Rest.ClientRuntime, 2.3.24\n\nRecommendation:\n\nThank you for the interest in this package.\n\nThe replacement package is available https://www.nuget.org/packages/Azure.Core/, you can find more information of this new package from https://learn.microsoft.com/en-us/dotnet/api/overview/azure/core-readme?view=azure-dotnet.\n\nThis package is no longer maintained.\nRemove Microsoft.Rest.ClientRuntime, and replace with new package Microsoft.Rest.ClientRuntime, 2.3.24", + "label": "Microsoft.Rest.ClientRuntime 2.3.24", + "properties": { + "PackageId": "Microsoft.Rest.ClientRuntime", + "PackageVersion": "2.3.24", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "e876bbe5-6ef6-46bd-b811-9afeba5a1241", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Microsoft.WindowsAzure.ConfigurationManager, 3.2.3\n\nRecommendation:\n\nPlease note, this package is obsolete as of 3/31/2023 and is no longer maintained or monitored. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details.\nRemove Microsoft.WindowsAzure.ConfigurationManager, and replace with new package Microsoft.WindowsAzure.ConfigurationManager, 3.2.3", + "protected": "Microsoft.WindowsAzure.ConfigurationManager, 3.2.3\n\nRecommendation:\n\nPlease note, this package is obsolete as of 3/31/2023 and is no longer maintained or monitored. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details.\nRemove Microsoft.WindowsAzure.ConfigurationManager, and replace with new package Microsoft.WindowsAzure.ConfigurationManager, 3.2.3" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Microsoft.WindowsAzure.ConfigurationManager, 3.2.3\n\nRecommendation:\n\nPlease note, this package is obsolete as of 3/31/2023 and is no longer maintained or monitored. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details.\nRemove Microsoft.WindowsAzure.ConfigurationManager, and replace with new package Microsoft.WindowsAzure.ConfigurationManager, 3.2.3", + "protectedSnippet": "Microsoft.WindowsAzure.ConfigurationManager, 3.2.3\n\nRecommendation:\n\nPlease note, this package is obsolete as of 3/31/2023 and is no longer maintained or monitored. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details.\nRemove Microsoft.WindowsAzure.ConfigurationManager, and replace with new package Microsoft.WindowsAzure.ConfigurationManager, 3.2.3", + "label": "Microsoft.WindowsAzure.ConfigurationManager 3.2.3", + "properties": { + "PackageId": "Microsoft.WindowsAzure.ConfigurationManager", + "PackageVersion": "3.2.3", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "1a7687e2-ecd1-485a-b9d7-4c627ae49055", + "ruleId": "NuGet.0004", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "RestSharp, 110.2.0\n\nRecommendation:\n\nRestSharp, 114.0.0", + "protected": "RestSharp, 110.2.0\n\nRecommendation:\n\nRestSharp, 114.0.0" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "RestSharp, 110.2.0\n\nRecommendation:\n\nRestSharp, 114.0.0", + "protectedSnippet": "RestSharp, 110.2.0\n\nRecommendation:\n\nRestSharp, 114.0.0", + "label": "RestSharp 110.2.0", + "properties": { + "PackageId": "RestSharp", + "PackageVersion": "110.2.0", + "PackageNewVersion": "114.0.0", + "PackageReplacements": null + } + } + }, + { + "incidentId": "95c554f9-1373-45cd-86d5-f25b1b177fd1", + "ruleId": "NuGet.0004", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.IdentityModel.Tokens.Jwt, 7.0.2\n\nRecommendation:\n\nSystem.IdentityModel.Tokens.Jwt, 8.17.0", + "protected": "System.IdentityModel.Tokens.Jwt, 7.0.2\n\nRecommendation:\n\nSystem.IdentityModel.Tokens.Jwt, 8.17.0" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.IdentityModel.Tokens.Jwt, 7.0.2\n\nRecommendation:\n\nSystem.IdentityModel.Tokens.Jwt, 8.17.0", + "protectedSnippet": "System.IdentityModel.Tokens.Jwt, 7.0.2\n\nRecommendation:\n\nSystem.IdentityModel.Tokens.Jwt, 8.17.0", + "label": "System.IdentityModel.Tokens.Jwt 7.0.2", + "properties": { + "PackageId": "System.IdentityModel.Tokens.Jwt", + "PackageVersion": "7.0.2", + "PackageNewVersion": "8.17.0", + "PackageReplacements": null + } + } + }, + { + "incidentId": "e00e92ff-5130-49ca-899d-b32412ff9584", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.IdentityModel.Tokens.Jwt, 7.0.2\n\nRecommendation:\n\nMove to latest https://aka.ms/IdentityModel/LTS\nRemove System.IdentityModel.Tokens.Jwt, and replace with new package System.IdentityModel.Tokens.Jwt, 8.17.0", + "protected": "System.IdentityModel.Tokens.Jwt, 7.0.2\n\nRecommendation:\n\nMove to latest https://aka.ms/IdentityModel/LTS\nRemove System.IdentityModel.Tokens.Jwt, and replace with new package System.IdentityModel.Tokens.Jwt, 8.17.0" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.IdentityModel.Tokens.Jwt, 7.0.2\n\nRecommendation:\n\nMove to latest https://aka.ms/IdentityModel/LTS\nRemove System.IdentityModel.Tokens.Jwt, and replace with new package System.IdentityModel.Tokens.Jwt, 8.17.0", + "protectedSnippet": "System.IdentityModel.Tokens.Jwt, 7.0.2\n\nRecommendation:\n\nMove to latest https://aka.ms/IdentityModel/LTS\nRemove System.IdentityModel.Tokens.Jwt, and replace with new package System.IdentityModel.Tokens.Jwt, 8.17.0", + "label": "System.IdentityModel.Tokens.Jwt 7.0.2", + "properties": { + "PackageId": "System.IdentityModel.Tokens.Jwt", + "PackageVersion": "7.0.2", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "3e8dd008-4115-42e4-9e01-6c1c29952db7", + "ruleId": "NuGet.0004", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "System.Text.Json, 7.0.3\n\nRecommendation:\n\nSystem.Text.Json, 10.0.5", + "protected": "System.Text.Json, 7.0.3\n\nRecommendation:\n\nSystem.Text.Json, 10.0.5" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "System.Text.Json, 7.0.3\n\nRecommendation:\n\nSystem.Text.Json, 10.0.5", + "protectedSnippet": "System.Text.Json, 7.0.3\n\nRecommendation:\n\nSystem.Text.Json, 10.0.5", + "label": "System.Text.Json 7.0.3", + "properties": { + "PackageId": "System.Text.Json", + "PackageVersion": "7.0.3", + "PackageNewVersion": "10.0.5", + "PackageReplacements": null + } + } + }, + { + "incidentId": "19b4bfb1-1f93-44c5-b567-262760de0135", + "ruleId": "NuGet.0005", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "WindowsAzure.ServiceBus, 6.2.2\n\nRecommendation:\n\nPlease note, this package is obsolete and will no longer be maintained after 9/30/2026. Microsoft encourages you to upgrade to the replacement package, Azure.Messaging.ServiceBus, to continue receiving updates. Refer to the migration guide (https://aka.ms/azsdk/net/migrate/sb) for guidance on upgrading. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details.\nRemove WindowsAzure.ServiceBus, and replace with new package WindowsAzure.ServiceBus, 4.1.11", + "protected": "WindowsAzure.ServiceBus, 6.2.2\n\nRecommendation:\n\nPlease note, this package is obsolete and will no longer be maintained after 9/30/2026. Microsoft encourages you to upgrade to the replacement package, Azure.Messaging.ServiceBus, to continue receiving updates. Refer to the migration guide (https://aka.ms/azsdk/net/migrate/sb) for guidance on upgrading. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details.\nRemove WindowsAzure.ServiceBus, and replace with new package WindowsAzure.ServiceBus, 4.1.11" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "WindowsAzure.ServiceBus, 6.2.2\n\nRecommendation:\n\nPlease note, this package is obsolete and will no longer be maintained after 9/30/2026. Microsoft encourages you to upgrade to the replacement package, Azure.Messaging.ServiceBus, to continue receiving updates. Refer to the migration guide (https://aka.ms/azsdk/net/migrate/sb) for guidance on upgrading. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details.\nRemove WindowsAzure.ServiceBus, and replace with new package WindowsAzure.ServiceBus, 4.1.11", + "protectedSnippet": "WindowsAzure.ServiceBus, 6.2.2\n\nRecommendation:\n\nPlease note, this package is obsolete and will no longer be maintained after 9/30/2026. Microsoft encourages you to upgrade to the replacement package, Azure.Messaging.ServiceBus, to continue receiving updates. Refer to the migration guide (https://aka.ms/azsdk/net/migrate/sb) for guidance on upgrading. Refer to our deprecation policy (https://aka.ms/azsdk/support-policies) for more details.\nRemove WindowsAzure.ServiceBus, and replace with new package WindowsAzure.ServiceBus, 4.1.11", + "label": "WindowsAzure.ServiceBus 6.2.2", + "properties": { + "PackageId": "WindowsAzure.ServiceBus", + "PackageVersion": "6.2.2", + "PackageNewVersion": null, + "PackageReplacements": null + } + } + }, + { + "incidentId": "34c9f424-1fa2-4930-8f0f-d9108284f2c4", + "ruleId": "Project.0001", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj" + } + }, + { + "incidentId": "5b61de10-8d5c-459a-81cf-e87ac41db46a", + "ruleId": "Project.0002", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0-windows", + "protected": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0-windows" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0-windows", + "protectedSnippet": "Current target framework: .NETFramework,Version=v4.8\nRecommended target framework: net10.0-windows", + "properties": { + "CurrentTargetFramework": ".NETFramework,Version=v4.8", + "RecommendedTargetFramework": "net10.0-windows" + } + } + }, + { + "incidentId": "46ed60d9-93d7-4266-9ccb-6ee97ec46863", + "ruleId": "UpgradeScenario.0040", + "description": "WCF Behavior Extension: connectionStatusBehavior", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "WCF behavior extension: name=connectionStatusBehavior, type=Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=", + "protected": "WCF behavior extension: name=connectionStatusBehavior, type=Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "WCF behavior extension: name=connectionStatusBehavior, type=Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=", + "protectedSnippet": "WCF behavior extension: name=connectionStatusBehavior, type=Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=" + } + }, + { + "incidentId": "9b0aed1a-b1d4-41bb-98e3-e110956cecdb", + "ruleId": "UpgradeScenario.0040", + "description": "WCF Behavior Extension: transportClientEndpointBehavior", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "WCF behavior extension: name=transportClientEndpointBehavior, type=Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=", + "protected": "WCF behavior extension: name=transportClientEndpointBehavior, type=Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "WCF behavior extension: name=transportClientEndpointBehavior, type=Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=", + "protectedSnippet": "WCF behavior extension: name=transportClientEndpointBehavior, type=Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=" + } + }, + { + "incidentId": "6b3faea5-b895-4888-8c29-78372213dcaf", + "ruleId": "UpgradeScenario.0040", + "description": "WCF Behavior Extension: serviceRegistrySettings", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "WCF behavior extension: name=serviceRegistrySettings, type=Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=", + "protected": "WCF behavior extension: name=serviceRegistrySettings, type=Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "snippet": "WCF behavior extension: name=serviceRegistrySettings, type=Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=", + "protectedSnippet": "WCF behavior extension: name=serviceRegistrySettings, type=Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35, filePath=" + } + }, + { + "incidentId": "def10fbd-4772-416f-b7ba-157e5c231784", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me(\u0022MFR_Password\u0022) = value", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\My Project\\Settings.Designer.vb", + "snippet": "Me(\u0022MFR_Password\u0022) = value", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 88, + "column": 16 + } + }, + { + "incidentId": "3c4249ab-cead-4a96-bb03-299cad4d71f4", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022MFR_Password\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022MFR_Password\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 85, + "column": 16 + } + }, + { + "incidentId": "b5e69fd8-1f91-40a2-b593-199f91035463", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me(\u0022MFR_UserName\u0022) = value", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\My Project\\Settings.Designer.vb", + "snippet": "Me(\u0022MFR_UserName\u0022) = value", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 76, + "column": 16 + } + }, + { + "incidentId": "c20caa3b-82c7-4722-b6e3-07af5332b0cf", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022MFR_UserName\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022MFR_UserName\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 73, + "column": 16 + } + }, + { + "incidentId": "19f6d583-ad47-4e1b-a8ea-b195a117aa65", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me(\u0022MFR_host\u0022) = value", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\My Project\\Settings.Designer.vb", + "snippet": "Me(\u0022MFR_host\u0022) = value", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 64, + "column": 16 + } + }, + { + "incidentId": "01ea1ebb-0709-423c-8923-938ca2b1acff", + "ruleId": "Api.0002", + "description": "API is available in package System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3. Add package reference to System.Configuration.ConfigurationManager, 9.0.0-preview.6.24302.3", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Return CType(Me(\u0022MFR_host\u0022),String)", + "protected": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\My Project\\Settings.Designer.vb", + "snippet": "Return CType(Me(\u0022MFR_host\u0022),String)", + "protectedSnippet": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "label": "P:System.Configuration.ApplicationSettingsBase.Item(System.String)", + "properties": { + "PackageId": "System.Configuration.ConfigurationManager", + "PackageNewVersion": "9.0.0-preview.6.24302.3" + }, + "line": 61, + "column": 16 + } + }, + { + "incidentId": "20556a6f-8b71-47d3-8fc2-231050a81fe1", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._nextlink = Nothing", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._nextlink = Nothing", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 20, + "column": 16 + } + }, + { + "incidentId": "40b237af-0a38-4195-b39c-add309e368df", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 18, + "column": 16 + } + }, + { + "incidentId": "ba064f0e-530a-488d-8680-3bd538b58cf5", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protected": "M:System.Uri.#ctor(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protectedSnippet": "M:System.Uri.#ctor(System.String)", + "label": "M:System.Uri.#ctor(System.String)", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 18, + "column": 16 + } + }, + { + "incidentId": "9860c986-6e72-4eb3-b47d-772f70e2e9b1", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 18, + "column": 16 + } + }, + { + "incidentId": "4998a951-82f6-40e3-a5fa-3e33044c4553", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 16, + "column": 115 + } + }, + { + "incidentId": "3201bcce-83e0-448f-913d-d45a026d2e2c", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protected": "M:System.Uri.#ctor(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protectedSnippet": "M:System.Uri.#ctor(System.String)", + "label": "M:System.Uri.#ctor(System.String)", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 16, + "column": 115 + } + }, + { + "incidentId": "f9f83689-dd77-47c6-804a-df631e1f15ce", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 16, + "column": 115 + } + }, + { + "incidentId": "c359b693-066b-435e-91b3-7a76601021be", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Property nextlink As Uri", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Public Property nextlink As Uri", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 4, + "column": 0 + } + }, + { + "incidentId": "e4e4164d-94ff-4a23-8b53-ccb94a1b6fa5", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Public Property metadata As Uri", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Public Property metadata As Uri", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 4, + "column": 0 + } + }, + { + "incidentId": "cacddcbb-5c36-4d9e-9a04-a0d7a0c3f6f2", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._nextlink = Nothing", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._nextlink = Nothing", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 20, + "column": 16 + } + }, + { + "incidentId": "01c05697-dfb1-4656-9548-59405f7082b5", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 18, + "column": 16 + } + }, + { + "incidentId": "b0a9d4ce-c9bc-49fc-a26c-c7890dd499d8", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protected": "M:System.Uri.#ctor(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protectedSnippet": "M:System.Uri.#ctor(System.String)", + "label": "M:System.Uri.#ctor(System.String)", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 18, + "column": 16 + } + }, + { + "incidentId": "a664984c-12b5-432d-a8e6-8618045becf0", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._nextlink = New Uri(O(\u0022odata.nextLink\u0022))", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 18, + "column": 16 + } + }, + { + "incidentId": "ed75c6c9-cd8f-44f8-a6b6-d7b0329abd5d", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 16, + "column": 115 + } + }, + { + "incidentId": "d785f035-2eb9-45f2-96b9-aef90dcd0445", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protected": "M:System.Uri.#ctor(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protectedSnippet": "M:System.Uri.#ctor(System.String)", + "label": "M:System.Uri.#ctor(System.String)", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 16, + "column": 115 + } + }, + { + "incidentId": "36269824-8058-4ec5-9a36-8750a29f6cb4", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClientClasses.vb", + "snippet": "Me._metadata = New Uri(O(\u0022odata.metadata\u0022))", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 16, + "column": 115 + } + }, + { + "incidentId": "57029661-6379-4f78-992c-ae18ba7673c4", + "ruleId": "Api.0002", + "description": "vbNewLine has been deprecated. For a carriage return and line feed, use vbCrLf. For the current platform\u0027s newline, use System.Environment.NewLine. ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Diagnostics.Debug.Print(\u0022execute rest issue: \u0022 \u0026 message \u002B Environment.NewLine \u002B response.StatusDescription \u0026 vbNewLine \u0026 \u0022 \u0022 \u0026 request.Resource.ToString)", + "protected": "F:Microsoft.VisualBasic.Constants.vbNewLine" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClient.vb", + "snippet": "Diagnostics.Debug.Print(\u0022execute rest issue: \u0022 \u0026 message \u002B Environment.NewLine \u002B response.StatusDescription \u0026 vbNewLine \u0026 \u0022 \u0022 \u0026 request.Resource.ToString)", + "protectedSnippet": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "label": "F:Microsoft.VisualBasic.Constants.vbNewLine", + "line": 126, + "column": 12 + } + }, + { + "incidentId": "a937806a-205a-44af-a9ac-953ccf931c6d", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle = .DownloadData(New Uri(address))", + "protected": "T:System.Uri" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClient.vb", + "snippet": "fle = .DownloadData(New Uri(address))", + "protectedSnippet": "T:System.Uri", + "label": "T:System.Uri", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 67, + "column": 20 + } + }, + { + "incidentId": "4ca46921-22fa-4e3f-b8b7-cb1fc78e9a99", + "ruleId": "Api.0003", + "description": "Breaking change: URI length limits removed ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "fle = .DownloadData(New Uri(address))", + "protected": "M:System.Uri.#ctor(System.String)" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClient.vb", + "snippet": "fle = .DownloadData(New Uri(address))", + "protectedSnippet": "M:System.Uri.#ctor(System.String)", + "label": "M:System.Uri.#ctor(System.String)", + "links": [ + { + "title": "API documentation", + "url": "https://github.com/dotnet/docs/blob/main/docs/core/compatibility/networking/10.0/uri-length-limits-removed.md", + "isCustom": false + } + ], + "line": 67, + "column": 20 + } + }, + { + "incidentId": "9bdc35eb-f1b9-4bcb-89f3-061ec495e1a1", + "ruleId": "Api.0002", + "description": "WebRequest, HttpWebRequest, ServicePoint, and WebClient are obsolete. Use HttpClient instead. ", + "projectPath": "MFR_RESTClient\\MFR_RESTClient.vbproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Using WC As New System.Net.WebClient", + "protected": "M:System.Net.WebClient.#ctor" + }, + "kind": "File", + "path": "MFR_RESTClient\\MFRClient.vb", + "snippet": "Using WC As New System.Net.WebClient", + "protectedSnippet": "M:System.Net.WebClient.#ctor", + "label": "M:System.Net.WebClient.#ctor", + "links": [ + { + "title": "API documentation", + "url": "https://aka.ms/dotnet-warnings/SYSLIB0014", + "isCustom": false + } + ], + "line": 60, + "column": 8 + } + } + ], + "features": [ + { + "featureId": "LegacyConfiguration", + "incidents": [ + "01ea1ebb-0709-423c-8923-938ca2b1acff", + "19f6d583-ad47-4e1b-a8ea-b195a117aa65", + "c20caa3b-82c7-4722-b6e3-07af5332b0cf", + "b5e69fd8-1f91-40a2-b593-199f91035463", + "3c4249ab-cead-4a96-bb03-299cad4d71f4", + "def10fbd-4772-416f-b7ba-157e5c231784" + ] + } + ] + }, + { + "path": "P:\\WebProjectComponents\\MT940Parser\\MT940Parser\\MT940Parser.csproj", + "startingProject": true, + "issues": 1, + "storyPoints": 1, + "properties": { + "appName": "MT940Parser", + "projectKind": "ClassLibrary", + "frameworks": [ + "netstandard2.0", + "net472" + ], + "languages": [ + "C#" + ], + "tools": [ + "MSBuild" + ], + "isSdkStyle": true, + "numberOfFiles": 15, + "numberOfCodeFiles": 15, + "linesTotal": 1342, + "linesOfCode": 1342, + "totalApiScanned": 1582, + "minLinesOfCodeToChange": 0, + "maxLinesOfCodeToChange": 0 + }, + "ruleInstances": [ + { + "incidentId": "58fe3359-00ae-4ea2-b46f-b390d7e76220", + "ruleId": "Project.0002", + "projectPath": "P:\\WebProjectComponents\\MT940Parser\\MT940Parser\\MT940Parser.csproj", + "state": "Active", + "location": { + "snippetModel": { + "unrestricted": "Current target framework: netstandard2.0;net472\nRecommended target framework: netstandard2.0;net472;net10.0", + "protected": "Current target framework: netstandard2.0;net472\nRecommended target framework: netstandard2.0;net472;net10.0" + }, + "kind": "File", + "path": "P:\\WebProjectComponents\\MT940Parser\\MT940Parser\\MT940Parser.csproj", + "snippet": "Current target framework: netstandard2.0;net472\nRecommended target framework: netstandard2.0;net472;net10.0", + "protectedSnippet": "Current target framework: netstandard2.0;net472\nRecommended target framework: netstandard2.0;net472;net10.0", + "properties": { + "CurrentTargetFramework": "netstandard2.0;net472", + "RecommendedTargetFramework": "netstandard2.0;net472;net10.0" + } + } + } + ], + "features": [] + } + ], + "rules": { + "Project.0002": { + "id": "Project.0002", + "isFeature": false, + "description": "Project\u0027s target framework(s) needs to be changed to the new target framework that you selected for this upgrade.\n\nDuring upgrade target framework will be adjusted to corresponding platform when applicable. In some cases project would result in multiple target frameworks after the upgrade if it was using features that now have their own platforms in modern .NET frameworks (windows, iOS, Android etc).", + "label": "Project\u0027s target framework(s) needs to be changed", + "severity": "Mandatory", + "effort": 1, + "links": [ + { + "title": "Overview of porting from .NET Framework to .NET", + "url": "https://go.microsoft.com/fwlink/?linkid=2265227", + "isCustom": false + }, + { + "title": ".NET project SDKs", + "url": "https://go.microsoft.com/fwlink/?linkid=2265226", + "isCustom": false + } + ] + }, + "NuGet.0003": { + "id": "NuGet.0003", + "isFeature": false, + "description": "NuGet package functionality is included with framework reference.\n\nPackage needs to be removed.", + "label": "NuGet package functionality is included with framework reference", + "severity": "Mandatory", + "effort": 1, + "links": [ + { + "url": "https://go.microsoft.com/fwlink/?linkid=2262609", + "isCustom": false + } + ] + }, + "NuGet.0001": { + "id": "NuGet.0001", + "isFeature": false, + "description": "NuGet package is incompatible with selected target framework.\n\nPackage needs to be upgraded to a version supporting selected project target framework. If there no new package versions supporting new target framework, different package needs to be used and all code needs to be upgraded to new API.", + "label": "NuGet package is incompatible", + "severity": "Mandatory", + "effort": 1, + "links": [ + { + "url": "https://go.microsoft.com/fwlink/?linkid=2262529", + "isCustom": false + } + ] + }, + "NuGet.0002": { + "id": "NuGet.0002", + "isFeature": false, + "description": "NuGet package upgrade is recommended for selected target framework.\n\nStandard .NET packages are recommended to have versions matching version of .NET that project targets.\n\nSome other packages also are known to work better for selected target frameworks.", + "label": "NuGet package upgrade is recommended", + "severity": "Potential", + "effort": 1, + "links": [ + { + "url": "https://go.microsoft.com/fwlink/?linkid=2262530", + "isCustom": false + } + ] + }, + "NuGet.0005": { + "id": "NuGet.0005", + "isFeature": false, + "description": "NuGet package is deprecated.\n\nGo to its documentation and if there is a guidance for replacement of functionality provided by this package.", + "label": "NuGet package is deprecated", + "severity": "Optional", + "effort": 1, + "links": [ + { + "url": "https://go.microsoft.com/fwlink/?linkid=2262531", + "isCustom": false + } + ] + }, + "NuGet.0004": { + "id": "NuGet.0004", + "isFeature": false, + "description": "NuGet package contains security vulnerabilities.\n\nPackage needs to be upgraded to a newer version that addresses known security vulnerabilities.", + "label": "NuGet package contains security vulnerability", + "severity": "Optional", + "effort": 1 + }, + "Project.0001": { + "id": "Project.0001", + "isFeature": false, + "description": "Project file needs to be converted to SDK-style. Modern .NET framework projects require a change in the project file format and use SDK corresponding to project flavor and functionality.", + "label": "Project file needs to be converted to SDK-style", + "severity": "Mandatory", + "effort": 1, + "links": [ + { + "title": "Overview of porting from .NET Framework to .NET", + "url": "https://go.microsoft.com/fwlink/?linkid=2265227", + "isCustom": false + }, + { + "title": ".NET project SDKs", + "url": "https://go.microsoft.com/fwlink/?linkid=2265226", + "isCustom": false + } + ] + }, + "UpgradeScenario.0040": { + "id": "UpgradeScenario.0040", + "isFeature": true, + "description": "Migrate .NET Framework WCF services to CoreWCF.", + "label": "Migrate .NET Framework WCF services to CoreWCF", + "severity": "Optional", + "effort": 5, + "links": [ + { + "url": "https://go.microsoft.com/fwlink/?linkid=2265227", + "isCustom": false + } + ] + }, + "Api.0002": { + "id": "Api.0002", + "isFeature": false, + "description": "API is source incompatible for selected .NET version: requires code changes to compile successfully when targeting a new version, such as removing obsolete APIs or changing method signatures.", + "label": "Source incompatible for selected .NET version", + "severity": "Potential", + "effort": 1, + "links": [ + { + "title": "Breaking changes in .NET", + "url": "https://go.microsoft.com/fwlink/?linkid=2262679", + "isCustom": false + } + ] + }, + "Api.0003": { + "id": "Api.0003", + "isFeature": false, + "description": "API has a behavioral change in selected .NET version: code and binaries may behave differently at runtime without needing recompilation, but the new behavior might be undesirable and require updates.", + "label": "Behavioral change in selected .NET version", + "severity": "Potential", + "effort": 1 + }, + "LegacyConfiguration": { + "id": "LegacyConfiguration", + "isFeature": false, + "description": "Legacy XML-based configuration system (app.config/web.config) that has been replaced by a more flexible configuration model in .NET Core. The old system was rigid and XML-based. Migrate to Microsoft.Extensions.Configuration with JSON/environment variables; use System.Configuration.ConfigurationManager NuGet package as interim bridge if needed.", + "label": "Legacy Configuration System", + "severity": "Mandatory", + "effort": 2, + "links": [ + { + "title": "Configuration in .NET", + "url": "https://go.microsoft.com/fwlink/?linkid=2341702", + "isCustom": false + } + ] + }, + "Api.0001": { + "id": "Api.0001", + "isFeature": false, + "description": "API is binary incompatible for selected .NET version: affects existing binaries, often requiring recompilation, because the API has changed in a way that prevents older binaries from loading or executing.", + "label": "Binary incompatible for selected .NET version", + "severity": "Mandatory", + "effort": 1, + "links": [ + { + "title": "Breaking changes in .NET", + "url": "https://go.microsoft.com/fwlink/?linkid=2262679", + "isCustom": false + } + ] + }, + "SystemWeb": { + "id": "SystemWeb", + "isFeature": false, + "description": "Legacy ASP.NET Framework APIs for web applications (System.Web.*) that don\u0027t exist in ASP.NET Core due to architectural differences. ASP.NET Core represents a complete redesign of the web framework. Migrate to ASP.NET Core equivalents or consider System.Web.Adapters package for compatibility.", + "label": "ASP.NET Framework (System.Web)", + "severity": "Mandatory", + "effort": 4, + "links": [ + { + "title": "Migrate from ASP.NET to ASP.NET Core", + "url": "https://go.microsoft.com/fwlink/?linkid=2341905", + "isCustom": false + } + ] + }, + "GdiDrawing": { + "id": "GdiDrawing", + "isFeature": false, + "description": "System.Drawing APIs for 2D graphics, imaging, and printing that are available via NuGet package System.Drawing.Common. Note: Not recommended for server scenarios due to Windows dependencies; consider cross-platform alternatives like SkiaSharp or ImageSharp for new code.", + "label": "GDI\u002B / System.Drawing", + "severity": "Mandatory", + "effort": 1, + "links": [ + { + "title": "System.Drawing.Common only supported on Windows", + "url": "https://go.microsoft.com/fwlink/?linkid=2341701", + "isCustom": false + } + ] + } + } +} \ No newline at end of file diff --git a/.github/upgrades/scenarios/new-dotnet-version_16123a/assessment.md b/.github/upgrades/scenarios/new-dotnet-version_16123a/assessment.md new file mode 100644 index 0000000..dac27bf --- /dev/null +++ b/.github/upgrades/scenarios/new-dotnet-version_16123a/assessment.md @@ -0,0 +1,461 @@ +# Projects and dependencies analysis + +This document provides a comprehensive overview of the projects and their dependencies in the context of upgrading to .NETCoreApp,Version=v10.0. + +## Table of Contents + +- [Executive Summary](#executive-Summary) + - [Highlevel Metrics](#highlevel-metrics) + - [Projects Compatibility](#projects-compatibility) + - [Package Compatibility](#package-compatibility) + - [API Compatibility](#api-compatibility) +- [Aggregate NuGet packages details](#aggregate-nuget-packages-details) +- [Top API Migration Challenges](#top-api-migration-challenges) + - [Technologies and Features](#technologies-and-features) + - [Most Frequent API Issues](#most-frequent-api-issues) +- [Projects Relationship Graph](#projects-relationship-graph) +- [Project Details](#project-details) + + - [Fuchs\Fuchs.vbproj](#fuchsfuchsvbproj) + - [Fuchs_DataService\Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) + - [MFR_RESTClient\MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) + - [P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj](#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj) + + +## Executive Summary + +### Highlevel Metrics + +| Metric | Count | Status | +| :--- | :---: | :--- | +| Total Projects | 4 | All require upgrade | +| Total NuGet Packages | 75 | 32 need upgrade | +| Total Code Files | 69 | | +| Total Code Files with Incidents | 26 | | +| Total Lines of Code | 10521 | | +| Total Number of Issues | 439 | | +| Estimated LOC to modify | 358+ | at least 3,4% of codebase | + +### Projects Compatibility + +| Project | Target Framework | Difficulty | Package Issues | API Issues | Est. LOC Impact | Description | +| :--- | :---: | :---: | :---: | :---: | :---: | :--- | +| [Fuchs\Fuchs.vbproj](#fuchsfuchsvbproj) | net48 | 🔴 High | 29 | 224 | 224+ | Wap, Sdk Style = False | +| [Fuchs_DataService\Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | net48 | 🔴 High | 4 | 108 | 108+ | ClassicDotNetApp, Sdk Style = False | +| [MFR_RESTClient\MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | net48 | 🟢 Low | 38 | 26 | 26+ | ClassicWinForms, Sdk Style = False | +| [P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj](#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj) | netstandard2.0;net472 | 🟢 Low | 0 | 0 | | ClassLibrary, Sdk Style = True | + +### Package Compatibility + +| Status | Count | Percentage | +| :--- | :---: | :---: | +| ✅ Compatible | 43 | 57,3% | +| ⚠️ Incompatible | 17 | 22,7% | +| 🔄 Upgrade Recommended | 15 | 20,0% | +| ***Total NuGet Packages*** | ***75*** | ***100%*** | + +### API Compatibility + +| Category | Count | Impact | +| :--- | :---: | :--- | +| 🔴 Binary Incompatible | 117 | High - Require code changes | +| 🟡 Source Incompatible | 212 | Medium - Needs re-compilation and potential conflicting API error fixing | +| 🔵 Behavioral change | 29 | Low - Behavioral changes that may require testing at runtime | +| ✅ Compatible | 11865 | | +| ***Total APIs Analyzed*** | ***12223*** | | + +## Aggregate NuGet packages details + +| Package | Current Version | Suggested Version | Projects | Description | +| :--- | :---: | :---: | :--- | :--- | +| BouncyCastle | 1.8.9 | 1.8.9 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package contains security vulnerability | +| BouncyCastle.Cryptography | 2.3.0 | 2.6.2 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package contains security vulnerability | +| HtmlAgilityPack | 1.11.54 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| ImageProcessor | 2.9.1 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible | +| ImageProcessor.Plugins.WebP | 1.3.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible | +| ImageProcessor.Web | 4.12.1 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible | +| ImageProcessor.Web.Config | 2.6.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible | +| jQuery | 3.7.1 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| jQuery.Validation | 1.19.5 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| MailKit | 4.4.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| Microsoft.AspNet.Mvc | 5.2.9 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package functionality is included with framework reference | +| Microsoft.AspNet.Razor | 3.2.9 | | [Fuchs.vbproj](#fuchsfuchsvbproj)
[Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | NuGet package functionality is included with framework reference | +| Microsoft.AspNet.SignalR.Client | 2.4.3 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible | +| Microsoft.AspNet.TelemetryCorrelation | 1.0.8 | 1.0.3 | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible | +| Microsoft.AspNet.WebApi | 5.2.9 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| Microsoft.AspNet.WebApi.Client | 5.2.9 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible | +| Microsoft.AspNet.WebApi.Core | 5.2.9 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is incompatible | +| Microsoft.AspNet.WebApi.WebHost | 5.2.9 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is incompatible | +| Microsoft.AspNet.WebPages | 3.2.9 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package functionality is included with framework reference | +| Microsoft.Azure.Services.AppAuthentication | 1.6.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible | +| Microsoft.Bcl.AsyncInterfaces | 7.0.0 | 10.0.5 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended | +| Microsoft.CodeDom.Providers.DotNetCompilerPlatform | 4.1.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package functionality is included with framework reference | +| Microsoft.Data.Edm | 5.8.5 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible | +| Microsoft.Data.OData | 5.8.5 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated | +| Microsoft.Data.Services.Client | 5.8.5 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible | +| Microsoft.IdentityModel.Abstractions | 7.0.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated | +| Microsoft.IdentityModel.Clients.ActiveDirectory | 5.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated | +| Microsoft.IdentityModel.JsonWebTokens | 7.0.2 | 8.17.0 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package contains security vulnerability | +| Microsoft.IdentityModel.Logging | 7.0.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated | +| Microsoft.IdentityModel.Tokens | 7.0.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated | +| Microsoft.IO.RecyclableMemoryStream | 2.3.2 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| Microsoft.jQuery.Unobtrusive.Validation | 4.0.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| Microsoft.NETCore.Platforms | 7.0.4 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| Microsoft.NETCore.Targets | 5.0.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible | +| Microsoft.Rest.ClientRuntime | 2.3.24 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is deprecated | +| Microsoft.Web.Infrastructure | 2.0.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj)
[Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | NuGet package functionality is included with framework reference | +| Microsoft.WindowsAzure.ConfigurationManager | 3.2.3 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is incompatible | +| MimeKit | 4.4.0 | 4.15.1 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package contains security vulnerability | +| Modernizr | 2.8.3 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| NETStandard.Library | 2.0.3 | | [MT940Parser.csproj](#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj) | ✅Compatible | +| Newtonsoft.Json | 13.0.3 | 13.0.4 | [Fuchs.vbproj](#fuchsfuchsvbproj)
[Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj)
[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended | +| PDFsharp | 1.50.5147 | 6.2.4 | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible | +| PDFsharp-MigraDoc | 1.50.5147 | 6.2.4 | [Fuchs.vbproj](#fuchsfuchsvbproj) | ⚠️NuGet package is incompatible | +| Portable.BouncyCastle | 1.9.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| QRCoder | 1.4.3 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| RestSharp | 110.2.0 | 114.0.0 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package contains security vulnerability | +| Spire.PDF | 8.10.5 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | ✅Compatible | +| Squid-Box.SevenZipSharp | 1.6.1.23 | | [Fuchs.vbproj](#fuchsfuchsvbproj)
[Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | ✅Compatible | +| System.Buffers | 4.5.1 | | [Fuchs.vbproj](#fuchsfuchsvbproj)
[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Data.DataSetExtensions | 4.5.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package functionality is included with framework reference | +| System.Diagnostics.DiagnosticSource | 7.0.2 | 10.0.5 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package upgrade is recommended | +| System.Formats.Asn1 | 8.0.0 | 10.0.5 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package upgrade is recommended | +| System.IdentityModel.Tokens.Jwt | 7.0.2 | 8.17.0 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package contains security vulnerability | +| System.IO | 4.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Memory | 4.5.5 | | [Fuchs.vbproj](#fuchsfuchsvbproj)
[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Net.Http | 4.3.4 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Numerics.Vectors | 4.5.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj)
[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Private.Uri | 4.3.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible | +| System.Runtime | 4.3.1 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Runtime.CompilerServices.Unsafe | 6.0.0 | 6.1.2 | [Fuchs.vbproj](#fuchsfuchsvbproj)
[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended | +| System.Runtime.InteropServices.RuntimeInformation | 4.3.0 | | [Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | NuGet package functionality is included with framework reference | +| System.Security.Cryptography.Algorithms | 4.3.1 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Security.Cryptography.Encoding | 4.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Security.Cryptography.Primitives | 4.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Security.Cryptography.X509Certificates | 4.3.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Spatial | 5.8.5 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ✅Compatible | +| System.Text.Encoding | 4.3.0 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.Text.Encoding.CodePages | 7.0.0 | 10.0.5 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package upgrade is recommended | +| System.Text.Encodings.Web | 7.0.0 | 10.0.5 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended | +| System.Text.Json | 7.0.3 | 10.0.5 | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package upgrade is recommended | +| System.Threading.Tasks.Extensions | 4.5.4 | | [Fuchs.vbproj](#fuchsfuchsvbproj)
[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| System.ValueTuple | 4.5.0 | | [Fuchs.vbproj](#fuchsfuchsvbproj)
[MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | NuGet package functionality is included with framework reference | +| TinyMCE | 6.3.1 | 8.3.2 | [Fuchs.vbproj](#fuchsfuchsvbproj) | NuGet package contains security vulnerability | +| Topshelf | 4.3.0 | | [Fuchs_DataService.vbproj](#fuchs_dataservicefuchs_dataservicevbproj) | ✅Compatible | +| WindowsAzure.ServiceBus | 6.2.2 | | [MFR_RESTClient.vbproj](#mfr_restclientmfr_restclientvbproj) | ⚠️NuGet package is incompatible | + +## Top API Migration Challenges + +### Technologies and Features + +| Technology | Issues | Percentage | Migration Path | +| :--- | :---: | :---: | :--- | +| ASP.NET Framework (System.Web) | 123 | 34,4% | Legacy ASP.NET Framework APIs for web applications (System.Web.*) that don't exist in ASP.NET Core due to architectural differences. ASP.NET Core represents a complete redesign of the web framework. Migrate to ASP.NET Core equivalents or consider System.Web.Adapters package for compatibility. | +| Legacy Configuration System | 48 | 13,4% | Legacy XML-based configuration system (app.config/web.config) that has been replaced by a more flexible configuration model in .NET Core. The old system was rigid and XML-based. Migrate to Microsoft.Extensions.Configuration with JSON/environment variables; use System.Configuration.ConfigurationManager NuGet package as interim bridge if needed. | +| GDI+ / System.Drawing | 14 | 3,9% | System.Drawing APIs for 2D graphics, imaging, and printing that are available via NuGet package System.Drawing.Common. Note: Not recommended for server scenarios due to Windows dependencies; consider cross-platform alternatives like SkiaSharp or ImageSharp for new code. | + +### Most Frequent API Issues + +| API | Count | Percentage | Category | +| :--- | :---: | :---: | :--- | +| T:System.Data.SqlClient.SqlParameter | 37 | 10,3% | Source Incompatible | +| M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object) | 35 | 9,8% | Source Incompatible | +| T:System.Uri | 23 | 6,4% | Behavioral Change | +| P:System.Configuration.ApplicationSettingsBase.Item(System.String) | 16 | 4,5% | Source Incompatible | +| F:Microsoft.VisualBasic.Constants.vbNewLine | 11 | 3,1% | Source Incompatible | +| T:System.Web.Mvc.HttpStatusCodeResult | 11 | 3,1% | Binary Incompatible | +| T:System.Data.SqlClient.SqlConnection | 10 | 2,8% | Source Incompatible | +| P:System.Web.Mvc.ContentResult.ContentType | 9 | 2,5% | Binary Incompatible | +| P:System.Web.Mvc.ContentResult.Content | 9 | 2,5% | Binary Incompatible | +| T:System.Web.Mvc.ContentResult | 9 | 2,5% | Binary Incompatible | +| M:System.Web.Mvc.ContentResult.#ctor | 9 | 2,5% | Binary Incompatible | +| M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode,System.String) | 9 | 2,5% | Binary Incompatible | +| T:System.Web.Mvc.UrlParameter | 9 | 2,5% | Binary Incompatible | +| P:System.Web.Mvc.ContentResult.ContentEncoding | 8 | 2,2% | Binary Incompatible | +| M:System.Data.SqlClient.SqlConnection.#ctor(System.String) | 7 | 2,0% | Source Incompatible | +| T:System.Configuration.ConfigurationManager | 6 | 1,7% | Source Incompatible | +| M:System.Uri.#ctor(System.String) | 6 | 1,7% | Behavioral Change | +| P:System.Web.HttpPostedFileWrapper.InputStream | 5 | 1,4% | Source Incompatible | +| T:System.Configuration.ConnectionStringSettingsCollection | 5 | 1,4% | Source Incompatible | +| P:System.Configuration.ConfigurationManager.ConnectionStrings | 5 | 1,4% | Source Incompatible | +| T:System.Configuration.ConnectionStringSettings | 5 | 1,4% | Source Incompatible | +| P:System.Configuration.ConnectionStringSettingsCollection.Item(System.String) | 5 | 1,4% | Source Incompatible | +| P:System.Configuration.ConnectionStringSettings.ConnectionString | 5 | 1,4% | Source Incompatible | +| T:System.Web.Routing.Route | 5 | 1,4% | Binary Incompatible | +| P:System.IO.DirectoryInfo.FullName | 5 | 1,4% | Binary Incompatible | +| P:System.Data.SqlClient.SqlConnection.State | 5 | 1,4% | Source Incompatible | +| T:System.Drawing.Bitmap | 4 | 1,1% | Source Incompatible | +| T:System.Drawing.Imaging.ImageFormat | 4 | 1,1% | Source Incompatible | +| P:System.Web.HttpPostedFile.InputStream | 4 | 1,1% | Source Incompatible | +| T:System.Data.SqlClient.SqlCommand | 3 | 0,8% | Source Incompatible | +| F:System.Web.Mvc.UrlParameter.Optional | 3 | 0,8% | Binary Incompatible | +| T:Microsoft.VisualBasic.MyServices.FileSystemProxy | 3 | 0,8% | Binary Incompatible | +| P:Microsoft.VisualBasic.Devices.ServerComputer.FileSystem | 3 | 0,8% | Binary Incompatible | +| M:System.Data.SqlClient.SqlCommand.#ctor(System.String) | 2 | 0,6% | Source Incompatible | +| P:System.Data.SqlClient.SqlParameter.Value | 2 | 0,6% | Source Incompatible | +| M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType) | 2 | 0,6% | Source Incompatible | +| P:System.Drawing.Imaging.ImageFormat.Png | 2 | 0,6% | Source Incompatible | +| M:System.TimeSpan.FromMilliseconds(System.Double) | 2 | 0,6% | Source Incompatible | +| M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Net.HttpStatusCode) | 2 | 0,6% | Binary Incompatible | +| T:System.Web.HttpPostedFileWrapper | 2 | 0,6% | Source Incompatible | +| P:System.Web.HttpPostedFileWrapper.FileName | 2 | 0,6% | Source Incompatible | +| T:System.Web.HttpPostedFile | 2 | 0,6% | Source Incompatible | +| P:System.Web.HttpPostedFile.FileName | 2 | 0,6% | Source Incompatible | +| T:System.Web.Routing.RouteCollection | 2 | 0,6% | Binary Incompatible | +| T:System.Web.Mvc.GlobalFilterCollection | 2 | 0,6% | Binary Incompatible | +| T:System.Data.SqlClient.SqlParameterCollection | 2 | 0,6% | Source Incompatible | +| P:System.Data.SqlClient.SqlCommand.Parameters | 2 | 0,6% | Source Incompatible | +| T:System.Web.Mvc.ViewResult | 1 | 0,3% | Binary Incompatible | +| P:System.Configuration.ConfigurationManager.AppSettings | 1 | 0,3% | Source Incompatible | +| M:System.Drawing.Bitmap.SetPixel(System.Int32,System.Int32,System.Drawing.Color) | 1 | 0,3% | Source Incompatible | + +## Projects Relationship Graph + +Legend: +📦 SDK-style project +⚙️ Classic project + +```mermaid +flowchart LR + P1["⚙️ Fuchs.vbproj
net48"] + P2["⚙️ Fuchs_DataService.vbproj
net48"] + P3["⚙️ MFR_RESTClient.vbproj
net48"] + P4["📦 MT940Parser.csproj
netstandard2.0;net472"] + P1 --> P4 + P1 --> P2 + P1 --> P3 + P2 --> P3 + click P1 "#fuchsfuchsvbproj" + click P2 "#fuchs_dataservicefuchs_dataservicevbproj" + click P3 "#mfr_restclientmfr_restclientvbproj" + click P4 "#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj" + +``` + +## Project Details + + +### Fuchs\Fuchs.vbproj + +#### Project Info + +- **Current Target Framework:** net48 +- **Proposed Target Framework:** net10.0 +- **SDK-style**: False +- **Project Kind:** Wap +- **Dependencies**: 3 +- **Dependants**: 0 +- **Number of Files**: 485 +- **Number of Files with Incidents**: 15 +- **Lines of Code**: 6277 +- **Estimated LOC to modify**: 224+ (at least 3,6% of the project) + +#### Dependency Graph + +Legend: +📦 SDK-style project +⚙️ Classic project + +```mermaid +flowchart TB + subgraph current["Fuchs.vbproj"] + MAIN["⚙️ Fuchs.vbproj
net48"] + click MAIN "#fuchsfuchsvbproj" + end + subgraph downstream["Dependencies (3"] + P4["📦 MT940Parser.csproj
netstandard2.0;net472"] + P2["⚙️ Fuchs_DataService.vbproj
net48"] + P3["⚙️ MFR_RESTClient.vbproj
net48"] + click P4 "#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj" + click P2 "#fuchs_dataservicefuchs_dataservicevbproj" + click P3 "#mfr_restclientmfr_restclientvbproj" + end + MAIN --> P4 + MAIN --> P2 + MAIN --> P3 + +``` + +### API Compatibility + +| Category | Count | Impact | +| :--- | :---: | :--- | +| 🔴 Binary Incompatible | 101 | High - Require code changes | +| 🟡 Source Incompatible | 117 | Medium - Needs re-compilation and potential conflicting API error fixing | +| 🔵 Behavioral change | 6 | Low - Behavioral changes that may require testing at runtime | +| ✅ Compatible | 7080 | | +| ***Total APIs Analyzed*** | ***7304*** | | + +#### Project Technologies and Features + +| Technology | Issues | Percentage | Migration Path | +| :--- | :---: | :---: | :--- | +| Legacy Configuration System | 19 | 8,5% | Legacy XML-based configuration system (app.config/web.config) that has been replaced by a more flexible configuration model in .NET Core. The old system was rigid and XML-based. Migrate to Microsoft.Extensions.Configuration with JSON/environment variables; use System.Configuration.ConfigurationManager NuGet package as interim bridge if needed. | +| GDI+ / System.Drawing | 14 | 6,3% | System.Drawing APIs for 2D graphics, imaging, and printing that are available via NuGet package System.Drawing.Common. Note: Not recommended for server scenarios due to Windows dependencies; consider cross-platform alternatives like SkiaSharp or ImageSharp for new code. | +| ASP.NET Framework (System.Web) | 121 | 54,0% | Legacy ASP.NET Framework APIs for web applications (System.Web.*) that don't exist in ASP.NET Core due to architectural differences. ASP.NET Core represents a complete redesign of the web framework. Migrate to ASP.NET Core equivalents or consider System.Web.Adapters package for compatibility. | + + +### Fuchs_DataService\Fuchs_DataService.vbproj + +#### Project Info + +- **Current Target Framework:** net48 +- **Proposed Target Framework:** net10.0 +- **SDK-style**: False +- **Project Kind:** ClassicDotNetApp +- **Dependencies**: 1 +- **Dependants**: 1 +- **Number of Files**: 13 +- **Number of Files with Incidents**: 6 +- **Lines of Code**: 2281 +- **Estimated LOC to modify**: 108+ (at least 4,7% of the project) + +#### Dependency Graph + +Legend: +📦 SDK-style project +⚙️ Classic project + +```mermaid +flowchart TB + subgraph upstream["Dependants (1)"] + P1["⚙️ Fuchs.vbproj
net48"] + click P1 "#fuchsfuchsvbproj" + end + subgraph current["Fuchs_DataService.vbproj"] + MAIN["⚙️ Fuchs_DataService.vbproj
net48"] + click MAIN "#fuchs_dataservicefuchs_dataservicevbproj" + end + subgraph downstream["Dependencies (1"] + P3["⚙️ MFR_RESTClient.vbproj
net48"] + click P3 "#mfr_restclientmfr_restclientvbproj" + end + P1 --> MAIN + MAIN --> P3 + +``` + +### API Compatibility + +| Category | Count | Impact | +| :--- | :---: | :--- | +| 🔴 Binary Incompatible | 16 | High - Require code changes | +| 🟡 Source Incompatible | 87 | Medium - Needs re-compilation and potential conflicting API error fixing | +| 🔵 Behavioral change | 5 | Low - Behavioral changes that may require testing at runtime | +| ✅ Compatible | 2684 | | +| ***Total APIs Analyzed*** | ***2792*** | | + +#### Project Technologies and Features + +| Technology | Issues | Percentage | Migration Path | +| :--- | :---: | :---: | :--- | +| ASP.NET Framework (System.Web) | 2 | 1,9% | Legacy ASP.NET Framework APIs for web applications (System.Web.*) that don't exist in ASP.NET Core due to architectural differences. ASP.NET Core represents a complete redesign of the web framework. Migrate to ASP.NET Core equivalents or consider System.Web.Adapters package for compatibility. | +| Legacy Configuration System | 23 | 21,3% | Legacy XML-based configuration system (app.config/web.config) that has been replaced by a more flexible configuration model in .NET Core. The old system was rigid and XML-based. Migrate to Microsoft.Extensions.Configuration with JSON/environment variables; use System.Configuration.ConfigurationManager NuGet package as interim bridge if needed. | + + +### MFR_RESTClient\MFR_RESTClient.vbproj + +#### Project Info + +- **Current Target Framework:** net48 +- **Proposed Target Framework:** net10.0-windows +- **SDK-style**: False +- **Project Kind:** ClassicWinForms +- **Dependencies**: 0 +- **Dependants**: 2 +- **Number of Files**: 13 +- **Number of Files with Incidents**: 4 +- **Lines of Code**: 621 +- **Estimated LOC to modify**: 26+ (at least 4,2% of the project) + +#### Dependency Graph + +Legend: +📦 SDK-style project +⚙️ Classic project + +```mermaid +flowchart TB + subgraph upstream["Dependants (2)"] + P1["⚙️ Fuchs.vbproj
net48"] + P2["⚙️ Fuchs_DataService.vbproj
net48"] + click P1 "#fuchsfuchsvbproj" + click P2 "#fuchs_dataservicefuchs_dataservicevbproj" + end + subgraph current["MFR_RESTClient.vbproj"] + MAIN["⚙️ MFR_RESTClient.vbproj
net48"] + click MAIN "#mfr_restclientmfr_restclientvbproj" + end + P1 --> MAIN + P2 --> MAIN + +``` + +### API Compatibility + +| Category | Count | Impact | +| :--- | :---: | :--- | +| 🔴 Binary Incompatible | 0 | High - Require code changes | +| 🟡 Source Incompatible | 8 | Medium - Needs re-compilation and potential conflicting API error fixing | +| 🔵 Behavioral change | 18 | Low - Behavioral changes that may require testing at runtime | +| ✅ Compatible | 519 | | +| ***Total APIs Analyzed*** | ***545*** | | + +#### Project Technologies and Features + +| Technology | Issues | Percentage | Migration Path | +| :--- | :---: | :---: | :--- | +| Legacy Configuration System | 6 | 23,1% | Legacy XML-based configuration system (app.config/web.config) that has been replaced by a more flexible configuration model in .NET Core. The old system was rigid and XML-based. Migrate to Microsoft.Extensions.Configuration with JSON/environment variables; use System.Configuration.ConfigurationManager NuGet package as interim bridge if needed. | + + +### P:\WebProjectComponents\MT940Parser\MT940Parser\MT940Parser.csproj + +#### Project Info + +- **Current Target Framework:** netstandard2.0;net472 +- **Proposed Target Framework:** netstandard2.0;net472;net10.0 +- **SDK-style**: True +- **Project Kind:** ClassLibrary +- **Dependencies**: 0 +- **Dependants**: 1 +- **Number of Files**: 15 +- **Number of Files with Incidents**: 1 +- **Lines of Code**: 1342 +- **Estimated LOC to modify**: 0+ (at least 0,0% of the project) + +#### Dependency Graph + +Legend: +📦 SDK-style project +⚙️ Classic project + +```mermaid +flowchart TB + subgraph upstream["Dependants (1)"] + P1["⚙️ Fuchs.vbproj
net48"] + click P1 "#fuchsfuchsvbproj" + end + subgraph current["MT940Parser.csproj"] + MAIN["📦 MT940Parser.csproj
netstandard2.0;net472"] + click MAIN "#p:webprojectcomponentsmt940parsermt940parsermt940parsercsproj" + end + P1 --> MAIN + +``` + +### API Compatibility + +| Category | Count | Impact | +| :--- | :---: | :--- | +| 🔴 Binary Incompatible | 0 | High - Require code changes | +| 🟡 Source Incompatible | 0 | Medium - Needs re-compilation and potential conflicting API error fixing | +| 🔵 Behavioral change | 0 | Low - Behavioral changes that may require testing at runtime | +| ✅ Compatible | 1582 | | +| ***Total APIs Analyzed*** | ***1582*** | | + +#### Project Package References + +| Package | Type | Current Version | Suggested Version | Description | +| :--- | :---: | :---: | :---: | :--- | +| NETStandard.Library | 🔗*Transitive* | 2.0.3 | | ✅Compatible | + diff --git a/.github/upgrades/scenarios/new-dotnet-version_16123a/execution-log.md b/.github/upgrades/scenarios/new-dotnet-version_16123a/execution-log.md new file mode 100644 index 0000000..015da9c --- /dev/null +++ b/.github/upgrades/scenarios/new-dotnet-version_16123a/execution-log.md @@ -0,0 +1,42 @@ + +## [2026-03-29 23:21] TASK-001: Atomic framework and dependency upgrade with compilation fixes + +Status: Paused. Scope change requested by user. + +- **Verified**: SDK-style conversion done for 3 projects, target frameworks updated, packages updated, dependencies restored +- **Files Modified**: MFR_RESTClient.vbproj, Fuchs_DataService.vbproj, Fuchs.vbproj, MT940Parser.csproj, fds_mfr.vb, fds_debug.vb +- **Code Changes**: SDK-style conversion, TFM updates to net10.0, package updates per plan, added OCORE/OCMSsharp project references, fixed MyType=Empty, added System.Data/Microsoft.Data imports, replaced My.Computer.FileSystem with System.IO, updated OCMS.SQLHandling→OCORE.SQL imports +- **Build Status**: MFR_RESTClient builds successfully. Fuchs_DataService has 4 remaining IO namespace errors. Fuchs not yet built. + +### Outcome +Paused - User changed scope: (1) Convert all VB.NET to C#, (2) Keep only Intranet area in Fuchs. This fundamentally changes the remaining work. + + +## [2026-04-16 23:06] TASK-001: Atomic framework and dependency upgrade with compilation fixes + +Status: Complete. Solution builds successfully with 0 errors. + +- **Verified**: dotnet build on Fuchs.slnx — 0 errors, 201 warnings (nullable and CA1416 platform warnings only, no blockers) +- **Build Status**: Successful: 0 errors, 201 warnings + + +## [2026-04-16 23:11] TASK-002: Create and validate test project + +Status: Complete. Fuchs.Tests xUnit project created and all 28 tests pass. + +- **Files Created**: Fuchs.Tests/Fuchs.Tests.csproj, Fuchs.Tests/MT940ParserTests.cs, Fuchs.Tests/MFRClientTests.cs, Fuchs.Tests/FuchsPdfTests.cs +- **Code Changes**: Created xUnit test project targeting net10.0 with references to all 4 projects and 28 tests covering MT940 parsing (9 tests), MFR REST client models (9 tests), and FuchsPdf.ParseDec (10 tests) +- **Tests**: Passed: 28, Failed: 0, Skipped: 0 +- **Build Status**: Successful: 0 errors, 35 warnings (pre-existing) + + +## [2026-04-16 23:39] TASK-003: Final commit + +Status: Paused. Commit cannot be made from terminal — P:\ is a network share and Git fsync fails on it. + +- **Verified**: P:\PWProjects\Fuchs_Intranet resolves to //localhost/d$/My Programming/PWProjects/Fuchs_Intranet (network share); all Git terminal clients fail with fsync errors +- **Code Changes**: None — no uncommitted damage; broken .git folder cleaned up +- **Build Status**: Solution builds 0 errors (verified in TASK-001); 28 tests pass (verified in TASK-002) + +Paused - Commit must be performed manually via Visual Studio Git panel or Windows Explorer Git client. Commit message: "Complete .NET 10.0 upgrade for Fuchs Intranet solution" + diff --git a/.github/upgrades/scenarios/new-dotnet-version_16123a/plan.md b/.github/upgrades/scenarios/new-dotnet-version_16123a/plan.md new file mode 100644 index 0000000..e08c7af --- /dev/null +++ b/.github/upgrades/scenarios/new-dotnet-version_16123a/plan.md @@ -0,0 +1,905 @@ +# .NET 10.0 Upgrade Plan — Fuchs Intranet Solution + +## Table of Contents + +- [1. Executive Summary](#1-executive-summary) +- [2. Migration Strategy](#2-migration-strategy) +- [3. Detailed Dependency Analysis](#3-detailed-dependency-analysis) +- [4. Project-by-Project Migration Plans](#4-project-by-project-migration-plans) + - [4.1 MT940Parser.csproj](#41-mt940parsercsproj) + - [4.2 MFR_RESTClient.vbproj](#42-mfr_restclientvbproj) + - [4.3 Fuchs_DataService.vbproj](#43-fuchs_dataservicevbproj) + - [4.4 Fuchs.vbproj](#44-fuchsvbproj) + - [4.5 Fuchs.Tests (New)](#45-fuchstests-new) +- [5. Package Update Reference](#5-package-update-reference) +- [6. Breaking Changes Catalog](#6-breaking-changes-catalog) +- [7. Risk Management](#7-risk-management) +- [8. Testing & Validation Strategy](#8-testing--validation-strategy) +- [9. Complexity & Effort Assessment](#9-complexity--effort-assessment) +- [10. Source Control Strategy](#10-source-control-strategy) +- [11. Success Criteria](#11-success-criteria) + +--- + +## 1. Executive Summary + +### Scenario + +Upgrade the Fuchs Intranet solution from **.NET Framework 4.8** to **.NET 10.0 (LTS)**. The solution contains 4 existing projects (3 VB.NET + 1 C#), all currently targeting .NET Framework 4.8 except MT940Parser which multi-targets netstandard2.0 and net472. As part of the upgrade, a new **C# unit test project** (`Fuchs.Tests`) will be created to provide automated validation coverage. + +### Scope + +| Metric | Value | +| :--- | :--- | +| Total Projects | 4 (+1 new test project) | +| Total NuGet Packages | 75 (32 require action) | +| Total Lines of Code | 10,521 | +| Total Issues | 439 (164 mandatory, 252 potential, 23 optional) | +| Estimated LOC to Modify | 358+ (3.4% of codebase) | +| Security Vulnerabilities | 5 packages with known CVEs | +| Projects Needing SDK-style Conversion | 3 of 4 | + +### Selected Strategy + +**All-At-Once Strategy** — All projects upgraded simultaneously in a single atomic operation. + +**Rationale**: +- 4 projects (small solution, well under 30-project threshold) +- All currently on .NET Framework 4.8 (homogeneous) +- Clean dependency structure with no circular dependencies +- Dependency depth of only 3 levels +- All packages have known target versions, clear replacements, or are framework-included + +### Complexity Classification + +**Simple** — 4 projects, dependency depth ≤ 2, clean dependency graph, no circular dependencies. This enables a fast-batch approach with 2–3 detail iterations. + +### Critical Issues + +1. **SDK-style conversion required**: 3 of 4 projects must be converted from classic to SDK-style project format before framework upgrade +2. **ASP.NET Framework → ASP.NET Core**: Fuchs.vbproj is a WAP (Web Application Project) using System.Web, requiring migration to ASP.NET Core patterns +3. **Incompatible packages**: 17 packages have no compatible version for .NET 10.0 — require replacement or removal +4. **Security vulnerabilities**: BouncyCastle.Cryptography, Microsoft.IdentityModel.JsonWebTokens, MimeKit, RestSharp, System.IdentityModel.Tokens.Jwt, and TinyMCE have known CVEs +5. **Deprecated packages**: Microsoft.Data.OData, Microsoft.IdentityModel.Abstractions/Logging/Tokens, Microsoft.IdentityModel.Clients.ActiveDirectory, Microsoft.Rest.ClientRuntime — require replacement strategies +6. **WCF usage**: MFR_RESTClient uses WCF services that may need CoreWCF migration +7. **GDI+/System.Drawing**: Fuchs.vbproj uses System.Drawing which has limited cross-platform support on .NET 10.0 + +### Iteration Strategy + +Phase 1 (Foundation): Skeleton, classification, strategy — 3 iterations +Phase 2 (Foundation): Dependency analysis, strategy detail, project stubs — 3 iterations +Phase 3 (Details): All project details batched in 2–3 iterations (simple classification) + +--- + +## 2. Migration Strategy + +### Approach: All-At-Once + +All 4 projects are upgraded simultaneously in a single coordinated operation. There are no intermediate states — the solution moves atomically from .NET Framework 4.8 to .NET 10.0. + +### Justification + +| Factor | Assessment | Supports All-At-Once | +| :--- | :--- | :---: | +| Project count | 4 projects | ✅ Well under 30-project threshold | +| Framework uniformity | All net48 (except MT940Parser multi-target) | ✅ Homogeneous | +| Dependency structure | Clean 3-level DAG, no cycles | ✅ Simple | +| Total LOC | 10,521 | ✅ Small codebase | +| Package compatibility | All packages have known paths | ✅ Clear | +| Test projects | New Fuchs.Tests project to be created | ✅ Automated validation via xUnit | + +### All-At-Once Strategy Rationale + +- **Fastest completion**: No multi-targeting complexity or intermediate build states +- **Clean dependency resolution**: All projects move together, avoiding version conflicts between upgraded and non-upgraded projects +- **No intermediate states**: The solution is either fully on .NET Framework 4.8 or fully on .NET 10.0 +- **Unified upgrade**: All package references updated atomically, preventing dependency conflicts + +### Execution Sequence (Within Single Atomic Operation) + +1. **Convert all 3 classic projects to SDK-style** (MT940Parser is already SDK-style) +2. **Update TargetFramework** in all 4 project files simultaneously +3. **Update all package references** across all projects +4. **Remove packages now included in framework** (System.Buffers, System.Memory, etc.) +5. **Restore dependencies** (`dotnet restore`) +6. **Build solution and fix all compilation errors** — address breaking changes from ASP.NET Framework → ASP.NET Core, System.Drawing, Configuration, SqlClient namespace changes +7. **Verify solution builds with 0 errors** +8. **Create Fuchs.Tests project** — new xUnit test project targeting net10.0, add to solution +9. **Write initial test suite** — cover MT940 parsing, data models, business logic +10. **Run all tests** — `dotnet test`, verify all pass + +### Parallel vs. Sequential + +Within the atomic operation, project file edits can happen in parallel (they are independent file modifications). Build and fix cycles are inherently sequential since compilation errors must be identified before they can be fixed. + +--- + +## 3. Detailed Dependency Analysis + +### Dependency Graph + +``` +Level 0 (Foundation — no project dependencies): + ├── MT940Parser.csproj [netstandard2.0;net472] — ClassLibrary, SDK-style + └── MFR_RESTClient.vbproj [net48] — ClassicWinForms, Classic-style + +Level 1 (depends on Level 0 only): + └── Fuchs_DataService.vbproj [net48] — ClassicDotNetApp, Classic-style + └── depends on: MFR_RESTClient + +Level 2 (depends on Levels 0–1): + └── Fuchs.vbproj [net48] — WAP (ASP.NET MVC), Classic-style + └── depends on: MT940Parser, Fuchs_DataService, MFR_RESTClient + +Level 3 (test — depends on all): + └── Fuchs.Tests.csproj [NEW → net10.0] — xUnit test project, C# + └── depends on: MT940Parser, MFR_RESTClient, Fuchs_DataService, Fuchs +``` + +### Project Groupings (All-At-Once — Single Atomic Operation) + +Since all 4 projects are upgraded simultaneously, the dependency levels serve as **context for understanding impact**, not as separate phases: + +| Level | Projects | Role | +| :---: | :--- | :--- | +| 0 | MT940Parser.csproj, MFR_RESTClient.vbproj | Foundation libraries — no downstream dependencies | +| 1 | Fuchs_DataService.vbproj | Middle layer — data service consuming MFR_RESTClient | +| 2 | Fuchs.vbproj | Top-level web application — consumes all other projects | + +### Critical Path + +The critical path runs through: **MFR_RESTClient → Fuchs_DataService → Fuchs** + +- MFR_RESTClient is referenced by both Fuchs_DataService and Fuchs directly +- MT940Parser is only referenced by Fuchs and is already SDK-style with minimal changes needed +- Breaking changes in MFR_RESTClient (WCF, RestSharp, deprecated packages) will cascade to its dependants + +### Circular Dependencies + +**None detected.** The dependency graph is a clean DAG (Directed Acyclic Graph). + +--- + +## 4. Project-by-Project Migration Plans + +### 4.1 MT940Parser.csproj + +**Current State**: netstandard2.0;net472 | SDK-style | ClassLibrary | 1,342 LOC | 15 files | 0 API issues | 1 package (NETStandard.Library transitive) +**Target State**: netstandard2.0;net472;net10.0 (append new target framework) +**Risk Level**: 🟢 Low +**Complexity**: Low + +#### Prerequisites +- None — project is already SDK-style + +#### Framework Update +- Append `net10.0` to the existing `` element: + - **Before**: `netstandard2.0;net472` + - **After**: `netstandard2.0;net472;net10.0` + +#### Package Updates +- No package changes required — NETStandard.Library is a transitive dependency and compatible + +#### Expected Breaking Changes +- None — 0 API issues detected, fully compatible + +#### Code Modifications +- None expected + +#### Validation Checklist +- [ ] `net10.0` target added to TargetFrameworks +- [ ] Builds without errors for all 3 target frameworks +- [ ] Builds without warnings +- [ ] No new dependency conflicts + +### 4.2 MFR_RESTClient.vbproj + +**Current State**: net48 | Classic-style | ClassicWinForms | 621 LOC | 13 files | 26 API issues | 38 package issues +**Target State**: net10.0-windows | SDK-style +**Risk Level**: 🟡 Medium +**Complexity**: Medium + +#### Prerequisites +- Convert from classic to SDK-style project format (Project.0001) +- Project is classified as ClassicWinForms — use `Microsoft.NET.Sdk.WindowsDesktop` or `Microsoft.NET.Sdk` with `true` if WinForms references are needed, otherwise use `Microsoft.NET.Sdk` + +#### Framework Update +- **Before**: `v4.8` (classic format) +- **After**: `net10.0-windows` (SDK-style) + +#### Package Updates + +**Remove (included in framework):** +- Microsoft.AspNet.WebApi (5.2.9) +- Microsoft.NETCore.Platforms (7.0.4) +- System.Buffers (4.5.1) +- System.IO (4.3.0) +- System.Memory (4.5.5) +- System.Net.Http (4.3.4) +- System.Numerics.Vectors (4.5.0) +- System.Runtime (4.3.1) +- System.Security.Cryptography.Algorithms (4.3.1) +- System.Security.Cryptography.Encoding (4.3.0) +- System.Security.Cryptography.Primitives (4.3.0) +- System.Security.Cryptography.X509Certificates (4.3.2) +- System.Text.Encoding (4.3.0) +- System.Threading.Tasks.Extensions (4.5.4) +- System.ValueTuple (4.5.0) + +**Update:** +- Microsoft.Bcl.AsyncInterfaces: 7.0.0 → 10.0.5 +- Microsoft.IdentityModel.JsonWebTokens: 7.0.2 → 8.17.0 (🔒 security) +- Newtonsoft.Json: 13.0.3 → 13.0.4 +- RestSharp: 110.2.0 → 114.0.0 (🔒 security) +- System.IdentityModel.Tokens.Jwt: 7.0.2 → 8.17.0 (🔒 security) +- System.Runtime.CompilerServices.Unsafe: 6.0.0 → 6.1.2 +- System.Text.Encodings.Web: 7.0.0 → 10.0.5 +- System.Text.Json: 7.0.3 → 10.0.5 + +**Remove/Replace (incompatible):** +- Microsoft.AspNet.WebApi.Core (5.2.9) — no supported version; remove if not directly used, or replace with ASP.NET Core Web API +- Microsoft.AspNet.WebApi.WebHost (5.2.9) — no supported version; remove +- Microsoft.WindowsAzure.ConfigurationManager (3.2.3) — replace with `Microsoft.Extensions.Configuration` +- WindowsAzure.ServiceBus (6.2.2) — replace with `Azure.Messaging.ServiceBus` + +**Review (deprecated):** +- Microsoft.Data.OData (5.8.5) — deprecated; evaluate if still needed +- Microsoft.IdentityModel.Abstractions (7.0.2) — deprecated +- Microsoft.IdentityModel.Clients.ActiveDirectory (5.3.0) — deprecated; replace with `Microsoft.Identity.Client` (MSAL) +- Microsoft.IdentityModel.Logging (7.0.2) — deprecated +- Microsoft.IdentityModel.Tokens (7.0.2) — deprecated +- Microsoft.Rest.ClientRuntime (2.3.24) — deprecated + +**Keep (compatible):** +- Microsoft.AspNet.SignalR.Client (2.4.3) +- Microsoft.AspNet.WebApi.Client (5.2.9) +- Microsoft.Azure.Services.AppAuthentication (1.6.2) +- Microsoft.Data.Edm (5.8.5) +- Microsoft.Data.Services.Client (5.8.5) +- Microsoft.NETCore.Targets (5.0.0) +- Portable.BouncyCastle — if used transitively +- System.Private.Uri (4.3.2) +- System.Spatial (5.8.5) + +#### Expected Breaking Changes +- **Legacy Configuration** (6 issues): `ConfigurationManager` usage needs `System.Configuration.ConfigurationManager` NuGet or migration to `Microsoft.Extensions.Configuration` +- **System.Uri behavioral change** (18 issues): URI parsing behavior may differ — test URL handling code +- **Source incompatible APIs** (8 issues): SqlClient types, vbNewLine deprecation +- **WCF services** (UpgradeScenario.0040): Evaluate if WCF references are used; migrate to CoreWCF if needed + +#### Code Modifications +- Replace `Imports System.Data.SqlClient` with `Imports Microsoft.Data.SqlClient` +- Replace `vbNewLine` with `Environment.NewLine` where flagged +- Update RestSharp API calls for v114 compatibility +- Update ConfigurationManager references +- ⚠️ Review WCF service references and determine if CoreWCF migration is needed + +#### Validation Checklist +- [ ] Converted to SDK-style project +- [ ] TargetFramework set to net10.0-windows +- [ ] All incompatible packages removed/replaced +- [ ] All security vulnerability packages updated +- [ ] Builds without errors +- [ ] Builds without warnings +- [ ] No dependency conflicts + +### 4.3 Fuchs_DataService.vbproj + +**Current State**: net48 | Classic-style | ClassicDotNetApp | 2,281 LOC | 13 files | 108 API issues | 4 package issues +**Target State**: net10.0 | SDK-style +**Risk Level**: 🔴 High +**Complexity**: Medium + +#### Prerequisites +- Convert from classic to SDK-style project format (Project.0001) +- Depends on MFR_RESTClient — must be updated as part of the same atomic operation + +#### Framework Update +- **Before**: `v4.8` (classic format) +- **After**: `net10.0` (SDK-style) + +#### Package Updates + +**Remove (included in framework):** +- Microsoft.AspNet.Razor (3.2.9) +- Microsoft.Web.Infrastructure (2.0.0) +- System.Runtime.InteropServices.RuntimeInformation (4.3.0) + +**Update:** +- Newtonsoft.Json: 13.0.3 → 13.0.4 + +**Keep (compatible):** +- Squid-Box.SevenZipSharp (1.6.1.23) +- Topshelf (4.3.0) + +#### Expected Breaking Changes +- **Legacy Configuration System** (23 issues): Heavy use of `ConfigurationManager`, `ApplicationSettingsBase`, `ConnectionStringSettingsCollection`, `ConnectionStringSettings` — the most impacted area. Requires `System.Configuration.ConfigurationManager` NuGet package or migration to `Microsoft.Extensions.Configuration`. +- **SqlClient namespace** (87+ source incompatible): `System.Data.SqlClient` → `Microsoft.Data.SqlClient` across 6 affected files +- **Binary incompatible APIs** (16 issues): `DirectoryInfo.FullName`, `My.Computer.FileSystem` (FileSystemProxy) — may need alternative implementations +- **ASP.NET references** (2 issues): Minor System.Web usage — remove or replace +- **System.Uri behavioral change** (5 issues): URI parsing differences + +#### Code Modifications +- Add NuGet reference to `Microsoft.Data.SqlClient` +- Replace `Imports System.Data.SqlClient` with `Imports Microsoft.Data.SqlClient` across all files +- Add NuGet reference to `System.Configuration.ConfigurationManager` (bridge package) or migrate to `Microsoft.Extensions.Configuration` +- Replace `My.Computer.FileSystem` calls with `System.IO.File` / `System.IO.Directory` equivalents +- Remove any `System.Web` references — replace with modern equivalents +- Replace `vbNewLine` with `Environment.NewLine` where flagged + +#### Validation Checklist +- [ ] Converted to SDK-style project +- [ ] TargetFramework set to net10.0 +- [ ] All packages updated/removed per package update table +- [ ] SqlClient namespace migrated +- [ ] Configuration system bridged or migrated +- [ ] My.Computer.FileSystem replaced +- [ ] Builds without errors +- [ ] Builds without warnings +- [ ] No dependency conflicts + +### 4.4 Fuchs.vbproj + +**Current State**: net48 | Classic-style | WAP (ASP.NET MVC) | 6,277 LOC | 485 files | 224 API issues | 29 package issues +**Target State**: net10.0 | SDK-style +**Risk Level**: 🔴 High +**Complexity**: High + +#### Prerequisites +- Convert from classic WAP to SDK-style project format (Project.0001) +- This is the top-level application — depends on all other projects (MT940Parser, Fuchs_DataService, MFR_RESTClient) +- WAP → ASP.NET Core conversion is the most complex part of the entire upgrade + +#### Framework Update +- **Before**: `v4.8` (classic WAP format) +- **After**: `net10.0` (SDK-style with `Microsoft.NET.Sdk.Web`) + +#### Package Updates + +**Remove (included in framework / ASP.NET Core):** +- Microsoft.AspNet.Mvc (5.2.9) — replaced by `Microsoft.AspNetCore.Mvc` +- Microsoft.AspNet.Razor (3.2.9) +- Microsoft.AspNet.TelemetryCorrelation (1.0.8) +- Microsoft.AspNet.WebPages (3.2.9) +- Microsoft.CodeDom.Providers.DotNetCompilerPlatform (4.1.0) +- Microsoft.Web.Infrastructure (2.0.0) +- System.Buffers (4.5.1) +- System.Data.DataSetExtensions (4.5.0) +- System.Memory (4.5.5) +- System.Numerics.Vectors (4.5.0) +- System.Threading.Tasks.Extensions (4.5.4) +- System.ValueTuple (4.5.0) + +**Update:** +- BouncyCastle.Cryptography: 2.3.0 → 2.6.2 (🔒 security) +- MimeKit: 4.4.0 → 4.15.1 (🔒 security) +- Newtonsoft.Json: 13.0.3 → 13.0.4 +- PDFsharp: 1.50.5147 → 6.2.4 (incompatible — major upgrade) +- PDFsharp-MigraDoc: 1.50.5147 → 6.2.4 (incompatible — major upgrade) +- System.Diagnostics.DiagnosticSource: 7.0.2 → 10.0.5 +- System.Formats.Asn1: 8.0.0 → 10.0.5 +- System.Runtime.CompilerServices.Unsafe: 6.0.0 → 6.1.2 +- System.Text.Encoding.CodePages: 7.0.0 → 10.0.5 +- TinyMCE: 6.3.1 → 8.3.2 (🔒 security) + +**Remove/Replace (incompatible):** +- ImageProcessor (2.9.1) — **Replace with SixLabors.ImageSharp** or SkiaSharp +- ImageProcessor.Plugins.WebP (1.3.0) — **Replace** (ImageSharp supports WebP natively) +- ImageProcessor.Web (4.12.1) — **Replace** with custom middleware or ImageSharp.Web +- ImageProcessor.Web.Config (2.6.0) — **Replace** + +**Keep (compatible):** +- BouncyCastle (1.8.9) +- HtmlAgilityPack (1.11.54) +- jQuery (3.7.1) +- jQuery.Validation (1.19.5) +- MailKit (4.4.0) +- Microsoft.IO.RecyclableMemoryStream (2.3.2) +- Microsoft.jQuery.Unobtrusive.Validation (4.0.0) +- Modernizr (2.8.3) +- Portable.BouncyCastle (1.9.0) +- QRCoder (1.4.3) +- Spire.PDF (8.10.5) +- Squid-Box.SevenZipSharp (1.6.1.23) + +**New packages to add:** +- `Microsoft.Data.SqlClient` — replacement for System.Data.SqlClient +- `System.Drawing.Common` — for GDI+ compatibility on .NET 10.0 (Windows only) +- `SixLabors.ImageSharp` (or `SkiaSharp`) — replacement for ImageProcessor + +#### Expected Breaking Changes + +**ASP.NET Framework → ASP.NET Core (123 issues — 54% of this project's issues):** +- `System.Web.Mvc.ContentResult` → `Microsoft.AspNetCore.Mvc.ContentResult` (9 constructor + property changes) +- `System.Web.Mvc.HttpStatusCodeResult` → `Microsoft.AspNetCore.Mvc.StatusCodeResult` (11 issues) +- `System.Web.Mvc.ViewResult` → `Microsoft.AspNetCore.Mvc.ViewResult` (1 issue) +- `System.Web.Mvc.UrlParameter` → ASP.NET Core routing equivalents (9 issues) +- `System.Web.Mvc.GlobalFilterCollection` → `IServiceCollection` filter registration (2 issues) +- `System.Web.Routing.Route` / `RouteCollection` → ASP.NET Core endpoint routing (7 issues) +- `System.Web.HttpPostedFile` / `HttpPostedFileWrapper` → `IFormFile` (9 issues) +- Application startup: `Global.asax` → `Program.cs` / `Startup.cs` +- Route configuration: `RouteConfig.cs` → Endpoint routing in `Program.cs` +- Filter registration: `FilterConfig.cs` → Service collection configuration + +**Legacy Configuration (19 issues):** +- `ConfigurationManager.ConnectionStrings` → `IConfiguration` / `appsettings.json` +- `ConfigurationManager.AppSettings` → `IConfiguration` / `appsettings.json` + +**GDI+ / System.Drawing (14 issues):** +- `System.Drawing.Bitmap`, `System.Drawing.Imaging.ImageFormat` — require `System.Drawing.Common` NuGet +- `Bitmap.SetPixel` — compatible via System.Drawing.Common but Windows-only + +**SqlClient (37+ issues):** +- `System.Data.SqlClient.SqlParameter` constructors (37 occurrences) +- `System.Data.SqlClient.SqlConnection` (10 occurrences) +- `System.Data.SqlClient.SqlCommand` (3 occurrences) + +**PDFsharp/MigraDoc 1.50 → 6.2.4:** +- `MigraDoc.DocumentObjectModel.Document` API may have changed +- `MigraDoc.Rendering.PdfDocumentRenderer` — rendering pipeline restructured +- `PdfDocument.Save()` method signature may differ +- All PDF generation code in `fuchs_fds_pdf.vb` and `fuchs_intranet.vb` needs review + +**Other:** +- `vbNewLine` deprecated (11 issues) → use `Environment.NewLine` +- `My.Computer.FileSystem` (3 issues) → use `System.IO` directly + +#### Code Modifications + +**High Priority — Structural Changes:** +1. Create `Program.cs` (or `Program.vb`) with ASP.NET Core host builder +2. Migrate `Global.asax` application startup to `Program.cs`/`Startup.cs` +3. Migrate `RouteConfig` to ASP.NET Core endpoint routing +4. Migrate `FilterConfig` to service collection registration +5. Convert `web.config` settings to `appsettings.json` + +**High Priority — Namespace Changes:** +6. Replace all `Imports System.Web.Mvc` with `Imports Microsoft.AspNetCore.Mvc` +7. Replace all `Imports System.Data.SqlClient` with `Imports Microsoft.Data.SqlClient` +8. Replace `HttpPostedFile`/`HttpPostedFileWrapper` with `IFormFile` +9. Replace `System.Web.Routing` with ASP.NET Core routing + +**Medium Priority — Package Migration:** +10. Replace ImageProcessor usage with SixLabors.ImageSharp (or SkiaSharp) +11. Update PDFsharp/MigraDoc code to v6.2.4 API +12. Add `System.Drawing.Common` NuGet for remaining GDI+ usage + +**Low Priority — Code Cleanup:** +13. Replace `vbNewLine` with `Environment.NewLine` +14. Replace `My.Computer.FileSystem` with `System.IO` equivalents +15. Update `ConfigurationManager` references to use `IConfiguration` + +#### Validation Checklist +- [ ] Converted to SDK-style project (Microsoft.NET.Sdk.Web) +- [ ] TargetFramework set to net10.0 +- [ ] Program.cs/Startup.cs created with ASP.NET Core host +- [ ] All ASP.NET MVC controllers migrated to ASP.NET Core MVC +- [ ] Route configuration migrated to endpoint routing +- [ ] All incompatible packages removed/replaced +- [ ] All security vulnerability packages updated +- [ ] ImageProcessor replaced with alternative +- [ ] PDFsharp/MigraDoc code updated for v6.x +- [ ] SqlClient namespace migrated +- [ ] System.Drawing.Common added for GDI+ usage +- [ ] web.config settings migrated to appsettings.json +- [ ] Builds without errors +- [ ] Builds without warnings +- [ ] No dependency conflicts + +### 4.5 Fuchs.Tests (New) + +**Current State**: Does not exist — no automated test coverage in the solution +**Target State**: net10.0 | SDK-style | xUnit test project | C# +**Risk Level**: 🟢 Low +**Complexity**: Low + +#### Purpose + +Create a new C# xUnit test project to provide automated validation of critical business logic after the .NET 10.0 upgrade. This project bridges the gap identified in the assessment: **zero existing test coverage**. + +#### Project Setup + +- **Project Name**: `Fuchs.Tests` +- **Location**: `Fuchs.Tests\Fuchs.Tests.csproj` (in solution root) +- **SDK**: `Microsoft.NET.Sdk` +- **Target Framework**: `net10.0` +- **Test Framework**: xUnit (latest stable) +- **Language**: C# (aligns with modern .NET ecosystem; can reference VB.NET projects) + +#### Package References + +| Package | Version | Purpose | +| :--- | :---: | :--- | +| Microsoft.NET.Test.Sdk | latest | Test host infrastructure | +| xunit | latest | Test framework | +| xunit.runner.visualstudio | latest | Visual Studio test runner | +| Moq | latest | Mocking framework for isolating dependencies | +| coverlet.collector | latest | Code coverage collection | + +#### Project References + +- `Fuchs.vbproj` — test the main web application logic +- `Fuchs_DataService.vbproj` — test data service business logic +- `MFR_RESTClient.vbproj` — test REST client utilities +- `MT940Parser.csproj` — test MT940 parsing logic + +#### Test Coverage Strategy + +**Priority 1 — MT940Parser (highest testability):** +- MT940 statement parsing correctness +- Edge cases: empty files, malformed records, multi-statement files +- Currency/amount parsing across cultures + +**Priority 2 — Data Service Logic (Fuchs_DataService):** +- SQL parameter construction helpers +- Configuration value resolution +- Business logic that can be tested without database + +**Priority 3 — REST Client (MFR_RESTClient):** +- Request construction and parameter serialization +- Response deserialization +- Error handling paths + +**Priority 4 — Web Application (Fuchs):** +- Invoice data model properties and calculations +- Reminder data model properties +- PDF text block construction +- Address parsing and HTML-decode logic (e.g., `raw_InvoiceAddress`, `raw_ProvisionLocation`) + +#### Validation Checklist +- [ ] Fuchs.Tests.csproj created with xUnit, net10.0 +- [ ] Project added to solution +- [ ] References to all 4 projects added +- [ ] Initial test suite passes +- [ ] Tests execute via `dotnet test` + +--- + +## 5. Package Update Reference + +### Common Package Updates (affecting multiple projects) + +| Package | Current | Target | Projects Affected | Action | Reason | +| :--- | :---: | :---: | :---: | :--- | :--- | +| Newtonsoft.Json | 13.0.3 | 13.0.4 | 3 (Fuchs, Fuchs_DataService, MFR_RESTClient) | Update | Recommended upgrade | +| System.Runtime.CompilerServices.Unsafe | 6.0.0 | 6.1.2 | 2 (Fuchs, MFR_RESTClient) | Update | Recommended upgrade | +| System.Buffers | 4.5.1 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework | +| System.Memory | 4.5.5 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework | +| System.Numerics.Vectors | 4.5.0 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework | +| System.Threading.Tasks.Extensions | 4.5.4 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework | +| System.ValueTuple | 4.5.0 | — | 2 (Fuchs, MFR_RESTClient) | **Remove** | Included in framework | +| Squid-Box.SevenZipSharp | 1.6.1.23 | — | 2 (Fuchs, Fuchs_DataService) | Keep | Compatible | +| Microsoft.Web.Infrastructure | 2.0.0 | — | 2 (Fuchs, Fuchs_DataService) | **Remove** | Included in framework | +| Microsoft.AspNet.Razor | 3.2.9 | — | 2 (Fuchs, Fuchs_DataService) | **Remove** | Included in framework | + +### Security Vulnerability Updates (Critical) + +| Package | Current | Target | Project | Action | Reason | +| :--- | :---: | :---: | :--- | :--- | :--- | +| BouncyCastle.Cryptography | 2.3.0 | 2.6.2 | Fuchs | Update | 🔒 Security vulnerability | +| Microsoft.IdentityModel.JsonWebTokens | 7.0.2 | 8.17.0 | MFR_RESTClient | Update | 🔒 Security vulnerability | +| MimeKit | 4.4.0 | 4.15.1 | Fuchs | Update | 🔒 Security vulnerability | +| RestSharp | 110.2.0 | 114.0.0 | MFR_RESTClient | Update | 🔒 Security vulnerability | +| System.IdentityModel.Tokens.Jwt | 7.0.2 | 8.17.0 | MFR_RESTClient | Update | 🔒 Security vulnerability | +| TinyMCE | 6.3.1 | 8.3.2 | Fuchs | Update | 🔒 Security vulnerability | + +### Fuchs.vbproj Package Updates + +| Package | Current | Target | Action | Reason | +| :--- | :---: | :---: | :--- | :--- | +| BouncyCastle | 1.8.9 | 1.8.9 | Keep/Update | Security vulnerability (same version flagged) | +| BouncyCastle.Cryptography | 2.3.0 | 2.6.2 | Update | Security vulnerability | +| HtmlAgilityPack | 1.11.54 | — | Keep | Compatible | +| ImageProcessor | 2.9.1 | — | **Remove/Replace** | Incompatible — replace with ImageSharp or SkiaSharp | +| ImageProcessor.Plugins.WebP | 1.3.0 | — | **Remove/Replace** | Incompatible — replace with ImageSharp or SkiaSharp | +| ImageProcessor.Web | 4.12.1 | — | **Remove/Replace** | Incompatible — replace with ImageSharp or SkiaSharp | +| ImageProcessor.Web.Config | 2.6.0 | — | **Remove/Replace** | Incompatible — replace with ImageSharp or SkiaSharp | +| jQuery | 3.7.1 | — | Keep | Compatible | +| jQuery.Validation | 1.19.5 | — | Keep | Compatible | +| MailKit | 4.4.0 | — | Keep | Compatible | +| Microsoft.AspNet.Mvc | 5.2.9 | — | **Remove** | Included in framework (ASP.NET Core) | +| Microsoft.AspNet.TelemetryCorrelation | 1.0.8 | — | **Remove** | Incompatible; functionality in ASP.NET Core | +| Microsoft.AspNet.WebPages | 3.2.9 | — | **Remove** | Included in framework | +| Microsoft.CodeDom.Providers.DotNetCompilerPlatform | 4.1.0 | — | **Remove** | Included in framework | +| Microsoft.IO.RecyclableMemoryStream | 2.3.2 | — | Keep | Compatible | +| Microsoft.jQuery.Unobtrusive.Validation | 4.0.0 | — | Keep | Compatible | +| MimeKit | 4.4.0 | 4.15.1 | Update | Security vulnerability | +| Modernizr | 2.8.3 | — | Keep | Compatible | +| PDFsharp | 1.50.5147 | 6.2.4 | Update | Incompatible — major version upgrade | +| PDFsharp-MigraDoc | 1.50.5147 | 6.2.4 | Update | Incompatible — major version upgrade | +| Portable.BouncyCastle | 1.9.0 | — | Keep | Compatible | +| QRCoder | 1.4.3 | — | Keep | Compatible | +| Spire.PDF | 8.10.5 | — | Keep | Compatible | +| System.Data.DataSetExtensions | 4.5.0 | — | **Remove** | Included in framework | +| System.Diagnostics.DiagnosticSource | 7.0.2 | 10.0.5 | Update | Recommended upgrade | +| System.Formats.Asn1 | 8.0.0 | 10.0.5 | Update | Recommended upgrade | +| System.Text.Encoding.CodePages | 7.0.0 | 10.0.5 | Update | Recommended upgrade | +| TinyMCE | 6.3.1 | 8.3.2 | Update | Security vulnerability | + +### MFR_RESTClient.vbproj Package Updates + +| Package | Current | Target | Action | Reason | +| :--- | :---: | :---: | :--- | :--- | +| Microsoft.AspNet.SignalR.Client | 2.4.3 | — | Keep | Compatible | +| Microsoft.AspNet.WebApi | 5.2.9 | — | **Remove** | Included in framework | +| Microsoft.AspNet.WebApi.Client | 5.2.9 | — | Keep | Compatible | +| Microsoft.AspNet.WebApi.Core | 5.2.9 | — | **Remove/Replace** | Incompatible — no supported version | +| Microsoft.AspNet.WebApi.WebHost | 5.2.9 | — | **Remove/Replace** | Incompatible — no supported version | +| Microsoft.Azure.Services.AppAuthentication | 1.6.2 | — | Keep | Compatible | +| Microsoft.Bcl.AsyncInterfaces | 7.0.0 | 10.0.5 | Update | Recommended upgrade | +| Microsoft.Data.Edm | 5.8.5 | — | Keep | Compatible | +| Microsoft.Data.OData | 5.8.5 | — | **Review** | ⚠️ Deprecated — find replacement | +| Microsoft.Data.Services.Client | 5.8.5 | — | Keep | Compatible | +| Microsoft.IdentityModel.Abstractions | 7.0.2 | — | **Review** | ⚠️ Deprecated | +| Microsoft.IdentityModel.Clients.ActiveDirectory | 5.3.0 | — | **Replace** | ⚠️ Deprecated — use Microsoft.Identity.Client (MSAL) | +| Microsoft.IdentityModel.JsonWebTokens | 7.0.2 | 8.17.0 | Update | Security vulnerability | +| Microsoft.IdentityModel.Logging | 7.0.2 | — | **Review** | ⚠️ Deprecated | +| Microsoft.IdentityModel.Tokens | 7.0.2 | — | **Review** | ⚠️ Deprecated | +| Microsoft.NETCore.Platforms | 7.0.4 | — | **Remove** | Included in framework | +| Microsoft.NETCore.Targets | 5.0.0 | — | Keep | Compatible | +| Microsoft.Rest.ClientRuntime | 2.3.24 | — | **Review** | ⚠️ Deprecated — find replacement | +| Microsoft.WindowsAzure.ConfigurationManager | 3.2.3 | — | **Replace** | Incompatible — use Microsoft.Extensions.Configuration | +| RestSharp | 110.2.0 | 114.0.0 | Update | Security vulnerability | +| System.IdentityModel.Tokens.Jwt | 7.0.2 | 8.17.0 | Update | Security vulnerability | +| System.IO | 4.3.0 | — | **Remove** | Included in framework | +| System.Net.Http | 4.3.4 | — | **Remove** | Included in framework | +| System.Private.Uri | 4.3.2 | — | Keep | Compatible | +| System.Runtime | 4.3.1 | — | **Remove** | Included in framework | +| System.Security.Cryptography.Algorithms | 4.3.1 | — | **Remove** | Included in framework | +| System.Security.Cryptography.Encoding | 4.3.0 | — | **Remove** | Included in framework | +| System.Security.Cryptography.Primitives | 4.3.0 | — | **Remove** | Included in framework | +| System.Security.Cryptography.X509Certificates | 4.3.2 | — | **Remove** | Included in framework | +| System.Spatial | 5.8.5 | — | Keep | Compatible | +| System.Text.Encoding | 4.3.0 | — | **Remove** | Included in framework | +| System.Text.Encodings.Web | 7.0.0 | 10.0.5 | Update | Recommended upgrade | +| System.Text.Json | 7.0.3 | 10.0.5 | Update | Recommended upgrade | +| WindowsAzure.ServiceBus | 6.2.2 | — | **Replace** | Incompatible — use Azure.Messaging.ServiceBus | + +### Fuchs_DataService.vbproj Package Updates + +| Package | Current | Target | Action | Reason | +| :--- | :---: | :---: | :--- | :--- | +| Microsoft.AspNet.Razor | 3.2.9 | — | **Remove** | Included in framework | +| Microsoft.Web.Infrastructure | 2.0.0 | — | **Remove** | Included in framework | +| Newtonsoft.Json | 13.0.3 | 13.0.4 | Update | Recommended upgrade | +| Squid-Box.SevenZipSharp | 1.6.1.23 | — | Keep | Compatible | +| System.Runtime.InteropServices.RuntimeInformation | 4.3.0 | — | **Remove** | Included in framework | +| Topshelf | 4.3.0 | — | Keep | Compatible | + +### MT940Parser.csproj Package Updates + +| Package | Current | Target | Action | Reason | +| :--- | :---: | :---: | :--- | :--- | +| NETStandard.Library | 2.0.3 (transitive) | — | Keep | Compatible | + +--- + +## 6. Breaking Changes Catalog + +### Framework Breaking Changes + +| Category | Issue Count | Impact | Description | +| :--- | :---: | :--- | :--- | +| System.Data.SqlClient → Microsoft.Data.SqlClient | 72+ | Source Incompatible | SqlParameter, SqlConnection, SqlCommand constructors and types moved to Microsoft.Data.SqlClient namespace. All `Imports System.Data.SqlClient` / `using System.Data.SqlClient` must change. | +| System.Web.Mvc → Microsoft.AspNetCore.Mvc | 101+ | Binary Incompatible | ContentResult, HttpStatusCodeResult, ViewResult, UrlParameter, GlobalFilterCollection, RouteCollection — all ASP.NET MVC types replaced by ASP.NET Core equivalents | +| System.Configuration.ConfigurationManager | 48 | Source Incompatible | ApplicationSettingsBase, ConnectionStringSettingsCollection, ConfigurationManager.AppSettings/ConnectionStrings — available via NuGet `System.Configuration.ConfigurationManager` or migrate to `Microsoft.Extensions.Configuration` | +| Microsoft.VisualBasic.Constants | 11 | Source Incompatible | `vbNewLine` — deprecated in modern .NET; replace with `Environment.NewLine` or `vbCrLf` | +| System.Uri | 23 | Behavioral Change | URI parsing behavior changes in .NET 10.0 — may affect URL construction/comparison | +| System.Drawing / GDI+ | 14 | Source Incompatible | Bitmap, ImageFormat types — require `System.Drawing.Common` NuGet on .NET 10.0; Windows-only | +| System.Web.HttpPostedFile / HttpPostedFileWrapper | 9 | Source Incompatible | File upload types replaced by `IFormFile` in ASP.NET Core | +| System.Web.Routing | 5 | Binary Incompatible | Route, RouteCollection — replaced by ASP.NET Core routing | +| Microsoft.VisualBasic.MyServices.FileSystemProxy | 3 | Binary Incompatible | `My.Computer.FileSystem` — may have limited support; use `System.IO` directly | +| System.TimeSpan.FromMilliseconds | 2 | Source Incompatible | Overload resolution may change | + +### Package Breaking Changes + +| Package | Change | Impact | +| :--- | :--- | :--- | +| PDFsharp 1.50 → 6.2.4 | Major version upgrade. API restructured; namespace changes; `PdfDocument`, `PdfPage` APIs may differ. MigraDoc rendering API changed. | High — review PDFsharp 6.x migration guide | +| RestSharp 110.2 → 114.0 | API changes in request/response handling | Medium — review changelog | +| ImageProcessor → (replacement) | Package removed entirely; no .NET 10 version | High — must replace with alternative (ImageSharp, SkiaSharp) | +| WindowsAzure.ServiceBus → Azure.Messaging.ServiceBus | Completely different API surface | High — full rewrite of ServiceBus integration | +| Microsoft.IdentityModel.Clients.ActiveDirectory → Microsoft.Identity.Client | ADAL deprecated; migrate to MSAL | Medium - + +--- + +## 7. Risk Management + +### Risk Identification + +| Risk ID | Category | Description | Impact | Likelihood | Level | +| :--- | :--- | :--- | :---: | :---: | :---: | +| 01 | Technical | Issues during SDK-style conversion | High | Medium | 🔴 High | +| 02 | Technical | Inability to upgrade WCF services to CoreWCF | High | Medium | 🔴 High | +| 03 | Technical | GDI+ / System.Drawing compatibility issues | High | Medium | 🔴 High | +| 04 | Technical | Breakage due to ASP.NET Framework → ASP.NET Core migration | High | High | 🔴 High | +| 05 | Technical | SQL Client namespace changes not fully resolved | Medium | Medium | 🟡 Medium | +| 06 | Technical | PDFsharp/MigraDoc API changes not addressed | Medium | Medium | 🟡 Medium | +| 07 | Technical | RestSharp API changes not compatible | Medium | Medium | 🟡 Medium | +| 08 | Technical | Legacy configuration system issues | Medium | High | 🟡 Medium | +| 09 | Technical | Incomplete or flawed all-at-once migration | High | Medium | 🔴 High | +| 10 | Process | Insufficient testing due to lack of automated tests | High | High | 🔴 High | + +### Risk Assessment + +- **High Level Risks (🔴)**: + - 01: Technical issues during SDK-style conversion could block the migration. + - 02: WCF services that cannot be upgraded to CoreWCF may require significant rearchitecture. + - 03: GDI+ / System.Drawing issues could lead to runtime failures on .NET 10.0. + - 04: ASP.NET Framework to ASP.NET Core migration causing critical application failures. + - 09: An incomplete all-at-once migration could leave the solution in an unstable state. + - 10: Lack of automated tests increases the likelihood of undetected issues. + +- **Medium Level Risks (🟡)**: + - 05: Changes in the SQL Client namespace not being fully resolved may cause runtime errors. + - 06: PDFsharp/MigraDoc API changes that are not addressed could lead to PDF generation failures. + - 07: RestSharp API changes not being compatible with existing code may disrupt external service integrations. + - 08: Issues arising from the legacy configuration system might be overlooked in the migration. + +### Risk Response Strategies + +1. **Mitigation**: + - **Extensive backup and restore strategy**: Complete backups of all projects and solution states will be created before starting the migration. This allows reverting to the original state in case of critical issues. + - **Incremental migration approach**: Where possible, migrate projects or components incrementally rather than all-at-once. This reduces the impact of unforeseen issues. + - **Feature flags / toggles**: Implement feature flags for critical path changes (e.g., SDK-style conversion, WCF to CoreWCF migration) to enable quick disabling if severe issues are encountered. + - **Automated tests**: Where feasible, develop automated tests for critical functionality before migration. This will help in validating the success of the migration and catching issues early. + +2. **Contingency**: + - **Rollback plan**: If the all-at-once migration fails, revert to the backuped state and reassess the migration strategy. + - **Staged upgrade**: Consider a staged upgrade approach, where projects are upgraded in phases rather than a single atomic operation, allowing for easier pinpointing of issues. + +3. **Acceptance**: + - Some low probability, high impact risks (e.g., undocumented breaking changes in third-party packages) may be accepted if mitigation strategies are not feasible, with a plan to address issues as they arise post-migration. + +--- + +## 8. Testing & Validation Strategy + +### Automated Testing (Fuchs.Tests) + +A new xUnit test project (`Fuchs.Tests`) targeting net10.0 will be created as part of this upgrade to provide automated validation. See [§4.5 Fuchs.Tests](#45-fuchstests-new) for full project details. + +**Test projects to run:** +- `Fuchs.Tests.csproj` — xUnit tests covering MT940 parsing, data models, REST client utilities, and business logic + +**Execution:** +- Run via `dotnet test` on the entire solution after the atomic upgrade completes +- Expected outcome: All tests pass + +### Build Verification (Automated) + +After the atomic upgrade operation: +1. **Restore dependencies**: `dotnet restore` on entire solution +2. **Build solution**: `dotnet build` — target: 0 errors, 0 warnings +3. **Run tests**: `dotnet test` — target: all tests pass +4. **Verify no dependency conflicts**: Check for package downgrade warnings or version conflicts + +### Testing Approaches + +1. **Automated Unit Testing**: Where feasible, develop and run automated unit tests for critical components and functionality. These tests should cover: + - Key business logic + - Public APIs + - Critical integrations (e.g., database, external services) + +2. **Manual Testing**: Perform manual testing for areas not covered by automated tests, including: + - UI/UX validation + - Exploratory testing to find edge cases or issues not anticipated + +3. **Performance Testing**: Validate that the application meets performance benchmarks, especially for critical paths such as: + - Application startup time + - Response times for key APIs + - PDF generation time (post-migration to PDFsharp 6.x) + +4. **Security Testing**: Perform security testing to ensure that known vulnerabilities are addressed and no new vulnerabilities are introduced during the migration. + +5. **Regression Testing**: Conduct regression testing to ensure that existing functionality is not broken by the migration. This includes: + - Running the full suite of automated tests + - Manual verification of critical paths + +### Success Criteria for Testing + +- [ ] All critical and high-priority automated tests pass +- [ ] Manual testing sign-off for all key scenarios +- [ ] Performance benchmarks met or exceeded +- [ ] No new security vulnerabilities introduced +- [ ] Successful migration of all projects to .NET 10.0 with no critical issues + +--- + +## 9. Complexity & Effort Assessment + +### Complexity Factors + +1. **Project Count**: 4 projects, which is relatively small and manageable. +2. **Dependency Depth**: Shallow dependency depth (≤ 2), with no circular dependencies detected. This simplifies the migration as inter-project dependencies are minimal. +3. **Codebase Size**: Total of 10,521 lines of code, with an estimated 358+ lines affected by the migration (3.4% of codebase). This is a small codebase, reducing the potential impact of migration issues. +4. **Package Compatibility**: All packages have known target versions, clear replacements, or are framework-included. This reduces uncertainty during the migration process. + +### Effort Estimation + +| Task | Estimated Effort (Person-Days) | +| :--- | ---: | +| 1. Project Setup and Initial Analysis | 2 | +| 2. SDK-style Conversion (3 projects) | 6 | +| 3. Framework Update | 2 | +| 4. Package Updates and Dependency Resolution | 3 | +| 5. Code Modifications for Breaking Changes | 5 | +| 6. Testing and Validation | 4 | +| 7. Documentation and Cleanup | 2 | +| **Total Estimated Effort** | **24 Person-Days** | + +> Note: This is a high-level estimate and actual effort may vary based on detailed analysis and unforeseen issues during the migration. + +--- + +## 10. Source Control Strategy + +### Branching Strategy + +1. **Main Branch**: `main` or `master` branch contains the production-ready code. +2. **Development Branch**: `develop` branch is used for integrating all feature branches and is the primary branch for development work. +3. **Feature Branches**: Each feature or migration task is done on a separate branch off of `develop`, named descriptively (e.g., `feature/sdk-style-conversion`). +4. **Release Branch**: A release branch (e.g., `release/10.0-upgrade`) is created from `develop` when preparing for a new release, allowing for final testing and bug fixing. + +### Commit Messages + +Adhere to the following conventions for commit messages: +- **Feature**: `feat(): ` - Example: `feat(migration): add .NET 10.0 upgrade plan` +- **Fix**: `fix(): ` - Example: `fix(migration): resolve RestSharp API changes` +- **Docs**: `docs(): ` - Example: `docs(migration): update breaking changes catalog` +- **Chore**: `chore(): ` - Example: `chore(deps): update Newtonsoft.Json to 13.0.4` + +### Pull Requests + +- All changes are to be merged via pull requests (PRs) to ensure code review and automated testing. +- PRs should be **small and focused**, addressing one migration task or feature at a time. +- Require at least one **reviewer approval** before merging. +- Ensure the PR description includes: + - **What**: A brief description of the changes made. + - **Why**: The reason for the change, including any relevant issue or task links. + - **Testing**: Any specific testing that was done or needs to be done. + +--- + +## 11. Success Criteria + +### Technical Criteria + +- [ ] All 4 existing projects target their proposed framework: + - MT940Parser.csproj → netstandard2.0;net472;net10.0 + - MFR_RESTClient.vbproj → net10.0-windows + - Fuchs_DataService.vbproj → net10.0 + - Fuchs.vbproj → net10.0 +- [ ] New test project created: Fuchs.Tests.csproj → net10.0 +- [ ] All 3 classic projects converted to SDK-style format +- [ ] All package updates from assessment applied (32 packages requiring action) +- [ ] All 5 security vulnerability packages updated to secure versions +- [ ] Solution builds with 0 errors +- [ ] Solution builds with 0 warnings (or only pre-existing warnings) +- [ ] All unit tests pass (`dotnet test`) +- [ ] No package dependency conflicts +- [ ] No `TypeLoadException` or `MissingMethodException` at runtime + +### Quality Criteria + +- [ ] Code quality maintained — no hacks or workarounds without documentation +- [ ] All deprecated package replacements documented +- [ ] Breaking change resolutions follow recommended patterns +- [ ] Configuration migration follows modern .NET patterns + +### Process Criteria + +- [ ] All-At-Once strategy followed — single atomic upgrade operation +- [ ] All projects upgraded simultaneously — no intermediate states +- [ ] Backup created before upgrade started +- [ ] All changes can be committed as a single atomic unit + +### Definition of Done + +The migration is **complete** when: +1. All technical criteria above are met +2. The solution builds successfully on .NET 10.0 +3. All security vulnerabilities are resolved +4. All unit tests in Fuchs.Tests pass +5. The application can start and serve requests (manual verification) diff --git a/.github/upgrades/scenarios/new-dotnet-version_16123a/scenario.json b/.github/upgrades/scenarios/new-dotnet-version_16123a/scenario.json new file mode 100644 index 0000000..7e7da4f --- /dev/null +++ b/.github/upgrades/scenarios/new-dotnet-version_16123a/scenario.json @@ -0,0 +1,10 @@ +{ + "scenarioId": "New-DotNet-Version", + "operationId": "16123aaa-4e23-42c5-b34a-cb69de77906a", + "description": "Upgrade solution or project to new version of .NET", + "startTime": "2026-03-29T20:17:19.7980781Z", + "lastUpdateTime": "2026-04-16T21:39:55.013522Z", + "stage": "Execution", + "properties": {}, + "folderPath": "" +} \ No newline at end of file diff --git a/.github/upgrades/scenarios/new-dotnet-version_16123a/tasks.md b/.github/upgrades/scenarios/new-dotnet-version_16123a/tasks.md new file mode 100644 index 0000000..e71006f --- /dev/null +++ b/.github/upgrades/scenarios/new-dotnet-version_16123a/tasks.md @@ -0,0 +1,56 @@ +# Fuchs Intranet .NET 10.0 Upgrade Tasks + +## Overview + +This document tracks the execution of the Fuchs Intranet solution upgrade from .NET Framework 4.8 to .NET 10.0. All projects will be upgraded simultaneously in a single atomic operation, followed by test project creation and validation. + +**Progress**: 2/3 tasks complete (67%) ![0%](https://progress-bar.xyz/67) + +--- + +## Tasks + +### [✓] TASK-001: Atomic framework and dependency upgrade with compilation fixes *(Completed: 2026-04-16 21:06)* +**References**: Plan §2, Plan §4, Plan §5 Package Update Reference, Plan §6 Breaking Changes Catalog + +- [✓] (1) Convert MFR_RESTClient.vbproj, Fuchs_DataService.vbproj, and Fuchs.vbproj from classic to SDK-style project format per Plan §4 (MT940Parser is already SDK-style) +- [✓] (2) All 3 projects converted to SDK-style (**Verify**) +- [✓] (3) Update target frameworks: MT940Parser append `net10.0` to existing multi-target; MFR_RESTClient to `net10.0-windows`; Fuchs_DataService to `net10.0`; Fuchs to `net10.0` with `Microsoft.NET.Sdk.Web` +- [✓] (4) All target frameworks updated (**Verify**) +- [✓] (5) Update all package references across all projects per Plan §5 (remove framework-included packages, update security packages, replace incompatible packages) +- [✓] (6) All package references updated (**Verify**) +- [✓] (7) Restore all dependencies +- [✓] (8) All dependencies restored successfully (**Verify**) +- [✓] (9) Build solution and fix all compilation errors per Plan §6 Breaking Changes Catalog (focus areas: ASP.NET Framework → ASP.NET Core migration in Fuchs.vbproj, SqlClient namespace changes, configuration system, GDI+/System.Drawing, PDFsharp/MigraDoc API updates, ImageProcessor replacement, vbNewLine deprecation) +- [✓] (10) Solution builds with 0 errors (**Verify**) + +--- + +### [✓] TASK-002: Create and validate test project *(Completed: 2026-04-16 21:11)* +**References**: Plan §4.5, Plan §8 Testing & Validation Strategy + +- [✓] (1) Create Fuchs.Tests.csproj as xUnit test project targeting net10.0 per Plan §4.5 +- [✓] (2) Add Fuchs.Tests project to solution +- [✓] (3) Add project references to all 4 projects (MT940Parser, MFR_RESTClient, Fuchs_DataService, Fuchs) +- [✓] (4) Add NuGet packages: Microsoft.NET.Test.Sdk, xunit, xunit.runner.visualstudio, Moq, coverlet.collector (latest stable versions) +- [✓] (5) Write initial test suite per Plan §4.5 Test Coverage Strategy (Priority 1: MT940 parsing; Priority 2: data service logic; Priority 3: REST client; Priority 4: web application data models) +- [✓] (6) Run tests via `dotnet test` +- [✓] (7) Fix any test failures +- [✓] (8) Re-run tests after fixes +- [✓] (9) All tests pass with 0 failures (**Verify**) + +--- + +### [✗] TASK-003: Final commit +**References**: Plan §10 Source Control Strategy + +- [✗] (1) Commit all changes with message: "Complete .NET 10.0 upgrade for Fuchs Intranet solution" + +--- + + + + + + + diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml new file mode 100644 index 0000000..3eb1314 --- /dev/null +++ b/.github/workflows/playwright.yml @@ -0,0 +1,27 @@ +name: Playwright Tests +on: + push: + branches: [ main, master ] + pull_request: + branches: [ main, master ] +jobs: + test: + timeout-minutes: 60 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: lts/* + - name: Install dependencies + run: npm ci + - name: Install Playwright Browsers + run: npx playwright install --with-deps + - name: Run Playwright tests + run: npx playwright test + - uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} + with: + name: playwright-report + path: playwright-report/ + retention-days: 30 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a6c369 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ + +# Playwright +node_modules/ +/test-results/ +/playwright-report/ +/blob-report/ +/playwright/.cache/ +/playwright/.auth/ +/.vs/CopilotSnapshots +/.vs/Fuchs_Intranet.slnx/copilot-chat/1e6f4c46/sessions +/.vs +/Fuchs.Tests/bin/Debug/net10.0 +/Fuchs.Tests/obj +/Fuchs_DataService/.vs +/Fuchs_DataService/bin/Debug/net10.0 +/Fuchs_DataService/obj +/MFR_RESTClient/.vs +/MFR_RESTClient/bin/Debug/net10.0 +/MFR_RESTClient/obj diff --git a/Fuchs.Tests/BalanceParserTests.cs b/Fuchs.Tests/BalanceParserTests.cs new file mode 100644 index 0000000..4d325ac --- /dev/null +++ b/Fuchs.Tests/BalanceParserTests.cs @@ -0,0 +1,89 @@ +using System; +using System.IO; +using programmersdigest.MT940Parser; +using programmersdigest.MT940Parser.Parsing; +using Xunit; + +namespace Fuchs.Tests; + +/// +/// MT940 BalanceParser robustness tests. +/// +public class BalanceParserTests +{ + private readonly BalanceParser _parser = new(); + + [Fact] + public void ReadBalance_ValidCredit_ReturnsCorrectBalance() + { + // C230101EUR1000,00 + var balance = _parser.ReadBalance("C230101EUR1000,00", BalanceType.Opening); + Assert.Equal(DebitCreditMark.Credit, balance.Mark); + Assert.Equal(new DateTime(2023, 1, 1), balance.Date); + Assert.Equal("EUR", balance.Currency); + Assert.Equal(1000.00m, balance.Amount); + Assert.Equal(BalanceType.Opening, balance.Type); + } + + [Fact] + public void ReadBalance_ValidDebit_SetsDebitMark() + { + var balance = _parser.ReadBalance("D230601USD500,50", BalanceType.Closing); + Assert.Equal(DebitCreditMark.Debit, balance.Mark); + Assert.Equal("USD", balance.Currency); + Assert.Equal(500.50m, balance.Amount); + Assert.Equal(BalanceType.Closing, balance.Type); + } + + [Fact] + public void ReadBalance_InvalidMark_ThrowsFormatException() + { + Assert.Throws(() => _parser.ReadBalance("X230101EUR1000,00", BalanceType.Opening)); + } + + [Fact] + public void ReadBalance_EmptyString_ThrowsInvalidDataException() + { + Assert.Throws(() => _parser.ReadBalance("", BalanceType.Opening)); + } + + [Fact] + public void ReadBalance_TruncatedAfterMark_ThrowsInvalidDataException() + { + // Only "C" — no date follows + Assert.Throws(() => _parser.ReadBalance("C", BalanceType.Opening)); + } + + [Fact] + public void ReadBalance_TruncatedAfterDate_ThrowsInvalidDataException() + { + // "C230101" — no currency + Assert.Throws(() => _parser.ReadBalance("C230101", BalanceType.Opening)); + } + + [Fact] + public void ReadBalance_TruncatedAfterCurrency_ThrowsInvalidDataException() + { + // "C230101EUR" — no amount + Assert.Throws(() => _parser.ReadBalance("C230101EUR", BalanceType.Opening)); + } + + [Fact] + public void ReadBalance_InvalidAmount_ThrowsFormatException() + { + Assert.Throws(() => _parser.ReadBalance("C230101EURabc", BalanceType.Opening)); + } + + [Fact] + public void ReadBalance_LowercaseCurrency_ThrowsInvalidDataException() + { + Assert.Throws(() => _parser.ReadBalance("C230101eur1000,00", BalanceType.Opening)); + } + + [Fact] + public void ReadBalance_ZeroAmount_ParsesCorrectly() + { + var balance = _parser.ReadBalance("C230101EUR0,00", BalanceType.Opening); + Assert.Equal(0m, balance.Amount); + } +} diff --git a/Fuchs.Tests/BankingTests.cs b/Fuchs.Tests/BankingTests.cs new file mode 100644 index 0000000..225b5f3 --- /dev/null +++ b/Fuchs.Tests/BankingTests.cs @@ -0,0 +1,127 @@ +using System.Data; +using System.IO; +using System.Text; +using Fuchs.intranet; +using programmersdigest.MT940Parser; +using Xunit; + +namespace Fuchs.Tests; + +/// +/// Banking helper robustness tests. +/// +public class BankingDebitCreditMarkTests +{ + [Theory] + [InlineData(DebitCreditMark.Credit, "C")] + [InlineData(DebitCreditMark.Debit, "D")] + [InlineData(DebitCreditMark.ReverseCredit, "RC")] + [InlineData(DebitCreditMark.ReverseDebit, "RD")] + public void DebitCreditMarkAbb_ReturnsExpected(DebitCreditMark mark, string expected) + { + Assert.Equal(expected, Banking.DebitCreditMarkAbb(mark)); + } + + [Fact] + public void DebitCreditMarkAbb_UndefinedValue_ReturnsEmpty() + { + Assert.Equal("", Banking.DebitCreditMarkAbb((DebitCreditMark)999)); + } +} + +public class BankingParseToDatatableTests +{ + private static readonly string MinimalMT940 = + "\r\n:20:STARTUMSE\r\n" + + ":25:DE12345678901234567890\r\n" + + ":28C:00001/001\r\n" + + ":60F:C230101EUR1000,00\r\n" + + ":61:2301010101CR500,00NTRFREF123\r\n" + + ":86:Gutschrift\r\n" + + ":62F:C230101EUR1500,00\r\n" + + "-\r\n"; + + private static Stream ToStream(string content) + => new MemoryStream(Encoding.UTF8.GetBytes(content)); + + [Fact] + public void ParseToDatatable_ValidMT940_ReturnsOneRow() + { + using var stream = ToStream(MinimalMT940); + var table = Banking.ParseToDatatable(stream); + Assert.Equal(1, table.Rows.Count); + } + + [Fact] + public void ParseToDatatable_ValidMT940_HasAccountColumn() + { + using var stream = ToStream(MinimalMT940); + var table = Banking.ParseToDatatable(stream); + Assert.True(table.Columns.Contains("AccountIdentification")); + Assert.Equal("DE12345678901234567890", table.Rows[0]["AccountIdentification"]); + } + + [Fact] + public void ParseToDatatable_ValidMT940_HasAmountColumn() + { + using var stream = ToStream(MinimalMT940); + var table = Banking.ParseToDatatable(stream); + Assert.True(table.Columns.Contains("Amount")); + Assert.Equal(500m, table.Rows[0]["Amount"]); + } + + [Fact] + public void ParseToDatatable_ValidMT940_HasDebitCreditMark() + { + using var stream = ToStream(MinimalMT940); + var table = Banking.ParseToDatatable(stream); + Assert.Equal("C", table.Rows[0]["DebitCreditMark"]); + } + + [Fact] + public void ParseToDatatable_EmptyStream_ReturnsEmptyTable() + { + using var stream = ToStream(""); + var table = Banking.ParseToDatatable(stream); + Assert.Equal(0, table.Rows.Count); + } + + [Fact] + public void ParseToDatatable_EmptyStream_HasDefaultSchema() + { + using var stream = ToStream(""); + var table = Banking.ParseToDatatable(stream); + Assert.True(table.Columns.Contains("AccountIdentification")); + Assert.True(table.Columns.Contains("Amount")); + Assert.True(table.Columns.Contains("DebitCreditMark")); + } + + [Fact] + public void ParseToDatatable_WithCustomSchema_UsesProvidedSchema() + { + var schema = new DataTable(); + schema.Columns.Add("AccountIdentification", typeof(string)); + schema.Columns.Add("Amount", typeof(decimal)); + + using var stream = ToStream(MinimalMT940); + var table = Banking.ParseToDatatable(stream, schemaDatatable: schema); + Assert.Equal(2, table.Columns.Count); + } + + [Fact] + public void ParseToDatatable_MultipleStatements_ParsesAll() + { + var multi = MinimalMT940 + "\n" + MinimalMT940; + using var stream = ToStream(multi); + var table = Banking.ParseToDatatable(stream); + Assert.Equal(2, table.Rows.Count); + } + + [Fact] + public void ParseToDatatable_MalformedContent_DoesNotThrow() + { + using var stream = ToStream("This is not MT940 data at all"); + var ex = Record.Exception(() => Banking.ParseToDatatable(stream)); + Assert.Null(ex); + } +} diff --git a/Fuchs.Tests/DateParserTests.cs b/Fuchs.Tests/DateParserTests.cs new file mode 100644 index 0000000..fba75f5 --- /dev/null +++ b/Fuchs.Tests/DateParserTests.cs @@ -0,0 +1,81 @@ +using System; +using programmersdigest.MT940Parser.Parsing; +using Xunit; + +namespace Fuchs.Tests; + +/// +/// MT940 DateParser robustness tests. +/// +public class DateParserTests +{ + [Fact] + public void Parse_ValidDate_ReturnsCorrectDateTime() + { + var result = DateParser.Parse("230115"); + Assert.Equal(new DateTime(2023, 1, 15), result); + } + + [Fact] + public void Parse_Year79_Returns2079() + { + // 79 is not > 79, so year += 2000 + var result = DateParser.Parse("790601"); + Assert.Equal(2079, result.Year); + } + + [Fact] + public void Parse_Year80_Returns1980() + { + // 80 > 79 is true, so year += 1900 + var result = DateParser.Parse("800101"); + Assert.Equal(1980, result.Year); + } + + [Fact] + public void Parse_Year00_Returns2000() + { + var result = DateParser.Parse("000315"); + Assert.Equal(2000, result.Year); + } + + [Fact] + public void Parse_NullInput_ThrowsArgumentNullException() + { + Assert.Throws(() => DateParser.Parse(null!)); + } + + [Fact] + public void Parse_WrongLength_ThrowsFormatException() + { + Assert.Throws(() => DateParser.Parse("12345")); + } + + [Fact] + public void Parse_TooLong_ThrowsFormatException() + { + Assert.Throws(() => DateParser.Parse("1234567")); + } + + [Fact] + public void Parse_NonNumeric_ThrowsFormatException() + { + Assert.Throws(() => DateParser.Parse("23AB15")); + } + + [Fact] + public void Parse_EmptyString_ThrowsFormatException() + { + Assert.Throws(() => DateParser.Parse("")); + } + + [Theory] + [InlineData("231231", 2023, 12, 31)] + [InlineData("990101", 1999, 1, 1)] + [InlineData("010228", 2001, 2, 28)] + public void Parse_VariousDates_ReturnsExpected(string input, int year, int month, int day) + { + var result = DateParser.Parse(input); + Assert.Equal(new DateTime(year, month, day), result); + } +} diff --git a/Fuchs.Tests/EntityHelperTests.cs b/Fuchs.Tests/EntityHelperTests.cs new file mode 100644 index 0000000..81d533a --- /dev/null +++ b/Fuchs.Tests/EntityHelperTests.cs @@ -0,0 +1,113 @@ +using System; +using MFR_RESTClient.generic; +using Xunit; + +namespace Fuchs.Tests; + +/// +/// MfrGeneric EntityHelper and TryConvert robustness tests. +/// +public class EntityHelperTests +{ + [Fact] + public void EntityName_StandardType_ReturnsCorrectName() + { + Assert.Equal("Item", EntityHelper.EntityName(EntityTypes.Item)); + } + + [Fact] + public void EntityName_ServiceRequest_ReturnsUnmodified() + { + Assert.Equal("ServiceRequest", EntityHelper.EntityName(EntityTypes.ServiceRequest)); + } + + [Fact] + public void EntityValue_ValidName_ReturnsEnum() + { + Assert.Equal(EntityTypes.Invoice, EntityHelper.EntityValue("Invoice")); + } + + [Fact] + public void EntityValue_CaseInsensitive_ReturnsEnum() + { + Assert.Equal(EntityTypes.Invoice, EntityHelper.EntityValue("invoice")); + } + + [Fact] + public void EntityValue_UnknownName_ReturnsNone() + { + Assert.Equal(EntityTypes.none, EntityHelper.EntityValue("NonExistentEntity")); + } + + [Fact] + public void EntityValue_EmptyString_ReturnsNone() + { + Assert.Equal(EntityTypes.none, EntityHelper.EntityValue("")); + } + + [Theory] + [InlineData(EntityTypes.Item)] + [InlineData(EntityTypes.Invoice)] + [InlineData(EntityTypes.CostCenter)] + [InlineData(EntityTypes.ServiceObject)] + [InlineData(EntityTypes.StepListTemplate)] + public void EntityName_EntityValue_RoundTrip(EntityTypes et) + { + var name = EntityHelper.EntityName(et); + var result = EntityHelper.EntityValue(name); + Assert.Equal(et, result); + } +} + +public class TryConvertTests +{ + [Fact] + public void TryConvert_StringToInt_ReturnsCorrectValue() + { + var result = "42".TryConvert(typeof(int)); + Assert.Equal(42, result); + } + + [Fact] + public void TryConvert_StringToDouble_ReturnsCorrectValue() + { + var result = "3.14".TryConvert(typeof(double)); + Assert.NotNull(result); + Assert.Equal(3.14, (double)result!, precision: 2); + } + + [Fact] + public void TryConvert_StringToBool_ReturnsTrue() + { + var result = "True".TryConvert(typeof(bool)); + Assert.Equal(true, result); + } + + [Fact] + public void TryConvert_InvalidString_ThrowsArgumentException() + { + // TypeDescriptor.GetConverter throws ArgumentException for invalid int, not caught by TryConvert + Assert.ThrowsAny(() => "not-a-number".TryConvert(typeof(int))); + } + + [Fact] + public void TryConvert_EmptyString_ToInt_ThrowsException() + { + Assert.ThrowsAny(() => "".TryConvert(typeof(int))); + } + + [Fact] + public void TryConvert_StringToDateTime_ReturnsValue() + { + var result = "2023-01-15".TryConvert(typeof(DateTime)); + Assert.NotNull(result); + Assert.IsType(result); + } + + [Fact] + public void TryConvert_StringToDecimal_ReturnsValue() + { + var result = "99.99".TryConvert(typeof(decimal)); + Assert.Equal(99.99m, result); + } +} diff --git a/Fuchs.Tests/Fuchs.Tests.csproj b/Fuchs.Tests/Fuchs.Tests.csproj new file mode 100644 index 0000000..ac407d7 --- /dev/null +++ b/Fuchs.Tests/Fuchs.Tests.csproj @@ -0,0 +1,32 @@ + + + + net10.0 + latest + enable + false + true + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + + + + diff --git a/Fuchs.Tests/FuchsPdfTests.cs b/Fuchs.Tests/FuchsPdfTests.cs new file mode 100644 index 0000000..8090f93 --- /dev/null +++ b/Fuchs.Tests/FuchsPdfTests.cs @@ -0,0 +1,64 @@ +using Fuchs.intranet; +using Xunit; + +namespace Fuchs.Tests; + +/// +/// Priority 4: Web application PDF helpers and data model logic. +/// +public class FuchsPdfParseDecTests +{ + // ParseDec uses InvariantCulture: period is decimal separator, comma is group separator + [Theory] + [InlineData("1000.50", 1000.50)] + [InlineData("0", 0)] + [InlineData("123", 123)] + [InlineData("-99.99", -99.99)] + public void ParseDec_ValidInput_ReturnsTrueAndCorrectValue(string input, decimal expected) + { + var result = FuchsPdf.ParseDec(input, out decimal val); + Assert.True(result); + Assert.Equal(expected, val); + } + + [Fact] + public void ParseDec_NullInput_ReturnsFalse() + { + var result = FuchsPdf.ParseDec(null, out decimal val); + Assert.False(result); + Assert.Equal(0m, val); + } + + [Fact] + public void ParseDec_EmptyString_ReturnsFalse() + { + var result = FuchsPdf.ParseDec("", out decimal val); + Assert.False(result); + Assert.Equal(0m, val); + } + + [Fact] + public void ParseDec_NonNumericString_ReturnsFalse() + { + var result = FuchsPdf.ParseDec("abc", out decimal val); + Assert.False(result); + Assert.Equal(0m, val); + } + + [Fact] + public void ParseDec_DecimalStringInput_ReturnsTrueAndValue() + { + // Pass decimal as string to avoid ToString() culture dependency + var result = FuchsPdf.ParseDec("42.5", out decimal val); + Assert.True(result); + Assert.Equal(42.5m, val); + } + + [Fact] + public void ParseDec_IntegerInput_ReturnsTrueAndValue() + { + var result = FuchsPdf.ParseDec(100, out decimal val); + Assert.True(result); + Assert.Equal(100m, val); + } +} diff --git a/Fuchs.Tests/HtmlCleanUpTests.cs b/Fuchs.Tests/HtmlCleanUpTests.cs new file mode 100644 index 0000000..4060c2e --- /dev/null +++ b/Fuchs.Tests/HtmlCleanUpTests.cs @@ -0,0 +1,94 @@ +using MFR_RESTClient; +using Xunit; + +namespace Fuchs.Tests; + +/// +/// HtmlCleanUp.Clean robustness tests. +/// +public class HtmlCleanUpTests +{ + [Fact] + public void Clean_PlainText_ReturnsSameText() + { + Assert.Equal("Hello World", HtmlCleanUp.Clean("Hello World")); + } + + [Fact] + public void Clean_HtmlTags_AreStripped() + { + Assert.Equal("Bold text", HtmlCleanUp.Clean("Bold text")); + } + + [Fact] + public void Clean_ParagraphTags_ConvertToNewlines() + { + var result = HtmlCleanUp.Clean("

Line1

Line2

"); + Assert.Contains("Line1", result); + Assert.Contains("Line2", result); + Assert.Contains("\n", result); + } + + [Fact] + public void Clean_BrTags_ConvertToNewlines() + { + var result = HtmlCleanUp.Clean("Line1
Line2
Line3"); + Assert.Contains("\n", result); + } + + [Fact] + public void Clean_DivTags_ConvertToNewlines() + { + var result = HtmlCleanUp.Clean("
Block1
Block2
"); + Assert.Contains("\n", result); + } + + [Fact] + public void Clean_HtmlEntities_AreDecoded() + { + Assert.Equal("A & B", HtmlCleanUp.Clean("A & B")); + } + + [Fact] + public void Clean_MultipleNewlines_CollapsedToOne() + { + var result = HtmlCleanUp.Clean("

Text

"); + // Should not have consecutive newlines + Assert.DoesNotContain("\n\n", result); + } + + [Fact] + public void Clean_LeadingTrailingNewlines_AreRemoved() + { + var result = HtmlCleanUp.Clean("

Text

"); + Assert.False(result.StartsWith("\n")); + Assert.False(result.EndsWith("\n")); + } + + [Fact] + public void Clean_EmptyString_ReturnsEmpty() + { + Assert.Equal("", HtmlCleanUp.Clean("")); + } + + [Fact] + public void Clean_NestedTags_StripsAll() + { + Assert.Equal("deep", HtmlCleanUp.Clean("
deep
")); + } + + [Fact] + public void Clean_TagsWithAttributes_AreStripped() + { + Assert.Equal("link", HtmlCleanUp.Clean("link")); + } + + [Theory] + [InlineData("<script>", "'; + }; + const dataToHtml = (editor, dataIn) => { + var _a; + const data = global$5.extend({}, dataIn); + if (!data.source) { + global$5.extend(data, htmlToData((_a = data.embed) !== null && _a !== void 0 ? _a : '', editor.schema)); + if (!data.source) { + return ''; + } + } + if (!data.altsource) { + data.altsource = ''; + } + if (!data.poster) { + data.poster = ''; + } + data.source = editor.convertURL(data.source, 'source'); + data.altsource = editor.convertURL(data.altsource, 'source'); + data.sourcemime = guess(data.source); + data.altsourcemime = guess(data.altsource); + data.poster = editor.convertURL(data.poster, 'poster'); + const pattern = matchPattern(data.source); + if (pattern) { + data.source = pattern.url; + data.type = pattern.type; + data.allowfullscreen = pattern.allowFullscreen; + data.width = data.width || String(pattern.w); + data.height = data.height || String(pattern.h); + } + if (data.embed) { + return updateHtml(data.embed, data, true, editor.schema); + } else { + const audioTemplateCallback = getAudioTemplateCallback(editor); + const videoTemplateCallback = getVideoTemplateCallback(editor); + const iframeTemplateCallback = getIframeTemplateCallback(editor); + data.width = data.width || '300'; + data.height = data.height || '150'; + global$5.each(data, (value, key) => { + data[key] = editor.dom.encode('' + value); + }); + if (data.type === 'iframe') { + return getIframeHtml(data, iframeTemplateCallback); + } else if (data.sourcemime === 'application/x-shockwave-flash') { + return getFlashHtml(data); + } else if (data.sourcemime.indexOf('audio') !== -1) { + return getAudioHtml(data, audioTemplateCallback); + } else if (data.type === 'script') { + return getScriptHtml(data); + } else { + return getVideoHtml(data, videoTemplateCallback); + } + } + }; + + const isMediaElement = element => element.hasAttribute('data-mce-object') || element.hasAttribute('data-ephox-embed-iri'); + const setup$2 = editor => { + editor.on('click keyup touchend', () => { + const selectedNode = editor.selection.getNode(); + if (selectedNode && editor.dom.hasClass(selectedNode, 'mce-preview-object')) { + if (editor.dom.getAttrib(selectedNode, 'data-mce-selected')) { + selectedNode.setAttribute('data-mce-selected', '2'); + } + } + }); + editor.on('ObjectSelected', e => { + const objectType = e.target.getAttribute('data-mce-object'); + if (objectType === 'script') { + e.preventDefault(); + } + }); + editor.on('ObjectResized', e => { + const target = e.target; + if (target.getAttribute('data-mce-object')) { + let html = target.getAttribute('data-mce-html'); + if (html) { + html = unescape(html); + target.setAttribute('data-mce-html', escape(updateHtml(html, { + width: String(e.width), + height: String(e.height) + }, false, editor.schema))); + } + } + }); + }; + + const cache = {}; + const embedPromise = (data, dataToHtml, handler) => { + return new Promise((res, rej) => { + const wrappedResolve = response => { + if (response.html) { + cache[data.source] = response; + } + return res({ + url: data.source, + html: response.html ? response.html : dataToHtml(data) + }); + }; + if (cache[data.source]) { + wrappedResolve(cache[data.source]); + } else { + handler({ url: data.source }, wrappedResolve, rej); + } + }); + }; + const defaultPromise = (data, dataToHtml) => Promise.resolve({ + html: dataToHtml(data), + url: data.source + }); + const loadedData = editor => data => dataToHtml(editor, data); + const getEmbedHtml = (editor, data) => { + const embedHandler = getUrlResolver(editor); + return embedHandler ? embedPromise(data, loadedData(editor), embedHandler) : defaultPromise(data, loadedData(editor)); + }; + const isCached = url => has(cache, url); + + const extractMeta = (sourceInput, data) => get$1(data, sourceInput).bind(mainData => get$1(mainData, 'meta')); + const getValue = (data, metaData, sourceInput) => prop => { + const getFromData = () => get$1(data, prop); + const getFromMetaData = () => get$1(metaData, prop); + const getNonEmptyValue = c => get$1(c, 'value').bind(v => v.length > 0 ? Optional.some(v) : Optional.none()); + const getFromValueFirst = () => getFromData().bind(child => isObject(child) ? getNonEmptyValue(child).orThunk(getFromMetaData) : getFromMetaData().orThunk(() => Optional.from(child))); + const getFromMetaFirst = () => getFromMetaData().orThunk(() => getFromData().bind(child => isObject(child) ? getNonEmptyValue(child) : Optional.from(child))); + return { [prop]: (prop === sourceInput ? getFromValueFirst() : getFromMetaFirst()).getOr('') }; + }; + const getDimensions = (data, metaData) => { + const dimensions = {}; + get$1(data, 'dimensions').each(dims => { + each$1([ + 'width', + 'height' + ], prop => { + get$1(metaData, prop).orThunk(() => get$1(dims, prop)).each(value => dimensions[prop] = value); + }); + }); + return dimensions; + }; + const unwrap = (data, sourceInput) => { + const metaData = sourceInput && sourceInput !== 'dimensions' ? extractMeta(sourceInput, data).getOr({}) : {}; + const get = getValue(data, metaData, sourceInput); + return { + ...get('source'), + ...get('altsource'), + ...get('poster'), + ...get('embed'), + ...getDimensions(data, metaData) + }; + }; + const wrap = data => { + const wrapped = { + ...data, + source: { value: get$1(data, 'source').getOr('') }, + altsource: { value: get$1(data, 'altsource').getOr('') }, + poster: { value: get$1(data, 'poster').getOr('') } + }; + each$1([ + 'width', + 'height' + ], prop => { + get$1(data, prop).each(value => { + const dimensions = wrapped.dimensions || {}; + dimensions[prop] = value; + wrapped.dimensions = dimensions; + }); + }); + return wrapped; + }; + const handleError = editor => error => { + const errorMessage = error && error.msg ? 'Media embed handler error: ' + error.msg : 'Media embed handler threw unknown error.'; + editor.notificationManager.open({ + type: 'error', + text: errorMessage + }); + }; + const getEditorData = editor => { + const element = editor.selection.getNode(); + const snippet = isMediaElement(element) ? editor.serializer.serialize(element, { selection: true }) : ''; + return { + embed: snippet, + ...htmlToData(snippet, editor.schema) + }; + }; + const addEmbedHtml = (api, editor) => response => { + if (isString(response.url) && response.url.trim().length > 0) { + const html = response.html; + const snippetData = htmlToData(html, editor.schema); + const nuData = { + ...snippetData, + source: response.url, + embed: html + }; + api.setData(wrap(nuData)); + } + }; + const selectPlaceholder = (editor, beforeObjects) => { + const afterObjects = editor.dom.select('*[data-mce-object]'); + for (let i = 0; i < beforeObjects.length; i++) { + for (let y = afterObjects.length - 1; y >= 0; y--) { + if (beforeObjects[i] === afterObjects[y]) { + afterObjects.splice(y, 1); + } + } + } + editor.selection.select(afterObjects[0]); + }; + const handleInsert = (editor, html) => { + const beforeObjects = editor.dom.select('*[data-mce-object]'); + editor.insertContent(html); + selectPlaceholder(editor, beforeObjects); + editor.nodeChanged(); + }; + const submitForm = (prevData, newData, editor) => { + var _a; + newData.embed = updateHtml((_a = newData.embed) !== null && _a !== void 0 ? _a : '', newData, false, editor.schema); + if (newData.embed && (prevData.source === newData.source || isCached(newData.source))) { + handleInsert(editor, newData.embed); + } else { + getEmbedHtml(editor, newData).then(response => { + handleInsert(editor, response.html); + }).catch(handleError(editor)); + } + }; + const showDialog = editor => { + const editorData = getEditorData(editor); + const currentData = Cell(editorData); + const initialData = wrap(editorData); + const handleSource = (prevData, api) => { + const serviceData = unwrap(api.getData(), 'source'); + if (prevData.source !== serviceData.source) { + addEmbedHtml(win, editor)({ + url: serviceData.source, + html: '' + }); + getEmbedHtml(editor, serviceData).then(addEmbedHtml(win, editor)).catch(handleError(editor)); + } + }; + const handleEmbed = api => { + var _a; + const data = unwrap(api.getData()); + const dataFromEmbed = htmlToData((_a = data.embed) !== null && _a !== void 0 ? _a : '', editor.schema); + api.setData(wrap(dataFromEmbed)); + }; + const handleUpdate = (api, sourceInput) => { + const data = unwrap(api.getData(), sourceInput); + const embed = dataToHtml(editor, data); + api.setData(wrap({ + ...data, + embed + })); + }; + const mediaInput = [{ + name: 'source', + type: 'urlinput', + filetype: 'media', + label: 'Source' + }]; + const sizeInput = !hasDimensions(editor) ? [] : [{ + type: 'sizeinput', + name: 'dimensions', + label: 'Constrain proportions', + constrain: true + }]; + const generalTab = { + title: 'General', + name: 'general', + items: flatten([ + mediaInput, + sizeInput + ]) + }; + const embedTextarea = { + type: 'textarea', + name: 'embed', + label: 'Paste your embed code below:' + }; + const embedTab = { + title: 'Embed', + items: [embedTextarea] + }; + const advancedFormItems = []; + if (hasAltSource(editor)) { + advancedFormItems.push({ + name: 'altsource', + type: 'urlinput', + filetype: 'media', + label: 'Alternative source URL' + }); + } + if (hasPoster(editor)) { + advancedFormItems.push({ + name: 'poster', + type: 'urlinput', + filetype: 'image', + label: 'Media poster (Image URL)' + }); + } + const advancedTab = { + title: 'Advanced', + name: 'advanced', + items: advancedFormItems + }; + const tabs = [ + generalTab, + embedTab + ]; + if (advancedFormItems.length > 0) { + tabs.push(advancedTab); + } + const body = { + type: 'tabpanel', + tabs + }; + const win = editor.windowManager.open({ + title: 'Insert/Edit Media', + size: 'normal', + body, + buttons: [ + { + type: 'cancel', + name: 'cancel', + text: 'Cancel' + }, + { + type: 'submit', + name: 'save', + text: 'Save', + primary: true + } + ], + onSubmit: api => { + const serviceData = unwrap(api.getData()); + submitForm(currentData.get(), serviceData, editor); + api.close(); + }, + onChange: (api, detail) => { + switch (detail.name) { + case 'source': + handleSource(currentData.get(), api); + break; + case 'embed': + handleEmbed(api); + break; + case 'dimensions': + case 'altsource': + case 'poster': + handleUpdate(api, detail.name); + break; + } + currentData.set(unwrap(api.getData())); + }, + initialData + }); + }; + + const get = editor => { + const showDialog$1 = () => { + showDialog(editor); + }; + return { showDialog: showDialog$1 }; + }; + + const register$1 = editor => { + const showDialog$1 = () => { + showDialog(editor); + }; + editor.addCommand('mceMedia', showDialog$1); + }; + + const checkRange = (str, substr, start) => substr === '' || str.length >= substr.length && str.substr(start, start + substr.length) === substr; + const startsWith = (str, prefix) => { + return checkRange(str, prefix, 0); + }; + + var global = tinymce.util.Tools.resolve('tinymce.Env'); + + const isLiveEmbedNode = node => { + const name = node.name; + return name === 'iframe' || name === 'video' || name === 'audio'; + }; + const getDimension = (node, styles, dimension, defaultValue = null) => { + const value = node.attr(dimension); + if (isNonNullable(value)) { + return value; + } else if (!has(styles, dimension)) { + return defaultValue; + } else { + return null; + } + }; + const setDimensions = (node, previewNode, styles) => { + const useDefaults = previewNode.name === 'img' || node.name === 'video'; + const defaultWidth = useDefaults ? '300' : null; + const fallbackHeight = node.name === 'audio' ? '30' : '150'; + const defaultHeight = useDefaults ? fallbackHeight : null; + previewNode.attr({ + width: getDimension(node, styles, 'width', defaultWidth), + height: getDimension(node, styles, 'height', defaultHeight) + }); + }; + const appendNodeContent = (editor, nodeName, previewNode, html) => { + const newNode = Parser(editor.schema).parse(html, { context: nodeName }); + while (newNode.firstChild) { + previewNode.append(newNode.firstChild); + } + }; + const createPlaceholderNode = (editor, node) => { + const name = node.name; + const placeHolder = new global$2('img', 1); + retainAttributesAndInnerHtml(editor, node, placeHolder); + setDimensions(node, placeHolder, {}); + placeHolder.attr({ + 'style': node.attr('style'), + 'src': global.transparentSrc, + 'data-mce-object': name, + 'class': 'mce-object mce-object-' + name + }); + return placeHolder; + }; + const createPreviewNode = (editor, node) => { + var _a; + const name = node.name; + const previewWrapper = new global$2('span', 1); + previewWrapper.attr({ + 'contentEditable': 'false', + 'style': node.attr('style'), + 'data-mce-object': name, + 'class': 'mce-preview-object mce-object-' + name + }); + retainAttributesAndInnerHtml(editor, node, previewWrapper); + const styles = editor.dom.parseStyle((_a = node.attr('style')) !== null && _a !== void 0 ? _a : ''); + const previewNode = new global$2(name, 1); + setDimensions(node, previewNode, styles); + previewNode.attr({ + src: node.attr('src'), + style: node.attr('style'), + class: node.attr('class') + }); + if (name === 'iframe') { + previewNode.attr({ + allowfullscreen: node.attr('allowfullscreen'), + frameborder: '0' + }); + } else { + const attrs = [ + 'controls', + 'crossorigin', + 'currentTime', + 'loop', + 'muted', + 'poster', + 'preload' + ]; + each$1(attrs, attrName => { + previewNode.attr(attrName, node.attr(attrName)); + }); + const sanitizedHtml = previewWrapper.attr('data-mce-html'); + if (isNonNullable(sanitizedHtml)) { + appendNodeContent(editor, name, previewNode, unescape(sanitizedHtml)); + } + } + const shimNode = new global$2('span', 1); + shimNode.attr('class', 'mce-shim'); + previewWrapper.append(previewNode); + previewWrapper.append(shimNode); + return previewWrapper; + }; + const retainAttributesAndInnerHtml = (editor, sourceNode, targetNode) => { + var _a; + const attribs = (_a = sourceNode.attributes) !== null && _a !== void 0 ? _a : []; + let ai = attribs.length; + while (ai--) { + const attrName = attribs[ai].name; + let attrValue = attribs[ai].value; + if (attrName !== 'width' && attrName !== 'height' && attrName !== 'style' && !startsWith(attrName, 'data-mce-')) { + if (attrName === 'data' || attrName === 'src') { + attrValue = editor.convertURL(attrValue, attrName); + } + targetNode.attr('data-mce-p-' + attrName, attrValue); + } + } + const serializer = global$1({ inner: true }, editor.schema); + const tempNode = new global$2('div', 1); + each$1(sourceNode.children(), child => tempNode.append(child)); + const innerHtml = serializer.serialize(tempNode); + if (innerHtml) { + targetNode.attr('data-mce-html', escape(innerHtml)); + targetNode.empty(); + } + }; + const isPageEmbedWrapper = node => { + const nodeClass = node.attr('class'); + return isString(nodeClass) && /\btiny-pageembed\b/.test(nodeClass); + }; + const isWithinEmbedWrapper = node => { + let tempNode = node; + while (tempNode = tempNode.parent) { + if (tempNode.attr('data-ephox-embed-iri') || isPageEmbedWrapper(tempNode)) { + return true; + } + } + return false; + }; + const placeHolderConverter = editor => nodes => { + let i = nodes.length; + let node; + while (i--) { + node = nodes[i]; + if (!node.parent) { + continue; + } + if (node.parent.attr('data-mce-object')) { + continue; + } + if (isLiveEmbedNode(node) && hasLiveEmbeds(editor)) { + if (!isWithinEmbedWrapper(node)) { + node.replace(createPreviewNode(editor, node)); + } + } else { + if (!isWithinEmbedWrapper(node)) { + node.replace(createPlaceholderNode(editor, node)); + } + } + } + }; + + const parseAndSanitize = (editor, context, html) => { + const validate = shouldFilterHtml(editor); + return Parser(editor.schema, { validate }).parse(html, { context }); + }; + + const setup$1 = editor => { + editor.on('PreInit', () => { + const {schema, serializer, parser} = editor; + const boolAttrs = schema.getBoolAttrs(); + each$1('webkitallowfullscreen mozallowfullscreen'.split(' '), name => { + boolAttrs[name] = {}; + }); + each({ embed: ['wmode'] }, (attrs, name) => { + const rule = schema.getElementRule(name); + if (rule) { + each$1(attrs, attr => { + rule.attributes[attr] = {}; + rule.attributesOrder.push(attr); + }); + } + }); + parser.addNodeFilter('iframe,video,audio,object,embed,script', placeHolderConverter(editor)); + serializer.addAttributeFilter('data-mce-object', (nodes, name) => { + var _a; + let i = nodes.length; + while (i--) { + const node = nodes[i]; + if (!node.parent) { + continue; + } + const realElmName = node.attr(name); + const realElm = new global$2(realElmName, 1); + if (realElmName !== 'audio' && realElmName !== 'script') { + const className = node.attr('class'); + if (className && className.indexOf('mce-preview-object') !== -1 && node.firstChild) { + realElm.attr({ + width: node.firstChild.attr('width'), + height: node.firstChild.attr('height') + }); + } else { + realElm.attr({ + width: node.attr('width'), + height: node.attr('height') + }); + } + } + realElm.attr({ style: node.attr('style') }); + const attribs = (_a = node.attributes) !== null && _a !== void 0 ? _a : []; + let ai = attribs.length; + while (ai--) { + const attrName = attribs[ai].name; + if (attrName.indexOf('data-mce-p-') === 0) { + realElm.attr(attrName.substr(11), attribs[ai].value); + } + } + if (realElmName === 'script') { + realElm.attr('type', 'text/javascript'); + } + const innerHtml = node.attr('data-mce-html'); + if (innerHtml) { + const fragment = parseAndSanitize(editor, realElmName, unescape(innerHtml)); + each$1(fragment.children(), child => realElm.append(child)); + } + node.replace(realElm); + } + }); + }); + editor.on('SetContent', () => { + const dom = editor.dom; + each$1(dom.select('span.mce-preview-object'), elm => { + if (dom.select('span.mce-shim', elm).length === 0) { + dom.add(elm, 'span', { class: 'mce-shim' }); + } + }); + }); + }; + + const setup = editor => { + editor.on('ResolveName', e => { + let name; + if (e.target.nodeType === 1 && (name = e.target.getAttribute('data-mce-object'))) { + e.name = name; + } + }); + }; + + const register = editor => { + const onAction = () => editor.execCommand('mceMedia'); + editor.ui.registry.addToggleButton('media', { + tooltip: 'Insert/edit media', + icon: 'embed', + onAction, + onSetup: buttonApi => { + const selection = editor.selection; + buttonApi.setActive(isMediaElement(selection.getNode())); + return selection.selectorChangedWithUnbind('img[data-mce-object],span[data-mce-object],div[data-ephox-embed-iri]', buttonApi.setActive).unbind; + } + }); + editor.ui.registry.addMenuItem('media', { + icon: 'embed', + text: 'Media...', + onAction + }); + }; + + var Plugin = () => { + global$6.add('media', editor => { + register$2(editor); + register$1(editor); + register(editor); + setup(editor); + setup$1(editor); + setup$2(editor); + return get(editor); + }); + }; + + Plugin(); + +})(); diff --git a/Fuchs/Scripts/tinymce/plugins/media/plugin.min.js b/Fuchs/Scripts/tinymce/plugins/media/plugin.min.js new file mode 100644 index 0000000..4fbf69f --- /dev/null +++ b/Fuchs/Scripts/tinymce/plugins/media/plugin.min.js @@ -0,0 +1,4 @@ +/** + * TinyMCE version 6.3.1 (2022-12-06) + */ +!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(r=a=e,(o=String).prototype.isPrototypeOf(r)||(null===(s=a.constructor)||void 0===s?void 0:s.name)===o.name)?"string":t;var r,a,o,s})(t)===e,r=t("string"),a=t("object"),o=t("array"),s=e=>!(e=>null==e)(e);class i{constructor(e,t){this.tag=e,this.value=t}static some(e){return new i(!0,e)}static none(){return i.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?i.some(e(this.value)):i.none()}bind(e){return this.tag?e(this.value):i.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:i.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return s(e)?i.some(e):i.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}i.singletonNone=new i(!1);const n=Array.prototype.push,c=(e,t)=>{for(let r=0,a=e.length;r{const t=[];for(let r=0,a=e.length;rh(e,t)?i.from(e[t]):i.none(),h=(e,t)=>u.call(e,t),p=e=>t=>t.options.get(e),g=p("audio_template_callback"),b=p("video_template_callback"),w=p("iframe_template_callback"),v=p("media_live_embeds"),f=p("media_filter_html"),y=p("media_url_resolver"),x=p("media_alt_source"),_=p("media_poster"),j=p("media_dimensions");var k=tinymce.util.Tools.resolve("tinymce.util.Tools"),O=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),A=tinymce.util.Tools.resolve("tinymce.html.DomParser");const S=O.DOM,C=e=>e.replace(/px$/,""),D=e=>{const t=e.attr("style"),r=t?S.parseStyle(t):{};return{type:"ephox-embed-iri",source:e.attr("data-ephox-embed-iri"),altsource:"",poster:"",width:d(r,"max-width").map(C).getOr(""),height:d(r,"max-height").map(C).getOr("")}},T=(e,t)=>{let r={};for(let a=A({validate:!1,forced_root_block:!1},t).parse(e);a;a=a.walk())if(1===a.type){const e=a.name;if(a.attr("data-ephox-embed-iri")){r=D(a);break}r.source||"param"!==e||(r.source=a.attr("movie")),"iframe"!==e&&"object"!==e&&"embed"!==e&&"video"!==e&&"audio"!==e||(r.type||(r.type=e),r=k.extend(a.attributes.map,r)),"script"===e&&(r={type:"script",source:a.attr("src")}),"source"===e&&(r.source?r.altsource||(r.altsource=a.attr("src")):r.source=a.attr("src")),"img"!==e||r.poster||(r.poster=a.attr("src"))}return r.source=r.source||r.src||"",r.altsource=r.altsource||"",r.poster=r.poster||"",r},$=e=>{var t;const r=null!==(t=e.toLowerCase().split(".").pop())&&void 0!==t?t:"";return d({mp3:"audio/mpeg",m4a:"audio/x-m4a",wav:"audio/wav",mp4:"video/mp4",webm:"video/webm",ogg:"video/ogg",swf:"application/x-shockwave-flash"},r).getOr("")};var z=tinymce.util.Tools.resolve("tinymce.html.Node"),M=tinymce.util.Tools.resolve("tinymce.html.Serializer");const F=(e,t={})=>A({forced_root_block:!1,validate:!1,allow_conditional_comments:!0,...t},e),N=O.DOM,R=e=>/^[0-9.]+$/.test(e)?e+"px":e,U=(e,t)=>{const r=t.attr("style"),a=r?N.parseStyle(r):{};s(e.width)&&(a["max-width"]=R(e.width)),s(e.height)&&(a["max-height"]=R(e.height)),t.attr("style",N.serializeStyle(a))},P=["source","altsource"],E=(e,t,r,a)=>{let o=0,s=0;const i=F(a);i.addNodeFilter("source",(e=>o=e.length));const n=i.parse(e);for(let e=n;e;e=e.walk())if(1===e.type){const a=e.name;if(e.attr("data-ephox-embed-iri")){U(t,e);break}switch(a){case"video":case"object":case"embed":case"img":case"iframe":void 0!==t.height&&void 0!==t.width&&(e.attr("width",t.width),e.attr("height",t.height))}if(r)switch(a){case"video":e.attr("poster",t.poster),e.attr("src",null);for(let r=o;r<2;r++)if(t[P[r]]){const a=new z("source",1);a.attr("src",t[P[r]]),a.attr("type",t[P[r]+"mime"]||null),e.append(a)}break;case"iframe":e.attr("src",t.source);break;case"object":const r=e.getAll("img").length>0;if(t.poster&&!r){e.attr("src",t.poster);const r=new z("img",1);r.attr("src",t.poster),r.attr("width",t.width),r.attr("height",t.height),e.append(r)}break;case"source":if(s<2&&(e.attr("src",t[P[s]]),e.attr("type",t[P[s]+"mime"]||null),!t[P[s]])){e.remove();continue}s++;break;case"img":t.poster||e.remove()}}return M({},a).serialize(n)},L=[{regex:/youtu\.be\/([\w\-_\?&=.]+)/i,type:"iframe",w:560,h:314,url:"www.youtube.com/embed/$1",allowFullscreen:!0},{regex:/youtube\.com(.+)v=([^&]+)(&([a-z0-9&=\-_]+))?/i,type:"iframe",w:560,h:314,url:"www.youtube.com/embed/$2?$4",allowFullscreen:!0},{regex:/youtube.com\/embed\/([a-z0-9\?&=\-_]+)/i,type:"iframe",w:560,h:314,url:"www.youtube.com/embed/$1",allowFullscreen:!0},{regex:/vimeo\.com\/([0-9]+)/,type:"iframe",w:425,h:350,url:"player.vimeo.com/video/$1?title=0&byline=0&portrait=0&color=8dc7dc",allowFullscreen:!0},{regex:/vimeo\.com\/(.*)\/([0-9]+)/,type:"iframe",w:425,h:350,url:"player.vimeo.com/video/$2?title=0&byline=0",allowFullscreen:!0},{regex:/maps\.google\.([a-z]{2,3})\/maps\/(.+)msid=(.+)/,type:"iframe",w:425,h:350,url:'maps.google.com/maps/ms?msid=$2&output=embed"',allowFullscreen:!1},{regex:/dailymotion\.com\/video\/([^_]+)/,type:"iframe",w:480,h:270,url:"www.dailymotion.com/embed/video/$1",allowFullscreen:!0},{regex:/dai\.ly\/([^_]+)/,type:"iframe",w:480,h:270,url:"www.dailymotion.com/embed/video/$1",allowFullscreen:!0}],I=(e,t)=>{const r=(e=>{const t=e.match(/^(https?:\/\/|www\.)(.+)$/i);return t&&t.length>1?"www."===t[1]?"https://":t[1]:"https://"})(t),a=e.regex.exec(t);let o=r+e.url;if(s(a))for(let e=0;ea[e]?a[e]:""));return o.replace(/\?$/,"")},B=(e,t)=>{var r;const a=k.extend({},t);if(!a.source&&(k.extend(a,T(null!==(r=a.embed)&&void 0!==r?r:"",e.schema)),!a.source))return"";a.altsource||(a.altsource=""),a.poster||(a.poster=""),a.source=e.convertURL(a.source,"source"),a.altsource=e.convertURL(a.altsource,"source"),a.sourcemime=$(a.source),a.altsourcemime=$(a.altsource),a.poster=e.convertURL(a.poster,"poster");const o=(e=>{const t=L.filter((t=>t.regex.test(e)));return t.length>0?k.extend({},t[0],{url:I(t[0],e)}):null})(a.source);if(o&&(a.source=o.url,a.type=o.type,a.allowfullscreen=o.allowFullscreen,a.width=a.width||String(o.w),a.height=a.height||String(o.h)),a.embed)return E(a.embed,a,!0,e.schema);{const t=g(e),r=b(e),o=w(e);return a.width=a.width||"300",a.height=a.height||"150",k.each(a,((t,r)=>{a[r]=e.dom.encode(""+t)})),"iframe"===a.type?((e,t)=>{if(t)return t(e);{const t=e.allowfullscreen?' allowFullscreen="1"':"";return'"}})(a,o):"application/x-shockwave-flash"===a.sourcemime?(e=>{let t='';return e.poster&&(t+=''),t+="",t})(a):-1!==a.sourcemime.indexOf("audio")?((e,t)=>t?t(e):'")(a,t):"script"===a.type?(e=>' '; + const directionality = editor.getBody().dir; + const dirAttr = directionality ? ' dir="' + encode(directionality) + '"' : ''; + const previewHtml = '' + '' + '' + headHtml + '' + '' + editor.getContent() + preventClicksOnLinksScript + '' + ''; + return previewHtml; + }; + + const open = editor => { + const content = getPreviewHtml(editor); + const dataApi = editor.windowManager.open({ + title: 'Preview', + size: 'large', + body: { + type: 'panel', + items: [{ + name: 'preview', + type: 'iframe', + sandboxed: true, + transparent: false + }] + }, + buttons: [{ + type: 'cancel', + name: 'close', + text: 'Close', + primary: true + }], + initialData: { preview: content } + }); + dataApi.focus('close'); + }; + + const register$1 = editor => { + editor.addCommand('mcePreview', () => { + open(editor); + }); + }; + + const register = editor => { + const onAction = () => editor.execCommand('mcePreview'); + editor.ui.registry.addButton('preview', { + icon: 'preview', + tooltip: 'Preview', + onAction + }); + editor.ui.registry.addMenuItem('preview', { + icon: 'preview', + text: 'Preview', + onAction + }); + }; + + var Plugin = () => { + global$2.add('preview', editor => { + register$1(editor); + register(editor); + }); + }; + + Plugin(); + +})(); diff --git a/Fuchs/Scripts/tinymce/plugins/preview/plugin.min.js b/Fuchs/Scripts/tinymce/plugins/preview/plugin.min.js new file mode 100644 index 0000000..65df9b8 --- /dev/null +++ b/Fuchs/Scripts/tinymce/plugins/preview/plugin.min.js @@ -0,0 +1,4 @@ +/** + * TinyMCE version 6.3.1 (2022-12-06) + */ +!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.Env"),o=tinymce.util.Tools.resolve("tinymce.util.Tools");const n=e=>t=>t.options.get(e),i=n("content_style"),s=n("content_css_cors"),c=n("body_class"),r=n("body_id");e.add("preview",(e=>{(e=>{e.addCommand("mcePreview",(()=>{(e=>{const n=(e=>{var n;let l="";const a=e.dom.encode,d=null!==(n=i(e))&&void 0!==n?n:"";l+='';const m=s(e)?' crossorigin="anonymous"':"";o.each(e.contentCSS,(t=>{l+='"})),d&&(l+='");const y=r(e),u=c(e),v=' '; + const directionality = editor.getBody().dir; + const dirAttr = directionality ? ' dir="' + encode(directionality) + '"' : ''; + html = '' + '' + '' + '' + contentCssEntries + preventClicksOnLinksScript + '' + '' + html + '' + ''; + } + return replaceTemplateValues(html, getPreviewReplaceValues(editor)); + }; + const open = (editor, templateList) => { + const createTemplates = () => { + if (!templateList || templateList.length === 0) { + const message = editor.translate('No templates defined.'); + editor.notificationManager.open({ + text: message, + type: 'info' + }); + return Optional.none(); + } + return Optional.from(global$1.map(templateList, (template, index) => { + const isUrlTemplate = t => t.url !== undefined; + return { + selected: index === 0, + text: template.title, + value: { + url: isUrlTemplate(template) ? Optional.from(template.url) : Optional.none(), + content: !isUrlTemplate(template) ? Optional.from(template.content) : Optional.none(), + description: template.description + } + }; + })); + }; + const createSelectBoxItems = templates => map(templates, t => ({ + text: t.text, + value: t.text + })); + const findTemplate = (templates, templateTitle) => find(templates, t => t.text === templateTitle); + const loadFailedAlert = api => { + editor.windowManager.alert('Could not load the specified template.', () => api.focus('template')); + }; + const getTemplateContent = t => t.value.url.fold(() => Promise.resolve(t.value.content.getOr('')), url => fetch(url).then(res => res.ok ? res.text() : Promise.reject())); + const onChange = (templates, updateDialog) => (api, change) => { + if (change.name === 'template') { + const newTemplateTitle = api.getData().template; + findTemplate(templates, newTemplateTitle).each(t => { + api.block('Loading...'); + getTemplateContent(t).then(previewHtml => { + updateDialog(api, t, previewHtml); + }).catch(() => { + updateDialog(api, t, ''); + api.setEnabled('save', false); + loadFailedAlert(api); + }); + }); + } + }; + const onSubmit = templates => api => { + const data = api.getData(); + findTemplate(templates, data.template).each(t => { + getTemplateContent(t).then(previewHtml => { + editor.execCommand('mceInsertTemplate', false, previewHtml); + api.close(); + }).catch(() => { + api.setEnabled('save', false); + loadFailedAlert(api); + }); + }); + }; + const openDialog = templates => { + const selectBoxItems = createSelectBoxItems(templates); + const buildDialogSpec = (bodyItems, initialData) => ({ + title: 'Insert Template', + size: 'large', + body: { + type: 'panel', + items: bodyItems + }, + initialData, + buttons: [ + { + type: 'cancel', + name: 'cancel', + text: 'Cancel' + }, + { + type: 'submit', + name: 'save', + text: 'Save', + primary: true + } + ], + onSubmit: onSubmit(templates), + onChange: onChange(templates, updateDialog) + }); + const updateDialog = (dialogApi, template, previewHtml) => { + const content = getPreviewContent(editor, previewHtml); + const bodyItems = [ + { + type: 'selectbox', + name: 'template', + label: 'Templates', + items: selectBoxItems + }, + { + type: 'htmlpanel', + html: `

${ htmlEscape(template.value.description) }

` + }, + { + label: 'Preview', + type: 'iframe', + name: 'preview', + sandboxed: false, + transparent: false + } + ]; + const initialData = { + template: template.text, + preview: content + }; + dialogApi.unblock(); + dialogApi.redial(buildDialogSpec(bodyItems, initialData)); + dialogApi.focus('template'); + }; + const dialogApi = editor.windowManager.open(buildDialogSpec([], { + template: '', + preview: '' + })); + dialogApi.block('Loading...'); + getTemplateContent(templates[0]).then(previewHtml => { + updateDialog(dialogApi, templates[0], previewHtml); + }).catch(() => { + updateDialog(dialogApi, templates[0], ''); + dialogApi.setEnabled('save', false); + loadFailedAlert(dialogApi); + }); + }; + const optTemplates = createTemplates(); + optTemplates.each(openDialog); + }; + + const showDialog = editor => templates => { + open(editor, templates); + }; + const register$1 = editor => { + editor.addCommand('mceInsertTemplate', curry(insertTemplate, editor)); + editor.addCommand('mceTemplate', createTemplateList(editor, showDialog(editor))); + }; + + const setup = editor => { + editor.on('PreProcess', o => { + const dom = editor.dom, dateFormat = getMdateFormat(editor); + global$1.each(dom.select('div', o.node), e => { + if (dom.hasClass(e, 'mceTmpl')) { + global$1.each(dom.select('*', e), e => { + if (hasAnyClasses(dom, e, getModificationDateClasses(editor))) { + e.innerHTML = getDateTime(editor, dateFormat); + } + }); + replaceVals(editor, e); + } + }); + }); + }; + + const register = editor => { + const onAction = () => editor.execCommand('mceTemplate'); + editor.ui.registry.addButton('template', { + icon: 'template', + tooltip: 'Insert template', + onAction + }); + editor.ui.registry.addMenuItem('template', { + icon: 'template', + text: 'Insert template...', + onAction + }); + }; + + var Plugin = () => { + global$2.add('template', editor => { + register$2(editor); + register(editor); + register$1(editor); + setup(editor); + }); + }; + + Plugin(); + +})(); diff --git a/Fuchs/Scripts/tinymce/plugins/template/plugin.min.js b/Fuchs/Scripts/tinymce/plugins/template/plugin.min.js new file mode 100644 index 0000000..ec637fc --- /dev/null +++ b/Fuchs/Scripts/tinymce/plugins/template/plugin.min.js @@ -0,0 +1,4 @@ +/** + * TinyMCE version 6.3.1 (2022-12-06) + */ +!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(a=n=e,(r=String).prototype.isPrototypeOf(a)||(null===(s=n.constructor)||void 0===s?void 0:s.name)===r.name)?"string":t;var a,n,r,s})(t)===e,a=t("string"),n=t("object"),r=t("array"),s=("function",e=>"function"==typeof e);const l=(!1,()=>false);var o=tinymce.util.Tools.resolve("tinymce.util.Tools");const c=e=>t=>t.options.get(e),i=c("template_cdate_classes"),u=c("template_mdate_classes"),m=c("template_selected_content_classes"),p=c("template_preview_replace_values"),d=c("template_replace_values"),h=c("templates"),g=c("template_cdate_format"),v=c("template_mdate_format"),f=c("content_style"),y=c("content_css_cors"),_=c("body_class"),b=(e,t)=>{if((e=""+e).length{const n="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),r="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),s="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),l="January February March April May June July August September October November December".split(" ");return(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=t.replace("%D","%m/%d/%Y")).replace("%r","%I:%M:%S %p")).replace("%Y",""+a.getFullYear())).replace("%y",""+a.getYear())).replace("%m",b(a.getMonth()+1,2))).replace("%d",b(a.getDate(),2))).replace("%H",""+b(a.getHours(),2))).replace("%M",""+b(a.getMinutes(),2))).replace("%S",""+b(a.getSeconds(),2))).replace("%I",""+((a.getHours()+11)%12+1))).replace("%p",a.getHours()<12?"AM":"PM")).replace("%B",""+e.translate(l[a.getMonth()]))).replace("%b",""+e.translate(s[a.getMonth()]))).replace("%A",""+e.translate(r[a.getDay()]))).replace("%a",""+e.translate(n[a.getDay()]))).replace("%%","%")};class T{constructor(e,t){this.tag=e,this.value=t}static some(e){return new T(!0,e)}static none(){return T.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?T.some(e(this.value)):T.none()}bind(e){return this.tag?e(this.value):T.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:T.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return null==e?T.none():T.some(e)}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}T.singletonNone=new T(!1);const x=Object.hasOwnProperty,S={'"':""","<":"<",">":">","&":"&","'":"'"},w=e=>e.replace(/["'<>&]/g,(e=>{return(t=S,a=e,((e,t)=>x.call(e,t))(t,a)?T.from(t[a]):T.none()).getOr(e);var t,a})),C=(e,t,a)=>((a,n)=>{for(let n=0,s=a.length;n(o.each(t,((t,a)=>{s(t)&&(t=t(a)),e=e.replace(new RegExp("\\{\\$"+a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")+"\\}","g"),t)})),e),A=(e,t)=>{const a=e.dom,n=d(e);o.each(a.select("*",t),(e=>{o.each(n,((t,n)=>{a.hasClass(e,n)&&s(t)&&t(e)}))}))},D=(e,t,a)=>{const n=e.dom,r=e.selection.getContent();a=O(a,d(e));let s=n.create("div",{},a);const l=n.select(".mceTmpl",s);l&&l.length>0&&(s=n.create("div"),s.appendChild(l[0].cloneNode(!0))),o.each(n.select("*",s),(t=>{C(n,t,i(e))&&(t.innerHTML=M(e,g(e))),C(n,t,u(e))&&(t.innerHTML=M(e,v(e))),C(n,t,m(e))&&(t.innerHTML=r)})),A(e,s),e.execCommand("mceInsertContent",!1,s.innerHTML),e.addVisual()};var I=tinymce.util.Tools.resolve("tinymce.Env");const N=(e,t)=>{const a=(e,t)=>((e,t,a)=>{for(let n=0,r=e.length;ne.text===t),l),n=t=>{e.windowManager.alert("Could not load the specified template.",(()=>t.focus("template")))},r=e=>e.value.url.fold((()=>Promise.resolve(e.value.content.getOr(""))),(e=>fetch(e).then((e=>e.ok?e.text():Promise.reject())))),s=(e,t)=>(s,l)=>{if("template"===l.name){const l=s.getData().template;a(e,l).each((e=>{s.block("Loading..."),r(e).then((a=>{t(s,e,a)})).catch((()=>{t(s,e,""),s.setEnabled("save",!1),n(s)}))}))}},c=t=>s=>{const l=s.getData();a(t,l.template).each((t=>{r(t).then((t=>{e.execCommand("mceInsertTemplate",!1,t),s.close()})).catch((()=>{s.setEnabled("save",!1),n(s)}))}))};(()=>{if(!t||0===t.length){const t=e.translate("No templates defined.");return e.notificationManager.open({text:t,type:"info"}),T.none()}return T.from(o.map(t,((e,t)=>{const a=e=>void 0!==e.url;return{selected:0===t,text:e.title,value:{url:a(e)?T.from(e.url):T.none(),content:a(e)?T.none():T.from(e.content),description:e.description}}})))})().each((t=>{const a=(e=>((e,t)=>{const a=e.length,n=new Array(a);for(let t=0;t({title:"Insert Template",size:"large",body:{type:"panel",items:e},initialData:a,buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],onSubmit:c(t),onChange:s(t,i)}),i=(t,n,r)=>{const s=((e,t)=>{var a;if(-1===t.indexOf("")){let n="";const r=null!==(a=f(e))&&void 0!==a?a:"",s=y(e)?' crossorigin="anonymous"':"";o.each(e.contentCSS,(t=>{n+='"})),r&&(n+='");const l=_(e),c=e.dom.encode,i=' + + @if (isAuth) + { + + + + } + else + { + + + } + + @await RenderSectionAsync("CustomHeader", required: false) + + + + +
+ @if (isAuth) + { +
+
+
+
+
+
+ + @await RenderSectionAsync("BodyHeader", required: false) +
+
+
+
+
+ @RenderBody() +
+
+
+ @await RenderSectionAsync("BodyFooter", required: false) +
+ } + else + { + @await Html.PartialAsync("~/Views/Partials/vpart__ocms_login.cshtml") + @RenderBody() + } +
+ + diff --git a/Fuchs/Views/_ViewStart.cshtml b/Fuchs/Views/_ViewStart.cshtml new file mode 100644 index 0000000..2de6241 --- /dev/null +++ b/Fuchs/Views/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "~/Views/Shared/_Layout.cshtml"; +} diff --git a/Fuchs/Web.config b/Fuchs/Web.config new file mode 100644 index 0000000..42d8abf --- /dev/null +++ b/Fuchs/Web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Fuchs/_test/oci_variables.scss b/Fuchs/_test/oci_variables.scss new file mode 100644 index 0000000..0642339 --- /dev/null +++ b/Fuchs/_test/oci_variables.scss @@ -0,0 +1,55 @@ + + +/* basics */ +$fontsize: 14px; +$fontfamily: 'Arial'; +$logo_ico: url(''); + +/* Color SCHEME */ + +$oci_main: rgb(131, 150, 189); /* #8396bd */ + $oci_main_60: rgba(131, 150, 189, 0.6); +$oci_light: rgb(227,231,231); /* #e3e6e6 */ + $oci_light_60: rgba(227,231,231,0.6); +$oci_white: rgb(255,255,255); /* #ffffff */ +$oci_darkgrey: rgb(38,38,38); /* #262626 */ +$oci_midgrey: rgb(82, 82, 82); /* #262626 */ +$oci_lightgrey: rgb(171,171,171); /* #e3e6e6 */ +$oci_orange: rgb(218, 102, 0); +$oci_yellow: rgb(255, 200, 1); /* #FFC801 */ +$oci_lightyellow: rgb(255, 255, 74); /* #ffff4a */ + +$oci_black: rgb(0,0,0); + $oci_black_75: rgba(0,0,0,.075); + + +$page_bg: $oci_main; + + + +/* media breaks */ + +$break1: 1270px; +$break2: 800px; +$break2a: 798px; +$break3: 796px; +$break3a: 700px; +$break3b: 550px; +$break4: 361px; + + +/* other */ +$oci_header: 2.3rem; + + +/* mixin */ +@mixin noselect { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +@mixin boxshadow { + -webkit-box-shadow: 1px 1px 3px rgba(50,50,50,.3); + box-shadow: 1px 1px 3px rgba(50,50,50,.3); +} \ No newline at end of file diff --git a/Fuchs/_test_copy2.js b/Fuchs/_test_copy2.js new file mode 100644 index 0000000..e69de29 diff --git a/Fuchs/appsettings.Development.json b/Fuchs/appsettings.Development.json new file mode 100644 index 0000000..a45cc86 --- /dev/null +++ b/Fuchs/appsettings.Development.json @@ -0,0 +1,16 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "Microsoft.AspNetCore": "Information" + } + }, + "Fuchs": { + "FDS_Intranet_DebugState": true, + "DevAutoLogin": true, + "DevAutoLoginEmail": "your.email@example.com", + "Email": { + "DevRedirectAddress": "service@emails.processweb.de" + } + } +} diff --git a/Fuchs/appsettings.json b/Fuchs/appsettings.json new file mode 100644 index 0000000..4a2ce3c --- /dev/null +++ b/Fuchs/appsettings.json @@ -0,0 +1,59 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "ConnectionStrings": { + "ocms_ConnectionString": "Data Source=MSSQL4.NBG4.DOMAINXYZ.DE,10439;Initial Catalog=site_fuchs_dev;Persist Security Info=False;TrustServerCertificate=true;Encrypt=true;User ID=fuchs_web;password='Bt5pL/cJg9oxb5';Connect Timeout=60;Load Balance Timeout=240;Max Pool Size=500;", + "fuchs_fds_ConnectionString": "Data Source=MSSQL4.NBG4.DOMAINXYZ.DE,10439;Initial Catalog=site_fuchs_dev;Persist Security Info=False;TrustServerCertificate=true;Encrypt=true;User ID=fuchs_dev;password='!Po@cGZ5bUn37khO';Connect Timeout=60;Load Balance Timeout=240;Max Pool Size=500;" + }, + "Fuchs": { + "ocms_guid": "00094b8f-a822-4e9c-b627-87802f93fca8", + "ocms_valid_locales_csv": "de,en", + "ocms_default_locale": "de", + "fuchs_guid": "cbfc57b3-6b85-4bbc-ab68-3b2c7408af5e", + "fuchs_intranet_guid": "cbfc57b3-6b85-4bbc-ab68-3b2c7408af5e", + "fuchs_captcha_TOTP": "4OXKGB3KS3VZNIUTTQLHECRUVN7ZDEFGSXYVU56D7UCKQZK7VHK7ZN", + "fuchs_intranet_TOTP": "ZNQIUF4KC5XSL2ZXK6VQIZYG74SAMW7FDAGT7ZOVYFJCXBJ47RQW3O", + "SMS_APIKey": "VLbm04ILlDby4EHjqolI9L95bAnfsipJcli0uvppMBHVq0BI1YR2gvpbKJRWDINu", + "Email": { + "Main": { + "alias": "Sebastian Fuchs - Bad und Heizung", + "to": "anfrage@sanitaerfuchs.de", + "from": "anfrage@sanitaerfuchs.de", + "bcc": "info@processweb.de", + "host": "smtp.office365.com", + "port": 587, + "security": "StartTls", + "username": "anfrage@sanitaerfuchs.de", + "password": "DsCG8wxc4!Cu9" + }, + "Fds": { + "alias": "Sebastian Fuchs - Bad und Heizung", + "to": "", + "from": "rechnungen@sanitaerfuchs.de", + "bcc": "", + "host": "smtp.office365.com", + "port": 587, + "security": "StartTls", + "username": "rechnungen@sanitaerfuchs.de", + "password": "8M9#s7TVg6b" + }, + "Service": { + "alias": "ProcessWeb Service", + "to": "", + "from": "service@emails.processweb.de", + "bcc": "", + "host": "emails.processweb.de", + "port": 587, + "security": "StartTls", + "username": "service@emails.processweb.de", + "password": "Uk84za4Qzba4ij" + }, + "TestAddresses": "st.ott@web.de,info@processweb.de" + } + } +} \ No newline at end of file diff --git a/Fuchs/bdlconfig.json b/Fuchs/bdlconfig.json new file mode 100644 index 0000000..85ab091 --- /dev/null +++ b/Fuchs/bdlconfig.json @@ -0,0 +1,154 @@ +[ + { + "context": "intranet", + "outputFileName": "wwwroot/web/fisb.min.css", + "inputFiles": [ + "css/intranet/oci_variables.scss", + "css/intranet/fis_variables.scss", + "css/intranet/oci_basic.scss", + "css/intranet/oci_login.scss" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet", + "outputFileName": "wwwroot/web/fis.min.css", + "inputFiles": [ + "css/intranet/oci_variables.scss", + "css/intranet/fis_variables.scss", + "css/intranet/oci_glyphicons.scss", + "css/intranet/oci_basic.scss", + "css/intranet/oci_login.scss", + "css/intranet/oci_nav.scss", + "css/intranet/oci_main.scss", + "css/intranet/fis_main.scss" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet", + "outputFileName": "wwwroot/web/fisb.min.js", + "inputFiles": [ + "js/intranet/oci_texts_basic_de.js", + "js/intranet/oci_basic.js", + "js/intranet/oci_basic_go.js" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet", + "outputFileName": "wwwroot/web/fis.min.js", + "inputFiles": [ + "js/intranet/oci_texts_basic_de.js", + "js/intranet/oci_texts_gui_de.js", + "js/intranet/oci_texts_val_de.js", + "web/loadcss/loadCSS.js", + "web/loadcss/onloadCSS_array.js", + "js/intranet/oci_basic.js", + "js/intranet/oci_mainbase.js", + "js/intranet/oci_main_menu.js", + "js/intranet/oci_main.js", + "js/intranet/oci_sortable.js", + "js/intranet/oci_draggable.js", + "js/intranet/oci_go.js", + "js/intranet/fis_texts_gui_de.js", + "js/intranet/fis_main.js", + "js/intranet/fis_main_menu.js", + "js/intranet/fis_main_go.js" + ], + "minify": { "enabled": true } + }, + { + "outputFileName": "wwwroot/web/tools.js", + "inputFiles": [ + "Scripts/jquery-3*.min.js", + "!Scripts/*.slim.min.js" + ], + "inputFiles_tominify": [ + "node_modules/js-cookie/dist/js.cookie.js" + ], + "minify": { "enabled": false } + }, + { + "context": "intranet:inv", + "outputFileName": "wwwroot/web/fis.inv.de.js", + "inputFiles": [ + "js/intranet/modules/fis.req_txt_de.js", + "js/intranet/modules/fis.inv_txt_de.js", + "js/intranet/modules/fis.inv.js", + "js/intranet/modules/fis.inv_shared.js" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet:inv", + "outputFileName": "wwwroot/web/fis.inv.min.css", + "inputFiles": [ + "css/intranet/oci_variables.scss", + "css/intranet/fis_variables.scss", + "js/intranet/modules/fis.inv.scss", + "js/intranet/modules/fis.inv_shared.scss" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet:req", + "outputFileName": "wwwroot/web/fis.req.de.js", + "inputFiles": [ + "js/intranet/modules/fis.req_txt_de.js", + "js/intranet/modules/fis.inv_txt_de.js", + "js/intranet/modules/fis.req.js", + "js/intranet/modules/fis.inv_shared.js" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet:req", + "outputFileName": "wwwroot/web/fis.req.min.css", + "inputFiles": [ + "css/intranet/oci_variables.scss", + "css/intranet/fis_variables.scss", + "js/intranet/modules/fis.req.scss", + "js/intranet/modules/fis.inv_shared.scss" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet:rep", + "outputFileName": "wwwroot/web/fis.rep.de.js", + "inputFiles": [ + "js/intranet/modules/fis.rep_txt_de.js", + "js/intranet/modules/fis.rep.js" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet:rep", + "outputFileName": "wwwroot/web/fis.rep.min.css", + "inputFiles": [ + "css/intranet/oci_variables.scss", + "css/intranet/fis_variables.scss", + "js/intranet/modules/fis.rep.scss" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet:bam", + "outputFileName": "wwwroot/web/fis.bam.de.js", + "inputFiles": [ + "js/intranet/modules/fis.bam_txt_de.js", + "js/intranet/modules/fis.bam.js" + ], + "minify": { "enabled": true } + }, + { + "context": "intranet:bam", + "outputFileName": "wwwroot/web/fis.bam.min.css", + "inputFiles": [ + "css/intranet/oci_variables.scss", + "css/intranet/fis_variables.scss", + "js/intranet/modules/fis.bam.scss" + ], + "minify": { "enabled": true } + } +] diff --git a/Fuchs/code/7z.dll b/Fuchs/code/7z.dll new file mode 100644 index 0000000..b32d7bf Binary files /dev/null and b/Fuchs/code/7z.dll differ diff --git a/Fuchs/code/Banking.cs b/Fuchs/code/Banking.cs new file mode 100644 index 0000000..176e9a7 --- /dev/null +++ b/Fuchs/code/Banking.cs @@ -0,0 +1,125 @@ +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Logging.Abstractions; +using System.Data; +using programmersdigest.MT940Parser; + +namespace Fuchs.intranet; + +/// +/// MT940 bank statement parser helpers. +/// +public static class Banking +{ + public static string DebitCreditMarkAbb(DebitCreditMark mark) => mark switch + { + DebitCreditMark.Credit => "C", + DebitCreditMark.Debit => "D", + DebitCreditMark.ReverseCredit => "RC", + DebitCreditMark.ReverseDebit => "RD", + _ => "" + }; + + public static DataTable ParseToDatatable(Stream stream, DataTable? schemaDatatable = null, + ILogger? logger = null) + { + logger ??= NullLogger.Instance; + var tbl = schemaDatatable?.Clone() ?? BuildDefaultSchema(); + + void SetNfo(DataRow nr, string key, object? value) + { + if (tbl.Columns.Contains(key) && value != null) + nr[key] = value; + } + + using var ps = new Parser(stream: stream); + try + { + foreach (var statement in ps.Parse()) + { + if (string.IsNullOrEmpty(statement.AccountIdentification)) continue; + foreach (var line in statement.Lines) + { + try + { + var nr = tbl.NewRow(); + SetNfo(nr, "AccountIdentification", statement.AccountIdentification); + if (line.Amount.HasValue) SetNfo(nr, "Amount", line.Amount); + if (line.EntryDate.HasValue) SetNfo(nr, "EntryDate", line.EntryDate); + if (line.FundsCode.HasValue) SetNfo(nr, "FundsCode", line.FundsCode.ToString()); + SetNfo(nr, "BankReference", line.BankReference); + + var info = line.InformationToOwner; + SetNfo(nr, "AccountNumberOfPayer", info.AccountNumberOfPayer); + SetNfo(nr, "BankCodeOfPayer", info.BankCodeOfPayer); + SetNfo(nr, "CompensationAmount", info.CompensationAmount); + SetNfo(nr, "CreditorReference", info.CreditorReference); + SetNfo(nr, "CreditorsReferenceParty", info.CreditorsReferenceParty); + SetNfo(nr, "CustomerReference", info.CustomerReference); + SetNfo(nr, "EndToEndReference", info.EndToEndReference); + SetNfo(nr, "JournalNumber", info.JournalNumber); + SetNfo(nr, "MandateReference", info.MandateReference); + SetNfo(nr, "NameOfPayer", info.NameOfPayer); + SetNfo(nr, "OriginalAmount", info.OriginalAmount); + SetNfo(nr, "OriginatorsIdentificationCode", info.OriginatorsIdentificationCode); + SetNfo(nr, "PayersReferenceParty", info.PayersReferenceParty); + SetNfo(nr, "PostingText", info.PostingText); + SetNfo(nr, "SepaRemittanceInformation", info.SepaRemittanceInformation); + if (info.TextKeyAddition.HasValue) SetNfo(nr, "TextKeyAddition", info.TextKeyAddition); + SetNfo(nr, "TransactionCode", info.TransactionCode); + SetNfo(nr, "IsUnstructuredData", info.IsUnstructuredData); + SetNfo(nr, "UnstructuredData", info.UnstructuredData); + SetNfo(nr, "UnstructuredRemittanceInformation",info.UnstructuredRemittanceInformation); + + SetNfo(nr, "DebitCreditMark", DebitCreditMarkAbb(line.Mark)); + SetNfo(nr, "SupplementaryDetails",line.SupplementaryDetails); + SetNfo(nr, "TransactionTypeIdCode",line.TransactionTypeIdCode); + SetNfo(nr, "ValueDate", line.ValueDate); + + tbl.Rows.Add(nr); + } + catch (Exception ex) { logger.LogWarning(ex, "MT940 line parse error — account={Account}", statement.AccountIdentification); } + } + } + } + catch (Exception ex) { logger.LogError(ex, "MT940 statement parse failed."); } + + tbl.AcceptChanges(); + return tbl; + } + + private static DataTable BuildDefaultSchema() + { + var t = new DataTable(); + var cols = t.Columns; + cols.Add("AccountIdentification", typeof(string)); + cols.Add("Amount", typeof(decimal)); + cols.Add("BankReference", typeof(string)); + cols.Add("EntryDate", typeof(DateTime)); + cols.Add("FundsCode", typeof(string)); + cols.Add("AccountNumberOfPayer", typeof(string)); + cols.Add("BankCodeOfPayer", typeof(string)); + cols.Add("CompensationAmount", typeof(string)); + cols.Add("CreditorReference", typeof(string)); + cols.Add("CreditorsReferenceParty", typeof(string)); + cols.Add("CustomerReference", typeof(string)); + cols.Add("EndToEndReference", typeof(string)); + cols.Add("JournalNumber", typeof(string)); + cols.Add("MandateReference", typeof(string)); + cols.Add("NameOfPayer", typeof(string)); + cols.Add("OriginalAmount", typeof(string)); + cols.Add("OriginatorsIdentificationCode", typeof(string)); + cols.Add("PayersReferenceParty", typeof(string)); + cols.Add("PostingText", typeof(string)); + cols.Add("SepaRemittanceInformation", typeof(string)); + cols.Add("TextKeyAddition", typeof(int)); + cols.Add("TransactionCode", typeof(int)); + cols.Add("IsUnstructuredData", typeof(bool)); + cols.Add("UnstructuredData", typeof(string)); + cols.Add("UnstructuredRemittanceInformation", typeof(string)); + cols.Add("DebitCreditMark", typeof(string)); + cols.Add("SupplementaryDetails", typeof(string)); + cols.Add("TransactionTypeIdCode", typeof(string)); + cols.Add("ValueDate", typeof(DateTime)); + return t; + } +} diff --git a/Fuchs/code/FdsInvoiceData.cs b/Fuchs/code/FdsInvoiceData.cs new file mode 100644 index 0000000..24e52e5 --- /dev/null +++ b/Fuchs/code/FdsInvoiceData.cs @@ -0,0 +1,288 @@ +using System.Data; +using Fuchs.Controllers; +using Microsoft.Data.SqlClient; +using MigraDoc.DocumentObjectModel; +using MigraDoc.Rendering; +using Newtonsoft.Json.Linq; +using OCORE.SQL; +using static OCORE.OCORE_dictionaries; +using static OCORE.SQL.sql; +using static OCORE.commons; + +namespace Fuchs.intranet; + +/// +/// Encapsulates invoice (Rechnung) data. Converted from VB fds__invoice_data class. +/// +public class FdsInvoiceData +{ + private readonly JObject? _base; + private Document? _letter; + + public GenericObjectDictionary? Admin { get; private set; } + public GenericObjectDictionary? NewValues { get; private set; } + public GenericObjectDictionary? Sms { get; private set; } + public List>? Req { get; private set; } + + public GenericObjectDictionary? InvoiceRegistration { get; private set; } + public bool IsDraft { get; private set; } = true; + + public string Id => InvoiceRegistration?.getString("Id") ?? ""; + public string PaymentTerms => InvoiceRegistration?.getString("PaymentTerm") ?? ""; + + // -- PDF-facing properties (used by FuchsPdf.ApplyInvoice) ---------------- + public string InvoiceType => + InvoiceRegistration?.getString("InvoiceType").Substr(0, 1) ?? "R"; + public string InvoiceId => + InvoiceRegistration?.getString("InvoiceId") ?? Id; + public string InvoiceTitle => + InvoiceRegistration?.getString("InvoiceTitle") ?? ""; + public string[] ProvisionLocation => + InvoiceRegistration?.getString("ProvisionLocation") is { Length: > 0 } pl + ? pl.Replace("
", "\n").Replace("
", "\n").Replace("
", "\n") + .Replace("\r\n", "\n").Split('\n').Select(t => t.Trim()).Where(t => t != "").ToArray() + : RawProvisionLocation; + + /// Flat list of line items from all nested service request groups. + public List> InvoiceItems + { + get + { + var result = new List>(); + if (Req == null) return result; + foreach (var req in Req) + { + if (req.TryGetValue("items", out var itmsObj)) + { + IEnumerable>? itms = + itmsObj as IEnumerable> + ?? (itmsObj is Newtonsoft.Json.Linq.JArray ja + ? ja.ToObject>>() + : null); + if (itms != null) result.AddRange(itms); + } + } + return result; + } + } + + /// VAT rows keyed by percentage string (e.g. "19"), from InvoiceRegistration. + public Dictionary> VatRows + { + get + { + var result = new Dictionary>(); + if (InvoiceRegistration == null) return result; + // Primary VAT slot + if (FuchsPdf.ParseDec(InvoiceRegistration.getItem("InvoiceVAT_1"), out decimal ust1) + && FuchsPdf.ParseDec(InvoiceRegistration.getItem("InvoiceVAT_net1"), out decimal net1) + && !(ust1 == 0 && net1 == 0)) + result[ust1.ToString("0.##")] = new Dictionary + { ["vat_amount"] = net1 }; + // Secondary VAT slot + if (FuchsPdf.ParseDec(InvoiceRegistration.getItem("InvoiceVAT_2"), out decimal ust2) + && FuchsPdf.ParseDec(InvoiceRegistration.getItem("InvoiceVAT_net2"), out decimal net2) + && !(ust2 == 0 && net2 == 0)) + result[ust2.ToString("0.##")] = new Dictionary + { ["vat_amount"] = net2 }; + return result; + } + } + + // -- Raw properties -------------------------------------------------------- + private string RawInvoiceAddress => NewValues?.nz("invoiceaddress") ?? ""; + private string RawInvoiceEmail => NewValues?.nz("invoiceemail").Trim() ?? ""; + private string RawCustomValues => NewValues?.nz("CustomValues").Trim() ?? ""; + private string RawProvisionPeriod => NewValues?.nz("provisionperiod") ?? ""; + private string[] RawProvisionLocation => + NewValues?.nz("provisionlocation") is { Length: > 0 } s + ? s.Replace("\r\n", "\n").Split('\n').Select(t => t.Trim()).Where(t => t != "").ToArray() + : Array.Empty(); + + // -- Ctors ----------------------------------------------------------------- + public FdsInvoiceData(object ctd) + { + _base = ctd as JObject; + IsDraft = true; + if (_base != null) + { + if (_base.ContainsKey("admin")) Admin = new GenericObjectDictionary(_base["admin"]!.ToObject>()!); + if (_base.ContainsKey("new")) NewValues = new GenericObjectDictionary(_base["new"]!.ToObject>()!); + if (_base.ContainsKey("sms")) Sms = new GenericObjectDictionary(_base["sms"]!.ToObject>()!); + if (_base.ContainsKey("req")) Req = _base["req"]!.ToObject>>(); + } + } + + public FdsInvoiceData(string id, IntranetController ctrl) => RegisterInvoice(id, ctrl); + + // -- PDF ------------------------------------------------------------------- + public Document InvoicePDF(IntranetController ctrl) + { + if (_letter != null) return _letter; + if (InvoiceRegistration == null) RegisterInvoice(Id, ctrl); + var tb = new FuchsPdf.FdsTextBlocks + { + AdminRef = InvoiceRegistration?.getString("Id") ?? "", + Address = InvoiceRegistration?.getString("SendToAddress") is { Length: > 0 } sa + ? sa.Replace("
", "\n").Replace("
", "\n").Split('\n').Select(t => t.Trim()).ToArray() + : Array.Empty(), + AdminUser = InvoiceRegistration?.getString("UserNameFinalized") ?? "", + AdminUserEmail = InvoiceRegistration?.getString("UserEmailFinalized") ?? "", + AdminDatumValue = InvoiceRegistration?.getString("DateCreated") is { Length: > 0 } dc ? DateTime.Parse(dc) : DateTime.Now + }; + _letter = Task.Run(async () => await FuchsPdf.WriteLetter(tb, draft: IsDraft, locale: FuchsPdf.DeCulture)).Result; + _letter.Info.Title = InvoiceRegistration?.getString("InvoiceTitle") ?? ""; + FuchsPdf.ApplyInvoice(_letter, tb, this, draft: IsDraft); + return _letter; + } + + // -- File operations ------------------------------------------------------- + public async Task GetInvoiceFile(IntranetController ctrl) + { + if (InvoiceRegistration?.getItem("IsFinal", false) is true) + { + byte[]? ba = null; + ctrl._mfr.GetFdsDoc(ref ba, Id, "invoice"); + return ba; + } + return await RenderToPdfBytes(ctrl); + } + + public async Task StoreInvoiceDocumentFile(IntranetController ctrl) + { + byte[] ba; + try { ba = await RenderToPdfBytes(ctrl); } + catch { ba = Array.Empty(); } + if (ba.Length == 0) return Array.Empty(); + + var pl = ctrl.StdParamlist(SQL_VarChar("@Id", Id)); + pl.Add(new SqlParameter("@file", SqlDbType.VarBinary) { Value = ba }); + bool r = await setSQLValue_async( + "EXECUTE [dbo].[fds__setInvoiceFile] @Id, @file;", + ctrl._intranet.Intranet__SQLConnectionString, pl, + Security: ctrl.DbSec, options: new FIS_SQLOptions()); + return r ? ba : Array.Empty(); + } + + private async Task RenderToPdfBytes(IntranetController ctrl) + { + var pdfrend = new PdfDocumentRenderer() { Document = InvoicePDF(ctrl) }; + pdfrend.RenderDocument(); + using var ms = new MemoryStream(); + pdfrend.PdfDocument.Save(ms, false); + ms.Position = 0; + return OCORE.pdf._pdf.pdfAFileContent(ms.ToArray()); + } + + // -- Registration ---------------------------------------------------------- + public void RegisterInvoice(IntranetController ctrl, bool change, string invId) + { + if (NewValues == null) return; + Task.Run(async () => + { + try + { + var pl = ctrl.StdParamlist(); + pl.AddRange(BuildInvoiceParams(change, invId)); + + var sqlParts = new List { "DECLARE @Id varchar(10);" }; + if (!change) + { + sqlParts.Add("EXECUTE [dbo].[fds__createInvoice] @InvoiceType, @InvoiceTitle, @InvoiceBalance, @InvoiceBalance_net, @InvoiceVAT_net1, @InvoiceVAT_1, @PaymentTerm, @CustomerId, @SendToAddress, @SendToEmail, @ProvisionPeriod, @CustomValues, @authuser, @Id OUTPUT;"); + sqlParts.Add("EXECUTE [dbo].[fds__createInvoice_Details] @Id, @InvoiceService_net, @InvoiceService_VAT, @InvoiceOptions, @authuser;"); + } + else + { + pl.Add(SQL_VarChar("@InvId", invId)); + sqlParts.Add("EXECUTE [dbo].[fds__setInvoice] @InvId, @InvoiceType, @InvoiceTitle, @InvoiceBalance, @InvoiceBalance_net, @InvoiceVAT_net1, @InvoiceVAT_1, @PaymentTerm, @CustomerId, @SendToAddress, @SendToEmail, @ProvisionPeriod, @CustomValues, @authuser, @Id OUTPUT;"); + sqlParts.Add("EXECUTE [dbo].[fds__createInvoice_Details] @Id, @InvoiceService_net, @InvoiceService_VAT, @InvoiceOptions, @authuser;"); + } + if (RawProvisionLocation.Length > 0) + { + pl.Add(SQL_NVarChar("@ProvisionLocation", + string.Join("\n", RawProvisionLocation).LeftToFirst(" + + + + + + + + + + + \ No newline at end of file diff --git a/Fuchs/copyconfig.json b/Fuchs/copyconfig.json new file mode 100644 index 0000000..c4cfc17 --- /dev/null +++ b/Fuchs/copyconfig.json @@ -0,0 +1,18 @@ +[ + { + "src": [ "css/intranet/glyph*.*" ], + "dest": "wwwroot/fts" + }, + { + "src": [ "node_modules/fg-loadcss/src/*.js" ], + "dest": "wwwroot/loadcss" + }, + { + "src": [ "node_modules/tinymce/**/*" ], + "dest": "wwwroot/lib/tinymce" + }, + { + "src": [ "node_modules/jquery/dist/*" ], + "dest": "wwwroot/lib/jquery" + } +] diff --git a/Fuchs/css/intranet/fis_main.scss b/Fuchs/css/intranet/fis_main.scss new file mode 100644 index 0000000..a6e4b08 --- /dev/null +++ b/Fuchs/css/intranet/fis_main.scss @@ -0,0 +1,407 @@ +#contentframe >.edit_frm{ + +.list_frm{ + display: none; + } + } + +.list_frm{ + min-height: 100%; +} + +main nav ul > li a[role=button] { + &::after { + border-top: 1px solid $oci_light_60; + border-left: 1px solid $oci_light_60; + border-right: 1px solid $oci_light_60; + } + + &:hover::after, &.fbtn::after { + border-color: $oci_light; + } +} + +#dashboard_frame { + overflow-y: auto; + height: 100%; + width: 100%; + padding: 1rem; + background: #DDD; + text-align: center; +} + +.wdg_frame { + background-color: #FFF; + border: 1px solid #ccc; + border-radius: 6px; + /*box-shadow: 1px 1px 3px 0 rgba(75, 75, 75, 0.2);*/ + /*box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.17);*/ + /*box-shadow: 1px 1px 3px 0 rgba(0,0,0,.17), -3px -3px 8px 0px rgb(250, 250, 250);*/ + box-shadow: 1px 2px 8px 0 rgba(140,140,160,.6), -2px -3px 8px 0px rgb(250, 250, 250); + /*float: left;*/ + display: inline-block; + height: 300px; + margin-bottom: 10px; + position: relative; + width: 300px; + margin-right: 15px; + text-align:left; + overflow: hidden; + + &.dbl { + width: 615px; + } + + &.tpl { + width: 930px; + } + + &.tny { + width: 150px; + + .wdg_cnt > .ind label { + font-size: 80%; + } + } + + .wdg_hd { + border-top-left-radius: inherit; + border-top-right-radius: inherit; + height: 1.5rem; + position: relative; + background-color: $fuchs_blau_80; + box-shadow: 1px 5px 5px $fuchs_blau inset; + color: $fuchs_textlight; + text-align: center; + font-size: 0.8rem; + font-weight: bold; + padding: .3rem .2rem 0 .2rem; + cursor: pointer; + margin: -1px -1px 0 -1px; + + > * { + user-select: none; + } + } + + .wdg_cnt { + border-bottom-left-radius: inherit; + border-bottom-right-radius: inherit; + height: calc(100% - 24px); + overflow-x: hidden; + overflow-y: auto; + padding: 0; + position: relative; + + > .ind { + text-align: center; + padding: 1rem; + font-size: 1.3rem; + + &.sts_neg > .ind { + color: red; + } + + &.sts_pos > .ind { + color: rgb(86,165,50); + } + + > .ind { + font-size: 4.0rem; + margin: 3rem 0rem; + text-shadow: 0.08rem 0.12rem 0.35rem rgba(50,50,50,.6); + color: $fuchs_blau; + } + } + + .clickable { + cursor: pointer; + } + + table { + border-collapse: collapse; + width: 100%; + + tr:first-child { + border: none; + } + + th { + background-color: #CCC; + padding: 2px 4px; + font-size: 11px; + line-height: 1.2; + border: 1px solid transparent; + text-align: left; + + &:first-child { + border-left: none; + } + + &:last-child { + border-right: none; + } + } + + td { + padding: 2px 4px; + font-size: 12px; + line-height: 1.1; + border: 1px solid #CCC; + + &:first-child { + border-left: none; + } + + &:last-child { + border-right: none; + } + } + } + } +} + +#listframe { + div.mth, div.yr { + border: 1px solid #ccc; + background-color: #EEE; + padding: 0.4rem 0.2rem 0.2rem 0.35rem; + border-radius: 0.2rem; + cursor: pointer; + margin: 0.2rem; + position: relative; + display: block; + white-space: nowrap; + min-height: 2.0rem; + + &.extra { + text-decoration: red underline; + } + + &.ivc + .extra { + margin-top: 0.4rem; + } + + &.selected { + background-color: lightgreen; + + > div.wfrm, > div.mfrm { + display: block; + } + + > div.mthdl, > div.wthdl, > div.ythdl { + display: inline-block; + cursor: pointer; + } + } + + div.wfrm, div.mfrm, div.yfrm { + display: none; + position: relative; + background-color: #FFF; + margin: 1rem 0.2rem 0.2rem 1rem; + padding: 0.15rem; + border-radius: 0.2rem; + + .wk { + border: 1px solid #ccc; + background-color: #EEE; + padding: 0.4rem 1.35rem 0.2rem 0.35rem; + border-radius: 0.2rem; + cursor: pointer; + margin: 0.2rem; + position: relative; + display: block; + white-space: nowrap; + min-height: 2.0rem; + + &.selected { + background-color: lightblue; + + div.wkdl { + display: inline-block; + cursor: pointer; + } + } + } + } + } + + div.yrdl, div.mthdl, div.wkdl { + height: 1.5rem; + width: 1.5rem; + display: none; + background-color: #FFF; /* the selected box is colored */ + position: absolute; + right: 0.4rem; + border: 1px solid #CCC; + border-radius: 0.2rem; + padding: 0.1rem; + top: 0.18rem; + font-size: 1rem; + text-align: center; + } +} + +.invfrm { + > table, table.invtbl { + border-collapse: separate; + border-spacing: 0; + margin: 2rem; + + th { + padding: 0.2rem 0.35rem; + border: 1px solid #CCC; + text-align: left; + } + + th, td { + &.currency, &.num { + text-align: right; + white-space: nowrap; + } + + &.keep { + white-space: nowrap; + } + } + + td { + padding: 0.2rem 0.35rem; + border: 1px solid #CCC; + vertical-align: top; + position: relative; + + &.hl { + background-color: lightyellow; + } + + input, select { + display: none; + } + + &.raux { + min-width: #{1.5rem * 1.6 * 2 + 0.5rem}; + } + + > .ttip { + display: none; + background: #FFF; + padding: 0.2rem 0.35rem; + padding: inherit; + border: 1px solid #CCC; + box-shadow: 1px 1px 3px rgba(50,50,50,0.5); + min-width: 100%; + min-height: 100%; + border-top-color: orangered; + z-index: 5; + } + + + .ttip p, .ctw p { + margin: 0 0 0.1rem 0; + } + + &:hover { + border-top-color: orangered !important; + border-top-width: 2px; + + > .ttip { + display: block; + position: absolute; + top: 0; + height: auto; + width: auto; + left: 0; + } + } + } + + tr { + &:nth-child(2n+1) td { + background-color: rgba(150,150,150,.2); + + &.hl { + background-color: lightyellow; + } + } + + &.selected td { + background-color: lightblue; + + &.hl { + background-color: lightyellow; + } + /*input, select { + display: block; + }*/ + .ilbtn { + display: inline-block; + } + } + } + } + + .ovhd { + display: block; + font-size: 1.5rem; + margin: 1rem 2rem; + font-weight: bold; + text-decoration: underline; + text-decoration-style: double; + + > span { + display: block; + + &:first-child { + text-decoration: underline; + text-decoration-style: double; + } + + + span { + margin-top: 0.5rem; + } + + &.note { + font-size: 1rem; + font-weight: normal; + text-decoration: none; + text-decoration-style: none; + } + } + } + + &.mdw .ovhd { + text-decoration-color: lightblue; + } + + &.mdm .ovhd { + text-decoration-color: lightgreen; + } +} +.ilbtn { + cursor: pointer; + border-radius: #{1.5rem * 0.2}; + display: none; + padding: 0.1rem; + margin-bottom: 0; + font-size: 1.5rem; + letter-spacing: 0.025rem; + font-weight: normal; + line-height: 1.42857143; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + background-color: $oci_white; + background-image: none; + border: 1px solid #ababab; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-box-shadow: 1px 1px 3px rgba(50, 50, 50, 0.3); + box-shadow: 1px 1px 3px rgba(50, 50, 50, 0.3); + min-width: #{1.5rem * 1.6}; +} diff --git a/Fuchs/css/intranet/fis_variables.scss b/Fuchs/css/intranet/fis_variables.scss new file mode 100644 index 0000000..a0aa550 --- /dev/null +++ b/Fuchs/css/intranet/fis_variables.scss @@ -0,0 +1,26 @@ + + +/* basics */ +$fontsize: 14px; +$fontfamily: 'Arial'; +$logo_ico: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADVElEQVRYhe2V309bZRjH+TvovDJbuZkXJsY7Yckpg9pF3QXtKAksxoWZxYEQPWsLtbSW/XDRqcnsYub0YrvxYiNZWTYXIzMQY0xMrHSOtlBKa1vWM3Br2UjP+/HinB1haDxktNzsTb55z8n75D2ffPN8n9PQKMlspxqeAWzVRRZJpsUV4MDhU3T0nmS3w1dfgJ1tHi5cGiefLzGbznFo8DMs9QSw2j2Mjd9CFYJyZYW+oUh9AXa1awBCB+j3bSdAeRscsNq9XIlO6AAP6a83QJPdy+WrE4YD/UMRLLYaAFjbPexxjeDoCeM4qKsnzOtvHufazSmEEFQqK3xw4hscPaPs6xnVavX91e4PeWGfb/MAz9mO4T5ymus3f2IhW6BQVP7RYonCosKDBxUAVFWgKMsUFh+fayreVVjIFTkWOm+4YwrAIskc7PuEzEIBIQRmlhAghFgv4NHqKuEzF9mxGYCX3hhm6ueYdokqyBdKTN9OGYrFk0zHUxSKCgDVapWZZIbYdIJYPMnv8RSx6SSxeJJff7vDUd8XRoOaAuh+52OWlu4DMDef49Dgp+xxjdDcEdDkDNDqDhG9Pmn0gDd8nhZXgFec2nmLM6C9dwTY2eYx3wMWSaZ/KEK5soIQguiNSaztng11Tw6iLZsDFklmYDhCpfIQIQRj47fY9S8ATXYP176bMmJ41Hd2cwBN7V6kziB73SFa3SFsnUGkziCtXSH8J742AKI3pnB0h2l1B7Hp2tsVos93lmyuCIBy7y+6jpw2la6GRknGYpMZ8J8j/scsM4l5ZhJpfZ/nTiJNOvMn1aoKQElZIpHUahKpeV0ZSsqS0e0//PgLL742ZB5gh00mfOYij1ZXn4iQ9mx2qapKMpWh8+2PTNm/zoH3g18yO5cjmyuykF2jXJFCUUFVNQeWl+9vrMkWSKQyfDv2PfvfOm5k3DTA4yZqXhsZ54gm1wi+0a/W9MAkkjuo12k1zc4AL+/383zbxuZ8+hTYZN71RyiXtRhevjpBk9276Q89VQwH/eco6w5ciU5grTfAwBqA/5oDNQb4/0FUW4DhCJXKCqoOYLXXGaD3vc+ZS+fI50tcuDS+7mdSc4BGSWa3w0dH70kOHD5FiytgeshsGUAt9Qzgb8pqydEEvRadAAAAAElFTkSuQmCC'); + +/* Color SCHEME */ + + +$fuchs_blau: rgb(27, 67, 121); /* #1b4379 #0033b3 */ + $fuchs_blau_60: rgba(27, 67, 121, 0.6); + $fuchs_blau_80: rgba(27, 67, 121, 0.85); +$fuchs_akzent: rgb(86,165,50); /*neu: #56a532 ; alt: rgb(32,144,119);*/ +$fuchs_lightgray: #e5e5e5; /* 10% sw */ +$fuchs_weiss: #FFF; + +$fuchs_textlight: #FFF; +$fuchs_textdark: $fuchs_blau; +$fuchs_textbase: #000000; + + +$oci_main: $fuchs_blau; +$oci_main_60: $fuchs_blau_60; + +$page_bg: $oci_main; \ No newline at end of file diff --git a/Fuchs/css/intranet/glyphicons-halflings-regular.eot b/Fuchs/css/intranet/glyphicons-halflings-regular.eot new file mode 100644 index 0000000..b93a495 Binary files /dev/null and b/Fuchs/css/intranet/glyphicons-halflings-regular.eot differ diff --git a/Fuchs/css/intranet/glyphicons-halflings-regular.svg b/Fuchs/css/intranet/glyphicons-halflings-regular.svg new file mode 100644 index 0000000..94fb549 --- /dev/null +++ b/Fuchs/css/intranet/glyphicons-halflings-regular.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Fuchs/css/intranet/glyphicons-halflings-regular.ttf b/Fuchs/css/intranet/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000..1413fc6 Binary files /dev/null and b/Fuchs/css/intranet/glyphicons-halflings-regular.ttf differ diff --git a/Fuchs/css/intranet/glyphicons-halflings-regular.woff b/Fuchs/css/intranet/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..9e61285 Binary files /dev/null and b/Fuchs/css/intranet/glyphicons-halflings-regular.woff differ diff --git a/Fuchs/css/intranet/glyphicons-halflings-regular.woff2 b/Fuchs/css/intranet/glyphicons-halflings-regular.woff2 new file mode 100644 index 0000000..64539b5 Binary files /dev/null and b/Fuchs/css/intranet/glyphicons-halflings-regular.woff2 differ diff --git a/Fuchs/css/intranet/ldng.gif b/Fuchs/css/intranet/ldng.gif new file mode 100644 index 0000000..a46bd4c Binary files /dev/null and b/Fuchs/css/intranet/ldng.gif differ diff --git a/Fuchs/css/intranet/ldng.png b/Fuchs/css/intranet/ldng.png new file mode 100644 index 0000000..700bb03 Binary files /dev/null and b/Fuchs/css/intranet/ldng.png differ diff --git a/Fuchs/css/intranet/oci_basic.scss b/Fuchs/css/intranet/oci_basic.scss new file mode 100644 index 0000000..1b62310 --- /dev/null +++ b/Fuchs/css/intranet/oci_basic.scss @@ -0,0 +1,805 @@ + + +/* MAIN */ + +*, :after, :before { + box-sizing: border-box; + transition: visibility linear 1s, opacity linear 1s; + -moz-transition: visibility linear 1s, opacity linear 1s; + -webkit-transition: visibility linear 1s, opacity linear 1s; +} + +body, html { + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: optimizeLegibility; + image-rendering: auto; + shape-rendering: geometricprecision; + color-rendering: optimizeQuality; + font-size: $fontsize; + background-color: $page_bg; + + @media(max-width: #{$break3}) and (min-width: #{$break4 + 1}) { + font-size: 15px; + } + + @media(max-width: #{$break4}) { + font-size: 12px; + } +} + +html { + font-family: $fontfamily, Arial, Helvetica Neue, Helvetica, sans-serif; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100% +} + + +body { + font-family: $fontfamily, Arial, Helvetica Neue, Helvetica, sans-serif; + font-weight: 400; + overflow: hidden; + /*-webkit-touch-callout: none;*/ + position: relative; + height: 100vh; + width: 100vw; + margin: 0; + + &.busy, &.busy * { + cursor: wait !important; + } + + > * { + position: fixed; + left: 0.5rem; + right: 0.5rem; + } + + header { + top: 0.5rem; + height: $oci_header; + z-index: 10; + max-height: $oci_header; + background-color: $page_bg; + } + + main { + background-color: $oci_white; + top: #{$oci_header + 0.5rem}; + bottom: #{$oci_header + 0.5rem}; + z-index: 9; + overflow: auto; + position: absolute; + } + + footer { + bottom: 0; + height: $oci_header; + max-height: $oci_header; + z-index: 8; + overflow: hidden; + } +} + +h1, h2, h3, h4, .h1, .h2, .h3, .h4 { + color: $oci_main; +} +.h1, +h1 { + font-size: 1.45rem; + letter-spacing: #{0.05rem * 1.45}; + font-weight: 700; + margin: 1.45rem 0 0.8rem 0; +} + +.h2, +h2 { + font-size: 1.35rem; + letter-spacing: #{0.05rem * 1.35}; + font-weight: 600; + margin: 1.35rem 0 0.7rem 0; +} + +.h3, +h3 { + font-size: 1.2rem; + letter-spacing: #{0.05rem * 0.8}; + font-weight: 500; + margin: 1rem 0 0.5rem 0; +} +.h4, h4 { + letter-spacing: #{0.05rem * 0.3}; + font-weight: 400; + margin: 0.6rem 0 0.3rem 0; +} +p { + margin: 0 0 0.6rem; +} + +.loading { + background-image: url('data:image/gif;base64,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'); + background-position: center center; + background-repeat: repeat-x; +} + +#mainframe { + top: 5px; + left: 5px; + right: 5px; + bottom: 5px; +} + + + +/* modal */ +div.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + overflow: hidden; + -webkit-overflow-scrolling: touch; + outline: 0; + display: flex; + align-items: center; + justify-items: center; + justify-content: center; + align-content: center; + background-color: rgba(50,50,50,.3); + + + + > .modal-dialog { + background-clip: padding-box; + display: none; + max-width: calc(100vw - 1rem); + max-height: calc(100vh - 1rem); + -webkit-transform: translate(0,0); + -ms-transform: translate(0,0); + -o-transform: translate(0,0); + transform: translate(0,0); + position: relative; + + &.szfull { + width: calc(100vw - 5rem); + height: calc(100vh - 5rem); + } + + &.in { + display: block; + } + + &.fade { + + .out { + opacity: 0; + } + + .in { + opacity: 1; + } + } + + > .modal-close { + position: absolute; + top: -0.5rem; + right: -0.5rem; + content: 'X'; + height: 1.4rem; + width: 1.4rem; + color: #000; + z-index: 1; + border-radius: 50%; + padding: 0.5rem; + border: 1px solid #000; + display: block; + background: #FFFFFF url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iNTEycHgiIGlkPSJMYXllcl8xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgd2lkdGg9IjUxMnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48cGF0aCBkPSJNNDM3LjUsMzg2LjZMMzA2LjksMjU2bDEzMC42LTEzMC42YzE0LjEtMTQuMSwxNC4xLTM2LjgsMC01MC45Yy0xNC4xLTE0LjEtMzYuOC0xNC4xLTUwLjksMEwyNTYsMjA1LjFMMTI1LjQsNzQuNSAgYy0xNC4xLTE0LjEtMzYuOC0xNC4xLTUwLjksMGMtMTQuMSwxNC4xLTE0LjEsMzYuOCwwLDUwLjlMMjA1LjEsMjU2TDc0LjUsMzg2LjZjLTE0LjEsMTQuMS0xNC4xLDM2LjgsMCw1MC45ICBjMTQuMSwxNC4xLDM2LjgsMTQuMSw1MC45LDBMMjU2LDMwNi45bDEzMC42LDEzMC42YzE0LjEsMTQuMSwzNi44LDE0LjEsNTAuOSwwQzQ1MS41LDQyMy40LDQ1MS41LDQwMC42LDQzNy41LDM4Ni42eiIvPjwvc3ZnPg==') no-repeat center center/75% border-box; + cursor: pointer; + + @media(max-width: $break3b) { + height: 2rem; + width: 2rem; + } + } + + .invalid .modal-footer div.note_invalid { + display: inline-block; + } + + .modal-footer div.note_invalid { + display: none; + } + + > .modal-content { + position: relative; + background-color: #F5F5F5; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #999; + border: 1px solid rgba(0,0,0,.2); + border-radius: 0.4rem; + outline: 0; + -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5); + box-shadow: 0 3px 9px rgba(0,0,0,.5); + overflow: auto; + height: 100%; + max-height: calc(100vh - 1rem); + + + .modal-header.fix { + position: absolute; + top: 0; + left: 0; + } + + .modal-header, .modal-body, .modal-footer, .modal-note { + width: 100%; + display: block; + position: relative; + padding: 1rem; + + + div { + border-top: 1px solid #e5e5e5; + } + } + + .modal-body { + > .choicefrm { + padding: 1rem; + + > div { + display: block; + margin: 1rem; + + &:hover { + background-color: #EEE; + } + + &.btn.inactive { + cursor: not-allowed; + text-decoration: line-through; + } + } + } + + table { + .ilbtn{ + display: inline-block; + } + + &.fullgrid { + border-collapse: collapse; + + td, th { + padding: 0.1rem 0.5rem; + border: 1px solid #CCC; + } + + th { + font-weight: bolder; + border-bottom-width: 2px; + } + } + + &.fullwidth { + width: 100%; + } + } + } + + .modal-footer { + text-align: right; + + div.note_required { + float: left; + font-size: 0.7rem; + } + + div.note_invalid { + color: red; + font-size: 1rem; + float: left; + clear: both; + margin-top: 0.5rem; + } + } + + .modal-note { + &#dataprivacy { + font-size: 0.8rem; + } + } + + .frm { + &.c13 { + display: inline-flex; + vertical-align: top; + + &:first-child { + width: 30%; + } + + &:nth-child(n+2) { + width: 70%; + padding-left: 1.5rem; + } + } + } + } + } +} + + #oci_login { + #dbtn-forgotpw { + margin-top: 1rem; + float: left; + clear: both; + } + + .modal-footer { + min-height: 5.8rem; + } + } + + + button, .btn { + cursor: pointer; + border-radius: 0.28rem; + display: inline-block; + padding: 0.45rem 1rem 0.5rem 1rem; + margin-bottom: 0; + font-size: 1rem; + letter-spacing: #{0.05rem * 0.5}; + font-weight: 500; + line-height: 1.42857143; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + /*background-color: $oci_white;*/ + background-image: none; + border: 1px solid $oci_lightgrey; + @include noselect; + @include boxshadow; + + &.btn-primary { + background-color: $oci_main; + color: $oci_white; + } + + &.btn-sm { + border-radius: 0.28rem; + padding: 0.25rem 0.7rem 0.3rem 0.7rem; + font-size: 0.8rem; + letter-spacing: #{0.05rem * 0.3}; + } + } + /* forms */ +form, .form { + height: inherit; + width: inherit; + + span.ind_required { + color: red; + font-weight: 400; + padding-left: 5px; + padding-right: 5px; + } + + button, html input[type="button"], input[type="reset"], input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; + } + + button, select { + text-transform: none; + } + + textarea { + overflow: auto; + resize: vertical; + } + + label { + padding-right: 1.5rem; + display: inline-block; + box-sizing: content-box; + } + + + .form-body { + display: table; + width: 100%; + + @media(max-width: $break3) { + + &.stacked { + .form-group { + margin-bottom: 0.25rem; + display: block; + + .form-itm { + display: block; + width: 100%; + max-width: 100%; + padding-bottom: 0.1rem; + + &:first-child { + width: 100%; + } + } + } + } + } + + .form-group { + display: block; + margin-bottom: 1rem; + display: table-row; + + &.cgrp { + margin-top: 1.5rem; + } + + .form-itm { + display: table-cell; + vertical-align: top; + padding-bottom: 1rem; + + &:first-child { + width: 10%; + } + + > table { + width: 100%; + } + } + + .form-sep { + display: table-cell; + padding-top: 1rem; + border-top: 1px solid #e5e5e5; + height: 2px; + } + + .form-control { + display: block; + } + + input.form-control, select.form-control { + width: 100%; + } + + .input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; + + .input-group-text, .input-group-btn { + display: flex; + align-items: center; + padding: .375rem .75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.3rem; + + &.narrow { + padding-left: .375rem; + padding-right: .375rem; + } + } + + .input-group-btn { + cursor: pointer; + + &:hover { + background-color: #f1f3f5; + } + } + + > :not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + + > :not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + margin-left: -1px; + } + + > .form-control, > .form-select, > .form-set { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0; + } + + > .form-set { + .dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + text-align: left; + list-style: none; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0,0,0,.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); + box-shadow: 0 6px 12px rgba(0,0,0,.175); + + .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5 + } + + > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: 400; + line-height: 1.42857143; + color: #333; + white-space: nowrap; + + &:focus, &:hover { + color: #262626; + text-decoration: none; + background-color: #f5f5f5 + } + } + + + + > .active { + > a, > a:focus, > a:hover { + color: #fff; + text-decoration: none; + background-color: #337ab7; + outline: 0 + } + } + + > .disabled { + > a, > a:focus, > a:hover { + color: #777 + } + + > a:focus, > a:hover { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false) + } + } + } + + > .form-control { + border-radius: 0; + } + } + } + + + &.hd, > .hd { + display: none; + } + } + } + + textarea.form-control { + height: 5rem; + + &[rows] { + height: auto; + } + } + + + .form-control { + appearance: none; + display: block; + width: 100%; + height: 2.5rem; + padding: 0.5rem 0.8rem; + font-size: 1rem; + line-height: 1.42857143; + color: $oci_midgrey; + background-color: $oci_white; + background-image: none; + border: 1px solid #ccc; + border-radius: 0.3rem; + -webkit-box-shadow: inset 0 1px 1px $oci_black_75; + box-shadow: inset 0 1px 1px $oci_black_75; + -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; + box-sizing: border-box; + + + &:focus { + border-color: $oci_main; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px $oci_black_75,0 0 8px $oci_main_60; + box-shadow: inset 0 1px 1px $oci_black_75,0 0 8px $oci_main_60; + } + + &:invalid { + border-color: $oci_orange; + } + + &::-moz-placeholder, &:-ms-input-placeholder, &::-webkit-input-placeholder { + color: $oci_darkgrey; + opacity: 1; + } + + &::-ms-expand { + background-color: transparent; + border: 0; + } + + &[size] { + height: auto; + } + + &[disabled], + &[readonly], + fieldset[disabled] & { + background-color: #eee; + opacity: 1; + } + + &[disabled], + fieldset[disabled] & { + cursor: not-allowed; + } + } +} + /* pace */ + body.div.pgb { + -webkit-pointer-events: none; + pointer-events: none; + @include noselect; + + .pgb-progress { + background: #1ab394; + position: fixed; + z-index: 2040; + top: 0; + right: 100%; + width: 100%; + height: 2px; + + &.inactive { + display: none; + } + } + } + + + +/* #sidebar { + position: absolute; + left: 0; + top: 0; + width: 2.3rem; + bottom: 0; + z-index: 5; + background-color: $oci_main; + + &:empty{ + display: none; + } + + &.hd { + width: 0; + width: 0 !important; + + ~ #contentframe, ~ #listframe { + left: 0; + } + } + }*/ + +#topbar { + display: block; + position: absolute; + background-color: $oci_main; + left: 0; + right: 0; + min-height: 2.3rem; + height: auto; + + &.hd { + height: 0; + height: 0 !important; + min-height: 0; + overflow: hidden; + + ~ #contentframe, ~ #listframe { + top: 0; + } + } + + ~ #contentframe, ~ #listframe { + top: 2.3rem; + } + + z-index: 4; + +/* > *:first-child { + margin-left: 1rem; + }*/ + + > nav { + padding-top: 0; + } +} + +#contentframe { + position: absolute; + overflow: auto; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 2; +} + +#listframe { + position: absolute; + overflow: auto; + top: 2.3rem; + left: 0; + right: auto; + bottom: 0; + min-width: 20%; + max-width: 100%; + z-index: 3; + background-color: #FFF; + border-right: 1px solid $oci_main; + transition: width 1s, min-width 1s; + + &.hd:not(.fix) { + min-width: 0; + width: 0; + overflow: hidden; + } +} +#sidebar ~ div { + left: 2.3rem; +} +body > .timer { + position: fixed; + bottom: 3px; + height: 1px; + border-bottom: 2px solid yellow; + transition: width linear 1s; + left: 0; +} \ No newline at end of file diff --git a/Fuchs/css/intranet/oci_glyphicons.scss b/Fuchs/css/intranet/oci_glyphicons.scss new file mode 100644 index 0000000..7b7a2df --- /dev/null +++ b/Fuchs/css/intranet/oci_glyphicons.scss @@ -0,0 +1,1065 @@ +@font-face { + font-family: 'Glyphicons Halflings'; + src: url(/fts/glyphicons-halflings-regular.eot); + src: url(/fts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(/fts/glyphicons-halflings-regular.woff2) format('woff2'),url(/fts/glyphicons-halflings-regular.woff) format('woff'),url(/fts/glyphicons-halflings-regular.ttf) format('truetype'),url(/fts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg') +} + +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: 400; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale +} + +.glyphicon-asterisk:before { + content: "\002a" +} + +.glyphicon-plus:before { + content: "\002b" +} + +.glyphicon-eur:before, .glyphicon-euro:before { + content: "\20ac" +} + +.glyphicon-minus:before { + content: "\2212" +} + +.glyphicon-cloud:before { + content: "\2601" +} + +.glyphicon-envelope:before { + content: "\2709" +} + +.glyphicon-pencil:before { + content: "\270f" +} + +.glyphicon-glass:before { + content: "\e001" +} + +.glyphicon-music:before { + content: "\e002" +} + +.glyphicon-search:before { + content: "\e003" +} + +.glyphicon-heart:before { + content: "\e005" +} + +.glyphicon-star:before { + content: "\e006" +} + +.glyphicon-star-empty:before { + content: "\e007" +} + +.glyphicon-user:before { + content: "\e008" +} + +.glyphicon-film:before { + content: "\e009" +} + +.glyphicon-th-large:before { + content: "\e010" +} + +.glyphicon-th:before { + content: "\e011" +} + +.glyphicon-th-list:before { + content: "\e012" +} + +.glyphicon-ok:before { + content: "\e013" +} + +.glyphicon-remove:before { + content: "\e014" +} + +.glyphicon-zoom-in:before { + content: "\e015" +} + +.glyphicon-zoom-out:before { + content: "\e016" +} + +.glyphicon-off:before { + content: "\e017" +} + +.glyphicon-signal:before { + content: "\e018" +} + +.glyphicon-cog:before { + content: "\e019" +} + +.glyphicon-trash:before { + content: "\e020" +} + +.glyphicon-home:before { + content: "\e021" +} + +.glyphicon-file:before { + content: "\e022" +} + +.glyphicon-time:before { + content: "\e023" +} + +.glyphicon-road:before { + content: "\e024" +} + +.glyphicon-download-alt:before { + content: "\e025" +} + +.glyphicon-download:before { + content: "\e026" +} + +.glyphicon-upload:before { + content: "\e027" +} + +.glyphicon-inbox:before { + content: "\e028" +} + +.glyphicon-play-circle:before { + content: "\e029" +} + +.glyphicon-repeat:before { + content: "\e030" +} + +.glyphicon-refresh:before { + content: "\e031" +} + +.glyphicon-list-alt:before { + content: "\e032" +} + +.glyphicon-lock:before { + content: "\e033" +} + +.glyphicon-flag:before { + content: "\e034" +} + +.glyphicon-headphones:before { + content: "\e035" +} + +.glyphicon-volume-off:before { + content: "\e036" +} + +.glyphicon-volume-down:before { + content: "\e037" +} + +.glyphicon-volume-up:before { + content: "\e038" +} + +.glyphicon-qrcode:before { + content: "\e039" +} + +.glyphicon-barcode:before { + content: "\e040" +} + +.glyphicon-tag:before { + content: "\e041" +} + +.glyphicon-tags:before { + content: "\e042" +} + +.glyphicon-book:before { + content: "\e043" +} + +.glyphicon-bookmark:before { + content: "\e044" +} + +.glyphicon-print:before { + content: "\e045" +} + +.glyphicon-camera:before { + content: "\e046" +} + +.glyphicon-font:before { + content: "\e047" +} + +.glyphicon-bold:before { + content: "\e048" +} + +.glyphicon-italic:before { + content: "\e049" +} + +.glyphicon-text-height:before { + content: "\e050" +} + +.glyphicon-text-width:before { + content: "\e051" +} + +.glyphicon-align-left:before { + content: "\e052" +} + +.glyphicon-align-center:before { + content: "\e053" +} + +.glyphicon-align-right:before { + content: "\e054" +} + +.glyphicon-align-justify:before { + content: "\e055" +} + +.glyphicon-list:before { + content: "\e056" +} + +.glyphicon-indent-left:before { + content: "\e057" +} + +.glyphicon-indent-right:before { + content: "\e058" +} + +.glyphicon-facetime-video:before { + content: "\e059" +} + +.glyphicon-picture:before { + content: "\e060" +} + +.glyphicon-map-marker:before { + content: "\e062" +} + +.glyphicon-adjust:before { + content: "\e063" +} + +.glyphicon-tint:before { + content: "\e064" +} + +.glyphicon-edit:before { + content: "\e065" +} + +.glyphicon-share:before { + content: "\e066" +} + +.glyphicon-check:before { + content: "\e067" +} + +.glyphicon-move:before { + content: "\e068" +} + +.glyphicon-step-backward:before { + content: "\e069" +} + +.glyphicon-fast-backward:before { + content: "\e070" +} + +.glyphicon-backward:before { + content: "\e071" +} + +.glyphicon-play:before { + content: "\e072" +} + +.glyphicon-pause:before { + content: "\e073" +} + +.glyphicon-stop:before { + content: "\e074" +} + +.glyphicon-forward:before { + content: "\e075" +} + +.glyphicon-fast-forward:before { + content: "\e076" +} + +.glyphicon-step-forward:before { + content: "\e077" +} + +.glyphicon-eject:before { + content: "\e078" +} + +.glyphicon-chevron-left:before { + content: "\e079" +} + +.glyphicon-chevron-right:before { + content: "\e080" +} + +.glyphicon-plus-sign:before { + content: "\e081" +} + +.glyphicon-minus-sign:before { + content: "\e082" +} + +.glyphicon-remove-sign:before { + content: "\e083" +} + +.glyphicon-ok-sign:before { + content: "\e084" +} + +.glyphicon-question-sign:before { + content: "\e085" +} + +.glyphicon-info-sign:before { + content: "\e086" +} + +.glyphicon-screenshot:before { + content: "\e087" +} + +.glyphicon-remove-circle:before { + content: "\e088" +} + +.glyphicon-ok-circle:before { + content: "\e089" +} + +.glyphicon-ban-circle:before { + content: "\e090" +} + +.glyphicon-arrow-left:before { + content: "\e091" +} + +.glyphicon-arrow-right:before { + content: "\e092" +} + +.glyphicon-arrow-up:before { + content: "\e093" +} + +.glyphicon-arrow-down:before { + content: "\e094" +} + +.glyphicon-share-alt:before { + content: "\e095" +} + +.glyphicon-resize-full:before { + content: "\e096" +} + +.glyphicon-resize-small:before { + content: "\e097" +} + +.glyphicon-exclamation-sign:before { + content: "\e101" +} + +.glyphicon-gift:before { + content: "\e102" +} + +.glyphicon-leaf:before { + content: "\e103" +} + +.glyphicon-fire:before { + content: "\e104" +} + +.glyphicon-eye-open:before { + content: "\e105" +} + +.glyphicon-eye-close:before { + content: "\e106" +} + +.glyphicon-warning-sign:before { + content: "\e107" +} + +.glyphicon-plane:before { + content: "\e108" +} + +.glyphicon-calendar:before { + content: "\e109" +} + +.glyphicon-random:before { + content: "\e110" +} + +.glyphicon-comment:before { + content: "\e111" +} + +.glyphicon-magnet:before { + content: "\e112" +} + +.glyphicon-chevron-up:before { + content: "\e113" +} + +.glyphicon-chevron-down:before { + content: "\e114" +} + +.glyphicon-retweet:before { + content: "\e115" +} + +.glyphicon-shopping-cart:before { + content: "\e116" +} + +.glyphicon-folder-close:before { + content: "\e117" +} + +.glyphicon-folder-open:before { + content: "\e118" +} + +.glyphicon-resize-vertical:before { + content: "\e119" +} + +.glyphicon-resize-horizontal:before { + content: "\e120" +} + +.glyphicon-hdd:before { + content: "\e121" +} + +.glyphicon-bullhorn:before { + content: "\e122" +} + +.glyphicon-bell:before { + content: "\e123" +} + +.glyphicon-certificate:before { + content: "\e124" +} + +.glyphicon-thumbs-up:before { + content: "\e125" +} + +.glyphicon-thumbs-down:before { + content: "\e126" +} + +.glyphicon-hand-right:before { + content: "\e127" +} + +.glyphicon-hand-left:before { + content: "\e128" +} + +.glyphicon-hand-up:before { + content: "\e129" +} + +.glyphicon-hand-down:before { + content: "\e130" +} + +.glyphicon-circle-arrow-right:before { + content: "\e131" +} + +.glyphicon-circle-arrow-left:before { + content: "\e132" +} + +.glyphicon-circle-arrow-up:before { + content: "\e133" +} + +.glyphicon-circle-arrow-down:before { + content: "\e134" +} + +.glyphicon-globe:before { + content: "\e135" +} + +.glyphicon-wrench:before { + content: "\e136" +} + +.glyphicon-tasks:before { + content: "\e137" +} + +.glyphicon-filter:before { + content: "\e138" +} + +.glyphicon-briefcase:before { + content: "\e139" +} + +.glyphicon-fullscreen:before { + content: "\e140" +} + +.glyphicon-dashboard:before { + content: "\e141" +} + +.glyphicon-paperclip:before { + content: "\e142" +} + +.glyphicon-heart-empty:before { + content: "\e143" +} + +.glyphicon-link:before { + content: "\e144" +} + +.glyphicon-phone:before { + content: "\e145" +} + +.glyphicon-pushpin:before { + content: "\e146" +} + +.glyphicon-usd:before { + content: "\e148" +} + +.glyphicon-gbp:before { + content: "\e149" +} + +.glyphicon-sort:before { + content: "\e150" +} + +.glyphicon-sort-by-alphabet:before { + content: "\e151" +} + +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152" +} + +.glyphicon-sort-by-order:before { + content: "\e153" +} + +.glyphicon-sort-by-order-alt:before { + content: "\e154" +} + +.glyphicon-sort-by-attributes:before { + content: "\e155" +} + +.glyphicon-sort-by-attributes-alt:before { + content: "\e156" +} + +.glyphicon-unchecked:before { + content: "\e157" +} + +.glyphicon-expand:before { + content: "\e158" +} + +.glyphicon-collapse-down:before { + content: "\e159" +} + +.glyphicon-collapse-up:before { + content: "\e160" +} + +.glyphicon-log-in:before { + content: "\e161" +} + +.glyphicon-flash:before { + content: "\e162" +} + +.glyphicon-log-out:before { + content: "\e163" +} + +.glyphicon-new-window:before { + content: "\e164" +} + +.glyphicon-record:before { + content: "\e165" +} + +.glyphicon-save:before { + content: "\e166" +} + +.glyphicon-open:before { + content: "\e167" +} + +.glyphicon-saved:before { + content: "\e168" +} + +.glyphicon-import:before { + content: "\e169" +} + +.glyphicon-export:before { + content: "\e170" +} + +.glyphicon-send:before { + content: "\e171" +} + +.glyphicon-floppy-disk:before { + content: "\e172" +} + +.glyphicon-floppy-saved:before { + content: "\e173" +} + +.glyphicon-floppy-remove:before { + content: "\e174" +} + +.glyphicon-floppy-save:before { + content: "\e175" +} + +.glyphicon-floppy-open:before { + content: "\e176" +} + +.glyphicon-credit-card:before { + content: "\e177" +} + +.glyphicon-transfer:before { + content: "\e178" +} + +.glyphicon-cutlery:before { + content: "\e179" +} + +.glyphicon-header:before { + content: "\e180" +} + +.glyphicon-compressed:before { + content: "\e181" +} + +.glyphicon-earphone:before { + content: "\e182" +} + +.glyphicon-phone-alt:before { + content: "\e183" +} + +.glyphicon-tower:before { + content: "\e184" +} + +.glyphicon-stats:before { + content: "\e185" +} + +.glyphicon-sd-video:before { + content: "\e186" +} + +.glyphicon-hd-video:before { + content: "\e187" +} + +.glyphicon-subtitles:before { + content: "\e188" +} + +.glyphicon-sound-stereo:before { + content: "\e189" +} + +.glyphicon-sound-dolby:before { + content: "\e190" +} + +.glyphicon-sound-5-1:before { + content: "\e191" +} + +.glyphicon-sound-6-1:before { + content: "\e192" +} + +.glyphicon-sound-7-1:before { + content: "\e193" +} + +.glyphicon-copyright-mark:before { + content: "\e194" +} + +.glyphicon-registration-mark:before { + content: "\e195" +} + +.glyphicon-cloud-download:before { + content: "\e197" +} + +.glyphicon-cloud-upload:before { + content: "\e198" +} + +.glyphicon-tree-conifer:before { + content: "\e199" +} + +.glyphicon-tree-deciduous:before { + content: "\e200" +} + +.glyphicon-cd:before { + content: "\e201" +} + +.glyphicon-save-file:before { + content: "\e202" +} + +.glyphicon-open-file:before { + content: "\e203" +} + +.glyphicon-level-up:before { + content: "\e204" +} + +.glyphicon-copy:before { + content: "\e205" +} + +.glyphicon-paste:before { + content: "\e206" +} + +.glyphicon-alert:before { + content: "\e209" +} + +.glyphicon-equalizer:before { + content: "\e210" +} + +.glyphicon-king:before { + content: "\e211" +} + +.glyphicon-queen:before { + content: "\e212" +} + +.glyphicon-pawn:before { + content: "\e213" +} + +.glyphicon-bishop:before { + content: "\e214" +} + +.glyphicon-knight:before { + content: "\e215" +} + +.glyphicon-baby-formula:before { + content: "\e216" +} + +.glyphicon-tent:before { + content: "\26fa" +} + +.glyphicon-blackboard:before { + content: "\e218" +} + +.glyphicon-bed:before { + content: "\e219" +} + +.glyphicon-apple:before { + content: "\f8ff" +} + +.glyphicon-erase:before { + content: "\e221" +} + +.glyphicon-hourglass:before { + content: "\231b" +} + +.glyphicon-lamp:before { + content: "\e223" +} + +.glyphicon-duplicate:before { + content: "\e224" +} + +.glyphicon-piggy-bank:before { + content: "\e225" +} + +.glyphicon-scissors:before { + content: "\e226" +} + +.glyphicon-bitcoin:before { + content: "\e227" +} + +.glyphicon-btc:before { + content: "\e227" +} + +.glyphicon-xbt:before { + content: "\e227" +} + +.glyphicon-yen:before { + content: "\00a5" +} + +.glyphicon-jpy:before { + content: "\00a5" +} + +.glyphicon-ruble:before { + content: "\20bd" +} + +.glyphicon-rub:before { + content: "\20bd" +} + +.glyphicon-scale:before { + content: "\e230" +} + +.glyphicon-ice-lolly:before { + content: "\e231" +} + +.glyphicon-ice-lolly-tasted:before { + content: "\e232" +} + +.glyphicon-education:before { + content: "\e233" +} + +.glyphicon-option-horizontal:before { + content: "\e234" +} + +.glyphicon-option-vertical:before { + content: "\e235" +} + +.glyphicon-menu-hamburger:before { + content: "\e236" +} + +.glyphicon-modal-window:before { + content: "\e237" +} + +.glyphicon-oil:before { + content: "\e238" +} + +.glyphicon-grain:before { + content: "\e239" +} + +.glyphicon-sunglasses:before { + content: "\e240" +} + +.glyphicon-text-size:before { + content: "\e241" +} + +.glyphicon-text-color:before { + content: "\e242" +} + +.glyphicon-text-background:before { + content: "\e243" +} + +.glyphicon-object-align-top:before { + content: "\e244" +} + +.glyphicon-object-align-bottom:before { + content: "\e245" +} + +.glyphicon-object-align-horizontal:before { + content: "\e246" +} + +.glyphicon-object-align-left:before { + content: "\e247" +} + +.glyphicon-object-align-vertical:before { + content: "\e248" +} + +.glyphicon-object-align-right:before { + content: "\e249" +} + +.glyphicon-triangle-right:before { + content: "\e250" +} + +.glyphicon-triangle-left:before { + content: "\e251" +} + +.glyphicon-triangle-bottom:before { + content: "\e252" +} + +.glyphicon-triangle-top:before { + content: "\e253" +} + +.glyphicon-console:before { + content: "\e254" +} + +.glyphicon-superscript:before { + content: "\e255" +} + +.glyphicon-subscript:before { + content: "\e256" +} + +.glyphicon-menu-left:before { + content: "\e257" +} + +.glyphicon-menu-right:before { + content: "\e258" +} + +.glyphicon-menu-down:before { + content: "\e259" +} + +.glyphicon-menu-up:before { + content: "\e260" +} diff --git a/Fuchs/css/intranet/oci_login.scss b/Fuchs/css/intranet/oci_login.scss new file mode 100644 index 0000000..8f40ad8 --- /dev/null +++ b/Fuchs/css/intranet/oci_login.scss @@ -0,0 +1,3 @@ +#oci_login { + width: 600px; +} diff --git a/Fuchs/css/intranet/oci_main.scss b/Fuchs/css/intranet/oci_main.scss new file mode 100644 index 0000000..3f52155 --- /dev/null +++ b/Fuchs/css/intranet/oci_main.scss @@ -0,0 +1,6 @@ +table.sortable, tbody.sortable { + > tr.sortactive > td { + background-color: lightyellow !important; + box-shadow: 1px 1px 2px rgba(50,50,50,.3); + } +} diff --git a/Fuchs/css/intranet/oci_nav.scss b/Fuchs/css/intranet/oci_nav.scss new file mode 100644 index 0000000..ff70115 --- /dev/null +++ b/Fuchs/css/intranet/oci_nav.scss @@ -0,0 +1,490 @@ + +#mainmenu { + border-bottom: 1px solid #CCC; +} + +/* nav */ +nav { + position: relative; + left: 0; + width: 100%; + display: block; + z-index: 10000; + border-radius: 0; + min-height: $oci_header; + height: $oci_header; + max-height: $oci_header; + padding-left: 0; + margin-bottom: 0; + list-style: none; + color: $oci_light; + background-color: $page_bg; + + &.nv { + height: 100%; + max-height: 100%; + width: 2.3rem; + max-width: 2.3rem; + + @media (max-width:$break3) { + padding-top: $oci_header; + + > ul { + display: none; + } + + &.vis, &.avis { + + ul { + } + } + } + + ul { + min-height: 0; + min-width: 100%; + + > li { + height: auto; + width: 100%; + padding-top: 0; + padding-bottom: 0; + + a { + width: 100%; + height: auto; + padding: 1rem 0; + + span.ico { + width: 100%; + height: 2.3rem; + } + } + } + } + + > ul { + height: auto; + } + } + + #logo { + background: url('') center center/contain no-repeat transparent; + background-image: $logo_ico; + margin-right: 10px; + height: 1.9rem; + width: 1.9rem; + } + + + .nav-header { + float: left; + position: relative; + padding-left: 0; + margin: 0 0 0 0; + list-style: none; + min-height: 100%; + + > div { + float: left; + padding: 0.4rem 1rem 0 0; + line-height: 1.4rem; + height: 100%; + } + + > button, > div.button { + float: left; + height: 100%; + padding: 0.2rem 0.8rem; + background: transparent; + color: inherit; + margin-right: 1.1rem; + box-shadow: none; + } + + .brand, .activemodule { + cursor: default; + @include noselect; + } + + .activemodule { + color: #fff240; + overflow: hidden; + } + + @media (min-width:#{$break3 + 1px}) { + #mmmb { + display: none !important; + pointer-events: none; + } + } + + @media (max-width:$break3) { + width: 100%; + position: absolute; + top: 0; + left: 0; + + #mmmb { + float: right; + margin-right: 0; + } + } + + @media (min-width:#{$break3b + 1px}) { + .activemodule { + max-width: calc(100% - 46px); + font-size: 16px + } + + .brand { + display: inline-block; + } + } + + @media (max-width:$break3b) { + .brand { + /*max-width: 115px; + overflow: hidden*/ + display: none; + } + + .activemodule { + max-width: calc(100% - 190px); + font-size: 16px; + line-height: 28px; + padding: 0 + } + } + } + + @media (min-width:#{$break3 + 1px}) { + + + ul { + + &.nav-right { + float: right !important; + + li.dropdown.submenu > ul { + left: auto; + right: 100%; + right: calc(100% + 0.1rem); + } + } + + li[role=separator] { + @include noselect; + pointer-events: none; + + &::before { + content: '|'; + cursor: default; + padding: 0.4rem 1rem 0 1rem; + line-height: 1.4rem; + height: 100%; + display: block; + font-weight: 400; + white-space: nowrap; + min-height: inherit; + @include noselect; + pointer-events: none; + } + } + } + } + + @media (max-width:$break3) { + padding-top: $oci_header; + + &.ctxt > ul { + width: 100%; + + > li { + &[role=lbl] { + max-width: 55vw; + white-space: nowrap; + overflow: hidden; + font-size: 85%; + } + + > a { + padding: 0.4rem 0.75rem 0 0.75rem; + + &.fbtn { + padding: 0.4rem 0.75rem 0 0.75rem; + } + + > span { + display: none; + + &.ico, &.glyphicon, &.caret { + display: inline-block; + } + } + } + } + } + + &#mainmenu { + &.vis { + > ul { + display: block; + } + } + + > ul { + padding-bottom: 1rem; + display: none; /* initially hidden */ + width: 100%; + float: none; + } + } + + &.vis { + > ul { + height: auto; + + li { + width: 100%; + float: none; + + &[role=separator] { + padding: 0 1rem; + @include noselect; + pointer-events: none; + margin: 0.3rem 0; + + &::before { + content: ''; + cursor: default; + position: relative; + width: 100%; + height: 100%; + border-bottom: 1px solid $oci_light; + display: block; + } + } + } + } + } + } + + > ul { + height: 100%; + float: left; + } + + ul { + position: relative; + padding-left: 0; + margin: 0 0 0 0; + list-style: none; + min-height: 100%; + background-color: inherit; + + > li { + list-style: none; + float: left; + position: relative; + display: block; + padding-left: 0; + margin-bottom: 0; + height: 100%; + + &.ar { + float: right; + } + + &[role=lbl], &[role=info] { + color: #fff240; + padding: 0.5rem 0.5rem 0 0.5rem; + } + + a { + @include noselect; + cursor: pointer; + padding: 0.4rem 1rem 0 1rem; + line-height: 1.4rem; + height: 100%; + display: block; + font-weight: 400; + white-space: nowrap; + min-height: inherit; + + span + .caret, span + span { + margin-left: 0.5rem; + } + + span.ico { + height: 1.1rem; + width: 1.1rem; + background-color: transparent; + background-repeat: no-repeat; + background-position: center center; + background-size: contain; + background-clip: content-box; + display: inline-block; + padding: 0.15rem; + } + + > .caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-top: 4px solid\9; + border-right: 4px solid transparent; + border-left: 4px solid transparent + } + + > .glyphicon { + font-size: 1.1rem; + } + + &[role=button] { + &::after { + content: ''; + position: absolute; + top: 0.2rem; + left: 0.1rem; + right: 0.1rem; + bottom: 0; + border-top: 1px solid transparent; + border-left: 1px solid transparent; + border-right: 1px solid transparent; + border-bottom: none; + border-top-left-radius: 0.2rem; + border-top-right-radius: 0.2rem; + } + + &:hover::after, &.fbtn::after { + border-color: $oci_light_60; + border-top-left-radius: 0.2rem; + border-top-right-radius: 0.2rem; + } + } + + &.disabled { + cursor: default; + opacity: 0.5; + } + } + + &.dropdown { + position: relative; + + &.submenu { + + > ul { + position: absolute; + top: 0; + left: 100%; + left: calc(100% + 0.1rem); + right: auto; + min-height: inherit; + } + } + + > ul { + display: none; + + > li { + min-height: $oci_header; + float: none; + display: block; + } + } + + &.open { + > ul { + display: block; + } + + > a { + background-color: $oci_light_60; + color: $oci_white; + } + + @media (max-width:$break3) { + > ul { + position: fixed; + top: #{2.8rem + 2.3rem}; + top: calc(#{2.8rem + 2.3rem} - 2px); + left: 0.5rem; + right: 0.5rem; + left: calc(0.5rem - 1px); + right: calc(0.5rem - 1px); + height: auto; + min-height: 25%; + } + } + } + } + } + + + + &.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 5px 0; + margin: 2px 0 0; + font-size: 1rem; + text-align: left; + background-color: $oci_main; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0,0,0,.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); + box-shadow: 0 6px 12px rgba(0,0,0,.175); + + &.right { + right: 0; + left: auto; + } + + li { + &[role=separator], &.divider { + height: 1px; + margin: 0.25rem 0 0.7rem 0; + overflow: hidden; + background-color: #e5e5e5; + min-height: 1px; + max-height: 1px; + @include noselect; + } + + &[role=lbl], &[role=info], &.info { + color: $oci_lightyellow; + @include noselect; + } + + > span { + padding: 0.4rem 1rem 0 0.4rem; + display: inline-block; + } + + a[role="button"]::after { + border-left: none; + border-right: none; + border-top-left-radius: 0; + } + } + } +} + +} + +span.sbc { + background-image: url('/ct/img/wave_v.svg'); +} diff --git a/Fuchs/css/intranet/oci_variables.scss b/Fuchs/css/intranet/oci_variables.scss new file mode 100644 index 0000000..a7cf410 --- /dev/null +++ b/Fuchs/css/intranet/oci_variables.scss @@ -0,0 +1,55 @@ + + +/* basics */ +$fontsize: 14px; +$fontfamily: 'Arial'; +$logo_ico: url(''); + +/* Color SCHEME */ + +$oci_main: rgb(131, 150, 189); /* #8396bd */ + $oci_main_60: rgba(131, 150, 189, 0.6); +$oci_light: rgb(227,231,231); /* #e3e6e6 */ + $oci_light_60: rgba(227,231,231,0.6); +$oci_white: rgb(255,255,255); /* #ffffff */ +$oci_darkgrey: rgb(38,38,38); /* #262626 */ +$oci_midgrey: rgb(82, 82, 82); /* #262626 */ +$oci_lightgrey: rgb(171,171,171); /* #e3e6e6 */ +$oci_orange: rgb(218, 102, 0); +$oci_yellow: rgb(255, 200, 1); /* #FFC801 */ +$oci_lightyellow: rgb(255, 255, 74); /* #ffff4a */ + +$oci_black: rgb(0,0,0); + $oci_black_75: rgba(0,0,0,.075); + + +$page_bg: $oci_main; + + + +/* media breaks */ + +$break1: 1270px; +$break2: 800px; +$break2a: 798px; +$break3: 796px; +$break3a: 700px; +$break3b: 550px; +$break4: 361px; + + +/* other */ +$oci_header: 2.3rem; + + +/* mixin */ +@mixin noselect { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +@mixin boxshadow { + -webkit-box-shadow: 1px 1px 3px rgba(50,50,50,.3); + box-shadow: 1px 1px 3px rgba(50,50,50,.3); +} \ No newline at end of file diff --git a/Fuchs/favicon.ico b/Fuchs/favicon.ico new file mode 100644 index 0000000..670d45e Binary files /dev/null and b/Fuchs/favicon.ico differ diff --git a/Fuchs/gulpfile.js b/Fuchs/gulpfile.js new file mode 100644 index 0000000..acc4ff7 --- /dev/null +++ b/Fuchs/gulpfile.js @@ -0,0 +1,377 @@ +"use strict"; + +const gulp = require("gulp"); +const sass = require("gulp-sass")(require("sass")); +const less = require("gulp-less"); +const concat = require("gulp-concat"); +const cleanCSS = require("gulp-clean-css"); +const htmlmin = require("gulp-htmlmin"); +const terser = require("gulp-terser"); +const gulpif = require("gulp-if"); +const merge2 = require("merge2"); + +const copyconfig = require("./copyconfig.json"); +const path = require("path"); +const fs = require("fs"); +const { Transform, Writable } = require("stream"); + +// Node pipeline (promise-based) +let pipeline; +try { + ({ pipeline } = require("stream/promises")); +} catch { + pipeline = require("stream").promises.pipeline; +} + +// -------------------------- +// Config loaders +// -------------------------- +function loadBundleConfig() { + delete require.cache[require.resolve("./bdlconfig.json")]; + return require("./bdlconfig.json"); +} + +const terserOptions = { + parse: { ecma: 2020 }, + compress: { ecma: 2020 }, + mangle: true, + output: { ecma: 2020 }, +}; + +const regex = { + css: /\.css$/i, + html: /\.(html|htm)$/i, + js: /\.js$/i, +}; + +// -------------------------- +// Helpers +// -------------------------- +function safeUnlink(filePath) { + try { + if (fs.existsSync(filePath)) { + fs.unlinkSync(filePath); + console.log("Deleted:", filePath); + } + } catch (err) { + console.warn("Could not delete file:", filePath, "-", err.message); + } +} + +function handleTerserError(err) { + console.error("========================================"); + console.error("TERSER ERROR:", err && err.message ? err.message : err); + if (err && (err.filename || err.fileName)) console.error("File:", err.filename || err.fileName); + if (err && (err.line != null || err.col != null)) console.error("Line:", err.line, "Col:", err.col); + console.error(String(err)); + console.error("========================================"); + this.emit("end"); +} + +/** + * Safe, non-hanging replacement for gulp-preservetime. + * Use AFTER gulp.dest(). + */ +function preservetimeSafe() { + return new Transform({ + objectMode: true, + transform(file, _enc, cb) { + try { + if (!file || !file.path || !file.stat) return cb(null, file); + if (typeof file.isDirectory === "function" && file.isDirectory()) return cb(null, file); + + const atime = + file.stat.atime instanceof Date ? file.stat.atime : new Date(file.stat.atimeMs ?? Date.now()); + const mtime = + file.stat.mtime instanceof Date ? file.stat.mtime : new Date(file.stat.mtimeMs ?? Date.now()); + + fs.utimes(file.path, atime, mtime, () => cb(null, file)); + } catch (_e) { + cb(null, file); + } + }, + }); +} + +function logSink(prefix) { + return new Writable({ + objectMode: true, + write(file, _enc, cb) { + try { + if (file && file.path) { + const rel = path.relative(process.cwd(), file.path); + console.log(prefix + rel); + } + } catch (_e) { } + cb(); + }, + }); +} + +function getBundles(regexPattern) { + const bundleconfig = loadBundleConfig(); + return bundleconfig.filter((bundle) => regexPattern.test(bundle.outputFileName)); +} + +function normalizeRel(p) { + return String(p || "").replace(/\//g, "|").replace(/\\/g, "|"); +} + +// Normalize slashes for Windows friendliness (outputFileName uses forward slashes) +function normalizePath(p) { + return String(p || "").replace(/\//g, path.sep); +} + +// Make watch list more complete for SCSS: include likely include roots. +// (Safe: only affects watch mode, not build output.) +function inferScssWatchGlobs(bundle) { + const inputs = (bundle.inputFiles || []).slice(); + const scss = inputs.filter((f) => /\.s[ac]ss$/i.test(f)); + if (scss.length === 0) return []; + + const dirSet = new Set(); + for (const f of scss) { + const d = path.dirname(normalizePath(f)); + if (d && d !== ".") dirSet.add(d); + } + + // Watch all scss/sass partials and imports under those folders. + // This catches changes to partials that aren't explicitly listed in bdlconfig.json. + return Array.from(dirSet).map((d) => path.join(d, "**", "*.s[ac]ss")); +} + +// -------------------------- +// COPY (separate task) +// -------------------------- +gulp.task("copy", async () => { + const jobs = []; + for (const cpy of copyconfig) { + jobs.push( + pipeline(gulp.src(cpy.src, { allowEmpty: true }), gulp.dest(cpy.dest), preservetimeSafe()) + ); + } + await Promise.all(jobs); +}); + +// -------------------------- +// JS +// -------------------------- +gulp.task("min:js", async () => { + for (const bundle of getBundles(regex.js)) { + const minify = typeof (bundle.minify || {}).enabled === "boolean" ? bundle.minify.enabled : true; + + const inputs = (bundle.inputFiles || []).slice(); + const toMinifyFiles = (bundle.inputFiles_tominify || []).slice(); + + const outNorm = normalizePath(bundle.outputFileName); + const outputDir = path.dirname(outNorm); + const outputFile = path.basename(outNorm); + + console.log("Bundle:", bundle.outputFileName, "| Minify:", minify, "| Inputs:", inputs.length + toMinifyFiles.length); + + if (minify === true) { + const allInputs = inputs.concat(toMinifyFiles); + const nonMinFile = outputFile.includes(".min.") ? outputFile.replace(".min.", ".") : outputFile; + const minFile = outputFile.includes(".min.") ? outputFile : outputFile.replace(/\.js$/i, ".min.js"); + + safeUnlink(path.join(outputDir, nonMinFile)); + safeUnlink(path.join(outputDir, minFile)); + + await pipeline( + gulp.src(allInputs, { base: ".", allowEmpty: false }), + concat(nonMinFile), + gulp.dest(outputDir), + logSink("Non-Minified: ") + ); + + await pipeline( + gulp.src(allInputs, { base: ".", allowEmpty: false }), + concat(minFile), + terser(terserOptions).on("error", handleTerserError), + gulp.dest(outputDir), + logSink("Minified: ") + ); + } else { + safeUnlink(path.join(outputDir, outputFile)); + + // Build source streams separately to avoid anymatch index confusion + // when negated globs and singular paths are mixed in one gulp.src call + const srcStreams = []; + if (inputs.length > 0) { + srcStreams.push(gulp.src(inputs, { base: ".", allowEmpty: false })); + } + if (toMinifyFiles.length > 0) { + srcStreams.push( + gulp.src(toMinifyFiles, { base: ".", allowEmpty: false }) + .pipe(terser(terserOptions).on("error", handleTerserError)) + ); + } + + const merged = srcStreams.length === 1 ? srcStreams[0] : merge2(srcStreams); + + await pipeline( + merged, + concat(outputFile), + gulp.dest(outputDir), + logSink("Bundled: ") + ); + } + } +}); + +// -------------------------- +// CSS source builder +// IMPORTANT: the intermediate concat names MUST NOT start with "_" (gulp-sass ignores those) +// -------------------------- +function getCssSourceAndSteps(bundle) { + const inputs = (bundle.inputFiles || []).slice(); + + const scssFiles = inputs.filter((f) => /\.s[ac]ss$/i.test(f)); + const lessFiles = inputs.filter((f) => /\.less$/i.test(f)); + const cssFiles = inputs.filter((f) => /\.css$/i.test(f) && !/\.s[ac]ss$/i.test(f)); + + const srcOpts = { base: ".", allowEmpty: false }; + + // Make Sass FAIL the build (no sass.logError swallowing) + if (scssFiles.length && !lessFiles.length && !cssFiles.length) { + return { + src: gulp.src(scssFiles, srcOpts), + steps: [concat("bundle.scss"), sass()], + }; + } + + if (lessFiles.length && !scssFiles.length && !cssFiles.length) { + return { + src: gulp.src(lessFiles, srcOpts), + steps: [concat("bundle.less"), less()], + }; + } + + if (cssFiles.length && !scssFiles.length && !lessFiles.length) { + return { + src: gulp.src(cssFiles, srcOpts), + steps: [], + }; + } + + throw new Error(`Mixed CSS types in bundle ${bundle.outputFileName}. Split into separate bundles.`); +} + +// -------------------------- +// CSS (min:css + min:scss alias) +// -------------------------- +async function minCssImpl() { + for (const bundle of getBundles(regex.css)) { + const minify = typeof (bundle.minify || {}).enabled === "boolean" ? bundle.minify.enabled : true; + + const outNorm = normalizePath(bundle.outputFileName); + const outputDir = path.dirname(outNorm); + const outputBase = path.basename(outNorm); + + console.log( + "Bundle:", + bundle.outputFileName, + "| Minify:", + minify, + "| Inputs:", + (bundle.inputFiles || []).length + ); + + if (minify === true) { + const nonMinFile = outputBase.includes(".min.") ? outputBase.replace(".min.", ".") : outputBase; + const minFile = outputBase.includes(".min.") + ? outputBase + : outputBase.replace(/\.css$/i, ".min.css"); + + safeUnlink(path.join(outputDir, nonMinFile)); + safeUnlink(path.join(outputDir, minFile)); + + // Non-minified + { + const spec = getCssSourceAndSteps(bundle); + await pipeline( + spec.src, + ...spec.steps, + concat(nonMinFile), + gulp.dest(outputDir), + logSink("Non-Minified: ") + ); + } + + // Minified (fresh stream) + { + const spec = getCssSourceAndSteps(bundle); + await pipeline( + spec.src, + ...spec.steps, + concat(minFile), + // cleanCSS level 2 + single-line stats + cleanCSS({ level: 2, debug: true }, (details) => { + const name = details.name || path.basename(minFile); + console.log(`${name}: ${details.stats.originalSize} -> ${details.stats.minifiedSize}`); + }), + gulp.dest(outputDir), + logSink("Minified: ") + ); + } + } else { + safeUnlink(path.join(outputDir, outputBase)); + + const spec = getCssSourceAndSteps(bundle); + await pipeline( + spec.src, + ...spec.steps, + concat(outputBase), + gulp.dest(outputDir), + logSink("Bundled: ") + ); + } + } +} + +gulp.task("min:css", minCssImpl); +gulp.task("min:scss", minCssImpl); + +// -------------------------- +// HTML +// -------------------------- +gulp.task("min:html", async () => { + for (const bundle of getBundles(regex.html)) { + const minify = typeof (bundle.minify || {}).enabled === "boolean" ? bundle.minify.enabled : true; + + safeUnlink(bundle.outputFileName); + + await pipeline( + gulp.src(bundle.inputFiles || [], { base: ".", allowEmpty: false }), + concat(bundle.outputFileName), + htmlmin({ collapseWhitespace: true, minifyCSS: minify, minifyJS: minify }), + gulp.dest("."), + logSink("Bundled: ") + ); + } +}); + +// -------------------------- +// Aggregate / Watch +// -------------------------- +gulp.task("min", gulp.parallel("min:js", "min:css", "min:html")); +gulp.task("all", gulp.series("copy", "min")); + +gulp.task("watch", function () { + getBundles(regex.js).forEach((bundle) => { + const watchFiles = [] + .concat(bundle.inputFiles || []) + .concat(bundle.inputFiles_tominify || []); + gulp.watch(watchFiles, gulp.series("min:js")); + }); + + getBundles(regex.css).forEach((bundle) => { + const watchFiles = [].concat(bundle.inputFiles || []); + const extraScssGlobs = inferScssWatchGlobs(bundle); + gulp.watch(watchFiles.concat(extraScssGlobs), gulp.series("min:css")); + }); + + getBundles(regex.html).forEach((bundle) => { + gulp.watch(bundle.inputFiles || [], gulp.series("min:html")); + }); +}); diff --git a/Fuchs/js/intranet/fis_main.js b/Fuchs/js/intranet/fis_main.js new file mode 100644 index 0000000..1747caa --- /dev/null +++ b/Fuchs/js/intranet/fis_main.js @@ -0,0 +1,231 @@ +$ocms.init = function (ev) { + var mdl = typeof ev === 'string' ? ev : ((ev.data || {}).fn || ''); + if (mdl === '') { + return; + } else if (mdl === 'home') { + $cfr(); $lfr(); + $('#topbar').ocmsmenu([], true); + $('#activemodule').text($t.ov); + $fis.ov(); + } else { + $cfr(); $lfr(); + $('#topbar').ocmsmenu([]); + $ocms.postXT({ + url: $ocms.url(mdl + '/auth'), success: function (auth) { + if (typeof $ocms[mdl] === 'undefined') { + $ocms[mdl] = {}; + } + $ocms[mdl].auth = auth; + if (auth.manage > 0) { + $ocms.getScript({ + module: mdl, script: ['/web/fis', mdl, $ocms.auth.locale || 'de', 'js'].join('.'), css: ['/web/fis', mdl, 'css'].join('.'), condition: typeof $ocms[mdl].init2 !== 'function' + }, function () { $ocms[mdl].init2(); }); + } + }, error: function () { + $('#contentframe').empty(); + } + }); + } +}; + +var $fis = { auth: {} }; +$fis.db = function () { + $('#mainmenu_activemodule').text($t.ov); + let cf = $(this).empty(), ovf = $$.d({ id: 'dashboard_frame' }).appendTo(cf); + + $ocms.postXT({ + url: $ocms.url('wdg/my'), success: function (wx) { + $.each(wx, function (ii, wi) { + var wf = $$.dc('wdg_frame', ovf, { 'data-wdg': wi }).ldng(1); + $ocms.wdg.call(wf, { wdg: wi }); + }); + }, loading: ovf + }); +}; +$fis.ValidateEmail = function (mail) { + if (/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/.test(mail)) { + return true; + } else { + return false; + } +}; + +$fis.cf = (reset) => { + let cf = $('#contentframe'); if (bool(reset, false) === true) { cf.empty().rC('hd'); } return cf; +} +$fis.lf = (reset) => { + let lf = $('#listframe'); if (bool(reset, false) === true) { lf.empty().aC('hd').rC('fix'); } return lf; +}; +$fis.frm_edit = function (resethd) { + let cf = $fis.cf(false), cf2 = cf.children('.cfrm'), edf = cf.children('.edit_frm'); + if (cf2.length < 1) { + cf2 = $$.dc('cfrm hd').prependTo(cf); + } else if (bool(resethd, false) === true) { + cf2.empty(); + } + if (edf.length < 1) { + edf = $$.dc('edit_frm').insertAfter(cf2); //must be before list + } + return edf.empty(); +}; +$fis.frm_list = function (resethd, remedit) { + let cf = $fis.cf(false), cf2 = cf.children('.cfrm'), lf = cf.children('.list_frm'); + if (cf2.length < 1) { + cf2 = $$.dc('cfrm hd').prependTo(cf); + } else if (bool(resethd, false) === true) { + cf2.empty(); + } + if (bool(remedit, false) === true) { + cf.children('.edit_frm').remove(); + } + if (lf.length < 1) { + lf = $$.dc('list_frm').appendTo(cf); //must be after list + } + return lf.empty(); +}; +$fis.lfm = () => { + let lf = $fis.lf(false) , h = lf.children('.lfrm'); + if (h.length < 1) { + h = $$.dc('lfrm').prependTo(lf); + } + return h; +}; +$fis.getAuth = (module, force) => { + return new Promise((resolve, reject) => { + if ($fis.auth[module] && bool(force, false) === false) { + resolve($fis.auth[module] || -1); + } else { + $ocms.postXT({ + url: $ocms.url('auth'), data: { module: module }, success: (response) => { + $fis.auth[module] = response.auth || -1; + resolve($fis.auth[module] || -1); + }, error: () => { + reject(); + } + }); + } + }); +}; +$fis.prepAuth = (modules) => { + return new Promise((resolve, reject) => { + $ocms.postXT({ + url: $ocms.url('auth'), data: { module: modules, array: 1 }, success: (response) => { + $.extend($fis.auth, response || {}); + }, complete: () => { + resolve(); + } + }); + }); +}; +$fis.isAuth = (module, min) => { + return ($fis.auth[module] || -1) >= (min || 1); +}; +$fis.resetPass = function (id, fds) { + if (confirm($t.smsc)) { + $ocms.postXT({ url: $ocms.url('account/sms'), data: { fn: 'pwc'} }); + $ocms.dlgform($fd.rsp.clone(), { + title: $t.rsp || '', + submit: function (e) { + var c = $(this).ldng(1); + var qs = $.extend({ loginaccount: $ocms.auth.account || '' }, c.serializeObject(true, { typedvalues: true })); + if ((qs.npw || '') !== (qs.npwc || '')) { + c.find('input[name="npw"]:first')[0].setCustomValidity($t.pnm); + } else { + $ocms.postXT({ + url: $ocms.url('account/changepassword'), data: qs, success: function (response) { + alert($t.cps); + c.trigger('modal_close'); + }, error: function (x) { + alert($t.rspf[x.getResponseHeader('x-ocms-std')]); + }, complete: function () { + c.ldng(0); + }, timeout: 60000 + }); + } + } + }); + } +}; + +$fis.wdg = function (options) { + let wf = $(this).empty(); + $ocms.postXT({ + url: $ocms.url('wdg/one'), data: { short_name: options.wdg }, success: function (response, textStatus, jqXHR) { + let wi = options.wdg, wx = response[wi]; + if (!wx) { wf.ldng(0); return; } + let dbl = $.inArrayRegEx('dblwidth', wx.rendering_options) > -1, tiny = $.inArrayRegEx('tiny', wx.rendering_options) > -1; + wf.toggleClass('dbl', dbl && !tiny).toggleClass('tny', tiny); + let whd = $$.dc('wdg_hd', wf, { title: ne(wx.description, $t.wdc) }).toggleClass('dbl', dbl).text(ne(wx.name, options.wdg)).dblclick(function (ev) { + ev.stopPropagation(); + $fis.wdg.call(wf, { wdg: wi }); + }); + let wct = $$.dc('wdg_cnt', wf).toggleClass('dbl', dbl).hide(); + let bgcolix = $.inArrayRegEx('bgcolor', wx.rendering_options); + if (bgcolix > -1) { wct.css('backgroundColor', wx.rendering_options[bgcolix].toString().right(':')); } + switch (wx.type) { + case 'table': + var tblset = $$.tblset({}, wct); + var thr = $$.tr().appendTo(tblset.hd); + var $cc = $t.wdg[wi.indexOf('wdg_ev_') >= 0 ? 'wdg_ev_' : wi] || {}; + $.each(wx.columns, function (ci, col) { + var cc = (!$cc[col]) ? col : $cc[col].label; + var thc = $$.th().text(cc).appendTo(thr); + }); + $.each(wx.data, function (di, dx) { + var tdr = $$.tr().appendTo(tblset.bdy); + $.each(wx.columns, function (ci, col) { + var tdc = $$.td().appendTo(tdr); + if (dx[col] instanceof Date || $ocms.isDateString(dx[col]) === true) { + tdc.text(fdt(dx[col], $t.dateformat)); + } else { + tdc.rwText(dx[col]); + } + }); + //if (dx.person_guid || false) { tdr.addClass('clickable').dblclick($.proxy($fis.i_vmm, tdr, dx.person_guid[1])); } + }); + if ($.inArray('firstrow_bold', wx.rendering_options) > -1) { thr.nextAll('tr:first').css('font-weight', 'bold'); } + break; + case 'ind': + $$.dc('ind', wct).addClass('sts_' + (wx.data.status || '')).append([$$.dc('ind').text(wx.data.value), $$.lbl(wx.data.label)]); + break; + case 'image_url': + wct.css('background', 'url(\'' + wx.url + '\') no-repeat center center transparent'); + break; + case 'image_base64': + wct.css('background', 'url(\'data:image/png;base64,' + wx.image + '\') no-repeat center center transparent'); + break; + case 'html': + wct.html(wx.html); + if ($.inArray('reload_10min', wx.rendering_options) > -1) { + var ifr = wct.find('iframe'); + setTimeout(function () { ifr.attr('src', function (i, val) { return val; }); }, (10 * 60 * 1000)); + } + break; + default: + + } + if ($.inArray('reload_30min', wx.rendering_options) > -1 && wx.type !== 'html') { + setTimeout(function () { $fis.wdg.call(wf, { wdg: wi }); }, (30 * 60 * 1000)); + } + wct.slideDown(150); + }, error: function (jqXHR) { + wf.slideUp(150); + $fis.failure.call(this, jqXHR); + }, complete: function () { + wf.ldng(0); + } + }); +}; +$fis.ov = function () { + //$('#mainmenu_activemodule').text(""); + $fis.lf(true); + let cf = $('#contentframe').empty(), ovf = $$.d({ id: 'dashboard_frame' }).appendTo(cf); + $ocms.postXT({ + url: $ocms.url('wdg/my'), success: function (wx) { + $.each(wx, function (ii, wi) { + var wf = $$.dc('wdg_frame', ovf, { 'data-wdg': wi }).ldng(1); + $fis.wdg.call(wf, { wdg: wi }); + }); + }, loading: ovf + }); +}; \ No newline at end of file diff --git a/Fuchs/js/intranet/fis_main_go.js b/Fuchs/js/intranet/fis_main_go.js new file mode 100644 index 0000000..e044e6f --- /dev/null +++ b/Fuchs/js/intranet/fis_main_go.js @@ -0,0 +1,3 @@ +$(document).ready(function () { + $fis.ov(); +}); diff --git a/Fuchs/js/intranet/fis_main_menu.js b/Fuchs/js/intranet/fis_main_menu.js new file mode 100644 index 0000000..e5da403 --- /dev/null +++ b/Fuchs/js/intranet/fis_main_menu.js @@ -0,0 +1,12 @@ +(function () { + Array.prototype.push.apply($ocms.ocmsmenu,[ + { lbl: $t.m_inv, id: 'm_inv', fnc: 'init:inv', ico: 'glyphicon glyphicon-list-alt'} + ,{ lbl: $t.m_req, id: 'm_req', fnc: 'init:req', ico: 'glyphicon glyphicon-eur' } + , { lbl: $t.m_bcd, id: 'm_bcd', fnc: 'init:bam', ico: 'glyphicon glyphicon-indent-right' } + , { fnc: 'separator' } + , { lbl: $t.m_rep, id: 'm_rep', fnc: 'init:rep', ico: 'glyphicon glyphicon-dashboard' } + , { fnc: 'separator' } + , { lbl: $t.m_todo, id: 'm_todo', fnc: () => { $('#contentframe').empty().load($ocms.url('todos')); $('#listframe').rC('fix').aC('hd'); }, ico: 'glyphicon glyphicon-sunglasses' } + //, { lbl: $t.m_efa, id: 'm_efa', fnc: 'init:efa' } + ]); +})(); \ No newline at end of file diff --git a/Fuchs/js/intranet/fis_texts_gui_de.js b/Fuchs/js/intranet/fis_texts_gui_de.js new file mode 100644 index 0000000..ef6ce50 --- /dev/null +++ b/Fuchs/js/intranet/fis_texts_gui_de.js @@ -0,0 +1,24 @@ +$.extend($t, { + m_inv: 'Rechnungen' + , m_req: 'Aufträge' + , m_rep: 'Berichte' + , m_todo: 'ToDos' + , m_bcd: 'BankBuchungen' + , rsp: 'Passwort ändern' + , pnm: 'Die Passwörter stimmen nicht überein' + , cps: 'Das neue Passwort wurde gespeichert.' + , pwr: 'Bitte wählen Sie ein starkes Passwort (min 8 Zeichen, davon jeweils min 2 Zahlen, kleine und große Buchstaben, Sonderzeichen sind optional).' + , smsc: 'Sie beötigen für diese Funktion einen SMS-Code.\nSoll dieser nun versandt werden?' + , wdc: 'Doppelt klicken, um die Box zu aktualisieren.' + , wdg: {} +}); +$t.rspf = { sms: 'Der SMS-Code konnte nicht bestätigt werden', valid: 'Das alte Passwort ist nicht korrekt', requirements: 'Das Passwort entspricht nicht den Anforderungen.\n' + $t.pwr} +$fd = { + rsp: new fields_definition('', '', [ + { name: 'opw', label: 'aktuelles Passwort', type: 'password', required: true, attr: { 'auto-complete': 'current-password' }} + , { + name: 'npw', label: 'neues Passwort', type: 'password', required: true, pattern: '(.{6,})', attr: { 'auto-complete': 'new-password' }} + , { name: 'npwc', label: 'neues Passwort (Bestätigung)', type: 'password', required: true, attr: { 'auto-complete': 'new-password' }, note: $t.pwr} + , { name: 'code', label: 'SMS-Code', type: 'string', required: true, attr: { 'auto-complete': 'one-time-code' }} + ]) +}; \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.bam.js b/Fuchs/js/intranet/modules/fis.bam.js new file mode 100644 index 0000000..486ba7e --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.bam.js @@ -0,0 +1,319 @@ +let gi = (n, c) => $$.sc(`glyphicon glyphicon-${n}`).aC(c); +let $bam = { + init2: function (type, options) { + type = type || 'bam'; + options = options || {}; + $ocms.getScript([ + //{ script: 'web/jstree.min.js', css: 'web/jstree.min.css', condition: typeof $.fn.jstree !== 'function' } + //, { script: 'web/jquery.qtip.min.js', css: 'web/jquery.qtip.min.css', condition: typeof $.fn.qtip !== 'function' } + //, { script: 'web/typeahead.min.js', css: '', condition: typeof $.fn.typeahead !== 'function' } + //, { script: 'web/fullcalendar.min.js', module: 'FullCalendar', css: 'web/fullcalendar.min.css', condition: typeof FullCalendar !== 'object' } + ], function () { + //FullCalendar = $vm.FullCalendar; + $bam.init3(type, options); + }); + }, init3: async function (type, options) { + $fis.cf(true); + let lf = $fis.lf(true); + $bam.eM(); + $('#activemodule').text($bct.mdl); + await $fis.prepAuth('fds_bam,fds_inv,fds_reminder'); + let pa = [(async () => { + if ($fis.isAuth('fds_bam', 1) === true) { + $bam.prepLst(''); + lf.aC('fix'); //initially should be shown - for convenience + } + })(), (async () => { + if ($fis.isAuth('fds_bam', 1) === true) { + $bam.renderLst(false); + //lf.aC('fix'); //initially should be shown - for convenience + } + })(), new Promise((resolve, reject) => { + //$bam.123() + })]; + await Promise.all(pa); + }, iMn: (ix) => { + let fds = bool(ix.fds, false), id = ix.taID, m = []; + m.push({ lbl: $bct.smd, fnc: () => { $bam.smd(id); } }); + m.push({ lbl: $bct.ati, fnc: () => { $bam.ati(id); } }); + return $('#topbar').ocmsmenu(m); + }, eM : (r, re, opt) => { + let m = []; + if ($fis.isAuth('fds_bam', 2) === true) { + m.push({ lbl: $bct.upl, fnc: $bam.ubs}); + } + if (bool(r, false) === true) { + m.push({ lbl: $bct.rel, fnc: $bam.renderLst }); + } + return $('#topbar').ocmsmenu(m); /* empty Array => empty menu */ + }, prepLst: function (includes) { + let td = new Date(); + let lf = $fis.lf(true).ldng(1), sd = new Date('2021-01-01'); + let frm = $fis.frm_list(); + frm.IN(function () { }); + let osb = $$.i({ placeholder: $bct.in }).appendTo($$.dc('mth ivn', lf)).enterKey(function (ev) { + let mth = $(this), v = mth.val() || ''; + ev.stopPropagation(); + mth.parent().siblings().rC('selected'); + if (v.length > 3) { + mth.parent().aC('selected'); + $bam.renderbt('i:' + v, 's'); + mth.val(''); + } + }); + let osb2 = $$.i({ placeholder: $bct.bt }).appendTo($$.dc('mth ivn', lf)).enterKey(function (ev) { + let mth = $(this), v = mth.val() || ''; + ev.stopPropagation(); + mth.parent().siblings().rC('selected'); + if (v.length > 3) { + mth.parent().aC('selected'); + $bam.renderbt('b:' + v, 's'); + mth.val(''); + } + }); + let osb3 = $$.i({ placeholder: $bct.bv }).appendTo($$.dc('mth ivn', lf)).enterKey(function (ev) { + let mth = $(this), v = mth.val() || ''; + ev.stopPropagation(); + mth.parent().siblings().rC('selected'); + if (v.length > 3) { + mth.parent().aC('selected'); + $bam.renderbt(`v:${v}`, 's'); + mth.val(''); + } + }); + let opn = $$.dc('mth oreq', lf).text($bct.dqb).click(function (ev) { + let mth = $(this); + ev.stopPropagation(); + mth.siblings().rC('selected'); + if (mth.is('.selected') === true) { + mth.tC('selected'); + $bam.renderLst(false); + } + mth.aC('selected'); + }); + lf.append('
'); + let mthl = $$.dc('mthl', lf), thisyear = td.getFullYear(), thismonth = td.getMonth() + 1; + for (let tyr = sd.getFullYear(); tyr <= thisyear; tyr++) { + let yr = $$.dc('yr').prependTo(mthl).text(`${$bct.iov[includes]} - ${tyr.toString()}`).toggleClass('selected', tyr === thisyear); + yr.click({ + yr: tyr + }, function (ev) { + ev.stopPropagation(); + yr.siblings().rC('selected'); + yr.aC('selected'); + }); + let mfrm = $$.dc('mfrm', yr); + for (let tmt = 0; tmt < (tyr !== thisyear ? 12 : thismonth); tmt++) { + sd = new Date(tyr, tmt, 1); + let mth = $$.dc('mth').prependTo(mfrm).text(`${$bct.iov[includes]} - ${fdt(sd, 'MMM yyyy')}`); + mth.click({ + yr: tyr, mt: tmt + }, function (ev) { + ev.stopPropagation(); + mth.siblings().rC('selected'); + if (mth.is('.selected') === true) { + mth.tC('selected'); + + let tgt = fdt(new Date(ev.data.yr, ev.data.mt, 1), 'yy-MM-dd'); + $bam.renderbt(tgt, 'm'); + } + mth.aC('selected'); + }); + + let fwf = getMonday(sd), rd = fwf, lwf = new Date(sd); + lwf.setMonth(lwf.getMonth() + 1); + lwf.setDate(0); + lwf = getMonday(lwf); + let wfrm = $$.dc('wfrm', mth); + while (rd <= lwf) { + let wk = $$.dc('wk', wfrm).text(`${($bct.wk || "W")} ${fdt(rd, "dd.MM.yy")}`); + wk.click({ + rd: new Date(rd) + }, function (ev) { + ev.stopPropagation(); + let tgt = fdt(ev.data.rd, 'yy-MM-dd'); + $bam.renderbt(tgt, 'w'); + mth.siblings().rC('selected').find('.wk').rC('selected'); + mth.aC('selected').find('.wk').rC('selected'); + wk.aC('selected'); + }); + rd.setDate(rd.getDate() + 7); + } + } + } + lf.ldng(0); + }, renderbt: function (tgt, mode) { + let invlst = $fis.frm_list().ldng(1), invfrm = $$.dc('invfrm', invlst).aC('md' + mode); + let lf = $fis.lf(); + $ocms.postXT({ + url: $ocms.url('bam/btl'), data: { mode: mode, tgt: tgt }, success: (response) => { + lf.rC('fix').aC('hd'); + $$.dc('ovhd', invfrm).append($$.s(response.admin.title)).appendIf($$.sc('note', response.admin.note), ne(response.admin.note, '') !== ''); + let ts = $$.tblset({}, invfrm), fd = $bcol.qtl; + let thr = $$.tr(ts.hd), haux = $$.th(thr); + $.each(fd.fields || [], (ci, cx) => { + $$.th(thr).text(cx.label); + if (cx.name === 'vat') { + $$.th(thr); + } + }); + let ctr = 0, cst = false; + $.each(response.bank || [], (ri, rw) => { + if (ctr > 0) { cst = !cst; } + let tr = $$.tr(ts.bdy).tC('alt', cst); + tr.click(function () { + lf.rC('fix').aC('hd'); + tr.tC('selected').siblings().rC('selected').find('td.av').rC('av'); + tr.find('td.av').rC('av'); + }); + let raux = $$.td(tr, { class: 'raux' }); + $.each(fd.fields || [], (ci, cx) => { + let td = $$.td(tr).aC(cx.dtype), val = rw[cx.name]; + if (typeof cx.dfnc === 'function') { + cx.dfnc.call(td, val, rw); + } else { + switch (cx.type || '') { + case 'date': + td.text(fdt(rw[cx.name], 'dd.MM.yy')); + break; + case 'datetime': + td.text(fdt(rw[cx.name])); + break; + case 'html': + td.append($$.dc('ctw').html(val)); + td.append($$.dc('ttip').html(val)); + break; + default: + td.text(rw[cx.name]); + } + } + switch (typeof cx.title) { + case 'function': + cx.title.call(td, rw); + break; + case 'string': + td.attr('title', cs.title); + } + }); + }); + }, complete: () => { invlst.ldng(0); } + }); + }, renderLst: function () { + let mode = 'l'; //dummy for now + let bslst = $fis.frm_list(true, true).ldng(1), bamfrm = $$.dc('bamfrm', bslst).aC('md' + mode); + let lf = $fis.lf(); + $bam.eM(true); + $ocms.postXT({ + url: $ocms.url('bam/qtl'), data: { mode: mode }, success: (response) => { + lf.rC('fix').aC('hd'); + $$.dc('ovhd', bamfrm).append($$.s(response.admin.title)).appendIf($$.sc('note', response.admin.note), ne(response.admin.note, '') !== ''); + let ts = $$.tblset({}, bamfrm), fd = $bcol.qtl; + let thr = $$.tr(ts.hd); + let haux = $$.th(thr); + $.each(fd.fields || [], (ci, cx) => { + $$.th(thr).text(cx.label); + }); + $.each(response.bs || [], (ri, rw) => { + let tr = $$.tr(ts.bdy, { id: `bt${rw.taID}` }); + tr.click(function () { + lf.rC('fix').aC('hd'); + tr.toggleClass('selected').siblings().rC('selected').find('td.av').rC('av'); + tr.find('td.av').rC('av'); + if (tr.is('.selected') === true) { + $bam.iMn(rw); + } else { + $bam.eM(true); + } + }); + let raux = $$.td(tr, { class: 'raux' }); + $.each(fd.fields || [], (ci, cx) => { + let td = $$.td(tr).aC(cx.dtype), sel, o; + if ((cx.type || '') === 'select') { + td.text((cx.url || {})[rw[cx.name]] || ''); + } else { + td.text(rw[cx.name]) + } + }); + }); + }, complete: () => { bslst.ldng(0); } + }); + }, ubs : function () { + $ocms.dlgform($bcol.bsu, { + title: $bcol.bsu.label_sng || '', + submit: function (e) { + var c = $(this).ldng(1); + var qs = new FormData(); + let fi = c.find(':input[name="bsu"]'); + if (fi.length > 0 && fi[0].files.length > 0) { + $.each(fi[0].files, function (f, fl) { + qs.append('bsu', fl); + }); + + $ocms.postXT({ + url: $ocms.url('bam/up'), data: qs, success: function (response) { + c.trigger('modal_close'); + }, error: function () { + alert($t.l17); + }, complete: function () { + c.ldng(0); + $bam.renderLst(); + }, timeout: 0 + }); + } else { + options.success.call(this, qs); + c.trigger('modal_close'); + } + }, typedvalues: true + }); + + }, smd: (taid) => { + if (confirm($bct.smdc)) { + $ocms.postXT({ + url: $ocms.url('bam/smd'), data: { taid: taid }, success: (response) => { + $(`#bt${taid}`).aC('mdone'); + } + }); + } + }, ati: (taid) => { + let f = $$.dc('form'), fb = $$.dc('form-body',f), fg = $$.dc('form-group', fb), kl = $$.lbl($bct.ino, { for: 'rno' }).appendTo(fg), i = $$.i({ id: 'rno', placeholder: 'Rechnungs-Nummer' }).appendTo(fg); + let r = $$.dc('rfrm bam', fb); + i.change(function (ev) { + $ocms.postXT({ + url: $ocms.url('bam/vfi'), data: { invid: i.val() }, success: (response) => { + r.empty(); + if (response.length > 0) { + $$.dc('nfo', r, $bct.fi); + $.each(response, function (ri, rx) { + let v = $$.dc('rinv', r, rx.InvoiceId).data('inv', rx).click(function (ex) { $(this).addClass('selected').siblings('.rinv').removeClass('selected'); }); + $$.dc('invsta', v).rwText(rx.SendToAddress); + }); + } else { + r.text($bct.ni); + } + + } + }); + + + }); + $ocms.dlg(f, { + title: $bct.ati, size: [500, 700], confirm: function (e) { + let c = $(this), inv = c.find('.rinv.selected:first'); + if (inv.length === 1) { + let rx = inv.data('inv') || {}; + if (confirm(string($bct.atic, [rx.InvoiceId]))) { + $ocms.postXT({ + url: $ocms.url('bam/ati'), data: { taid: taid, iid: rx.Id }, success: (response) => { + $(`#bt${taid}`).aC('mdone'); + c.trigger('modal_close'); + } + }); + } + } + } + }); + } + +} +let $$bam = { init2: $bam.init2, auth: {} }; +export default $$bam; \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.bam.scss b/Fuchs/js/intranet/modules/fis.bam.scss new file mode 100644 index 0000000..da445af --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.bam.scss @@ -0,0 +1,100 @@ +.bamfrm { + > table { + border-collapse: collapse; + margin: 2rem; + + th { + padding: 0.2rem 0.35rem; + border: 1px solid #CCC; + } + + td { + padding: 0.2rem 0.35rem; + border: 1px solid #CCC; + + &.hl { + background-color: lightyellow; + } + + &.raux { + min-width: #{1.5rem * 1.6 * 2 + 0.5rem}; + } + + &.currency { + text-align: right; + white-space: nowrap; + } + + &.num, &.keep { + white-space: nowrap; + } + } + + tr { + &.mdone { + text-decoration: line-through red .2rem; + } + + &:nth-child(2n+1) td { + background-color: #EEE; + + &.hl { + background-color: lightyellow; + } + } + + &.selected td { + background-color: lightblue; + + &.hl { + background-color: lightyellow; + } + /*input, select { + display: block; + }*/ + .ilbtn { + display: inline-block; + } + } + } + } + + .ovhd { + font-size: 1.5rem; + margin: 1rem 2rem; + font-weight: bold; + text-decoration: underline; + text-decoration-style: double; + } +} +.rfrm.bam { + padding: 1rem; + border-top: 3px double #CCC; + margin-top: 1rem; + + > .nfo { + display: block; + font-size: 1rem; + margin-bottom: 1rem; + } + + .rinv { + border: 1px solid #CCC; + border-radius: 0.2rem; + background: #FFF; + padding: 0.5rem 1rem; + display: block; + + &.selected { + background-color: #e6f2eb; + } + + .invsta { + font-size: 60%; + margin: 0.5rem 0.5rem 0.5rem 1rem; + } + } +} + + + diff --git a/Fuchs/js/intranet/modules/fis.bam_txt_de.js b/Fuchs/js/intranet/modules/fis.bam_txt_de.js new file mode 100644 index 0000000..b42e792 --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.bam_txt_de.js @@ -0,0 +1,41 @@ +let $bct = { + wk: 'Woche', + nd: 'Keine Daten gefunden.', + h: 'Uhr', + mdl: 'BankBuchungen', + upl: 'BuchungsExport hochladen', + rel: 'Neu Laden', + smd: 'Buchung als erledigt markieren', + smdc: 'Buchung wirklich als erledigt markieren?\nDie Buchung wird nicht mehr in den auffälligen Buchungen angezeigt.', + ati: 'Buchung einer Rechnung zuordnen', + ni: 'Es wurden keine Rechnungen mit dieser ID gefunden.', + ino: 'Rechnungsnummer', + fi: 'Folgende Rechnungen wurden gefunden', + atic: 'Buchung wirklich der Rechnung {0} zuordnen?', + dqb: 'Auffällige Zahlungen anzeigen', + iov: { + all: 'Buchungsübersicht (alle)', '': 'Buchungsübersicht' + }, + in: 'Rechnungsnummer', + bt: 'Buchungstexte', + bv: 'Buchungswert (volle €)' +}; + +let $bcol = { + qtl: new fields_definition('Kontobericht', 'Kontoberichte', [ + { name: 'InvoiceId', label: 'RechnungsNr', type: 'string' }, + { name: 'ValueDate', label: 'Valuta', type: 'date' }, + { name: 'InvoiceBalance', label: 'Rechnungsbetrag', type: 'string' }, + { name: 'IsCanceled', label: 'Storno', type: 'bool' }, + { name: 'Amount', label: 'Gutschrift', type: 'string' }, + { name: 'Skonto', label: 'Skonto ?', type: 'bool' }, + { name: 'Deviation', label: 'Abweichung [%]', type: 'bool' }, + { name: 'AccountNumberOfPayer', label: 'IBAN', type: 'string' }, + { name: 'NameOfPayer', label: 'Name', type: 'string' }, + { name: 'SepaRemittanceInformation', label: 'Verwendungszweck', type: 'string' }, + { name: 'EndToEndReference', label: 'Referenz', type: 'string' } + ]), + bsu: new fields_definition('Kontobericht', 'Kontoberichte', [ + { name: 'bsu', label: 'Export der Buchungen', type: 'file', required: true, prop: { multiple: true } } + ]) +}; \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.inv.js b/Fuchs/js/intranet/modules/fis.inv.js new file mode 100644 index 0000000..4cda3ec --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.inv.js @@ -0,0 +1,306 @@ + +let gi = (n, c) => $$.sc('glyphicon glyphicon-' + n).aC(c); +let $inv = { + init2: function (type, options) { + type = type || 'inv'; + options = options || {}; + $ocms.getScript([ + //{ script: 'web/jstree.min.js', css: 'web/jstree.min.css', condition: typeof $.fn.jstree !== 'function' } + //, { script: 'web/jquery.qtip.min.js', css: 'web/jquery.qtip.min.css', condition: typeof $.fn.qtip !== 'function' } + //, { script: 'web/typeahead.min.js', css: '', condition: typeof $.fn.typeahead !== 'function' } + //, { script: 'web/fullcalendar.min.js', module: 'FullCalendar', css: 'web/fullcalendar.min.css', condition: typeof FullCalendar !== 'object' } + ], function () { + //FullCalendar = $vm.FullCalendar; + $inv.init3(type, options); + }); + }, init3: async function (type, options) { + $fis.cf(true); + let lf = $fis.lf(true); + $('#topbar').ocmsmenu([]); //{ lbl: 'home', fnc: $inv.init3 } + $('#activemodule').text($ict.mdl); + let pa = [(async () => { + if (await $fis.getAuth('fds_inv') > 0) { + $inv.prepLst(''); + lf.aC('fix'); //initially should be shown - for convenience + } + })(), new Promise((resolve, reject) => { + $fis.prepAuth(['fds_reminder']); + })]; + await Promise.all(pa); + }, prepLst: function (includes) { + let td = new Date(); + let lf = $fis.lf(true).ldng(1), sd = new Date('2021-01-01'); + let frm = $fis.frm_list(); + frm.IN(function () { }); + let mitm = [] + $.each($ict.iov, (ic, il) => { + mitm.push({ lbl: il, fnc: () => { $inv.prepLst(ic); lf.aC('fix'); } }); + }); + $fis.lfm().ocmsmenu([{ lbl: 'Filter', itm: mitm }]); + let osb = $$.i({ placeholder: $ict.in }).appendTo($$.dc('mth ivn', lf)).enterKey(function (ev) { + let mth = $(this), v = mth.val() || ''; + ev.stopPropagation(); + mth.parent().siblings().rC('selected'); + if (v.length > 3) { + mth.parent().aC('selected'); + $inv.renderinv('i:' + v, 's', 'all'); + mth.val(''); + } + }); + let osb2 = $$.i({ placeholder: $ict.cc }).appendTo($$.dc('mth ivc', lf)).enterKey(function (ev) { + let mth = $(this), v = mth.val() || ''; + ev.stopPropagation(); + mth.parent().siblings().rC('selected'); + if (v.length >= 3) { + mth.parent().aC('selected'); + $inv.renderinv('c:' + v, 's', 'all'); + mth.val(''); + } + }); + if (includes.substr(0,1) === '#') { + $$.dc('mth extra', lf).text($ict.iov[includes].replace(')',$ict.uba)).click(function (ev) { + let mth = $(this); + ev.stopPropagation(); + mth.siblings().rC('selected'); + if (mth.is('.selected') === true) { + mth.toggleClass('selected'); + + let tgt = fdt(new Date(), 'yy-MM-dd'); + $inv.renderinv(tgt, 'a', includes); + } + mth.aC('selected'); + }); + } + lf.append('
'); + let mthl = $$.dc('mthl', lf), thisyear = td.getFullYear(), thismonth = td.getMonth() + 1; + for (let tyr = sd.getFullYear(); tyr <= thisyear; tyr++) { + let yr = $$.dc('yr').prependTo(mthl).text($ict.iov[includes] + ' - ' + tyr.toString()).toggleClass('selected', tyr === thisyear); + yr.click({ + yr: tyr + }, function (ev) { + ev.stopPropagation(); + yr.siblings().rC('selected'); + yr.aC('selected'); + }); + let mfrm = $$.dc('mfrm', yr); + for (let tmt = 0; tmt < (tyr !== thisyear ? 12 : thismonth); tmt++) { + sd = new Date(tyr, tmt, 1); + let mth = $$.dc('mth').prependTo(mfrm).text($ict.iov[includes] + ' - ' + fdt(sd, 'MMM yyyy')); + mth.click({ + yr: tyr, mt: tmt + }, function (ev) { + ev.stopPropagation(); + mth.siblings().rC('selected'); + if (mth.is('.selected') === true) { + mth.toggleClass('selected'); + + let tgt = fdt(new Date(ev.data.yr, ev.data.mt, 1), 'yy-MM-dd'); + $inv.renderinv(tgt, 'm', includes); + } + mth.aC('selected'); + }); + if (includes === '') { // only for combi of final invoices + let mthdl = $$.dc('mthdl', mth).append(gi('compressed', 'ico')); + mthdl.click({ + yr: tyr, mt: tmt + }, function (ev) { + ev.stopPropagation(); + let tgt = fdt(new Date(ev.data.yr, ev.data.mt, 1), 'yy-MM-dd'); + $inv.downloadzip(tgt, 'm'); + }); + } + + let fwf = getMonday(sd), rd = fwf, lwf = new Date(sd); + lwf.setMonth(lwf.getMonth() + 1); + lwf.setDate(0); + lwf = getMonday(lwf); + let wfrm = $$.dc('wfrm', mth); + while (rd <= lwf) { + let wk = $$.dc('wk', wfrm).text(($ict.wk || 'W') + ' ' + fdt(rd, 'dd.MM.yy')); + wk.click({ + rd: new Date(rd) + }, function (ev) { + ev.stopPropagation(); + let tgt = fdt(ev.data.rd, 'yy-MM-dd'); + $inv.renderinv(tgt, 'w', includes); + mth.siblings().rC('selected').find('.wk').rC('selected'); + mth.aC('selected').find('.wk').rC('selected'); + wk.aC('selected'); + }); + let wkdl = $$.dc('wkdl', wk).append(gi('compressed', 'ico')); + wkdl.click({ + rd: new Date(rd) + }, function (ev) { + ev.stopPropagation(); + let tgt = fdt(ev.data.rd, 'yy-MM-dd'); + $inv.downloadzip(tgt, 'w'); + }); + rd.setDate(rd.getDate() + 7); + } + } + } + lf.ldng(0); + }, rerenderinv: function () { + let invfrm = $('#contentframe .invfrm:first'); + if (invfrm.length > 0) { + let sets = invfrm.data('sets') || {}; + if (sets.mode) { + $inv.renderinv(sets.tgt, sets.mode, sets.includes); + } + } + }, renderinv: function (tgt, mode, includes) { + let invlst = $fis.frm_list(true, true).ldng(1), invfrm = $$.dc('invfrm', invlst).aC('md' + mode).data('sets', $.extend({}, { tgt: tgt, mode: mode, includes: includes })); + let lf = $fis.lf(); + $ocms.postXT({ + url: $ocms.url('inv/invl'), data: { mode: mode, tgt: tgt, includes: includes }, success: (response) => { + lf.rC('fix').aC('hd'); + $$.dc('ovhd', invfrm).text(response.admin.title); + let ts = $$.tblset({}, invfrm), fd = $invcol.inv; + let thr = $$.tr(ts.hd); + let haux = $$.th(thr); + $.each(fd.fields || [], (ci, cx) => { + $$.th(thr).text(cx.label); + if (cx.name === 'vat') { + $$.th(thr); + } + }); + $.each(response.invoices || [], (ri, rw) => { + let tr = $$.tr(ts.bdy); + tr.click(function () { + lf.rC('fix').aC('hd'); + tr.toggleClass('selected').siblings().rC('selected').find('td.av').rC('av'); + tr.find('td.av').rC('av'); + if (tr.is('.selected') === true) { + $inv.iMn(rw); + } else { + $inv.eM(); + } + }); + let raux = $$.td(tr, { class: 'raux' }); + if (rw.hasFile) { + $$.dc('idl ilbtn', raux, { title: $ict.dl + '\n' + rw.DocumentName }).append(gi('save-file', 'ico')).click({ id: rw.Id }, $inv.downloadinv); + $$.dc('idl ilbtn', raux, { title: $ict.dsp + '\n' + rw.DocumentName }).append(gi('eye-open', 'ico')).click({ id: rw.Id, typ: 'inv' }, $inv.jdisp); + } else if (rw.isFinal === false && $fis.isAuth('fds_inv',2) === true) { + $$.dc('idl ilbtn', raux, { title: $ict.ed }).append(gi('edit', 'ico')).click({ id: rw.Id }, $inv.doContInv); + } + $$.dc('iitm ilbtn', raux, { title: $ict.sItm }).append(gi('list', 'ico')).click({ id: rw.Id }, $inv.showitm); + $$.dc('iitm ilbtn', raux, { title: $ict.sPay }).append(gi('euro', 'ico')).click({ id: rw.Id }, $inv.showpay); + $.each(fd.fields || [], (ci, cx) => { + let td = $$.td(tr).aC(cx.dtype), sel, o; + if ((cx.type || '') === 'select') { + td.text((cx.url || {})[rw[cx.name]] || ''); + } else { + td.text(rw[cx.name]) + } + switch (cx.name || '') { + case 'vat': + sel = $$.sel().appendTo($$.td(tr, { class: 'vsel' })); + o = (response.admin.ust_options || '19,0%;16,0%;0,0%').split(';'); + $.each(o, (oi, oo) => { $$.opt(oo, oo).appendTo(sel); }); + sel.click(function (ev) { ev.stopPropagation(); }).val(rw[cx.name]).change().change({ frm: invfrm, tgt: tgt, mode: mode, id: rw.Id, td: td, includes: includes }, $inv.setvat); + td.toggleClass('hl', rw[cx.name].substr(0, 2) !== o[0].substr(0, 2)).click(function (ev) { + ev.stopPropagation(); + $(this).toggleClass('av'); + }); + break; + case 'balance': + td.aC('sh_' + (rw.SollHaben || '').toLowerCase()); + break; + case 'invstatus': //drop through by intention + case 'reminderstatus': + td.aC((cx.name === 'invstatus' ? 'is_' : 'rs_') + rw[cx.name]); + break; + } + }); + }); + }, complete: () => { invlst.ldng(0); } + }); + }, setvat: function (ev) { + let sel = $(this), data = ev.data || {}; + $ocms.postXT({ + url: $ocms.url('inv/setvat'), data: { id: data.id, val: sel.val() }, success: (response) => { + data.td.rC('av'); + $inv.renderinv(data.tgt, data.mode, data.includes); + } + }); + }, downloadzip: function (tgt, mode) { + let frm = $(this).empty(); + window.open($ocms.url('inv/datevzip?mode=' + mode + '&tgt=' + encodeURIComponent(tgt)), '_blank'); + }, showitm: function (ev) { + let tr = $(this).closest('tr'); + ev.stopPropagation(); + if (tr.is('.selected') === false) { + return; + } + $ocms.postXT({ + url: $ocms.url('inv/rqi'), data: { id: ev.data.id }, success: (response) => { + let fr = $$.dc('rfrm'); + if ((response.requests || []).length < 1) { + fr.text($ict.nd); + } else { + $.each(response.requests || [], function (ri, rx) { + let rq = $$.dc('srq', fr); + $$.dc('nme', rq).text(rx.name); + let rif = $$.tblset({ class: 'if' }, rq); + $.each(rx.items || [], (ii, ix) => { + let itr = $$.tr({ id: 'itm' + ix.Id }).appendTo(rif.bdy); + $$.td(itr).text(ix.NameOrNumber); + $$.td(itr).text(ix.Type); + $$.td(itr).aC('currency').text(ix.net_pos); + $$.td(itr).aC('currency').text(ix.bo_pos); + $$.td(itr).aC('num').text(ix.vat); + }); + }); + } + $ocms.dlg(fr, { width: 1000 }); + } + }); + }, showpay: function (ev) { + let tr = $(this).closest('tr'); + ev.stopPropagation(); + if (tr.is('.selected') === false) { + return; + } + $ocms.postXT({ + url: $ocms.url('inv/pyi'), data: { id: ev.data.id }, success: (response) => { + let fr = $$.dc('rfrm'); + if ((response.payments || []).length < 1) { + fr.text($ict.nd); + } else { + let rif = $$.tblset({ class: 'if' }, fr); + let hr = $$.tr(rif.hd); + $.each(['date','account', 'name', 'text', 'InvoiceID', 'amount', 'manual'], (hi, hx) => { + $$.th(hr, $ict.payi[hx]); + }); + $.each(response.payments, (ii, ix) => { + let itr = $$.tr({ id: 'itm' + ix.banking_uid }).appendTo(rif.bdy); + $$.td(itr).aC('date').text(ix.date); + $$.td(itr).text(ix.account); + $$.td(itr).text(ix.name); + $$.td(itr).text(ix.text); + $$.td(itr).text(ix.InvoiceID); + $$.td(itr).aC('currency').text(ix.amount); + $$.td(itr).text(ix.manual); + }); + } + $ocms.dlg(fr, { width: 1000, title: 'Übersicht der Zahlungen' }); + } + }); + }, downloadinv: function (ev) { + let tr = $(this).closest('tr'); + ev.stopPropagation(); + if (tr.is('.selected') === false) { + return; + } + window.open($ocms.url('inv/rdoc?id=' + ev.data.id), '_blank'); + }, doContInv: function(ev) { + let tr = $(this).closest('tr'); + ev.stopPropagation(); + if (tr.is('.selected') === false) { + return; + } + $inv.cntInv({ id: ev.data.id }); + } +} +let $$inv = { init2: $inv.init2, auth: {} }; +export default $$inv; \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.inv.scss b/Fuchs/js/intranet/modules/fis.inv.scss new file mode 100644 index 0000000..b6ebf37 --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.inv.scss @@ -0,0 +1,114 @@ +.invfrm > table, table.invtbl { + + td { + + + &.sh_s { + color: #bf4b06; + } + + &.is_cc { + background-color: #777777 !important; + color: #FFF !important; + } + + &.is_pyd { + color: #60cc08; + } + + &.is_due { + background-color: #f2f23f !important; + } + + &.is_ovd { + background-color: #de4e09 !important; + } + + &.is_rem { + background-color: #ce1900 !important; + } + + + &.av { + border: 2px solid red; + + + td.vsel select { + display: block; + } + } + + + } + + tr { + } +} + + + + + + +.rfrm { + min-width: 200px; + min-height: 200px; +} + +table.if { + border-collapse: collapse; + margin: 1rem 0; + background: #FFF; + + tr { + &:nth-child(2n+1) td { + background-color: #F9F9F9; + } + + &.title td { + background-color: $fuchs_akzent; + color: white; + + .eid { + font-weight: bold; + margin: 0 1rem 0 0.5rem; + font-size: 140%; + } + + .nme { + font-size: 110%; + } + } + + &.shd td { + font-style: italic; + color: #BBB; + background-color: #FFF; + background-color: #FFF !important; + font-size: 90%; + } + } + th { + padding: 0.2rem 0.35rem; + border: 1px solid #DDD; + } + td { + padding: 0.2rem 0.35rem; + border: 1px solid #DDD; + + &.currency { + text-align: right; + white-space: nowrap; + } + + &.num { + white-space: nowrap; + } + } +} + +.pdfpreview .pdfp.ph > .note { + background: #FFF; + display: inline-block; + padding: 3rem; + margin: 0.2rem 0; +} \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.inv_shared.js b/Fuchs/js/intranet/modules/fis.inv_shared.js new file mode 100644 index 0000000..7a59887 --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.inv_shared.js @@ -0,0 +1,1220 @@ + +$inv.cInv = function (ev) { + let tr = $(this).closest('tr'); + ev.stopPropagation(); + if (tr.is('.selected') === false) { + return; + } else if ($fis.isAuth('fds_inv', 2) === false) { + return; + } + $inv.cInv2({ id: ev.data.id }); +}; +$inv.rMn = (o) => { + let m = [{ lbl: $ict.req, itm: [] }]; + if (bool(o, false) === true && $fis.isAuth('fds_inv', 2) === true) { + Array.prototype.push.apply(m[0].itm, [ + { lbl: $rct.crI, fnc: $inv.ccInv, data: { typ: 'r' } } + , { lbl: $rct.crII, fnc: $inv.ccInv, data: { typ: 'i' } } + ]); + } + m.push({ lbl: $ict.rel, fnc: $inv.rReload }); + return $('#topbar').ocmsmenu(m); +}; +$inv.iMnr = (ix) => { + let f = booln(ix.isFinal, true), id = ix.Id, fds = booln(ix.fds, false); + let m = [ + { glyph: 'glyphicon-menu-left', fnc: () => { $fis.frm_edit().remove(); } }, + { lbl: $ict.inv, itm: [] }, { lbl: $ict.rem, itm: [] } + ]; + if (f === false && $fis.isAuth('fds_inv', 2) === true) { + m[1].itm.push({ lbl: $ict.ced, fnc: $inv.clCntInv }); + } else if ($fis.isAuth('fds_inv', 1) === true) { + m[1].itm.push({ lbl: $ict.dsp, fnc: () => $inv.disp(id, 'inv') }) + } + if (fds === true && f === true && $fis.isAuth('fds_inv', 2) === true) { + m[1].itm.push({ lbl: $ict.storno, fnc: () => $inv.storno(id, fds) }); + m[1].itm.push({ lbl: $ict.credit, fnc: () => $inv.credit(id, fds) }); + } + if (f === true && $fis.isAuth('fds_reminder', 2) === true) { + m[2].itm.push({ lbl: $ict.remd, fnc: () => $inv.ccRem(id, ix.InvoiceId) }); + m[2].itm.push({ lbl: $ict.remlst, fnc: () => $inv.dspRem(id) }); + } + if (f === true && $fis.isAuth('fds_reminder', 2) === true && booln(ix.IsSent, false) === false) { + m[2].itm.push({ lbl: $ict.srs, fnc: () => $inv.srs(id) }); + } + m.push({ lbl: $ict.rel, fnc: $inv.rReload }); + return $('#topbar').ocmsmenu(m); +}; +$inv.iMn = (ix) => { + let f = booln(ix.isFinal, true), id = ix.Id, fds = booln(ix.fds, false); + let m = [{ glyph: 'glyphicon-menu-left', fnc: () => { $fis.frm_edit().remove(); } }, + { lbl: $ict.inv, itm: [] }, { lbl: $ict.rem, itm: [] } + ]; + if (f === false && $fis.isAuth('fds_inv', 2) === true) { + m[1].itm.push({ lbl: $ict.ced, fnc: () => { $inv.cntInv({ id: id }); } }); + } else if ( $fis.isAuth('fds_inv', 1) === true) { + m[1].itm.push({ lbl: $ict.dsp, fnc: () => $inv.disp(id, 'inv') }) + } + if ($fis.isAuth('fds_inv', 2) === true) { + m[1].itm.push({ lbl: $ict.storno, fnc: () => $inv.storno(id, fds) }) + m[1].itm.push({ lbl: $ict.credit, fnc: () => $inv.credit(id, fds) }); + } + if (f === true && booln(ix.IsPayed, false) === false) { + if ($fis.isAuth('fds_reminder', 2) === true) { + m[2].itm.push({ lbl: $ict.remd, fnc: () => $inv.ccRem(id, ix.InvoiceId) }); + } + if ($fis.isAuth('fds_inv', 2) === true) { + m[1].itm.push({ lbl: $ict.setpyd, fnc: () => $inv.setPyd(id) }); + } + } else if (f === true && booln(ix.IsPayed, false) === true && (ix.PaymentStatus || '') === 'm') { + if ($fis.isAuth('fds_inv', 2) === true) { + m[1].itm.push({ lbl: $ict.setupd, fnc: () => $inv.setUpd(id) }); + } + } + if ($fis.isAuth('fds_reminder', 2) === true) { + m[2].itm.push({ lbl: $ict.remlst, fnc: () => $inv.dspRem(id) }); + } + if (f === true && $fis.isAuth('fds_inv', 2) === true && booln(ix.IsSent, false) === false) { + m[1].itm.push({ lbl: $ict.sis, fnc: () => $inv.sis(id) }); + } + if (fds === false) { + m[1].itm.push({ lbl: $ict.mfr, fnc: () => $inv.mfrrel(id) }); + } + return $('#topbar').ocmsmenu(m); +} +$inv.eM = (r, re, opt) => { + let m = []; + if (booln(r, false) === true || booln(re, false) === true) { + m.push({ glyph: 'glyphicon-menu-left', fnc: () => { $fis.lf(true); $fis.frm_edit().remove(); } }); + } + if ((opt || '').split(',').includes('iss') === true) { + m.push({ lbl: $ict.iss, fnc: $inv.ssave }); + } + if ((opt || '').split(',').includes('ctp') === true) { + m.push({ lbl: $ict.ctp, fnc: $inv.sctp }); + } + if ((opt || '').split(',').includes('p13b') === true) { + m.push({ lbl: $ict.p13b, fnc: $inv.sp13b }); + } + if (booln(r, false) === true) { + m.push({ lbl: $ict.rel, fnc: $inv.rReload }); + } + return $('#topbar').ocmsmenu(m); /* empty Array => empty menu */ +}; +$inv.cInv2 = function (data) { + let fr = $$.dc('rfrm').ldng(1); + let o = $ocms.dlg(fr, { width: 1000 }); + if (o) { o.ft.rwText($rct.rq1); } + let mainfnc = () => { + $ocms.postXT({ + url: $ocms.url('req/get'), timeout: 60, data: { id: data.id, mode: 'r' }, success: (response) => { + //console.debug(response); + response.admin = response.admin || {}; + let lf = $fis.lf(true).aC('fix').rC('hd'); + $fis.frm_edit().IN(); + $inv.eM(true, true); + if ((response.requests || []).length < 1) { + lf.aC('fix').text($rct.nd); + } else { + + $$.dc('lh', lf, $rct.mdl); + let iv = $$.d(), rq = $$.ul({ class: 'rql' }).data({ search: data.id, parent: response.admin.parent }).appendTo(lf), rqa = {}, cl = $rcol.req.lbl(); + $.each(response.requests || [], function (ri, rx) { + let rli = $$.li({ class: 'cli rli' }).data($.extend({}, rx)).appendTo(rq); + let lihd = $$.dc('lihd', rli).addClass(rx.state); + if (booln(rx.open, false) === true) { + lihd.append($$.sc('cbox').click(() => { + rli.tC('checked'); + iv.find('li').rC('checked'); + if (rli.is('.checked') === true) { + $inv.rMn(rx.open); + } else { + $inv.eM(true); + } + })); + } + lihd.append([$$.sc('eid', rx.ExternalId), $$.sc('nme', rx.Name)]); + $$.dc('lidt', rli).append([$$.dc('rqs').append([$$.s(cl.State + ': '), $$.s($rct.sts[rx.State || '-'])]), $$.dc('ivn').append([$$.s(cl.InvoiceId + ': '), $$.s(rx.InvoiceId || '- -')]), $$.dc('wda').append([$$.s(cl.WorkDoneAt + ': '), $$.s(fdt(rx.WorkDoneAt, 'dd.MM.yyyy'))])]); + rqa[rx.Id] = rli; + }); + if ((response.inv || []).length > 0) { + $$.dc('lh', lf, $rct.invs); + iv = $$.ul({ class: 'ivl' }).appendTo(lf); /* first assignment to iv is fake, just to prevent issues */ + $.each(response.inv || [], (ii, ix) => { + let ili = $$.li({ class: 'cli ili' }).data($.extend({}, ix)).appendTo(iv); + let lihd = $$.dc('lihd', ili).addClass(ix.invstatus); + if (booln(ix.isFinal, true) === false) { + lihd.append($$.sc('cbox').click(() => { + if ((ix.Id || '') !== '') { + ili.tC('checked').siblings().rC('checked'); rq.find('li').rC('checked'); + if (ili.is('.checked') === true) { + $inv.iMnr(ix); + } else { + $inv.eM(true); /* empty menu */ + } + } + })); + } else if (['', 'dft'].indexOf(ix.invstatus) < 0) { + lihd.append($$.sc('dli').click(function () { $inv.disp(ix.Id, 'inv'); })); + } + lihd.append($$.sc('nme', ix.DocumentName || ix.Id)); + $$.dc('lidt', ili).append([$$.dc('wda').append([$$.s(fdt(ix.DateCreated, 'dd.MM.yyyy'))]), $$.d().text($ict.iSt[ix.invstatus] || ix.invstatus)]); + }); + } + + } + }, complete: () => { + if (o) { o.c.trigger('modal_close'); } + } + }); + }; + $ocms.postXT({ + url: $ocms.url('req/pget'), timeout: 90, data: { id: data.id }, success: (r1) => { + if (o) { o.ft.rwText($rct.rq2); } + mainfnc(); + }, error: () => { + if (confirm($rct.rq1f)) { + if (o) { o.ft.rwText($rct.rq2); } + mainfnc(); + } else { + if (o) { o.c.trigger('modal_close'); } + } + } + }); +}; +$inv.ccInv = function (ev) { //normale rechnung + let data = ev.data || {}, typ = data.typ || 'r'; + let lf = $fis.lf(), rql = lf.children('ul.rql'), parent = rql.data('parent'); + let selli = []; + rql.find('li.rli.checked').each(function () { + selli.push($(this).data('Id')); + }); + if (selli.length < 1) { // abort if none selected + alert($rct.dnS); + return; + }else if (typ === 'i' && selli.length > 1) { // abort if intermediate invoice and several selected + alert($rct.dII); + return; + } + let edf = $fis.frm_edit(), frm = $$.dc('invoice_layout', edf).append($$.dc('btn sprev').click($inv.sprev)); + let ww = $fis.cf().width() > (frm.width() + lf.width() + 20); + lf.tC('fix', ww).tC('hd', !ww); + $inv.eM(false, true); + let fr = $$.dc('rfrm').ldng(1); + let o = $ocms.dlg(fr, { width: 1000 }); + o.ft.rwText($rct.rq2); + $ocms.postXT({ + url: $ocms.url('req/iget'), timeout: 60, data: { id: parent, mode: 'ful', typ: typ, sel: selli.join(',') }, success: (response) => { + //console.debug(response); + + let rq = $$.dc('srq', frm); + let rif = $$.tblset({ class: 'invi' }, rq); + rif.bdy.remove(); + rif.ft = $$[0]('tfoot'); + response.admin = response.admin || {}; + response.admin.p13b = bool(response.admin.p13b || '', (((response.inv || {}).InvoiceOptions || '').split(',').includes('§13b') === true)); + rif.tbl.data($.extend({ new: {}, sms: {}, itm: {} }, { admin: response.admin, companies: response.companies, locations: response.locations })); + let thr = $$.tr(rif.hd).aC('shd').append([$$.th().aC('aux')]); /* header row for items */ + $rct.invHR.forEach(h => $$.th(thr, h)); + rif.tbl.on('fds.inv', $inv.invSumUpdate); + $.each(response.requests || [], function (ri, rx) { + let srqid = rx.Id || 0; + if (srqid !== 0) { + let worknotes = $inv.worknotes(rx); + rx.text = response.admin.type === 'i' ? ($rct.req + (jine([rx.ExternalId, rx.Name], ': ').eine(' ', ''))) : (jine([jine([fdt(rx.WorkDoneAt, 'dd.MM.yy'), rx.ExternalId], ' - ' + $rct.req + ' '), worknotes.ne(rx.Name)], ': \n')); + let bdy = $$.tbody(rif.tbl).data($.extend({}, rx)); + $inv.rendersrq.call(bdy); + } + }); + + /* add an empty */ + let atr = $$.tr($$.tbody(rif.tbl), { class: 'placeholder' }).data({ net_val: 0, vat_val: 0, svcnet_val: 0, svcvat_val: 0, net: 0 }); + $inv.rrw.call(atr); + + rif.ft.appendTo(rif.tbl); + + + let admin = response.admin || {}, fm = (cls, txt, nme, hd, dta) => { + let fr = $$.dc('inpfrm', frm).aC(cls).append(typeof hd === 'string' ? $$.dc('ahd', hd) : (hd > 0 ? $$.dc('ahd', $rct.frm[nme]) : null)), fc = $$.dc('content', fr).rwText(txt); + $$.dc('axf', fr).append($$.dc('ibtn edit').data('dialog', $rct.frm[nme]).append(gi('pencil')).click($.extend({ t: fc, nme: nme, change: (nv) => { rif.tbl.data('new')[nme] = nv; } }, dta), $inv.eHtml)); + rif.tbl.data('new')[nme] = txt; + }; + fm('tfrm', admin.invoicetitle, 'invoicetitle', 0, null); + fm('adrfrm', admin.invoiceaddress, 'invoiceaddress', 0, null); + fm('locfrm', '', 'loc', 1, { list: deepCopy(response.locations), lbl: 'ref', property: 'address' }); + fm('emailfrm', admin.invoiceemail, 'invoiceemail', 0, null); + $$.dc('sndfrm', frm).append($$.dc('content').text(admin.sender)); + + let admtxt, admlbl; + if (admin.provisionend) { + admlbl = admin.provisionstart ? $rct.provP : $rct.provD; + admtxt = admin.provisionstart ? (fdt(admin.provisionstart, 'dd.MM.yyyy') + ' - ' + fdt(admin.provisionend, 'dd.MM.yyyy')) : fdt(admin.provisionend, 'dd.MM.yyyy'); + } + fm('admfrm', admtxt, 'provisionperiod', admlbl, 1, null); + rif.tbl.data('new').CustomValues = admin.CustomValues || ''; + $$.dc('inpfrm ctpfrm', frm).text(jObj(admin.CustomValues, 'contactName')); + //adm = $$.dc('admfrm', frm), admc = $$.dc('content', adm), + + rif.tbl.children('tbody').each($inv.bdysort); + rif.tbl.trigger('fds.inv'); /* trigger calculations */ + + $inv.eM(false, true, 'iss,p13b,ctp'); + }, complete: () => { + o.c.trigger('modal_close'); + } + }); +}; +$inv.ccStInv = function (ev) { // Stornorechnung + let data = ev.data || {}; + let lf = $fis.lf(), oldinv = data.id; + + let frm = $$.dc('invoice_layout', $fis.frm_edit()).append($$.dc('btn sprev').click($inv.sprev)); + let ww = $fis.cf().width() > (frm.width() + lf.width() + 20); + lf.tC('fix', ww).tC('hd', !ww); + $inv.eM(false, true); + let fr = $$.dc('rfrm').ldng(1); + let o = $ocms.dlg(fr, { width: 1000 }); + o.ft.rwText($ict.iq1); + $ocms.postXT({ + url: $ocms.url('inv/pget'), timeout: 90, data: { id: data.id }, success: (response) => { + if (o) { o.ft.rwText($ict.iq2); } + $ocms.postXT({ + url: $ocms.url('inv/icget'), timeout: 60, data: { id: oldinv }, success: (response) => { + //console.debug(response); + + let rq = $$.dc('srq', frm); + let rif = $$.tblset({ class: 'invi' }, rq); + rif.bdy.remove(); + rif.ft = $$[0]('tfoot'); + response.admin = response.admin || {}; + response.admin.p13b = bool(response.admin.p13b || '', (((response.inv || {}).InvoiceOptions || '').split(',').includes('§13b') === true)); + rif.tbl.data($.extend({ new: {}, sms: {}, itm: {} }, { admin: response.admin, companies: response.companies, locations: response.locations })); + let thr = $$.tr(rif.hd).aC('shd').append([$$.th().aC('aux')]); /* header row for items */ + $rct.invHR.forEach(h => $$.th(thr, h)); + rif.tbl.on('fds.inv', $inv.invSumUpdate); + $.each(response.requests || [], function (ri, rx) { + let srqid = rx.Id || 0; + if (srqid !== 0) { + let worknotes = $inv.worknotes(rx); + rx.text = response.admin.type === 'i' ? ($rct.req + (jine([rx.ExternalId, rx.Name], ': ').eine(' ', ''))) : (jine([fdt(rx.WorkDoneAt, 'dd.MM.yy') + worknotes.ne(rx.Name)], ': ')); + let bdy = $$.tbody(rif.tbl).data($.extend({}, rx)); + $inv.rendersrq.call(bdy); + } + }); + + /* add an empty */ + let atr = $$.tr($$.tbody(rif.tbl), { class: 'placeholder' }).data({ net_val: 0, vat_val: 0, svcnet_val: 0, svcvat_val: 0, net: 0 }); + $inv.rrw.call(atr); + + rif.ft.appendTo(rif.tbl); + + + let admin = response.admin || {}, fm = (cls, txt, nme, hd, dta) => { + let fr = $$.dc('inpfrm', frm).aC(cls).append(typeof hd === 'string' ? $$.dc('ahd', hd) : (hd > 0 ? $$.dc('ahd', $rct.frm[nme]) : null)), fc = $$.dc('content', fr).rwText(txt); + $$.dc('axf', fr).append($$.dc('ibtn edit').data('dialog', $rct.frm[nme]).append(gi('pencil')).click($.extend({ t: fc, nme: nme, change: (nv) => { rif.tbl.data('new')[nme] = nv; } }, dta), $inv.eHtml)); + rif.tbl.data('new')[nme] = txt; + }; + fm('tfrm', admin.invoicetitle, 'invoicetitle', 0, null); + fm('adrfrm', admin.invoiceaddress, 'invoiceaddress', 0, null); + fm('locfrm', admin.provisionlocation, 'loc', 1, { list: deepCopy(response.locations), lbl: 'ref', property: 'address' }); + fm('emailfrm', admin.invoiceemail, 'invoiceemail', 0, null); + $$.dc('sndfrm', frm).append($$.dc('content').text(admin.sender)); + + let admtxt, admlbl; + if (admin.provisionend) { + admlbl = admin.provisionstart ? $rct.provP : $rct.provD; + admtxt = admin.provisionstart ? (fdt(admin.provisionstart, 'dd.MM.yyyy') + ' - ' + fdt(admin.provisionend, 'dd.MM.yyyy')) : fdt(admin.provisionend, 'dd.MM.yyyy'); + } + fm('admfrm', admtxt, 'provisionperiod', admlbl, 1, null); + rif.tbl.data('new').CustomValues = admin.CustomValues || ''; + $$.dc('inpfrm ctpfrm', frm).text(jObj(admin.CustomValues, 'contactName')); + //adm = $$.dc('admfrm', frm), admc = $$.dc('content', adm), + + rif.tbl.children('tbody').each($inv.bdysort); + rif.tbl.trigger('fds.inv'); /* trigger calculations */ + + }, complete: () => { + o.c.trigger('modal_close'); + } + }); + + }, error: () => { + if (o) { o.c.trigger('modal_close'); } + } + }); +}; +$inv.clCntInv = function (ev) { // click-handler for invoice continuation + let lf = $fis.lf(false), selli = []; + lf.find('li.ili.checked').each(function () { + selli.push($(this).data('Id')); + }); + if (selli.length === 1) { + //$('#contentframe').empty(); + $inv.cntInv({ id: selli[0] }); + } +}; +$inv.cntInv = function (data) { //invoice continuation + data = data || {}; + let lf = $fis.lf(false).rC('fix').aC('hd'), frm = $$.dc('invoice_layout', $fis.frm_edit()).append($$.dc('btn sprev').click($inv.sedit)); + $inv.eM(false, true); + let fr = $$.dc('rfrm').ldng(1); + let o = $ocms.dlg(fr, { width: 1000 }); + o.ft.rwText($rct.rq2); + $ocms.postXT({ + url: $ocms.url('inv/get'), timeout: 60, data: { id: data.id }, success: (response) => { + //console.debug(response); + response.admin = response.admin || {}; + let inv = response.inv || {}; + let rq = $$.dc('srq', frm); + let rif = $$.tblset({ class: 'invi' }, rq); + rif.bdy.remove(); + rif.ft = $$[0]('tfoot'); + rif.tbl.data($.extend({ invid: inv.Id, new: {}, sms: { }, itm: {}, bai: [] }, response)); + let thr = $$.tr(rif.hd).aC('shd').append([$$.th().aC('aux')]); /* header row for items */ + $rct.invHR.forEach(h => $$.th(thr, h)); + rif.tbl.on('fds.inv', $inv.invSumUpdate); + $.each(response.req || [], function (ri, rx) { + let bdy = $$.tbody(rif.tbl).data($.extend({}, rx)); + $inv.rendersrq.call(bdy); + }); + + /* add an empty */ + let atr = $$.tr($$.tbody(rif.tbl), { class: 'placeholder' }).data({ net_val: 0, vat_val: 0, svcnet_val: 0, svcvat_val: 0, net: 0 }); + $inv.rrw.call(atr); + + rif.ft.appendTo(rif.tbl); + + + let fm = (cls, txt, nme, hd, dta) => { + let fr = $$.dc('inpfrm', frm).aC(cls).append(typeof hd === 'string' ? $$.dc('ahd', hd) : (hd > 0 ? $$.dc('ahd', $rct.frm[nme]) : null)), fc = $$.dc('content', fr).rwText(txt); + $$.dc('axf', fr).append($$.dc('ibtn edit').data('dialog', $rct.frm[nme]).append(gi('pencil')).click($.extend({ t: fc, nme: nme, change: (nv) => { rif.tbl.data('new')[nme] = nv; } }, dta), $inv.eHtml)); + rif.tbl.data('new')[nme] = txt; + }; + fm('tfrm', inv.InvoiceTitle, 'invoicetitle', 0, null); + fm('adrfrm', inv.SendToAddress, 'invoiceaddress', 0, null); + fm('locfrm', inv.ProvisionLocation, 'loc', 1, null); + fm('emailfrm', inv.SendToEmail, 'invoiceemail', 0, null); + $$.dc('sndfrm', frm).append($$.dc('content').text(response.admin.sender)); + + fm('admfrm', inv.ProvisionPeriod, 'provisionperiod', ((inv.ProvisionPeriod || '').includes('-') === true ? $rct.provP : $rct.provD), 1, null); + rif.tbl.data('new').CustomValues = inv.CustomValues || ''; + $$.dc('inpfrm ctpfrm', frm).text(jObj(inv.CustomValues, 'contactName')); + //adm = $$.dc('admfrm', frm), admc = $$.dc('content', adm), + + rif.tbl.children('tbody').each($inv.bdysort); + rif.tbl.trigger('fds.inv'); /* trigger calculations */ + $inv.eM(false, true, 'iss,p13b,ctp'); + }, complete: () => { + o.c.trigger('modal_close'); + } + }); +}; +$inv.cSt = function (data) { + data = data || {}; + let lf = $fis.lf(), frm = $$.dc('invoice_layout', $fis.frm_edit()).append($$.dc('btn sprev').click($inv.sedit)); + let ww = $fis.cf().width() > (frm.width() + lf.width() + 20); + lf.tC('fix', ww).tC('hd', !ww); + $inv.eM(false, true); + let fr = $$.dc('rfrm').ldng(1); + let o = $ocms.dlg(fr, { width: 1000 }); + o.ft.rwText($ict.iq1); + $ocms.postXT({ + url: $ocms.url('inv/pget'), data: { id: data.id }, success: (response) => { + if (o) { o.ft.rwText($ict.iq2); } + $ocms.postXT({ + url: $ocms.url('inv/storno'), data: { id: data.id, mode: data.mode }, success: (response) => { + //console.debug(response); + response.admin = response.admin || {}; + response.admin.p13b = bool(response.admin.p13b || '', (((response.inv || {}).InvoiceOptions || '').split(',').includes('§13b') === true)); + let inv = response.inv || {}; + let rq = $$.dc('srq', frm); + let rif = $$.tblset({ class: 'invi' }, rq); + rif.bdy.remove(); + rif.ft = $$[0]('tfoot'); + rif.tbl.data($.extend({ invid: inv.Id, new: {}, sms: {}, itm: {}, bai: [] }, response)); + let thr = $$.tr(rif.hd).aC('shd').append([$$.th().aC('aux')]); /* header row for items */ + $rct.invHR.forEach(h => $$.th(thr, h)); + rif.tbl.on('fds.inv', $inv.invSumUpdate); + $.each(response.req || [], function (ri, rx) { + let bdy = $$.tbody(rif.tbl).data($.extend({}, rx)); + $inv.rendersrq.call(bdy); + }); + + /* add an empty */ + let atr = $$.tr($$.tbody(rif.tbl), { class: 'placeholder' }).data({ net_val: 0, vat_val: 0, svcnet_val: 0, svcvat_val: 0, net: 0 }); + $inv.rrw.call(atr); + + rif.ft.appendTo(rif.tbl); + + + let fm = (cls, txt, nme, hd, dta) => { + let fr = $$.dc('inpfrm', frm).aC(cls).append(typeof hd === 'string' ? $$.dc('ahd', hd) : (hd > 0 ? $$.dc('ahd', $rct.frm[nme]) : null)), fc = $$.dc('content', fr).rwText(txt); + $$.dc('axf', fr).append($$.dc('ibtn edit').data('dialog', $rct.frm[nme]).append(gi('pencil')).click($.extend({ t: fc, nme: nme, change: (nv) => { rif.tbl.data('new')[nme] = nv; } }, dta), $inv.eHtml)); + rif.tbl.data('new')[nme] = txt; + }; + fm('tfrm', inv.InvoiceTitle, 'invoicetitle', 0, null); + fm('adrfrm', inv.SendToAddress, 'invoiceaddress', 0, null); + fm('locfrm', inv.ProvisionLocation, 'loc', 1, null); + fm('emailfrm', inv.SendToEmail, 'invoiceemail', 0, null); + $$.dc('sndfrm', frm).append($$.dc('content').text(response.admin.sender)); + + fm('admfrm', inv.ProvisionPeriod, 'provisionperiod', ((inv.ProvisionPeriod || '').includes('-') === true ? $rct.provP : $rct.provD), 1, null); + rif.tbl.data('new').CustomValues = inv.CustomValues || ''; + $$.dc('inpfrm ctpfrm', frm).text(jObj(inv.CustomValues,'contactName')); + //adm = $$.dc('admfrm', frm), admc = $$.dc('content', adm), + + rif.tbl.children('tbody').each($inv.bdysort); + rif.tbl.trigger('fds.inv'); /* trigger calculations */ + + }, complete: () => { + o.c.trigger('modal_close'); + } + }); + + }, error: () => { + if (o) { o.c.trigger('modal_close'); } + } + }); +}; +$inv.eHtml = function (ev) { + let t = $(this), frmct = ev.data instanceof jQuery ? ev.data : ev.data.t, flds = [ + { name: 'txt', label: 'Text', type: 'html', value: frmct.html(), tinymce: true, attr: { style: 'height: 300px' } } + ]; + let change = ev.data.change || null; + let sets = { + title: t.data('dialog') || '', + success: function (response) { + frmct.html(response.txt); + if (typeof change === 'function') { + change(response.txt); + } + }, + tinymce: { valid_elements: 'br', hidemenu: true, hidetoolbar: true } + } + if (Array.isArray(ev.data.list)) { + let optf = $$.dc('lstfrm'); + $.each(ev.data.list, (ii, lx) => { + let li = $$.dc('li', optf).append((ev.data.lbl || '') !== '' ? $$.dc('lbl').rwText(lx[ev.data.lbl]) : null); + $$.dc('adr', li).rwText(lx[ev.data.property]).data('val', lx[ev.data.property]).click(function () { + let t = $(this), tgt = t.closest('.modal-body').find(':input[name="txt"]'); + if (tgt.is('.tinymce')) { + tinymce.get(tgt.attr('id')).setContent($$.s().rwText(t.data('val')).html()); + } else if (tgt.prop('tagName') === 'TEXTAREA') { + tgt.val(t.data('val')).change(); + } else { + tgt.rwText(t.data('val')); + } + }); + }); + sets.addcontent = optf; + } + $ocms.dlgform(flds, sets); +}; +$inv.setVat = function (ev) { + let t = $(this), thisrow = ev.data; + let vat = prompt($rct.rqV); + if (vat) { + vat = parseFloat(vat.replace('%', '')); + if (vat > 1) { + vat = vat * 0.01; + } + if (isNaN(vat) === false) { + thisrow.siblings('.itm').each(function () { + let rwi = $(this), dta = rwi.data(); + dta.vat = fnum(vat, { style: 'percent' }).replace(' ', ''); + if ((dta.net_val || 0) > 0) { + dta.vat_val = dta.net_val * vat; + } + if ((dta.svcnet_val || 0) > 0) { + dta.svcvat_val = dta.svcnet_val * vat; + } + }); + $inv.t_fds_inv(); + } + } +}; +$inv.inRow = function (ev) { + let t = $(this), thisrow = ev.data, dta = {}, flds = $rcol.itm.clone(['SortOrder', 'NameOrNumber', 'Type', 'quantityhours', 'UnitString', 'net', 'svcnet_val', 'svcvat_val', 'net_val', 'vat_val', 'vat', 'Note']); /* fields without values */ + let nid = 'N' + (((1 + Math.random()) * 0x10000) || 0).toString(16).substr(6), newrow = $$.tr({ id: 'itm_' + nid.toString(), class: 'itm' }); + $ocms.dlgform(flds, { + title: t.data('dialog') || '', + success: function (response) { + newrow.data($.extend({ Id: nid }, dta, response)); + $inv.rrw.call(newrow); + newrow.insertAfter(thisrow); + $inv.t_fds_inv(); + }, typedvalues: true + }); +}; +$inv.eRow = function (ev) { + let t = $(this), row = ev.data, dta = row.data() || {}, fnme = ['SortOrder', 'NameOrNumber', 'Type', 'quantityhours', 'UnitString', 'net', 'svcnet_val', 'svcvat_val', 'net_val', 'vat_val', 'vat', 'Note']; + if (!dta.id && (dta.Type || '') === '') { + fnme.unshift('Type'); + } + let flds = $rcol.itm.clone(fnme).applyValues(dta); + flds.set('Type', 'hidden', 'type'); + $inv.eRw.call(t, row, dta, flds); +}; +$inv.eRw = function(row, dta, flds) { + let t = $(this); + $ocms.dlgform(flds, { + title: t.data('dialog') || '', + success: function (res) { + let d = {} + if ((dta.Id || '') === '') { + d.Id = 'N' + (((1 + Math.random()) * 0x10000) || 0).toString(16).substr(6); + row.attr('id', 'itm_' + d.Id.toString()); + } + d.quantity = ((res.quantityhours ||'').toString() + ' ' + (res.UnitString || '').toString()).trimEnd(); + row.data($.extend({}, dta, res, d)); + console.debug('eRw success %o', row.data()); + $inv.rrw.call(row); + $inv.t_fds_inv(); + }, typedvalues: true + }); +}; +$inv.bdysort = (i, e) => { $(e).Sortable({ dragItem: false, dragHandleClass: 'ico', parentident: 'tr', swapdone: (p1, p2, i1, i2) => { $inv.t_fds_inv(); } }) } +$inv.rrw = function () { + let rw = $(this), dta = rw.data(), co = {}, ph = rw.is('.placeholder'), hn = rw.is('.hidenote'); + let oHtml = (e) => $$.d().append(e).html(); + let bc = [ + $$.dc('ibtn insb', { title: $rct.iRb }).append(gi('indent-left')).click(rw, $inv.inRow) + ]; + if (ph === false) { + bc.unshift($$.dc('ibtn edit', { title: $rct.cP }).append(gi('pencil')).click(rw, $inv.eRow)); + bc.push($$.dc('ibtn del', { title: $rct.dR }).append(gi('trash')).click(function (e) { if (confirm($rct.cD)) { rw.remove(); $inv.t_fds_inv(); } })); + } + let axf = $$.dc('axf').append(bc); + if (ph === true) { + co = { id: '', typ: 'placeholder' }; + } else if (rw.is('.itm.osum') === true) { + co = { invrqid: dta.InvRqId, id: 'osum' + rw.index(), typ: 'osum', p: '', q: null, t: oHtml(dta.tbl.tbl), tt: null, v: null, vt: dta.net_val, vs: dta.svcnet_val, vat: dta.vat, vv: dta.vat_val, vsv: dta.svcvat_val, det: false }; + } else { + co = { invrqid: dta.InvRqId, id: dta.Id || '', typ: dta.Type || 'other', p: '', q: null, t: '', tt: null, v: null, vt: dta.net_val, vs: dta.svcnet_val, vat: dta.vat, vv: dta.vat_val, vsv: dta.svcvat_val, det: (dta.Note || '') !== '' && hn === false }; + $$.dc('ibtn ico move', axf, { title: $rct.mR }); /* should be the last added */ + + co.p = dta.position || (dta.SortOrder || ''); + if (co.id === '') { + co.t = ''; + } else if (['Text', 'Title'].includes(co.typ) && (dta.net_val || 0) === 0) { + co.t = dta.htmltext || (((dta.NameOrNumber || '').substr(0, 1) !== '#' ? oHtml($$[0]('p').text(dta.NameOrNumber)) : '') + (dta.Note || '')); + } else { + co.tt = co.det ? '' : $$.s(dta.Note || '').text(); + co.q = dta.quantity || (fnum(dta.quantityhours) + ' ' + (dta.UnitString || '')); + co.t = dta.htmltext ||(co.det ? (oHtml($$.s(dta.NameOrNumber || '')) + oHtml($$.dc('desc').html(dta.Note))) : oHtml($$.s(dta.NameOrNumber || ''))); + co.v = dta.net + co.vt = dta.net_val + } + } + if ((dta.Note || '') !== '') { + $$.dc('ibtn add', axf).append(gi('object-align-left')).click(function (e) { + $inv.rrw.call(rw.tC('hidenote')); + }); + } + let tda = [ + $$.tdc('aux').append(axf), + $$.tdc('keep').text(co.p) + ]; + if (co.id === '') { + tda.push($$.td(rw, { colspan: 4 }).append(co.t)); + } else { + Array.prototype.push.apply(tda, co.q ? [$$.tdc('keep').text(co.q)] : []); + Array.prototype.push.apply(tda, [ + $$.tdc('txt', { colspan: !co.q ? 2 : 1, title: co.tt }).append(co.t), + $$.tdc('currency').text(fnum(co.v, $rct.cst)), + $$.tdc('currency inetval').text(fnum(co.vt, $rct.cst)).attr('title', $rct.svcPart + ': ' + fnum(co.vs, $rct.cst)) + ]); + } + rw.empty().attr('class', ph ? 'placeholder' : 'itm').aC(co.Typ).tC('hidenote', hn).append(tda); + dta.co = co; +}; +$inv.invSumUpdate = function () { + let tbl = $(this), ft = tbl.children('tfoot').empty(), p13b = bool((tbl.data().admin || {}).p13b || '', false); + tbl.nextAll('.fnote').remove(); + let sms = { ttn: 0, ttb: 0, ttvat: 0, tscn: 0, tscvat: 0, vat: {}, itmnet: {} }, ba = []; + let rwcy = (lbl, val, cls) => $$.tdc('currency', $$.tr(ft, { class: cls || 'tsum' }).append([$$.tdc('aux'), $$.td({ colspan: 4 }).text(lbl)]), fnum(val, $rct.cst)), fn = (t) => $$.dc('fnote').insertAfter(tbl).rwText(t); + let csms = function (rrx, sms, sid) { + sms.tscn += (rrx.svcnet_val || 0); + sms.tscvat += (rrx.svcvat_val || 0); + sms.ttn += (rrx.net_val || 0); + sms.ttvat += (rrx.vat_val || 0); + sms.ttb += ((rrx.net_val || 0) + (rrx.vat_val || 0)); + if ((rrx.vat || '') !== '') { + sms.vat[rrx.vat] = (sms.vat[rrx.vat] || 0) + (rrx.vat_val || 0); + } + //sms.itmnet[sid] = (sms.itmnet[sid] || 0) + (rrx.net_val || 0); + }; + let bds = tbl.children('tbody'); + bds.each((bi, bdy) => { + let b = $(bdy), rx = b.data() || {}, i = [], bnet = 0, itm = b.find('tr.itm'), iso = 0, ipos = 0; + b.tC('empty', itm.length < 1); + itm.each((ti, tx) => { + + let rrx = $(tx).data() || {}; csms(rrx, sms, rx.Id); bnet += (rrx.net_val || 0); i.push(rrx.co); + //console.debug('rrx %o', rrx); + if (((typeof rrx.SortOrder === 'undefined' || rrx.SortOrder === null) ? -1 : rrx.SortOrder) > -1) { + if (['text', 'title'].includes((rrx.Type || 'other').toLowerCase()) === false) { ipos++; } + rrx.SortOrder = iso; + rrx.position = ipos; + $inv.rrw.call(tx); + } + }); + //console.debug('%o', { + // f: b.find('tr.isum > td.isumval'), t: fnum(bnet, $rct.cst), n: bnet + //}); + b.find('tr.isum > td.isumval').text(fnum(bnet, $rct.cst)); + ba.push({ Id: rx.Id, nme: rx.Name, text: rx.text, itm: i, netval: bnet }); + }); + let nonempty = tbl.find('tbody:not(.empty)').length; + bds.find('tr.isum').tC('hidden', nonempty < 2); + //let fnet = $$.tdc('currency', $$.tr(ft, { class: 'tsum' }).append([$$.tdc('aux'), $$.td({ colspan: 4 }).text('Netto')]), fnum(sms.ttn, $rct.cst)); + rwcy('Netto', sms.ttn); + if (p13b === false) { + $.each(sms.vat, (vi, vx) => { + //$$.tdc('currency vat', $$.tr(ft, { class: 'tvat' }).append([$$.tdc('aux'), $$.td({ colspan: 4 }).text('Umsatzsteuer ' + vi)]), fnum(vx, $rct.cst)); + rwcy($rct.vat + ' ' + vi, vx, 'tvat'); + }); + } else { + sms.ttb = sms.ttn; + } + //let fsum = $$.tdc('currency', $$.tr(ft, { class: 'tsum' }).append([$$.tdc('aux'), $$.td({ colspan: 4 }).text('Summe')]), fnum(sms.ttb, $rct.cst)); + rwcy('Summe', sms.ttb); + let itype = tbl.data().admin.type; + if (itype === 'i') { + fn($rct.note2); + fn($rct.note4); + } else if (itype === 'c') { + fn($rct.note2); + } else { + fn(string($rct.note3, [fnum((sms.tscn + sms.tscvat) * (tbl.data().admin.tax_servicerefund || 0), $rct.cst)])).aC('ntax'); + fn($rct.note2); + fn(string($rct.note1, [fnum(sms.tscn + sms.tscvat, $rct.cst), fnum(sms.tscn, $rct.cst), fnum(sms.tscvat, $rct.cst)])); + } + if (p13b === true) { + fn($rct.note13b); + } + tbl.data('sms', sms); + tbl.data('bai', ba); +}; +$inv.worknotes = function (rx) { + let wn = ''; + rx.steps.forEach((s, si) => { + let flds; + try { + flds = JSON.parse(s.Data || {}).fields || []; + } catch (e) { + console.debug(e); + flds = []; + } + if (Array.isArray(flds || '') !== true) { + if (typeof flds === 'object' && Array.isArray(flds.field || '') === true) { + flds = flds.field; + } else { + flds = []; + } + } + flds.forEach((v, si) => { + if (v.name === 'Ausgeführte Arbeiten') { + wn = v.result || ''; + } + }); + }); + return wn; +}; +$inv.rendersrq = function () { + let bdy = $(this).empty(), onesum = bdy.is('.onesum'); + let rx = bdy.data(); + //if (ri > 0) { + // $$.tr(bdy).aC('sep nosort').append($$.td({ colspan: 6 })); + //} + let rtr = $$.tr(bdy, { id: 'srq' + rx.Id }).aC('title nosort'), cl = $rcol.itm.lbl(); + let aux = $$.dc('axf').appendTo($$.tdc('aux', rtr)); + $$.dc('ibtn osum', aux, { title: $rct.combP }).append(gi('euro')).click(function (e) { + bdy.tC('onesum'); + $inv.rendersrq.call(bdy); + $inv.t_fds_inv(); + }); + $$.dc('ibtn setvat', aux, { title: $rct.sV }).append(gi('gbp')).click(rtr, $inv.setVat); + $$.dc('ibtn insb', aux, { title: $rct.iRb }).append(gi('indent-left')).click(rtr, $inv.inRow); + let stxt = $$.sc('text', rx.text); + let nme = $$.td(rtr, { colspan: onesum ? 4 : 5 }).append(stxt), oidta, numkeys = ['net_val', 'vat_val', 'svcnet_val', 'svcvat_val', 'net']; + $$.dc('ibtn edit', aux).data('dialog', $rcol.req.lbl().Name).append(gi('pencil')).click({ t: stxt, change: (nv) => { rx.text = nv; $inv.t_fds_inv(); } }, $inv.eHtml) + if (onesum) { + $$.tdc('currency isumval', rtr); + oidta = { Id: rx.Id.toString() + '_osum', net_val: 0, vat_val: 0, svcnet_val: 0, svcvat_val: 0, net: 0 }; + oidta.tbl = $$.tblset({ class: 'stbl' }); + } + $.each(rx.items || [], (ii, ix) => { + let itr, idta = { Id: ix.Id, net_val: ix.net_val || 0, vat_val: ix.vat_val || 0, svcnet_val: 0, svcvat_val: 0, net: ix.net || 0, Note: ix.Note || '' }; + switch (ix.Type.toLowerCase()) { + case 'service': + idta.svcnet_val = ix.net_val || 0; + idta.svcvat_val = ix.vat_val || 0; + } + if (onesum) { + itr = $$.tr(oidta.tbl.bdy, { id: 'itm' + ix.Id, class: 'sitm' }).aC(ix.Type); + if (ix.Type === 'Text' || ix.Type === 'Title') { + $$.td(itr, { colspan: 2 }).html(ix.htmltext || ix.Note); + } else { + $$.tdc('keep', itr).text(ix.quantity || ((ix.quantityhours || 0) > 0 ? fnum(ix.quantityhours) + (ix.UnitString || '').eine(' ','') : '')); + if (ix.htmltext) { + $$.tdc('txt', itr).html(ix.htmltext); + } else { + $$.tdc('txt', itr).text(ix.NameOrNumber).attr('title', ix.Note); + } + } + $.each(numkeys, (k, ky) => { oidta[ky] += idta[ky]; }); + itr.data(idta); + } else { + $.extend(idta, ix); + itr = $$.tr(bdy, { id: 'itm' + ix.Id, class: 'itm' }); + itr.data(idta); + $inv.rrw.call(itr); + } + }); + if (onesum) { + let oi = $$.tr(bdy, { id: 'itmsq' + rx.Id, class: 'itm osum' }).data(oidta); + $inv.rrw.call(oi); + } else { + let istr = $$.tr(bdy).aC('isum nosort'); + $$.tdc('aux', istr); + $$.td(istr, { colspan: 4 }).text($rct.iSum); + $$.tdc('currency isumval', istr); + } +}; +$inv.t_fds_inv = () => { $('div.invoice_layout table.invi').trigger('fds.inv'); }; +$inv.sedit = () => { + $inv.sprev(true); +}; +$inv.jdisp = function (ev) { + ev.stopPropagation(); + if (ev.data.id) { + $inv.disp(ev.data.id, (ev.data.typ ||'')); + } +} +$inv.disp = (id, typ) => { + let u = ''; + switch (typ) { + case 'inv': + u = 'inv/rdoc'; + break; + case 'rem': + u = 'rem/rdoc'; + break; + } + if (u !== '') { + $ocms.postXT({ + url: $ocms.url(u), data: { id: id || '', typ: 'img' }, success: (response) => { + let c = $$.dc('imagecollection pdfpreview'), vhr = Math.round(vh() * 0.88), invid = response.id; + $.each(response.img || [], function (ii, img) { + $$.dc('pdfp', c).append($$.img(img).css('max-height', (vhr - rpx(6)).toString() + 'px')); + }); + $ocms.dlg(c, { + size: [vhr, Math.round(vw() * 0.88)], zindex_min: 50, form: false, exclusive:false + }); + } + }); + } +}; +$inv.jdbn = function (ev) { + $ocms.postXT({ + url: $ocms.url('inv/rdocn'), data: { name: ev.data.id || '', typ: 'img' }, success: (response) => { + let c = $$.dc('imagecollection pdfpreview'), vhr = Math.round(vh() * 0.88), invid = response.id; + $.each(response.img || [], function (ii, img) { + $$.dc('pdfp', c).append($$.img(img).css('max-height', (vhr - rpx(6)).toString() + 'px')); + }); + $ocms.dlg(c, { + size: [vhr, Math.round(vw() * 0.88)], zindex: 50, form: false + }); + } + }); +}; +$inv.sp13b = () => { + var l = $('div.invoice_layout'), tbl = l.find('table.invi'), d = tbl.data(); + d.admin.p13b = true; + if ((d.inv.InvoiceOptions || '').split(',').includes('§13b') === false) { + d.inv.InvoiceOptions += ',§13b'; + } else { + } + tbl.trigger('fds.inv'); +}; +$inv.sctp = () => { + let flds = $invcol.ctp; + $ocms.dlgform(flds, { + title: $ict.ctp, + success: function (response) { + + var l = $('div.invoice_layout'), tbl = l.find('table.invi'), d = tbl.data(); + let cvo = {}; + if (typeof d.new !== 'undefined' && (d.new.CustomValues || '').substr(0, 1) === '{') { + cvo = JSON.parse(d.inv.CustomValues); + } + cvo.contactName = response.name; + cvo.contactEmail = response.email; + d.new.CustomValues = JSON.stringify(cvo); //Assign it to new Values so that this is submitted also + l.find('.ctpfrm').text(ne(response.name, response.email)); + + }, typedvalues: true + }); +}; +$inv.ssave = () => { + var l = $('div.invoice_layout'), d = l.find('table.invi').data(); + $inv.t_fds_inv(); + l.aC('freeze'); + $ocms.postXT({ + url: $ocms.url('req/save'), data: { invc: JSON.stringify({ admin: d.admin, req: d.bai, sms: d.sms, new: d.new }), id: d.invid || '' }, success: (response) => { + $inv.cntInv({ id: response.id }); + }, error: () => { + alert($ict.eis); + }, complete: () => { + l.rC('freeze'); + } + }); +}; +$inv.sprev = (change) => { + var l = $('div.invoice_layout'), d = l.find('table.invi').data(); + change = bool(change, false); + $inv.t_fds_inv(); + l.aC('freeze'); + //console.debug({ admin: d.admin, req: d.bai, sms: d.sms, new: d.new }); + if ($fis.ValidateEmail(d.new.invoiceemail || '') === false) { + if (bool(confirm($ict.ivE + $ict.ivEc),false) === false) { + l.rC('freeze'); + return; + } + } + $ocms.postXT({ + url: $ocms.url('req/' + (change === true ?'sedit':'sprep')), data: { invc: JSON.stringify({ admin: d.admin, req: d.bai, sms: d.sms, new: d.new }), id: d.invid ||'' }, success: (response) => { + l.rC('freeze'); + let c = $$.dc('imagecollection pdfpreview'), vhr = Math.round(vh() * 0.88), invid = response.id, invtp = response.total; + if (invtp > 10) { + $$.dc('note warn', c).text($ict.tpe); + } + $.each(response.img || [], function (ii, img) { + $$.dc('pdfp', c).append($$.img(img).css('max-height', (vhr - rpx(6)).toString() + 'px')); + }); + for (let ic = (response.img || []).length + 1; ic <= invtp; ic++) { + $$.dc('pdfp ph', c).append($$.dc('note', $ict.pna)); + } + $ocms.dlg(c, { + size: [vhr, Math.round(vw() * 0.88)], zindex: 50, form: false, button: $rct.crI, confirm: function (e) { + let ct = $(this); + $ocms.postXT({ + url: $ocms.url('req/sconf'), data: { id: invid }, success: () => { + ct.trigger('modal_close'); + window.open($ocms.url('req/idoc') + '?id=' + invid, '_blank'); /* open pdf in new tab */ + $ocms.init('req'); /* go back to request list */ + $inv.rReload(); + }, error: () => { + alert($t.f1); + ct.trigger('modal_close'); + } + }); + }, cancel: function (e) { + let ct = $(this); + if (confirm($ict.cdI)) { + $ocms.postXT({ + url: $ocms.url('req/sdel'), data: { + id: invid + } + }); + } + $inv.rReload(); + } + }); + } + }); +}; +$inv.rReload = () => { + try { + let s = $('#listframe ul.rql:first').data(); + $inv.cInv2({ id: s.search }); + } catch (e) { } +}; +$inv.quantChange = function (i) { + //console.debug({ t: this, i: i }); + let t = $(this), f = t.closest('form'), fi = {}, pf = (i) => parseFloat(i.toString().replace('%', '').replace(',', '.')), rtp = (num) => num.toFixed(2); + f.find(':input').each((i, e) => { fi[$(e).attr('name')] = $(e); }); + let qv = parseInt(fi.quantityhours.val() || '0'), nv = pf(fi.net.val() || '0'), vat = pf(fi.vat.val()) * 0.01; + if (qv > 0 && nv > 0) { + fi.net_val.val(rtp(qv * nv)); + fi.vat_val.val(rtp(qv * nv * vat)); + if (['Service'].includes(fi.Type.val())) { + fi.svcnet_val.val(rtp(qv * nv)); + fi.svcvat_val.val(rtp(qv * nv * vat)); + } + } +}; +$inv.storno = function (id, fds) { + let o, fr = $$.dc('choicefrm').append([ + $$.dc('btn', 'Storno ohne Details').click({ id: id, mode: 'simple' }, (ev) => { o.c.trigger('modal_close'); $inv.cSt(ev.data); }) + , $$.dc('btn', 'Storno mit neuer Rechnung').click({ id: id }, (ev) => { o.c.trigger('modal_close'); $inv.ccStInv(ev); }) + , $$.dc('btn', 'Storno mit best. Rechnung').tC('inactive', bool(fds, false) === false).click({ id: id, mode: 'copy' }, (ev) => { if (bool(fds, false) === true) { o.c.trigger('modal_close'); $inv.cSt(ev.data); }}) + ]); + o = $ocms.dlg(fr, { width: 1000 }); +}; +$inv.credit = function (id, fds) { + let o, fr = $$.dc('choicefrm').append([ + $$.dc('btn', 'Gutschrift').click({ id: id, mode: 'credit' }, (ev) => { o.c.trigger('modal_close'); $inv.cSt(ev.data); }) + ]); + o = $ocms.dlg(fr, { width: 1000 }); +}; +$inv.setPyd = function (id) { // set invoice payed + if (confirm($ict.cpyd)) { + $ocms.postXT({ + url: $ocms.url('inv/setpyd'), timeout: 60, data: { id: id }, success: (response) => { + alert($ict.relm); + }, error: () => { + alert($t.f1); + } + }); + } +}; +$inv.setUpd = function (id) { // set invoice payed + if (confirm($ict.cupd)) { + $ocms.postXT({ + url: $ocms.url('inv/setupd'), timeout: 60, data: { id: id }, success: (response) => { + alert($ict.relm); + }, error: () => { + alert($t.f1); + } + }); + } +}; +$inv.resendRem = function (ev) { + ev.stopPropagation(); + if (ev.data.id && confirm(string($ict.remresc, [ev.data.name]))) { + $ocms.postXT({ + url: $ocms.url('rem/resend'), timeout: 60, data: { id: ev.data.id }, success: (response) => { + alert(string($ict.remresr, [ev.data.name])); + }, error: () => { + alert($t.f1); + } + }); + } +}; +$inv.dspRem = function (id) { //reminder creation + let fr = $$.dc('rfrm').ldng(1); + let o = $ocms.dlg(fr, { width: 1000 }); + o.ft.rwText($rct.rq2); + $ocms.postXT({ + url: $ocms.url('inv/getrem'), timeout: 60, data: { id: id, drafts: false }, success: (response) => { + o.ft.empty(); + let ts = $$.tblset({ class: 'invtbl'}, fr.empty()), fd = $invcol.rem2; + let thr = $$.tr(ts.hd), haux = $$.th(thr); + $.each(fd.fields || [], (ci, cx) => { + $$.th(thr).text(cx.label); + }); + let cst = false; + $.each(response, (ri, rw) => { + cst = !cst; + let tr = $$.tr(ts.bdy).tC('alt', cst), raux = $$.td(tr); + tr.click(function () { + tr.tC('selected').siblings().rC('selected'); + }); + if (bool(rw.hasFile, false)=== true) { + $$.dc('idl ilbtn', raux, { title: $ict.dl + '\n' + rw.DocumentName }).append(gi('save-file', 'ico')).click({ id: rw.Id }, $inv.downloadrem); + $$.dc('idl ilbtn', raux, { title: $ict.remdsp + '\n' + rw.DocumentName }).append(gi('eye-open', 'ico')).click({ id: rw.Id, typ: 'rem' }, $inv.jdisp); + $$.dc('idl ilbtn', raux, { title: $ict.remres + '\n' + rw.DocumentName }).append(gi('refresh', 'ico')).click({ id: rw.Id, typ: 'rem', name: rw.DocumentName }, $inv.resendRem); + } + $.each(fd.fields || [], (ci, cx) => { + let td = $$.td(tr).aC(cx.dtype), val = rw[cx.name]; + if (typeof cx.dfnc === 'function') { + cx.dfnc.call(td, val, rw); + } else { + switch (cx.type || '') { + case 'date': + td.text(fdt(rw[cx.name], 'dd.MM.yy')); + break; + case 'datetime': + td.text(fdt(rw[cx.name])); + break; + case 'html': + td.append($$.dc('ctw').html(val)); + td.append($$.dc('ttip').html(val)); + break; + default: + td.text(rw[cx.name]); + } + } + switch (cx.name || '') { + case 'InvoiceId': + td.aC('keep'); + break; + } + switch (typeof cx.title) { + case 'function': + cx.title.call(td, rw); + break; + case 'string': + td.attr('title', cs.title); + } + }); + }); + }, error: () => { + fr.empty(); + o.ft.rwText($t.f1); + }, complete: () => { + fr.ldng(0); + } + }); +}; +$inv.ccRem = function (id, InvoiceId) { //reminder creation + let t = $(this); + $ocms.postXT({ + url: $ocms.url('rem/lrem'), timeout: 60, data: { id: id }, success: (response) => { + let flds = $invcol.rid.clone(); /* fields without values */ + flds.applyValues(response.ov); + let ac = $$.dc('ac'), tbl = $$.tblset({class: 'fullgrid fullwidth'}, ac); + if ((response.lst || []).length > 0) { + $$.d({ 'style': 'margin: 1.5rem 0 1rem 0;font-size: 110%;text-decoration: underline;'}).prependTo(ac).text($ict.rovlh); + let trh = $$.tr(tbl.hd); + $ict.rovl.forEach((f, n) => $$.th(trh, f)); + $.each(response.lst, (ri, rw) => { + let tr = $$.tr(tbl.bdy); + tr.append([$$.tdc('keep', rw.subject), $$.tdc('currency', fnum(rw.amount, $rct.cst)), $$.tdc('currency', fnum(rw.amount_payed, $rct.cst)), $$.tdc('keep', fdt(rw.DateFinalized, 'dd.MM.yy'))]); + }); + } else { + $$.td($$.tr(tbl.bdy), $ict.nd); + } + $ocms.dlgform(flds, { + addcontent: ac, + title: string($ict.remdt, [InvoiceId || '?']), + success: function (sets) { + $inv.ccRem_s2(id, sets); + }, typedvalues: true + }); + } + }); +}; +$inv.rRemRw = function (dta) { + let tr = $(this), rem = dta.rm || {}; + tr.empty().data({ invoiceid: rem.invoiceid, invoicedate: rem.invoicedate, amount: rem.amount, amount_payed: rem.amount_payed }); + let axf = $$.dc('axf').append($$.dc('ibtn edit', { title: $rct.cP }).append(gi('pencil')).click(tr, $inv.eRowR)); + tr.append([$$.tdc('aux').append(axf), $$.tdc('keep', rem.invoiceid), $$.tdc('keep', fdt(rem.invoicedate, 'dd.MM.yy')), $$.tdc('currency', fnum(rem.amount, $rct.cst)), $$.tdc('currency', fnum(rem.amount_payed, $rct.cst)), $$.tdc('currency', fnum(rem.amount - rem.amount_payed, $rct.cst))]); +}; +$inv.eRowR = function (ev) { + let t = $(this), row = ev.data, dta = row.data() || {}; + let flds = $invcol.rem.clone().applyValues(dta); + $ocms.dlgform(flds, { + title: t.data('dialog') || '', + success: function (res) { + let tbl = t.closest('table'), tdta = tbl.data(); + $.extend(tdta.rm, res); + tbl.data(tdta); + $inv.rRemRw.call(row, tdta); + }, typedvalues: true + }); +}; +$inv.ccRem_s2 = function (id, sets) { //reminder creation + let lf = $fis.lf(false).rC('fix').aC('hd'), frm = $$.dc('invoice_layout', $fis.frm_edit()).append($$.dc('btn sprev').click($inv.rprev)); + $inv.eM(false, true); + let fr = $$.dc('rfrm').ldng(1); + //let o = $ocms.dlg(fr, { width: 1000 }); + //o.ft.rwText($rct.rq2); + $ocms.postXT({ + url: $ocms.url('rem/get'), timeout: 60, data: $.extend({ id: id }, sets), success: (response) => { + //console.debug(response); + let rem = response.rm || {}; + let rq = $$.dc('srq', frm); + $ict.remt[rem.type].forEach(r => $$[0]('p').rwText(r).appendTo(rq)); + let rif = $$.tblset({ class: 'invi' }, rq); + rif.ft = $$[0]('tfoot'); + rif.tbl.data($.extend({ invid: rem.invid, new: {} }, response)); + let thr = $$.tr(rif.hd).aC('shd').append([$$.th().aC('aux')]); /* header row for items */ + $ict.remHR.forEach(h => $$.th(thr, h)); + $inv.rRemRw.call($$.tr(rif.bdy), rif.tbl.data()); + rif.ft.appendTo(rif.tbl); + $ict.remt2[rem.type].forEach(r => $$[0]('p').rwText(r).appendTo(rq)); + + let fm = (cls, txt, nme, hd, dta) => { + let fr = $$.dc('inpfrm', frm).aC(cls).append(typeof hd === 'string' ? $$.dc('ahd', hd) : (hd > 0 ? $$.dc('ahd', $rct.frm[nme]) : null)), fc = $$.dc('content', fr).rwText(txt); + $$.dc('axf', fr).append($$.dc('ibtn edit').data('dialog', $rct.frm[nme]).append(gi('pencil')).click($.extend({ t: fc, nme: nme, change: (nv) => { rif.tbl.data('new')[nme] = nv; } }, dta), $inv.eHtml)); + rif.tbl.data('new')[nme] = txt; + }; + fm('tfrm', rem.subject, 'subject', 0, null); + fm('adrfrm', rem.invoiceaddress, 'invoiceaddress', 0, null); +// fm('locfrm', rem.ProvisionLocation, 'loc', 1, null); + fm('emailfrm', rem.invoiceemail, 'invoiceemail', 0, null); + $$.dc('sndfrm', frm).append($$.dc('content').text(rem.sender)); + + //adm = $$.dc('admfrm', frm), admc = $$.dc('content', adm), + + rif.tbl.children('tbody').each($inv.bdysort); + rif.tbl.trigger('fds.inv'); /* trigger calculations */ + + }, complete: () => { + //o.c.trigger('modal_close'); + } + }); +}; +$inv.rprev = () => { + var l = $('div.invoice_layout'), tbl = l.find('table.invi'), d = tbl.data(); + $.extend(d.new, tbl.find('tbody > tr:first').data()); + l.aC('freeze'); + //console.debug({ rem: d.rm, new: d.new }); + if ($fis.ValidateEmail(d.new.invoiceemail || '') === false) { + if (bool(confirm($ict.ivE + $ict.ivEc), false) === false) { + l.rC('freeze'); + return; + } + } + $ocms.postXT({ + url: $ocms.url('rem/prep'), data: { remc: JSON.stringify({ rem: d.rm, new: d.new }), id: d.invid || '' }, success: (response) => { + l.rC('freeze'); + let c = $$.dc('imagecollection pdfpreview'), vhr = Math.round(vh() * 0.88), remid = response.id; + $.each(response.img || [], function (ii, img) { + $$.dc('pdfp', c).append($$.img(img).css('max-height', (vhr - rpx(6)).toString() + 'px')); + }); + $ocms.dlg(c, { + size: [vhr, Math.round(vw() * 0.88)], zindex: 50, form: false, button: $ict.remd, confirm: function (e) { + let ct = $(this); + $ocms.postXT({ + url: $ocms.url('rem/conf'), data: { id: remid }, success: () => { + ct.trigger('modal_close'); + window.open($ocms.url('rem/idoc') + '?id=' + remid, '_blank'); /* open pdf in new tab */ + $ocms.init('req'); /* go back to request list */ + $inv.rReload(); + }, error: () => { + alert($t.f1); + ct.trigger('modal_close'); + } + }); + }, cancel: function (e) { + let ct = $(this); + if (confirm($ict.cdI)) { + $ocms.postXT({ + url: $ocms.url('rem/del'), data: { + id: remid + } + }); + } + $inv.rReload(); + } + }); + } + }); +}; +$inv.sis = (id) => { + if (confirm($ict.sisc)) { + $ocms.postXT({ + url: $ocms.url('inv/sis'), data: { id: id || '' }, success: (response) => { } + }); + } +}; +$inv.srs = (id) => { + if (confirm($ict.srsc)) { + $ocms.postXT({ + url: $ocms.url('rem/srs'), data: { id: id || '' }, success: (response) => { } + }); + } +}; + +$inv.mfrrel = (id) => { + $('#contentframe').ldng(); + $ocms.postXT({ + url: $ocms.url('inv/mfrrel'), data: { id: id || '' }, success: (response) => { $inv.rerenderinv(); }, complete: () => { + $('#contentframe').ldng(0); + } + }); +}; diff --git a/Fuchs/js/intranet/modules/fis.inv_shared.scss b/Fuchs/js/intranet/modules/fis.inv_shared.scss new file mode 100644 index 0000000..d77e879 --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.inv_shared.scss @@ -0,0 +1,411 @@ + + +.edit_frm { + + .invoice_layout { + margin: 2rem 2rem 2rem auto; /* align right */ + width: 50rem; + border: 1px solid #EEE; + padding: 25.5rem 3rem 3rem 3rem; + box-shadow: 4px 4px 9px rgba(50, 50, 50, 0.3); + position: relative; + + + .axf { + font-size: 1rem; /* will determine glyphs heights */ + display: none; + position: absolute; + right: 100%; + height: 100%; + min-height: 1.5rem; + min-width: 2rem; + background: #f0ffe2; + border: 1px solid #CCC; + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; + top: 0; + width: auto; + max-height: 1.5rem; + overflow: hidden; + padding: 0.1rem; + + > .ibtn { + cursor: pointer; + height: 100%; + width: 1.5rem; + display: inline-block; + position: relative; + } + } + + .sndfrm { + position: absolute; + font-size: 0.7rem; + color: #727272; + top: 4.7rem; + left: 3rem; + width: auto; + height: auto; + user-select: none; + } + + .emailfrm { + position: absolute; + font-size: 0.7rem; + top: 0.5rem; + left: 0.5rem; + width: auto; + height: auto; + cursor: pointer; + + &:hover { + div.axf { + display: block; + } + } + } + + .admfrm { + position: absolute; + right: 3rem; + top: 9rem; + width: auto; + height: auto; + cursor: pointer; + + + .ahd { + display: block; + color: #727272; + margin: 0 0 0.2rem 0; + } + + .content { + color: #000; + } + + .content:empty::before { + content: '-'; + min-width: 5rem; + height: 1rem; + display: block; + position: absolute; + } + + &:hover { + div.axf { + display: block; + } + } + } + + .ctpfrm { + position: absolute; + right: 3rem; + top: 14rem; + width: auto; + height: auto; + cursor: pointer; + + + .ahd { + display: block; + color: #727272; + margin: 0 0 0.2rem 0; + } + + .content { + color: #000; + } + + .content:empty::before { + content: '-'; + min-width: 5rem; + height: 1rem; + display: block; + position: absolute; + } + + &:hover { + div.axf { + display: block; + } + } + } + + .adrfrm { + position: absolute; + left: 3rem; + top: 6rem; + width: auto; + height: auto; + cursor: pointer; + + &:hover { + div.axf { + display: block; + } + } + } + + .locfrm { + position: absolute; + left: 3rem; + top: 18.5rem; + width: auto; + height: auto; + cursor: pointer; + + .ahd { + display: block; + color: #727272; + margin: 0 0 0.2rem 0; + } + + .content:empty::before { + content: '-'; + min-width: 5rem; + height: 1rem; + display: block; + position: absolute; + } + + &:hover { + div.axf { + display: block; + } + } + } + + > div.title, .tfrm { + position: absolute; + left: 3rem; + top: 15rem; + font-size: 2rem; + cursor: pointer; + + &:hover { + div.axf { + display: block; + } + } + } + + div.fnote { + margin: 1rem 0; + } + + p + table.invi, table.invi + p { + margin-top: 2.5rem; + } + + table.invi { + border-collapse: separate; + border-spacing: 0; + border-color: #FFF; + width: 100%; + max-width: 100%; + + + > tbody > tr { + &.hidden { + display: none; + } + + &:nth-child(2n+1) td { + background-color: #FbFbFb; + border-color: #FbFbFb; + } + + &:nth-child(2n) td { + } + /*&.osum{ + background-color: #FFF !important; + }*/ + + &.title > td { + background: #FFF; + border-color: #FFF; + border-top: 1.5px solid #000; + } + } + + > tfoot > tr { + > td { + } + } + + th, td { + &.currency, &.num { + text-align: right; + white-space: nowrap; + } + + &.keep { + white-space: nowrap; + } + } + + table.stbl { + td, th { + padding: 0.3rem 0.5rem; + + &:first-child { + padding-left: 0; + } + + &:last-child { + padding-right: 0; + } + } + } + + > tr, > tbody > tr, > thead > tr, > tfoot > tr { + + > th, > td { + border-width: 1px; + padding: 0.3rem 0.5rem; + border-left: none !important; + border-right: none !important; + + + &.aux { + width: 0; + max-width: 0; + min-width: 0; + position: relative; + padding: 0; + } + } + + > th { + text-align: left; + font-weight: 300; + background-color: #FFF; + border-color: #FFF; + font-size: 0.8rem; + font-style: italic; + border-top-style: none; + border-bottom-style: none; + } + + > td { + vertical-align: top; + font-weight: normal; + background-color: #f8f8f8; + border-color: #f8f8f8; + border-top-style: solid; + border-bottom-style: solid; + user-select: none; + } + + + &:hover { + > td.aux > .axf { + display: inline-flex; + } + } + + &.isum > td { + border-top: 1px solid #000; + background: #FFF; + //border-bottom: 1.5px solid #000; + } + + &.sep > td { + background: #FFF; + } + + &.tsum td { + font-weight: 600; + border-top: 1px solid #000; + border-bottom: 1px solid #000; + } + } + + .sortable > tr { + > td.aux .ico.move { + background: transparent url('data:image/svg+xml;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAzMiAzMiIgaWQ9IkxheWVyXzQiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMyIDMyIiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48Zz48cG9seWdvbiBmaWxsPSJub25lIiBwb2ludHM9IjE2LDMxIDgsMTggMjQsMTggICAgICIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI0RERERERCIvPjxwb2x5Z29uIGZpbGw9Im5vbmUiIHBvaW50cz0iMTYsMSA4LDE0IDI0LDE0ICAgICAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNEREREREQiLz48L2c+PC9zdmc+') no-repeat center center/contain border-box; + + &:hover { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMzIgMzIiIGlkPSJMYXllcl80IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGc+PHBvbHlnb24gZmlsbD0ibm9uZSIgcG9pbnRzPSIxNiwzMSA4LDE4IDI0LDE4ICAgICAiIHN0cm9rZT0iIzAwMDAwMCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2Utd2lkdGg9IjIiLz48cG9seWdvbiBmaWxsPSJub25lIiBwb2ludHM9IjE2LDEgOCwxNCAyNCwxNCAgICAgIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==') + } + } + + &.sortactive > td.ico { + cursor: move; + } + } + } + + .btn { + background: #FFF url('') no-repeat center center/contain content-box; + position: absolute; + top: 0.2rem; + right: 0.2rem; + height: 3rem; + width: 3rem; + padding: 0.1rem; + z-index: 11; + + &.sprev { + background-image: url('data:image/png;base64,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'); + } + + &.sdoc { + background-image: url('data:image/png;base64,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'); + } + } + + &.freeze::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(50,50,50,.3); + user-select: none; + cursor: wait; + z-index: 10; + pointer-events: none; + + tr:hover { + > td.aux > .axf { + display: inline-flex; + } + } + } + } +} + +.modal-body .lstfrm { + display: block; + position: relative; + + .li { + display: inline-block; + background-color: #FFF; + border: 1px solid #E0E0E0; + padding: 1.7rem 0.5rem 0.5rem 0.5rem; + border-radius: 0.2rem; + cursor: pointer; + position: relative; + margin: 0 0.5rem 0.5rem 0; + box-shadow: 1px 1px 3px rgba(50,50,50,.1); + + .lbl { + position: absolute; + background: #727272; + color: #FFF; + font-size: 0.8rem; + left: 0; + top: 0; + right: 0; + padding: 0.2rem; + border-top-left-radius: inherit; + border-top-right-radius: inherit; + } + } +} + diff --git a/Fuchs/js/intranet/modules/fis.inv_txt_de.js b/Fuchs/js/intranet/modules/fis.inv_txt_de.js new file mode 100644 index 0000000..0f5fedc --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.inv_txt_de.js @@ -0,0 +1,129 @@ +let $ict = { + mdl: 'Rechnungen', + iov: { + all: 'Rechnungen (alle)', '': 'Rechnungen (nur fertige)', '#d': 'Rechnungen (nur Entwürfe)', '#u': 'Rechnungen (nur unbezahlt)', '#r': 'Rechnungen (nur angemahnt)', '#a': 'Rechnungen (nur Akonto)', '#c': 'Rechnungen (nur Storno)', '#ru': 'Rechnungen (nur angemahnt + unbez.)' + }, + uba: ', gesamter Zeitraum)', + req: 'Auftrag', + inv: 'Rechnung', + rem: 'Mahnung', + in: 'Rechnungsnummer', + cc: 'Kunde', + wk: 'Woche', + nd: 'Keine Daten gefunden.', + dl: 'Herunterladen', + ed: 'Bearbeiten', + ced: 'Bearbeitung fortsetzen', + sItm: 'Einzelheiten anzeigen', + sPay: 'Zahlungen anzeigen', + cdI: 'Entwurf der Rechnung löschen?', + rel: 'Neu Laden', + relm: 'Bitte laden Sie Liste manuell neu, um die Änderungen zu sehen.', + dsp: 'Rechnung anzeigen', + storno: 'Storno-Rechnung erstellen', + credit: 'Gutschrift erstellen', + remd: 'Mahnung erstellen', + remdt: 'Mahnung erstellen zur Rechnung {0}', + remlst: 'Mahnungen anzeigen', + remdsp: 'Mahnung anzeigen', + remres: 'Mahnung erneut senden', + remresc: 'Mahnung {0} wirklich erneut senden?', + remresr: 'Mahnung {0} wurde erfolgreich versandt.', + setpyd: 'Bezahlt markieren', + cpyd: 'Rechnung wirklich als bezahlt markieren?', + setupd: 'Bezahlt-Markierung aufheben', + cupd: 'Bezahlt-Markierung wirklich aufheben?', + ivE: 'Die Email-Adresse ist vermutlich nicht gültig.', + ivEc: '\nMöchten Sie fortfahren?', + pna: 'Diese Seite ist in der Vorschau nicht verfügbar', + tpe: 'Die Anzahl von {0} Seiten wird aktuell nicht unterstützt', + eis: 'Der Rechnungsentwurf konnte nicht gespeichert werden.', + iss: 'Zwischenstand speichern.', + p13b: 'USt -> §13b', + ctp: 'Ansprechpartner festlegen', + mfr: 'Von MFR neu abrufen', + rq1: 'Auftragsdaten werden von MFR abgerufen.\nDer Vorgang kann bis zu 90Sek dauern.', + rq2: 'Auftragsdaten werden geladen', + iq1: 'Rechnungsdaten werden von MFR abgerufen.\nDer Vorgang kann bis zu 90Sek dauern.', + iq2: 'Rechnungsdaten werden geladen', + sis: 'Rechnung als versandt markieren', + srs: 'Mahnung als versandt markieren', + sisc: 'Rechnung wirklich als versandt markieren?', + srsc: 'Mahnung wirklich als versandt markieren?', + iSt: {dft: 'Entwurf', uns: 'nicht versandt', pyd: 'bezahlt', cc: 'storniert', op: 'offen', due: 'fällig', ovd: 'überfällig', rem: 'angemahnt' }, + rSt: ['', 'Überfällig', '2. Mahnung', '3. Stufe'], + pSt: { 'a': 'Vollst.', 'p': 'Teilz.' }, + ivT: { i: 'AbschlagsR.', f: 'SchlussR', r: 'Rechnung', c: 'StornoR.' }, + rovlh: 'Übersicht der bisherigen Mahnungen', + rovl: ['Betreff', 'Betrag', 'Betrag gezahlt', 'fertiggestellt am'], + remHR: ['Rechnung', 'vom', 'Rechnungsbetrag', 'bereits bezahlt', 'noch offen'], + remt: { + f: ['Sehr geehrte Damen und Herren,', 'ein Mahnschreiben sollte kurz, freundlich und erfolgreich sein. Kurz ist es, freundlich sowieso; ob es auch erfolgreich ist, hängt von Ihnen ab.'] + , m: ['Sehr geehrte Damen und Herren,', 'nun müssen wir Sie noch einmal anschreiben.', 'Wahrscheinlich haben Sie triftige Gründe dafür, warum Sie die Zahlung unserer Forderung nicht vornehmen und auch nicht auf unsere Mahnung reagieren. Sollten wir darüber nicht einmal sprechen?', 'Bitte nehmen Sie umgehend in dieser Sache mit uns Kontakt auf.'] + , l: ['Sehr geehrte Damen und Herren,', 'Eine DRITTE MAHNUNG zu erhalten bereitet Ihnen bestimmt ebenso wenig Freude wie uns, sie zu verschicken. Leider haben wir auf unsere zweite Mahnung noch keine Antwort von Ihnen erhalten.", "Wir bitten Sie, den offenen Betrag innerhalb der nächsten 7 Werktage nach Erhalt dieses Schreibens zu begleichen. Nach Ablauf dieser Frist erfolgt keine weitere Mahnung mehr.', 'Sollte die Forderung bis dahin nicht beglichen sein, eröffnen wir das gerichtliche Mahnverfahren. Sollten Sie die Rechnung inzwischen beglichen haben, so betrachten Sie bitte dieses Schreiben als gegenstandslos.'] + }, + remt2: { + f: ['Wir bitten Sie, den noch offenen Rechnungsbetrag innerhalb einer Woche auf unser Konto zu überweisen.', 'Sollten Sie den Betrag bereits überwiesen haben, so bitten wir Sie, diese Zahlungserinnerung als gegenstandslos zu betrachten.'] + , m: ['Um Ihnen zusätzliche Kosten für weitere Mahnungen zu ersparen, bitten wir Sie nunmehr um die Überweisung des noch zu zahlenden Gesamtbetrages inklusive der ggf. bereits fälligen Mahnzinsen und Mahngebühren innerhalb von einer Woche.'] + , l: [] + }, payi: { account: 'Konto', name: 'Zahler', text: 'Verw.Zweck', InvoiceID: 'Rechnung', amount: 'Betrag', date: 'Datum', manual: 'Typ'} +}, $invcol = { + datev: new fields_definition('Rechnung', 'Rechnungen', [ + { name: 'Umsatz (ohne Soll/Haben-Kz)', label: 'Umsatz (ohne Soll/Haben-Kz)', type: 'string' }, + /*{ name: 'EINZELPOS_brutto', label: 'EINZELPOS_brutto', type: 'string' }, + { name: 'EINZELPOS_netto', label: 'EINZELPOS_netto', type: 'string' },*/ + { name: 'vf', label: 'vf', type: 'string' }, + { name: 'Soll/Haben-Kennzeichen', label: 'Soll/Haben-Kennzeichen', type: 'string' }, + { name: 'Konto', label: 'Konto', type: 'string' }, + { name: 'Gegenkonto', label: 'Gegenkonto', type: 'string' }, + { name: 'BU-Schlüssel', label: 'BU-Schlüssel', type: 'string' }, + { name: 'Belegdatum', label: 'Belegdatum', type: 'string' }, + { name: 'Belegfeld 1', label: 'Belegfeld 1', type: 'string' }, + { name: 'Belegfeld 2', label: 'Belegfeld 2', type: 'string' }, + { name: 'Buchungstext', label: 'Buchungstext', type: 'string' } + ]) + , inv: new fields_definition('Rechnung', 'Rechnungen', [ + { name: 'invstatus', label: 'Status', type: 'select', url: $ict.iSt }, + { name: 'balance', label: 'Umsatz', type: 'string', dtype: 'currency' }, + { name: 'CustomerName', label: 'Kunde', type: 'string' }, + { name: 'InvoiceId', label: 'RNummer', type: 'string' }, + { name: 'InvoiceType', label: 'Typ', type: 'select', url: $ict.ivT }, + //{ name: 'requestcount', label: 'Anz. Aufträge', type: 'string', dtype: 'num' }, + { name: 'request', label: 'Auftrag', type: 'string', dtype: 'num' }, + /*{ name: 'EINZELPOS_brutto', label: 'EINZELPOS_brutto', type: 'string', dtype: 'currency' }, + { name: 'EINZELPOS_netto', label: 'EINZELPOS_netto', type: 'string', dtype: 'currency' },*/ + { name: 'vat', label: 'MwSt', type: 'string', dtype: 'num' }, + { name: 'deb_cred', label: 'Soll/Haben', type: 'string' }, + { name: 'customer', label: 'Konto', type: 'string', dtype: 'num' }, + { name: 'contra_account', label: 'Gegenkonto', type: 'string', dtype: 'num' }, + { name: 'Belegdatum', label: 'Belegdatum', type: 'date' }, + { name: 'reminderstatus', label: 'MahnStatus', type: 'select', url: $ict.rSt }, + { name: 'reminder', label: '# Mahnungen', type: 'integer' }, + { name: 'Buchungstext', label: 'Buchungstext', type: 'string' }, + { name: 'Payment', label: 'Zahlung', type: 'string' } + /*{ name: 'PaymentStatus', label: 'Zahlungsstatus', type: 'select', url: $ict.pSt}*/ + + ]) + , rem: new fields_definition('Zahlungserinnerung', 'Zahlungserinnerung', [ + { name: 'amount', label: 'Rechnungsbetrag', type: 'number', precision: '0.01', value: 1 }, + { name: 'amount_payed', label: 'bereits bezahlt', type: 'number', precision: '0.01', value: 1 } + ]) + , rem2: new fields_definition('Zahlungserinnerung', 'Zahlungserinnerung', [ + { name: 'DocumentName', label: 'Name', type: 'string' }, + { name: 'subject', label: 'Betreff', type: 'string' }, + { name: 'DateSent', label: 'Versanddatum', type: 'date' }, + { name: 'status', label: 'Status', type: 'string' }, + //{ name: 'IsDraft', label: 'Entwurf', type: 'boolean' }, + { name: 'amount_open', label: 'offener Betrag', type: 'number', precision: '0.01' }, + { name: 'InvoiceId', label: 'RNummer', type: 'string' }, + //{ name: 'InvoiceDocumentName', label: 'RechnungName', type: 'string' } + ]) + , rid: new fields_definition('Zahlungserinnerung', 'Zahlungserinnerung', [ + { name: 'type', label: 'Typ', type: 'select', url: [['f', 'einfache Zahlungserinnerung'],[ 'm', 'Mahnung'],[ 'l', 'letzte Mahnung']], required: true}, + { name: 'level', label: 'Stufe', type: 'select', url: [['1', 'Stufe 1'], ['2', 'Stufe 2'], ['3', 'Stufe 3'], ['4', 'Stufe 4'], ['5', 'Stufe 5'], ['6', 'Stufe 6']], required: true } + ]) + , ctp: new fields_definition('Ansprechpartner', 'Ansprechpartner', [ + { name: 'name', label: 'Name', type: 'string' }, + { name: 'email', label: 'Email', type: 'string' } + ]) +}; \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.rep.js b/Fuchs/js/intranet/modules/fis.rep.js new file mode 100644 index 0000000..2c76a3a --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.rep.js @@ -0,0 +1,82 @@ +function getMonday(d) { + d = new Date(d); + var day = d.getDay(), + diff = d.getDate() - day + (day == 0 ? -6 : 1); // adjust when day is sunday + return new Date(d.setDate(diff)); +} +let $rep = { + init2: function (type, options) { + //console.debug('inv.init2'); + type = type || 'inv'; + options = options || {}; + $ocms.getScript([ + //{ script: 'web/jstree.min.js', css: 'web/jstree.min.css', condition: typeof $.fn.jstree !== 'function' } + //, { script: 'web/jquery.qtip.min.js', css: 'web/jquery.qtip.min.css', condition: typeof $.fn.qtip !== 'function' } + //, { script: 'web/typeahead.min.js', css: '', condition: typeof $.fn.typeahead !== 'function' } + //, { script: 'web/fullcalendar.min.js', module: 'FullCalendar', css: 'web/fullcalendar.min.css', condition: typeof FullCalendar !== 'object' } + ], function () { + //FullCalendar = $vm.FullCalendar; + $rep.init3(type, options); + }); + }, init3: async function (type, options) { + //console.debug('inv.init3'); + let cf = $('#contentframe').empty(), cf2 = $$.dc('cfrm hd').appendTo(cf), frm = $$.dc('init_frm', cf); + let tbar = $('#topbar').ocmsmenu([]); //{ lbl: 'home', fnc: $rep.init3 } + $('#activemodule').text($ct.mdl); + let repfrm = $$.dc('repfrm', frm); + let td = new Date(); + let pa = [(async () => { + if (await $fis.getAuth('fds_reports') > 0) { + frm.IN(function () { }); + let lf = $('#listframe').empty().aC('fix').rC('hd'); + let scp = function (rx) { + let itm = $(this); + if ((rx.params || []).length > 0) { + let ifrm = $$.dc('ipf', itm).click(function (ev) { + ev.stopPropagation(); + }); + $.each(rx.params, (pi, px) => { + let ig = $$.dc('ig', ifrm).append($$.lbl(px.name)), i; + if ((px.valuelist || '') === '') { + i = $$.i({ name: px.name, placeholder: px.placeholder }).appendTo(ig); + if ((px.default || '') !== '') { + i.val(px.default); + } + } + }); + } + }; + let scl = function (ev) { + //console.debug(ev); + let btn = $(this), rx = ev.data; + $ocms.postXT({ + url: $ocms.url('rep/gct/' + rx.name), data: btn.serializeObject(), success: (response) => { + btn.addClass('selected').siblings().removeClass('selected'); + $('#listframe').rC('fix').aC('hd'); + repfrm.html(response); + }, datatype: 'html' + }); + }; + $ocms.postXT({ + url: $ocms.url('rep/catalog'), data: {}, success: (response) => { + $.each(response.reports, (ri, rx) => { + let i = $$.dc('repitm', lf).text(rx.label).click(rx, scl); + scp.call(i, rx); + }); + } + }); + + } + })(), new Promise((resolve, reject) => { + //$rep.123() + /* + let tgt = fdt(new Date(td.getFullYear(), (td.getMonth() - 1), 1), 'yy-MM-dd'); + $rep.renderinv.call(invfrm, tgt, 'm'); + */ + })]; + await Promise.all(pa); + } + +} +let $$rep = { init2: $rep.init2, auth: {} }; +export default $$rep; \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.rep.scss b/Fuchs/js/intranet/modules/fis.rep.scss new file mode 100644 index 0000000..97ae081 --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.rep.scss @@ -0,0 +1,172 @@ +.repfrm { + padding: 2rem; + + > table { + border-collapse: collapse; + margin: 2rem; + + th { + padding: 0.2rem 0.35rem; + border: 1px solid #CCC; + } + + td { + padding: 0.2rem 0.35rem; + border: 1px solid #CCC; + + &.hl { + background-color: lightyellow; + } + + &.sh_s { + color: #bf4b06; + } + + input, select { + display: none; + } + + &.raux { + min-width: 4.6rem; + } + + &.av { + border: 2px solid red; + + + td.vsel select { + display: block; + } + } + + &.currency { + text-align: right; + white-space: nowrap; + } + + &.num { + white-space: nowrap; + } + } + + tr { + &:nth-child(2n+1) td { + background-color: #EEE; + + &.hl { + background-color: lightyellow; + } + } + + &.selected td { + background-color: lightblue; + + &.hl { + background-color: lightyellow; + } + /*input, select { + display: block; + }*/ + .ilbtn { + display: inline-block; + } + } + } + } + + .ovhd { + font-size: 1.5rem; + margin: 1rem 2rem; + font-weight: bold; + text-decoration: underline; + text-decoration-style: double; + } + + &.mdw .ovhd { + text-decoration-color: lightblue; + } + + &.mdm .ovhd { + text-decoration-color: lightgreen; + } +} +#listframe { + .repitm { + display: block; + padding: 0.35rem 0.5rem; + border: 1px solid #FFF; + border-radius: 0.2rem; + margin: 0.35rem; + cursor: pointer; + background-color: #CCC; + } +} + + + .ilbtn { + cursor: pointer; + border-radius: 0.28rem; + display: none; + padding: 0.1rem; + margin-bottom: 0; + font-size: 1rem; + letter-spacing: 0.025rem; + font-weight: normal; + line-height: 1.42857143; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + background-color: $oci_white; + background-image: none; + border: 1px solid #ababab; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-box-shadow: 1px 1px 3px rgba(50, 50, 50, 0.3); + box-shadow: 1px 1px 3px rgba(50, 50, 50, 0.3); + min-width: 1.8rem; + } + + +table.if { + border-collapse: collapse; + margin: 1rem 0; + background: #FFF; + + tr { + &:nth-child(2n+1) td { + background-color: #F9F9F9; + } + } + + td { + padding: 0.2rem 0.35rem; + border: 1px solid #DDD; + + } +} + +#listframe { + .ipf { + display: table; + margin: 1rem 0.6rem 0.6rem 0.6rem; + background-color: #EEE; + padding: 0.2rem; + border-radius: 0.35rem; + width: 100%; + width: calc(100% - 1.2rem); + cursor: default; + + .ig + .ig { + margin-top: 0.4rem; + } + + label { + min-width: 7rem; + display: inline-block; + } + } +} \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.rep_txt_de.js b/Fuchs/js/intranet/modules/fis.rep_txt_de.js new file mode 100644 index 0000000..5252372 --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.rep_txt_de.js @@ -0,0 +1,5 @@ +let $ct = { + mdl: 'Berichte' +}, $ccol = { + +}; \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.req.js b/Fuchs/js/intranet/modules/fis.req.js new file mode 100644 index 0000000..08b9f72 --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.req.js @@ -0,0 +1,287 @@ + +let gi = (n, c) => $$.sc('glyphicon glyphicon-' + n).aC(c); +let $inv = {}, $req = { + init2: function (type, options) { + type = type || 'inv'; + options = options || {}; + $ocms.getScript([ + //{ script: 'web/jstree.min.js', css: 'web/jstree.min.css', condition: typeof $.fn.jstree !== 'function' } + //, { script: 'web/jquery.qtip.min.js', css: 'web/jquery.qtip.min.css', condition: typeof $.fn.qtip !== 'function' } + //, { script: 'web/typeahead.min.js', css: '', condition: typeof $.fn.typeahead !== 'function' } + //, { script: 'web/fullcalendar.min.js', module: 'FullCalendar', css: 'web/fullcalendar.min.css', condition: typeof FullCalendar !== 'object' } + ], function () { + //FullCalendar = $vm.FullCalendar; + $req.init3(type, options); + }); + }, init3: async function (type, options) { + let cf = $fis.cf(true), lf = $fis.lf(true); + $('#topbar').ocmsmenu([]); //{ lbl: 'home', fnc: $inv.init3 } + $('#activemodule').text($rct.mdl); + await $fis.prepAuth('fds_req,fds_inv,fds_reminder'); + let pa = [(async () => { + if ($fis.isAuth('fds_req', 1) === true) { + $req.prepLst(''); + lf.aC('fix'); //initially should be shown - for convenience + } + })(), new Promise((resolve, reject) => { + lf.find('div.oreq2').aC('selected'); + $req.renderreq(fdt(new Date(), 'yy-MM-dd'), 'r'); + resolve(); + })]; + await Promise.all(pa); + }, prepLst: function (includes) { + let td = new Date(); + let lf = $fis.lf(true).ldng(1), sd = new Date('2021-01-01'); + let frm = $fis.frm_list(); + frm.IN(function () { }); + let opn = $$.dc('mth oreq', lf).text($rct.or).click(function (ev) { + let mth = $(this); + ev.stopPropagation(); + mth.siblings().rC('selected'); + if (mth.is('.selected') === true) { + mth.tC('selected'); + $req.renderreq(fdt(new Date(), 'yy-MM-dd'), 'o'); + } + mth.aC('selected'); + }); + let opnr = $$.dc('mth oreq2', lf).text($rct.orr).click(function (ev) { + let mth = $(this); + ev.stopPropagation(); + mth.siblings().rC('selected'); + if (mth.is('.selected') === true) { + mth.tC('selected'); + $req.renderreq(fdt(new Date(), 'yy-MM-dd'), 'r'); + } + mth.aC('selected'); + }); + let osb = $$.i({ placeholder: $rct.rn }).appendTo($$.dc('mth oreqn', lf)).enterKey(function (ev) { + let mth = $(this), v = mth.val() ||''; + ev.stopPropagation(); + mth.parent().siblings().rC('selected'); + if (v.length > 3) { + mth.parent().aC('selected'); + $req.renderreq('n:' + v, 's'); + mth.val(''); + } + }); + lf.append('
'); + let mthl = $$.dc('mthl', lf), thisyear = td.getFullYear(), thismonth = td.getMonth() + 1; + for (let tyr = sd.getFullYear(); tyr <= thisyear; tyr++) { + let yr = $$.dc('yr').prependTo(mthl).text($rct.iov[includes] + ' - ' + tyr.toString()).toggleClass('selected', tyr === thisyear); + yr.click({ + yr: tyr + }, function (ev) { + ev.stopPropagation(); + yr.siblings().rC('selected'); + yr.aC('selected'); + }); + let mfrm = $$.dc('mfrm', yr); + for (let tmt = 0; tmt < (tyr !== thisyear ? 12 : thismonth); tmt++) { + sd = new Date(tyr, tmt, 1); + let mth = $$.dc('mth').prependTo(mfrm).text($rct.iov[includes] + ' - ' + fdt(sd, 'MMM yyyy')); + mth.click({ + yr: tyr, mt: tmt + }, function (ev) { + ev.stopPropagation(); + mth.siblings().rC('selected'); + if (mth.is('.selected') === true) { + mth.tC('selected'); + + let tgt = fdt(new Date(ev.data.yr, ev.data.mt, 1), 'yy-MM-dd'); + $req.renderreq(tgt, 'm'); + } + mth.aC('selected'); + }); + + let fwf = getMonday(sd), rd = fwf, lwf = new Date(sd); + lwf.setMonth(lwf.getMonth() + 1); + lwf.setDate(0); + lwf = getMonday(lwf); + let wfrm = $$.dc('wfrm', mth); + while (rd <= lwf) { + let wk = $$.dc('wk', wfrm).text(($rct.wk || 'W') + ' ' + fdt(rd, 'dd.MM.yy')); + wk.click({ + rd: new Date(rd) + }, function (ev) { + ev.stopPropagation(); + let tgt = fdt(ev.data.rd, 'yy-MM-dd'); + $req.renderreq(tgt, 'w'); + mth.siblings().rC('selected').find('.wk').rC('selected'); + mth.aC('selected').find('.wk').rC('selected'); + wk.aC('selected'); + }); + let wkdl = $$.dc('wkdl', wk).append($$.sc('ico glyphicon glyphicon-compressed')); + if ($fis.isAuth('fds_inv', 2) === true) { + wkdl.click({ + rd: new Date(rd) + }, function (ev) { + ev.stopPropagation(); + let tgt = fdt(ev.data.rd, 'yy-MM-dd'); + $req.downloadzip.call(tgt, 'w'); + }); + } + rd.setDate(rd.getDate() + 7); + } + } + } + lf.ldng(0); + }, renderreq: function (tgt, mode) { + let invlst = $fis.frm_list().ldng(1), invfrm = $$.dc('invfrm', invlst).aC('md' + mode); + let lf = $fis.lf(); + $ocms.postXT({ + url: $ocms.url('req/reql'), data: { mode: mode, tgt: tgt }, success: (response) => { + lf.rC('fix').aC('hd'); + $$.dc('ovhd', invfrm).append($$.s(response.admin.title)).appendIf($$.sc('note', response.admin.note), ne(response.admin.note, '') !== ''); + let ts = $$.tblset({}, invfrm), fd = $rcol.req; + let thr = $$.tr(ts.hd), haux = $$.th(thr); + $.each(fd.fields || [], (ci, cx) => { + $$.th(thr).text(cx.label); + if (cx.name === 'vat') { + $$.th(thr); + } + }); + let ctr = 0, cst = false; + $.each(response.requests || [], (ri, rw) => { + if (ctr > 0 && ctr !== rw.ParentServiceRequestId) { + cst = !cst; + } + let tr = $$.tr(ts.bdy).tC('alt', cst); + ctr = rw.ParentServiceRequestId; + tr.click(function () { + lf.rC('fix').aC('hd'); + tr.tC('selected').siblings().rC('selected').find('td.av').rC('av'); + tr.find('td.av').rC('av'); + }); + tr.tC('child', rw.isChild); + let raux = $$.td(tr, { class: 'raux' }); + if (bool(rw.open, false) === true) { + $$.dc('ihd ilbtn', raux).append(gi('eye-close', 'ico')).click({ id: rw.Id }, $req.tHd); + } + $$.dc('iitm ilbtn', raux).append(gi('list', 'ico')).click({ id: rw.Id }, $req.showitm); + if ($fis.isAuth('fds_inv', 2) === true) { + $$.dc('invc ilbtn', raux).append(gi('edit', 'ico')).click({ id: rw.Id }, $inv.cInv); + } + $.each(fd.fields || [], (ci, cx) => { + let td = $$.td(tr).aC(cx.dtype), val = rw[cx.name]; + if (typeof cx.dfnc === 'function') { + cx.dfnc.call(td, val, rw); + } else { + switch (cx.type || '') { + case 'date': + td.text(fdt(rw[cx.name], 'dd.MM.yy')); + break; + case 'datetime': + td.text(fdt(rw[cx.name])); + break; + case 'html': + td.append($$.dc('ctw').html(val)); + td.append($$.dc('ttip').html(val)); + break; + default: + td.text(rw[cx.name]); + } + } + switch (cx.name || '') { + case 'State': + td.text($rct.sts[val || '-']); + break; + case 'Name': + td.aC(cx.name.toLowerCase()); + break; + case 'vat': + $$.sel().appendTo($$.td(tr, { class: 'vsel' })).click(function (ev) { ev.stopPropagation(); }).append([$$.opt('19,0 %', '19,0 %'), $$.opt('16,0 %', '16,0 %'), $$.opt('0,0 %', '0,0 %')]).val(rw[cx.name]).change().change({ frm: invfrm, tgt: tgt, mode: mode, id: rw.Id, td: td }, $req.setvat); + td.tC('hl', rw[cx.name].substr(0, 2) !== '19').click(function (ev) { + ev.stopPropagation(); + $(this).tC('av'); + }); + break; + case 'balance': + td.aC('sh_' + (rw.SollHaben || '').toLowerCase()); + break; + case 'InvoiceId': + td.aC('keep'); + break; + } + switch (typeof cx.title) { + case 'function': + cx.title.call(td, rw); + break; + case 'string': + td.attr('title', cs.title); + } + }); + }); + }, complete: () => { invlst.ldng(0); } + }); + }, tHd: function (ev) { + let tr = $(this).closest('tr'); + ev.stopPropagation(); + if (tr.is('.selected') === false) { + return; + } else if (confirm($rct.cthd)){ + $ocms.postXT({ + url: $ocms.url('req/rthd'), data: { id: ev.data.id }, success: (response) => { + if (response.id === ev.data.id && bool(response.visible, true) === false) { + if (tr.is('.tbhd') === false) { + setTimeout(() => { tr.filter('.tbhd').remove(); }, 15000); // by the filter, it can be prevented by removing the class + } + tr.aC('tbhd'); + } else if (response.id === ev.data.id) { + tr.rC('tbhd'); + } + } + }); + } + }, showitm: function (ev) { + let tr = $(this).closest('tr'); + ev.stopPropagation(); + if (tr.is('.selected') === false) { + return; + } + let fr = $$.dc('rfrm').ldng(1); + $ocms.postXT({ + url: $ocms.url('req/pget'), data: { id: ev.data.id }, success: (response) => { + $ocms.postXT({ + url: $ocms.url('req/get'), data: { id: ev.data.id, mode: 'ful' }, success: (response) => { + let rqa = {}; + if ((response.requests || []).length < 1) { + fr.text($rct.nd); + } else { + let rq = $$.dc('srq', fr); + let rif = $$.tblset({ class: 'if' }, rq); + $.each(response.requests || [], function (ri, rx) { + if (ri > 0) { + $$.tr(rif.bdy).aC('sep').append($$.td({ colspan: 6 })); + } + let rtr = $$.tr(rif.bdy).aC('title'), cl = $rcol.itm.lbl(); + let worknotes = $inv.worknotes(rx); + $$.td(rtr, { colspan: 6 }).append([$$.s($rcol.req.label_sng), $$.sc('eid', rx.ExternalId), $$.sc('nme', fdt(rx.WorkDoneAt,'dd.MM.yy') + ': ' + worknotes.ne(rx.Name))]); + let sdh = $$.tr(rif.bdy).aC('shd').append([$$.td(), $$.td(cl.NameOrNumber), $$.td(cl.Type), $$.td(cl.net_pos), $$.td(cl.bo_pos), $$.td(cl.vat)]); /* header row for items */ + $.each(rx.items || [], (ii, ix) => { + let sid = ix.ServiceRequestId; + let itr = $$.tr(rif.bdy, { id: 'itm' + ix.Id }).aC(ix.Type); + $$.td(itr).aC('ico'); + $$.td(itr).text(ix.NameOrNumber); + $$.td(itr).text(ix.Type); + $$.td(itr).aC('currency').text(ix.net_pos); + $$.td(itr).aC('currency').text(ix.bo_pos); + $$.td(itr).aC('num').text(ix.vat); + }); + }); + } + }, error: () => { + fr.text($t.t12); + }, complete: () => { + fr.ldng(0); + } + }); + }, error: () => { + fr.text($t.t12); + fr.ldng(0); + } + }); + $ocms.dlg(fr, { width: 1000 }); + } +} +let $$req = { init2: $req.init2, auth: {} }; +export default $$req; \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.req.scss b/Fuchs/js/intranet/modules/fis.req.scss new file mode 100644 index 0000000..e51b0c2 --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.req.scss @@ -0,0 +1,281 @@ + +span.cla, td.cla{ + cursor: pointer; +} + +.invfrm { + > table { + + + + td { + max-height: 2.5rem; + background-color: #F4F4F4; + + + &.sh_s { + color: #bf4b06; + } + + &.av { + border: 2px solid red; + + + td.vsel select { + display: block; + } + } + + &.tags .tag { + display: inline-block; + padding: 0.1rem 0.3rem; + background: #FFF; + margin-top: 0.2rem; + border: 1px solid #CCC; + border-radius: 0.3rem; + font-weight: 300; + font-size: 0.8rem; + text-rendering: geometricprecision; + + &.abrechnung_projekt { + background-color: #1A237E; + color: #FFF; + } + + &.angebot_erstellt { + background-color: #1A237E; + color: #FFF; + } + + &.auftrag_erhalten { + background-color: #427323; + } + + &.folgeauftrag { + background-color: #00ACC1; + color: #FFF; + } + + &.gutschrift { + background-color: #D81B60; + } + + &.korrektur { + background-color: #D81B60; + } + + &.rechnung_erledigt { + background-color: #427323; + color: #FFF; + } + + &.topkunde__vip_kunde { + background-color: #000000; + color: #FFF; + } + + &.zur_rechnungsstellung { + background-color: #ffd600; + } + + &.fibu_bitte_mit_doris_abstimmen { + background-color: #D81B60; + font-size: 1rem; + padding: 0.15rem 0.5rem; + } + } + + > .ctw { + display: block; + position: relative; + max-height: 2.5rem; + overflow: hidden; + text-overflow: ellipsis; + } + + + } + + tr { + &.tbhd td { + opacity: 0.3; + } + + &:not(.alt) + tr.alt td, &.alt + tr:not(.alt) td { + border-top: 1px solid #727272; + } + + th { + background-color: $fuchs_blau_60; + color: $fuchs_weiss; + text-align: left; + } + + &:hover td { + border-top-color: orangered !important; + border-top-width: 2px; + } + + &.alt td { //&:nth-child(2n+1) td { + background-color: #E5E5E5; + border-color: #CCC; + + &.hl { + background-color: lightyellow; + } + } + + + &.child td.name { + color: $fuchs_akzent; + position: relative; + padding-left: 1.8rem; + + &::after { + content: ''; + background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pjxzdmcgdmlld0JveD0iMCAwIDMyIDMyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjx0aXRsZS8+PGcgZGF0YS1uYW1lPSIxNS1BcnJvdy1kaXJlY3Rpb24tcG9pbnRlciIgaWQ9Il8xNS1BcnJvdy1kaXJlY3Rpb24tcG9pbnRlciI+PHBvbHlsaW5lIHBvaW50cz0iMjEgMzEgMjcgMjQgMjEgMTYiIHN0eWxlPSJmaWxsOm5vbmU7c3Ryb2tlOiMwMDA7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS13aWR0aDoycHgiLz48cG9seWxpbmUgcG9pbnRzPSIyNiAyNCA1IDI0IDUgMSIgc3R5bGU9ImZpbGw6bm9uZTtzdHJva2U6IzAwMDtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLXdpZHRoOjJweCIvPjwvZz48L3N2Zz4=') no-repeat center center; + position: absolute; + left: 0.3rem; + width: 1rem; + height: 1rem; + top: 0.7rem; + } + } + } + } + + +} + + + + +.rfrm { + min-width: 200px; + min-height: 200px; +} + +table.if { + border-collapse: collapse; + margin: 1rem 0; + background: #FFF; + + tr { + &:nth-child(2n+1) td { + background-color: #F9F9F9; + } + + &.title td { + background-color: $fuchs_akzent; + color: white; + + .eid { + font-weight: bold; + margin: 0 1rem 0 0.5rem; + font-size: 140%; + } + + .nme { + font-size: 110%; + } + } + + &.shd td { + font-style: italic; + color: #BBB; + background-color: #FFF; + background-color: #FFF !important; + font-size: 90%; + } + } + + td { + padding: 0.2rem 0.35rem; + border: 1px solid #DDD; + } + + th, td { + &.currency, &.num { + text-align: right; + white-space: nowrap; + } + + &.keep { + white-space: nowrap; + } + } +} + +#listframe { + .lh { + margin: 1.5rem 0 1.25rem 1.5rem; + text-decoration: underline; + font-size: 1rem; + font-weight: bolder; + } + + li.cli { + border-bottom: 1px solid #CCC; + margin-bottom: 1rem; + list-style: none; + + .lihd, .lidt { + padding: 0 0.5rem 0.5rem 3rem; + position: relative; + display: block; + + .nme { + display: block; + margin-top: 0.5rem; + } + } + + .lidt > div { + display: block; + &.ivn{ + max-width: 30rem; + } + } + + .cbox { + height: .85rem; + width: .85rem; + display: inline-block; + position: absolute; + left: 0; + top: 0; + + &::before { + content: '\e157'; + font-family: 'Glyphicons Halflings'; + font-size: 24px; + font-style: normal; + font-weight: 400; + line-height: 1; + cursor: pointer; + } + } + + .dli { + height: .85rem; + width: .85rem; + display: inline-block; + position: absolute; + left: 0; + top: 0; + + &::before { + content: '\e166'; + font-family: 'Glyphicons Halflings'; + font-size: 24px; + font-style: normal; + font-weight: 400; + line-height: 1; + cursor: pointer; + } + } + + &.checked .cbox::before { + content: '\e067'; + } + } +} \ No newline at end of file diff --git a/Fuchs/js/intranet/modules/fis.req_txt_de.js b/Fuchs/js/intranet/modules/fis.req_txt_de.js new file mode 100644 index 0000000..a207693 --- /dev/null +++ b/Fuchs/js/intranet/modules/fis.req_txt_de.js @@ -0,0 +1,106 @@ +let $rct = { + mdl: 'Aufträge', + or: 'offene Aufträge', + orr: 'offene Aufträge (4 W)', + rn: 'Auftragsnummer', + iov: { all: 'Auftragsübersicht (alle)', '': 'Auftragsübersicht' }, + wk: 'Woche', + nd: 'Keine Daten gefunden.', + h: 'Uhr', + rq1: 'Auftragsdaten werden von MFR abgerufen.\nDer Vorgang kann bis zu 90Sek dauern.', + rq2: 'Auftragsdaten werden geladen', + rq1f: 'Die Auftragsdaten von MFR konnten nicht oder nicht schnell genug abgerufen werde.\nMöchten Sie mit den bestehenden Daten trotzdem weitermachen?', + note1: 'Im Bruttobetrag sind {0} Lohnkosten enthalten (netto {1}). Die darin enthaltene Umsatzsteuer beträgt {2}.', + note2: 'Bitte beachten Sie, nach §14 Abs. 1 Umsatzsteuergesetz ist diese Rechnung ein Zahlungsbeleg oder eine andere beweiskräftige Unterlage für 2 Jahre nach Ablauf des Kalenderjahres der Ausstellung dieser Rechnung aufzubewahren, soweit nicht aufgrund anderer gesetzlicher Regelungen andere ggf.längere Aufbewahrungsfristen gelten.', + note3: 'Privathaushalten erstattet das Finanzamt bis zu {0} des Arbeitslohns mit der nächsten Steuererklärung.', + note4: 'Für bereits erbrachte Arbeiten, Dienstleistungen, Materiallieferungen und getätigte Bestellvorgänge zum oben genannten Bauvorhaben, die sich aus dem mit Ihnen geschlossenen Vertrag ergeben, stellen wir Ihnen vertragsgemäß unsere Akontozahlung in Rechnung. ' + + 'Eine Endabrechnung erhalten Sie als Schlussrechnung nach Abschluss des gesamten Bauvorhabens. Das Ausführungsdatum entnehmen Sie bitte dem Schlusstext dieser Rechnung. Wir danken Ihnen herzlich für das entgegengebrachte Vertrauen und bitten Sie um kurzfristigen Ausgleich der Akontorechnung.', + note13b: 'Gem. §13b Umsatzsteuergesetz unterliegen Sie der Steuerschuldnerschaft des Leistungsempfängers zur Umsatzsteuer aus dieser Rechnung mit einem Steuersatz von 19%.', + crI: 'Rechnung erstellen', + crII: 'Abschlagsrechnung erstellen', + dII: 'Für eine Abschlagsrechnung darf nur ein Auftrag gewählt werden.', + dnS: 'Für eine Rechnung muss mindestens ein Auftrag gewählt werden.', + inv: 'Rechnung', + invs: 'Rechnungen', + req: 'Auftrag', + provP: 'Leistungszeitraum', + provD: 'Leistungsdatum', + cP: 'Position ändern', + iRb: 'Zeile darunter einfügen', + dR: 'Zeile löschen', + sV: 'USt festlegen', + cD: 'Löschen?', + mR: 'Zeile verschieben', + svcPart: 'Service-Anteil', + vat: 'Umsatzsteuer', + combP: 'Positionen zusammenfassen', + iSum: 'Zwischensumme', + dtRel: 'Freigegeben am: ', + dtCr: 'Erstellt am: ', + rqV: 'USt des Auftrags?', + cthd: 'wirklich aus-/einblenden ?', + + cst: { style: 'currency', currency: 'EUR' }, + sts: { + IsWorkDone: 'Arbeiten erledigt' + , Closed: 'Auftrag geschlossen' + , SubcontractorPendingConfirmation: 'Warten auf Bestätigung (Unterauftrag)' + , Scheduled: 'Geplant' + , OfferIsRejected: 'Angebot abgelehnt' + , OfferIsSend: 'Offen (Angebot versandt)' + , CollaborationWaitingConfirmation: 'Warten auf Bestätigung (Zusammenarbeit)' + , Released: 'Freigegeben' + , OfferIsConfirmed: 'Bestätigt' + , InProgress: 'In Bearbeitung' + , ReadyForScheduling: 'Zur Planung' + , Created: 'Erstellt' + , Rejected: 'Abgebrochen' + , Invoiced: 'Rechnung gestellt' + , '-': '-' + }, invHR: ['Pos.', 'Menge', 'Artikelbezeichnung', 'VK', 'Summe'] + , frm: { + invoiceaddress: 'Adresse' + , loc: 'Leistungsort / Lieferadresse' + , invoiceemail: 'Email' + + } +}, $rcol = { + req: new fields_definition('Auftrag', 'Aufträge', [ + { + name: 'tags', label: '', type: 'string', dfnc: function (i, x) { + if ((i || '') !== '') { + $(this).aC('tags'); + i.split(',').forEach((j) => { + if (j !== '') { + $(this).append($$.sc('tag ' + j.replace(' ', '_').replace('\/', '_').toLowerCase(), j)); + } + }) + } + } + }, + { name: 'DateOfCreation', label: 'Datum', type: 'date', title: function (x) { $(this).attr('title', $rct.dtCr + fdt(x.DateOfCreation).ne('-') + ' \n' + $rct.dtRel + fdt(x.DateReleased).ne('-')); } }, + { name: 'CustomerName', label: 'Kunde (Firma)', type: 'string' }, + { name: 'Name', label: 'Auftragsname', type: 'string' }, + { name: 'ExternalId', label: 'Auftragsnummer', type: 'string' }, + { name: 'ParentExtenalId', label: 'PAuftrag', type: 'string' }, + { name: 'InvoiceId', label: 'RNummer', type: 'string', dfnc: function (i, x) { $(this).rwText(i, ' ').find('span').each(function () { $(this).aC('cla').click({ id: $(this).text() }, $inv.jdbn); }) } }, + { name: 'State', label: 'Status', type: 'string' }, + { name: 'WorkDoneAt', label: 'Erledigt am', type: 'date' }, + { name: 'Description', label: 'Beschreibung', type: 'html' } + ]), + itm: new fields_definition('Auftragsposition', 'Auftragspositionen', [ + { name: 'NameOrNumber', label: 'Bezeichnung', type: 'string' }, + { name: 'Type', label: 'Typ', type: 'select', required: true, value: 'Text', url: [{ value: 'Text', label: 'Text' }, { value: 'Equipment', label: 'Ausrüstung' }, { value: 'Material', label: 'Material' }, { value: 'Service', label: 'Arbeitsleistung' }], change: function (x) { $req.quantChange.call(this, x); } }, + { name: 'quantityhours', label: 'Anzahl / Menge', type: 'number', precision: '0.01', value: 1, change: function (x) { $inv.quantChange.call(this, x); } }, + { name: 'UnitString', label: 'Einheit', type: 'select', url: ['LFDM', 'Stck', 'Std.', 'QM', 'AW', 'Pauschal'], change: function (x) { $inv.quantChange.call(this, x); } }, + { name: 'net', label: 'EinzelPreis netto', type: 'number', precision: '0.01', value: 0, change: function (x) { $inv.quantChange.call(this, x); }}, + { name: 'net_val', label: 'GesamtPreis netto', type: 'number', precision: '0.01', value: 0 }, + { name: 'vat_val', label: 'GesamtPreis USt', type: 'number', precision: '0.01', value: 0 }, + { name: 'svcnet_val', label: 'Arbeitslohn netto', type: 'number', precision: '0.01', value: 0 }, + { name: 'svcvat_val', label: 'Arbeitslohn USt', type: 'number', precision: '0.01', value: 0 }, + { name: 'net_pos', label: 'Netto', type: 'string' }, + { name: 'bo_pos', label: 'Brutto', type: 'string' }, + { name: 'vat', label: 'USt', type: 'string', value: '19,0%', change: function (x) { $inv.quantChange.call(this, x); } }, + { name: 'Note', label: 'Details', type: 'html', tinymce: true } + ]) +}; \ No newline at end of file diff --git a/Fuchs/js/intranet/oci_basic.js b/Fuchs/js/intranet/oci_basic.js new file mode 100644 index 0000000..03bffe6 --- /dev/null +++ b/Fuchs/js/intranet/oci_basic.js @@ -0,0 +1,857 @@ +const isIE = /MSIE\/|Trident/ig.test(window.navigator.userAgent) || typeof window.document.documentMode !== 'undefined'; +const isfileapi = (window.File && window.FileReader && window.FileList && window.Blob) ? true : false; +var $ocms = { + auth: {}, no: function (e) { + e.stopPropagation(); + }, vmin: function (f) { + var w = $(window).width * (f || 1), h = $(window).height * (f || 1); + return w < h ? w : h; + }, rpx: function (rem) { + return rem * parseFloat(getComputedStyle(document.documentElement).fontSize); + }, pattern: { + date_ger: '^(0?[1-9]|[12][0-9]|3[01])[\\.\\-](0?[1-9]|1[012])[\\.\\-]\\d{4}$', + date_us: '^(0?[1-9]|1[012])[\\\\](0?[1-9]|[12][0-9]|3[01])[\\\\]\\d{4}$', + date_serial: '\\d{4}[\\-]^(0?[1-9]|1[012])[\\-](0?[1-9]|[12][0-9]|3[01])$' + }, rdm: function (ln) { + var c = typeof ln === 'number' ? ln : (typeof ln === 'string' ? parseInt(ln) : 7); + if (isNaN(c) === true || typeof c === 'undefined') { + c = 7; + } + return Math.random().toString(36).substring(c); + }, login: {}, t: { + dn: ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'], mn: ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'], ma: ['Jan', 'Feb', 'Mrz', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'] + }, failure: function (jqXHR) { + alert($t.f1 + '\n' + (jqXHR.internalText || '')); + }, baseurl: '/do', url: (c) => ($ocms.baseurl + '/' + (c || '')).replace(/\/\//, '/'), + cexi: null +}; +function deepCopy (inObject) { + var outObject, value, key + + if (typeof inObject !== "object" || inObject === null) { + return inObject // Return the value if inObject is not an object + } + + // Create an array or object to hold the values + outObject = Array.isArray(inObject) ? [] : {}; + + for (key in inObject) { + value = inObject[key]; + + // Recursively (deep) copy for nested objects, including arrays + outObject[key] = deepCopy(value); + } + + return outObject; +}; +function fields_definition(p1, label_pl, flds) { + this.label_sng = Array.isArray(p1) === true ? '' : p1 ||''; + this.label_pl = Array.isArray(p1) === true ? '' : label_pl || ''; + this.fields = Array.isArray(p1) === true ? p1 : (flds || []); + + this.itm = function (name) { + for (var fi = 0; fi < this.fields.length; fi++) { + if (this.fields[fi].name === name) { + return this.fields[fi]; + } + } + return null; + } + this.lbl = function (name) { + var ld = {}, n = typeof name === 'string'; + for (var fi = 0; fi < this.fields.length; fi++) { + if (n ===true) { + if (this.fields[fi].name === name) { + return this.fields[fi]; + } + } else { + ld[this.fields[fi].name] = this.fields[fi].label; + } + } + return (n === true ? null : ld); + } + this.contains = function (name) { + for (var fi = 0; fi < this.fields.length; fi++) { + if (this.fields[fi].name === name) { + return true; + } + } + return false; + } + this.rem = function (name) { + var r = false, f = function (nme) { + for (var fi = 0; fi < this.fields.length; fi++) { + if (this.fields[fi].name === nme) { + this.fields.splice(fi, 1); + r = true; + break; + } + } + } + if (typeof (name) === 'string') { + f.call(this, name); + } else if (Array.isArray(name) === true) { + for (var ai = 0; ai < name.length; ai++) { + f.call(this, name[ai]); + } + } + return r; + } + this.replace = function (name, newfield) { + for (var fi = 0; fi < this.fields.length; fi++) { + if (this.fields[fi].name === name) { + this.fields.splice(fi, 1, newfield); + return newfield; + } + } + return null; + } + this.set = function (name, value, prop) { + prop = prop || 'value'; + for (var fi = 0; fi < this.fields.length; fi++) { /* loop through array */ + if (this.fields[fi].name === name) { + this.fields[fi][prop] = value; + return this.fields[fi]; /* return if found = break loop */ + } + } + return null; + } + this.sets = function (name, obj) { + if (typeof obj === 'object' && Object.keys(obj).length > 0) { + for (var fi = 0; fi < this.fields.length; fi++) { /* loop through array */ + if (this.fields[fi].name === name) { + $.extend(this.fields[fi], obj); + return this.fields[fi]; /* return if found = break loop */ + } + } + } + return null; + } + this.applyValues = function (vals) { + var t = this; + $.each(vals || {}, function (ri, rx) { + t.set(ri, rx); + }); + return t; + } + this.clone = function (names) { + let c = []; + if (Array.isArray(names || '')) { + let value, key; + for (key in (this.fields || [])) { + value = this.fields[key]; + if ((value.name ||'') !== '' && names.includes(value.name) === true) { + // Recursively (deep) copy for nested objects, including arrays + c.push(deepCopy(value)); + } + } + } else { + c = deepCopy(this.fields || []); + } + + return new fields_definition(this.label_sng || '', this.label_pl || '', c); + } +} +function rpx(rem) { + return rem * parseFloat(getComputedStyle(document.documentElement).fontSize); +} +function vw(f) { + return $(window).width() * (f || 1); +} +function vh(f) { + return $(window).height() * (f || 1); +} +function hh() { + return $('header:first').height() || 0; +} +function ne(inp, alt) { + return (inp || '') === '' ? (alt || '') : inp; +} +function pad(i, n) { return (i || '').toString().padStart(n, '0').substr(-1 * n); } +function parseISO(s) { + let si = s || ''; + if (si === '') { return null }; + if (/\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+([+-][0-2]\d:[0-5]\d|Z)/.test(si) === true) { + return new Date(si); + } else { + var b = s.split(/\D/); + return new Date(b[0], b[1] - 1, b[2], b[3], b[4], b[5]); + } +} +function parseISOLocal(s) { + let si = s || ''; + if (si === '') { return null }; + var b = s.split(/\D/); + return new Date(b[0], b[1] - 1, b[2], b[3], b[4], b[5]); +} +function fnum(i, style) { + /* { style: 'decimal/currency/percent', currency: 'USD/EUR', currencyDisplay: 'symbol/code/name', minimumIntegerDigits: 1, minimumFractionDigits: 2, maximumFractionDigits: 3, useGrouping: true } */ + return new Intl.NumberFormat(($t.lng || 'de-DE'), style || {}).format(i); +} +function fdt(i, fmt) { + if (typeof i === 'undefined') { return ''; } + try { + var f = fmt || 'DD.MM.YYYY HH:mm'; + if (f === 'dts') { + f = 'yyyy-MM-dd'; + } + if (f === 'iso') { + if (typeof i === 'string') { i = parseISO(i); } + return i.toISOString(); + } else if (typeof moment === 'function') { + return (typeof i !== 'undefined' && (typeof i === 'string' && i !== '')) ? moment(i).format(f) : ''; + } else { + if (typeof i === 'string') { i = parseISO(i); } + var pd = function (i, n) { var t = ('0000' + i.toString()); return t.slice(t.length - (n || 2)); } + var t = f + ''; + t = t.replace(/ddd/ig, ($t.dn || $ocms.t.dn)[i.getDay()]); + t = t.replace(/dd/ig, pd(i.getDate())); + t = t.replace(/MMMM/g, ($t.mn || $ocms.t.mn)[i.getMonth()]); + t = t.replace(/MMM/g, ($t.ma || $ocms.t.ma)[i.getMonth()]); + t = t.replace(/MM/g, pd(i.getMonth() + 1));//January is 0! + t = t.replace(/yyyy/ig, pd(i.getFullYear(), 4)); + t = t.replace(/yy/ig, pd(i.getFullYear())); + t = t.replace(/hh/ig, pd(i.getHours())); + t = t.replace(/mm/g, pd(i.getMinutes())); + t = t.replace(/ss/ig, pd(i.getSeconds())); + return t; + } + } catch (e) { + return ''; + } +} +Date.prototype.isValid = function () { + return !isNaN(this); +}; +Date.prototype.format = function (fmt) { + return fdt(this,fmt); +}; +Date.prototype.addDays = function (days) { + this.setDate(this.getDate() + days); + return this; +}; +Date.prototype.isBetween = function (date1, date2) { + return this > date1 && this < date2; +}; +Date.prototype.diff = function (date1) { + var diffTime = Math.abs(date1 - this), diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24)); + return diffDays; +}; +Date.prototype.year = function () { + return this.getFullYear(); +}; +Date.prototype.month = function () { + return this.getMonth() + 1; +}; +Date.prototype.date = function () { + return this.getDate(); +}; +String.prototype.ne = function (alt) { + let t = (this || '').trim(); + return t === '' ? (alt || '') : t; +}; +/* eine = extend if not empty */ +String.prototype.eine = function(pre, su) { + let t = (this || '').trim(); + return t === '' ? '' : ((pre || '') + t + (su || '')); +}; +function jine(a, sep) { return a.map((v, i) => (v || '')).filter((v, i) => v !== '').join(sep) }; +function parseDt(datestring, format, newformat) { + datestring = (datestring || '').substr(0, format.length); + var cvalid = function (fmt) { + var result, reg = /[^yMdhms0-9]/ig, valid = true; + while ((result = reg.exec(fmt)) !== null) { + valid = valid && fmt.substr(result.index, 1) === datestring.substr(result.index, 1); + } + var vr = (datestring.length === fmt.length) && valid; + if (vr === true) { + vfmt = fmt; + } + return vr; + }, vfmt = format, isvalid = datestring.length > 0 && format.split(';').some(cvalid); + if (isvalid === true) { + var ndt = [0, 0, 0, 0, 0, 0, 0], np = 'yMdhms'; + var result, reg = /(mm{1,2}|dd{1,2}|MM{1,2}|(yy){2,4}|ss{1,2}|hh{1,2})(?!\w)/g, valid = true; + while ((result = reg.exec(vfmt)) !== null) { + ndt[np.indexOf(result[0].substr(0, 1))] = parseInt((result[0] === 'yy' ? '20' : '') + datestring.substr(result.index, result[0].length)) - (result[0].substr(0, 1) === 'M' ? 1 : 0); + } + var dt = new (Function.prototype.bind.apply(Date, [null].concat(ndt)))(); + return (typeof newformat === 'string') ? fdt(dt, newformat) : dt; + } else { + return false; + } +} + +function bool(i, alt) { + return typeof i === 'boolean' ? i : (typeof alt === 'boolean' ? alt : false); +} +function booln(i, alt) { + var r = false; + if (typeof i === 'boolean') { + r = i; + } else if (typeof i === 'number') { + r = (i === 1); + } else { + r = (typeof alt === 'boolean' ? alt : false); + } + return r; +} +/* set getHash method, IE9 safe */ +var h = (typeof window.location.hash === 'undefined'); +$ocms.getHash = h ? function () { + return document.URL.substr(document.URL.indexOf('#')); +} : function () { return window.location.hash; }; +$ocms.initNav = function () { + $('body').click(function (e) { + $('#toggle-nav').removeClass('active'); + }); + var nbtn = $('#toggle-nav'); + $('.nav_menu').click(function (e) { + if (nbtn.hasClass('active') === true) { + e.stopPropagation(); + } + }); + nbtn.click(function (e) { + e.stopPropagation(); + $(this).toggleClass('active'); + }); +}; +$ocms.initScroll = function () { + let hd = $('header'); + let initialHeaderHeight = hd.height(), sec = $('main > section'); + $(window).scroll(function (e) { + let scrollTop = $(window).scrollTop(), b = $('body'); + b.toggleClass('unfocus', scrollTop > (vh() - initialHeaderHeight * 1.2)); + b.toggleClass('btb', scrollTop > (vh() * 0.5 - initialHeaderHeight)); + }); +}; +$ocms.cf_reset = function () { + return $('#contentframe').empty(); +}; +(function ($) { + /* @description: jQuery - scrollTo + * @author: Dr. Stefan Ott + * @version: 1.0 + */ + $.fn.scrollTo = function (key) { + if ($(this).length > 0) { + var ost = $(this).offset().top || 0; + if (ost > 0) { + $('html, body').animate({ + scrollTop: ost - hh() + }, 2000); + } + } + }; + $.fn.ldng = function (onoff) { + var st = true; + if (typeof onoff === 'boolean') { + st = onoff; + } else if (typeof onoff === 'number') { + st = onoff > 0; + } + return $(this).toggleClass('loading', st); + }; + if (typeof $.noop !== 'function') { + $.noop = function () {}; + } + /* @description: determines if element has the attribute + * @author: Dr. Stefan Ott + * @version: 1.0 + */ + $.fn.hasAttr = function (AttName) { + var attr = $(this).attr(AttName); + return (typeof attr !== 'undefined' && attr !== false); + }; + $.fn.parseCssPx = function (key) { + try { + return parseFloat($(this).css(key).replace('px', '') || 0); + } catch (e) { + return 0.0; + } + }; + /* @description: returns the higher value + * @author: Dr. Stefan Ott + * @version: 1.0 + */ + $.max = function (val1, val2) { + if (isNaN(val1) && isNaN(val2)) { return null; } + else if (isNaN(val1) && !isNaN(val2)) { return val2; } + else if (!isNaN(val2) && isNaN(val2)) { return val1; } + else if (val1 >= val2) { return val1; } + else { return val2; } + }; + /* @description: returns the lower value + * @author: Dr. Stefan Ott + * @version: 1.0 + */ + $.min = function (val1, val2) { + if (isNaN(val1) && isNaN(val2)) { return null; } + else if (isNaN(val1) && !isNaN(val2)) { return val2; } + else if (!isNaN(val2) && isNaN(val2)) { return val1; } + else if (val1 <= val2) { return val1; } + else { return val2; } + }; + /* @description: returns the value to the limit + * @author: Dr. Stefan Ott + * @version: 1.0 + */ + $.lim = function (val, lim) { + if (isNaN(val)) { return null; } + else if (isNaN(lim)) { return val; } + else if (lim <= val) { return lim; } + else { return val; } + }; + $.fn.enterKey = function (fnc) { + return this.each(function () { + $(this).keypress(function (ev) { + var keycode = (ev.keyCode ? ev.keyCode : ev.which).toString(); + if (keycode === '13') { + fnc.call(this, ev); + } + }) + }) + }; +})(jQuery); +/*_________ ajax ________________________________________________*/ + +$ocms.defaultTimeout = 30000; /* 30s */ + +/* @description: processes jqXHR from Ajax response and adds new infos (needs to be called with jqXHR as context) +* @author: Dr. Stefan Ott +* @version: 2.0 +*/ +$ocms.AjaxEX = function (textStatus) { + var jqXHR = this; + jqXHR.responseText = jqXHR.responseText || ''; + var ic = jqXHR.getResponseHeader('x-ocms-code') || ''; + jqXHR.internalCode = (ic !== '' && isNaN(ic) === false) ? parseInt(ic) : -1; + jqXHR.isInternal = jqXHR.internalCode > -1; + jqXHR.internalText = decodeURIComponent((jqXHR.getResponseHeader('x-ocms-desc') ||'').replace(/\+/g, '%20') || ''); + var t = jqXHR.internalText || textStatus; + var c = jqXHR.internalCode || jqXHR.status; + jqXHR.logtext = t + ' (' + c + ')'; +}; + +/* @description: custom jquery ajax post for simplification +* @author: Dr. Stefan Ott +* @version: 1.0 +*/ +$ocms.postXTS = function (options) { + $ocms.postXT.call(this, $.extend(options, { sync: true })); +}; +/* @description: custom jquery ajax post for simplification +* @author: Dr. Stefan Ott +* @version: 2.0 +*/ +$ocms.postXT = function (options) { + options = options || {}; + options.trycount = options.trycount || 0; + if ((options.url || '') === '') { return; } + options.url = (options.url.indexOf('&yy=') !== -1) ? options.url : ((options.url.indexOf('?') > -1) ? (options.url + '&yy=' + (new Date()).getTime()) : (options.url + '?yy=' + (new Date()).getTime())); + var context = options.context || this; + options.context = context; + options.retryLimit = options.retryLimit || 0; + options.timeout = options.timeout || $ocms.defaultTimeout; + if (options.timeout < 100) { options.timeout = options.timeout * 1000; } + options.data = options.data || {}; + options.contentType = options.contentType || 'multipart/form-data; charset=UTF-8'; + options.islogin = typeof options.islogin === 'boolean' ? options.islogin : false; /* this is used to prevent loop */ + switch (options.contentType) { + case '': + case 'json': + options.contentType = 'application/json; charset=utf-8'; + break; + case 'form': + options.contentType = 'application/x-www-form-urlencoded; charset=UTF-8'; + break; + case 'multi': + options.contentType = 'multipart/form-data'; + break; + case 'text': + options.contentType = 'text/plain; charset=UTF-8'; + break; + /* default = leave as defined */ + } + if (options.form instanceof jQuery) { + options.data = options.form.serializeObject(); + options.contentType = 'form-data'; + } else if (options.lzw instanceof jQuery) { + options.data.lzw = $.ccLZW(options.lzw.serializeAnything(true)).join(','); + } + var senddata; + if ((options.contentType.substr(0, 19) === 'multipart/form-data' || options.contentType.substr(0, 9) === 'form-data') && options.data instanceof FormData === false) { + options.contentType = false; + var fd = new FormData(); + $.each(options.files || [], function (fi, file) { + fd.append('upload_file', file); + }); + $.each(options.data || {}, function (di, dx) { + fd.append(di, dx); + }); + options.data = fd; + options.processData = false; + } else if (options.data instanceof FormData) { + options.contentType = false; + options.processData = false; + } + var ajo = { + type: options.method || 'post', + url: options.url, + data: options.data, + processData: typeof options.processData !== 'boolean' ? true : options.processData, + contentType: options.contentType, + cache: options.cache || false, + timeout: options.timeout, + beforeSend: function (jqXHR) { + $(options.loading).ldng(); + $('body').addClass('ldng'); + if (typeof options.beforesend === 'function') { options.beforesend.apply(context, [jqXHR]); } + }, + success: function (response, textStatus, jqXHR) { + if (response === 'false' || response === 'not authorized') { + if (typeof options.error === 'function') { options.error.apply(context, [jqXHR, textStatus, response]); } + if (typeof $.status === 'function') { $.status(textStatus + ' - ' + response); } + } else { + if (typeof options.success === 'function') { options.success.apply(context, [response, textStatus, jqXHR]); } + } + }, + error: function (jqXHR, textStatus, response) { + $ocms.AjaxEX.call(jqXHR, textStatus); + if (options.url.indexOf('doc.ashx') !== -1 && options.url.indexOf('ftest') === -1) { return; } + if (jqXHR.status === 401 && jqXHR.internalCode === 111 && options.islogin === false && typeof $ocms.login.dlg === 'function') { + $ocms.login.dlg({ ajo: options }); + } else if (textStatus === 'timeout' || jqXHR.status === 302) { + options.tryCount++; + if (options.tryCount <= options.retryLimit) { + /* try again */ + $ocms.postXT(options); + return; + } + return; + } + /*if (typeof $.log === 'function' && (jqXHR.internalCode + '') !== '1101') { $.log('Server error: ' + jqXHR.logtext + '', 'error', options.url); }*/ + if (typeof options.error === 'function') { + options.error.apply(context, [jqXHR, textStatus, response]); + } else if (typeof $ocms.failure === 'function') { + $ocms.failure.apply(context, [jqXHR]); + } else if (typeof $.status === 'function') { + $.status('Server error: ' + textStatus + ' - ' + response + ''); + } + }, + dataType: options.datatype || 'json', + complete: function (jqXHR, textStatus) { + if (typeof options.complete === 'function') { options.complete.apply(context, [jqXHR, textStatus]); } + $(options.loading).ldng(0); + $('body').removeClass('ldng'); + let tm = $('body > .timer'); + if (tm.length > 0) { + let cec = new Date(jqXHR.getResponseHeader('ocms_cec') || ''), cex = new Date(jqXHR.getResponseHeader('ocms_cex') || ''); + if (cec.isValid() && cex.isValid()) { + let d = new Date(), dd = Math.abs(cex - cec); + d.setMilliseconds(d.getMilliseconds() + dd); + tm.data({ 'cex': d, 'ctt': dd }); + $ocms.cex_timer(); + } + } + }, + context: context, + async: true + }; + if (typeof options.sync === 'boolean') { + ajo.async = (options.sync === false); + } + if ((typeof options.contentType === 'boolean' ? options.contentType === false : false) === true) { + ajo.contentType = false; /* needed for file uploads */ + } + $.ajax(ajo); +}; +$ocms.cex_timer = function () { + if (!$ocms.cexi) { + $ocms.cexi = setInterval($ocms.cex_timer, 15000); + } + let tm = $('body > .timer'), c = tm.data('cex'), t = tm.data('ctt'), n = new Date(); + if (c instanceof Date && c.isValid() && typeof t === 'number' && t > 0 && c > n) { + let p = (Math.abs(n - c) / t * 100); + tm.css('width', p.toString() + '%'); + if (p < 98 && (!$ocms.cex_lp || Math.abs(n - $ocms.cex_lp) > 600000 )) { + $ocms.postXT({ url: $ocms.url('ping'), success: () => { $ocms.cex_lp = n; }, timeout: 5000, error: () => { }}); + } + } +}; +$ocms.vbl_send = function (ev) { + var options = ev.data || {}; + if ((options.url || '') === '') { return; } + var frm = $('#contentframe form:first'); + var postoptions = { + url: options.url, data: new FormData(), success: function (response) { + if (typeof options.success === 'function') { options.success(response); } else if (typeof options.success === 'string') { alert(options.success); } + }, error: function (jqXHR, textStatus, response) { + if (typeof options.error === 'function') { options.error(response); } else if (typeof options.error === 'string') { alert(options.error); } + }, complete: function () { + frm.ldng(0); + } + }; + var valid = true; + frm.find('input').each(function () { + var t = $(this), nm = t.nza('name'), val = t.val(), req = $(this).prop('required') || false; + if (nm !== '') { + var tv = (val !== '' || req === false); + valid = valid && tv; + if (tv === true) { + postoptions.data.append(nm, val); + t[0].setCustomValidity(''); + } else if ($(this).nza('ocms-nvnote') !== '') { + t[0].setCustomValidity($(this).nza('ocms-nvnote')); + } + } + }); + if (valid === true) { + frm.ldng(1); + $ocms.postXT.call(this, postoptions); + } +}; + +(function ($) { + $.fn.nza = function (attributeName, alternative) { + var attr = $(this).attr(attributeName); + return (typeof attr !== 'undefined' && attr !== false) ? attr : (alternative || ''); + }; + $.fn.serializeObject = function (checkvalidity, options) { + var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i, + rcheckableType = (/^(?:checkbox|radio)$/i); + options = options || {}; + var typedvalues = bool(options.typedvalues, false); + var result = {}, c= $(this), inp = c.find(':input:not([nosend],[type="file"])').addBack(':input'), valid = true; + $.each(inp.not('.tinymce').get(), function (i, ii) { + var t = $(this), e = this, type = (this.type || '').toLowerCase(), req = t.prop('required') || false; + if ((e.name && !t.is(':disabled') && rsubmittable.test(e.nodeName) && !rsubmitterTypes.test(type)) === true) { + var val = t.val(), nme = e.name, dtf = t.nza('data-format').split(':'), pattern = t.nza('pattern') || '.*', cat = false; + if (rcheckableType.test(type) === true) { + val = e.checked ? (val !== '' ? val : 'true') : ''; + } + if (dtf[0].substr(0, 4) === 'date' && dtf.length > 1) { + val = parseDt(val, dtf.slice(1).join(':')); /* should result in date object */ + if (typeof val === 'boolean') { + val = null; + } + if (val === null && t.prop('type').substr(0, 4) === 'date' && isNaN(new Date(t.val())) === false) { /* is can be parsed by Date object */ + val = new Date(t.val()); + } + if (val instanceof Date === true && typeof val.getMonth === 'function') { /* if really a Date */ + if (typedvalues === false) { val = fdt(val, dtf[0] === 'date' ? 'dts' : 'iso'); } /* if string result awaited, format to string */ + } else { + val = null; + } + } else if (type === 'number' && typedvalues === true ) { + let v; + if (dtf[0] === 'integer') { + v = parseInt(val); + } else { + v = parseFloat(val); + } + val = isNaN(v) ? val : v; + } + if (req === true && ((val || '') === '' || (val.match(pattern) === null))) { + if (cat === false && bool(checkvalidity, false) === true) { e.setCustomValidity(t.nza('ocms-nvnote', $ocms.t.inv || 'Invalid field')); } + val = null; + } else if (cat=== false && bool(checkvalidity, false) === true) { + e.setCustomValidity(''); + } + if (typeof val !=='undefined' && val !== null && typeof val === 'string') { + let node = result[nme]; + if (typeof node !== 'undefined' && node !== null) { + if (Array.isArray(node)) { + node.push(val.replace(rCRLF, '\r\n')); + } else { + result[nme] = [node, val.replace(rCRLF, '\r\n')]; + } + } else { + result[nme] = val.replace(rCRLF, '\r\n'); + } + } else if (typeof val !== 'undefined' && val !== null) { + let node = result[nme]; + if (typeof node !== 'undefined' && node !== null) { + if (Array.isArray(node)) { + node.push(val); + } else { + result[nme] = [node, val]; + } + } else { + result[nme] = val; + } + } else { + valid = false; + } + } + }); + inp.filter('.tinymce').each(function (ei, ex) { + var t = $(this), e = this, type = (this.type || '').toLowerCase(), req = t.prop('required') || false + try { + var te = tinymce.get($(ex).attr('id')); + if (te) { + var enm = $(ex).attr('name'); + var val = te.getContent(); + if (req === false || (val || '') !== '') { + result[enm] = val; + } else { + valid = false; + } + } + } catch (ee) { $.noop(); } + }); + c.toggleClass('invalid', !valid); + return valid ? result : null; + }; + $.fn.sendForm = function (url, success, options) { + var form = $(this); + options = options || {}; + var postoptions = { + url: url, success: function (response) { + options.response = response; + if (typeof success === 'function') { + var _e = success(response); + } + form.closest('div.modal').remove(); + }, error: function (jqXHR, textStatus, response) { + if (typeof options.error === 'function') { options.error.call(this, jqXHR); } else { + $ocms.failure.call(this, jqXHR); + } + }, complete: function () { + form.ldng(0); + if (typeof options.complete === 'function') { options.complete.call(this, jqXHR); } + } + }; + var fle = form.find('input[type="file"]'); + postoptions.data = new FormData(); + if (fle.length > 0) { + $.each(fle[0].files, function (key, value) { + postoptions.data.append(key, value); + postoptions.data.append('file_lastmodified', $ocms.isodt(value.lastModifiedDate)); + }); + } + var formdata = form.serializeObject(); + $.each(formdata || {}, function (di, dx) { + postoptions.data.append(di, dx); + }); + form.ldng(); + $ocms.postXT.call(this, postoptions); + }; + $.fn.checkValidity = function () { + var t = $(this), valid = true; + t.each(function (i,e) { + valid = valid && e.checkValidity(); + }); + return valid; + }; + $.fn.wrap = function (cls, attr) { + var t = $(this), n = $$.dc(cls).attr(attr || {}).insertAfter(t); + t.append(n); + return n; + }; +})(jQuery); + +$ocms.logout = function () { + $ocms.postXT({ + url: $ocms.url('logout'), complete: function () { window.location.reload(); } + }); +}; +$ocms.login = { + send: function (e) { + e.preventDefault(); + var f = $(this); + if (f.find('#dbtn-confirm').hasClass('disabled') === true) { + return false; + } else { + var qs = f.serializeObject(); + qs.loginaccount = ne(qs.loginaccount, $ocms.auth.account || $ocms.auth.requestedaccount || ''); + qs.loginaccount = ne(qs.loginaccount, $ocms.auth.account || $ocms.auth.requestedaccount || ''); + if (ne(qs.loginaccount) === '' && bool($ocms.auth.accountrequired, true) === true ) { + alert($t.l16); + return false; + } else { + $ocms.postXT({ url: $ocms.url('login'), data: qs, success: function () { window.location.reload(); }}); + return false; + } + } + }, uichange: function () { + let inp_ui = $(this), form = inp_ui.closest('form'), accountrequired = bool($ocms.auth.accountrequired, true); + let loginaccount = ne(form.find('[name="loginaccount"]').val(), $ocms.auth.account || $ocms.auth.requestedaccount || ''); + if (loginaccount !== '' || accountrequired === false) { + var ul = form.find('[name="userlogin"]').empty().val(''); + var un = form.find('[name="username"]').empty().val(''); + var nsel = $('#dlg_userlogin_sel').empty().val(''); + var ui = inp_ui.val() || ''; + if (inp_ui.checkValidity() === false && ui === '') { return; } + var ftbl = inp_ui.closest('table').ldng(); + $ocms.postXT.call(this, { + url: $ocms.url('auth'), data: { 'userinfo': ui, account: (loginaccount ||'') }, success: function (response, textStatus, jqXHR) { + if (response.length === 1) { + var sx = response[0]; + ul.val(sx.login).change().attr('required', '').removeAttr('nosend'); + un.val(sx.name).change().attr('required', '').show(); + nsel.removeAttr('required').attr('nosend', '').hide(); + } else if (response.length > 0) { + un.hide().removeAttr('required'); + ul.removeAttr('required').attr('nosend', ''); + if (nsel.length === 0) { + nsel = $('').attr({ name: 'userlogin', size: response.length, id: 'dlg_userlogin_sel', class: 'form-control', required: '' }).css({ width: '100%', 'max-width': '100%', padding: '2px' }).insertAfter(un); + } + $.each(response, function (ni, sx) { + var io = $('').attr({ value: sx.login, style: 'padding-top: 2px; padding-bottom: 5px;', 'border-bottom': '1px solid #EEE;' }).text(sx.name).appendTo(nsel); + if (ni % 2 === 0) { io.css({ 'background-color': '#F9F9F9' }); } + }); + nsel.attr('required', '').removeAttr('nosend'); + } else { + nsel.hide().attr('nosend', ''); + un.attr('required', '').show(); + ul.attr('required', '').removeAttr('nosend'); + alert($t.l9); + } + }, error: function (jqXHR) { + $ocms.failure.call(this, jqXHR); + }, complete: function () { + ftbl.ldng(0); + } + }); + } else { + alert($t.l18); + } + }, sendpassword: function (ev) { + var d = $(''); + var fb = d.find('.form-body'), code = null; + d.find('form').submit(function (e) { + e.preventDefault(); + var qs = $(this).serializeObject(true), s2 = code === null, u = s2 ?'spwc':'spw'; + $ocms.postXT.call(this, { + url: $ocms.url(u), data: qs, complete: function () { + if (s2) { + fb.append('
Ihnen wurde ein Code per SMS zugesandt.
Bitte tragen Sie den hier ein:
'); + code = $('
').appendTo(fb); + } else { + alert($t.l13); + d.remove(); + } + }, error: () => { } /* prevent default */ + }); + return false; + }); + d.find('.modal-close').click(function () { + d.remove(); + }); + var l17a = []; + $.each($t.l7a.split('\n'), (i, t) => { + Array.prototype.push.apply(l17a, [$('
'), $('').text(t)]); + }); + d.find('.modal-note').append($('').text($t.alert)).append(l17a); + + d.appendTo('body'); + setTimeout(function () { + $('.modal').find('input[name="lastname"]').focus(); + }, 600); + } +}; diff --git a/Fuchs/js/intranet/oci_basic_go.js b/Fuchs/js/intranet/oci_basic_go.js new file mode 100644 index 0000000..4fa69aa --- /dev/null +++ b/Fuchs/js/intranet/oci_basic_go.js @@ -0,0 +1,3 @@ +$(document).ready(function () { + $('#loginform').submit($ocms.login.send) +}); diff --git a/Fuchs/js/intranet/oci_draggable.js b/Fuchs/js/intranet/oci_draggable.js new file mode 100644 index 0000000..996e6b1 --- /dev/null +++ b/Fuchs/js/intranet/oci_draggable.js @@ -0,0 +1,48 @@ + +(function ($) { + $.fn.draggable = function (controlelement) { + var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0; + var elmnt = $(this), ce = controlelement instanceof jQuery ? controlelement : elmnt.find(controlelement); + + + function dragMouseDown(e) { + e.stopPropagation(); + e.preventDefault(); + // get the mouse cursor position at startup: + pos3 = e.clientX; + pos4 = e.clientY; + document.onmouseup = closeDragElement; + // call a function whenever the cursor moves: + document.onmousemove = elementDrag; + } + + function elementDrag(e) { + e = e || window.event; + e.preventDefault(); + // calculate the new cursor position: + pos1 = pos3 - e.clientX; + pos2 = pos4 - e.clientY; + pos3 = e.clientX; + pos4 = e.clientY; + // set the element's new position: + elmnt.css('top', (elmnt.offset().top - pos2) + 'px'); + elmnt.css('left', (elmnt.offset().left - pos1) + 'px'); + } + + function closeDragElement() { + // stop moving when mouse button is released: + document.onmouseup = null; + document.onmousemove = null; + } + + + if (typeof controlelement !== 'undefined' && ce.length > 0) { + ce.mousedown(dragMouseDown).addClass('dctrl'); + } else { + elmnt.mousedown(dragMouseDown).addClass('dctrl'); + } + + + return $(this); + } +})(jQuery); \ No newline at end of file diff --git a/Fuchs/js/intranet/oci_go.js b/Fuchs/js/intranet/oci_go.js new file mode 100644 index 0000000..164010a --- /dev/null +++ b/Fuchs/js/intranet/oci_go.js @@ -0,0 +1,13 @@ + +$(document).ready(function () { + $('html').click(function (e) { + $nuf(); + }); + $('#listframe').click(function (e) { + e.stopPropagation(); + $nuf(); + }); + $('#mainmenu').ocmsmenu($ocms.ocmsmenu); + $('#mainmenu').activatemenu(); + //$ocms.init('cal'); +}); \ No newline at end of file diff --git a/Fuchs/js/intranet/oci_main.js b/Fuchs/js/intranet/oci_main.js new file mode 100644 index 0000000..1650ac9 --- /dev/null +++ b/Fuchs/js/intranet/oci_main.js @@ -0,0 +1,686 @@ +(function ($ocms) { + $ocms.multline = function (txt) { + let s = txt.split('\n'), div = $$.d(); + $.each(s, (si, sx) => { + div.append($$.s(sx)); + }); + return div.html(); + }; + $ocms.tooltip_hidden = function (event, api) { + /*console.log('%o', [event, api, this]);*/ + $(this).remove(); + api.rendered = false; + }; + $ocms.isDateString = function (inp) { + if (typeof inp !== 'string') { return false; } else { + return isNaN(new Date(inp)) === false; + } + } + $ocms.failure = function (jqXHR) { + if ((jqXHR.internalCode || -1) === 11110) { /* not authenticated */ + $ocms.login.dlg(); + } else { + alert($t.f1 + '\n' + (jqXHR.internalText || '')); + } + } + $ocms.getScript = function (def, success) { + var cu = [], su = [], validstring = function (obj) { return (typeof obj === 'string' && (obj || '') !== ''); }, adddef = function (di, dx) { + if (bool(dx.condition, true) === true) { + if ((dx.script || '') !== '') { + su.push({ url: dx.script, module: dx.module || '' }); + } + if (validstring(dx.css || '') === true) { + cu.push(dx.css); + } else if (Array.isArray(dx.css) === true) { + Array.prototype.push.apply(cu, dx.css.filter(validstring)); + } + } + }; + if (validstring(def || '') === true) { + su.push(def); + } else if (Array.isArray(def) === true) { + $.each(def, adddef); + } else if (typeof def === 'object' && (def.script || '') !== '') { + adddef(0, def); + } + let cssarray = []; + $.each(cu, function (ci, cui) { + if ((cui || '') !== '') { + cssarray.push(loadCSS(cui)); + } + }); + let spa = su.map( + function (sx, si) { + let url = sx.url, mdl = sx.module || ''; + if (mdl === '') { + let p = new Promise(function (resolve, reject) { + try { + (async function () { + $.ajax({ + url: url, + dataType: 'script', + success: function () { resolve(su); }, error: function () { reject(su) }, timeout: 30000 + }); + })(); + } catch (e) { + console.debug(e.message + '%o', e); + } + }); + return p; + } else { + let p = $ocms.loadmodule(mdl, url, sx.alias); + return p; + } + }); + Promise.all(spa).then(success); + }; + $ocms.loadmodule = function (module, url, alias) { + let p = new Promise(function (resolve, reject) { + (async function () { + try { + let url2 = (url.startsWith('/') || url.startsWith('.') ? '' : '/') + url; + import(url2).then(x => { $ocms[module] = x[alias ||'default']; resolve(module); }).catch(e2 => { console.debug(e2.message + '%o', e2); reject(module); }); + } catch (e) { + console.debug(e.message + '%o', e); + } + })() + }); + return p + }; + $ocms.ocms_auth = function (module, min, person_guid, fnc) { + var r = false; + if ($.isPlainObject($ocms.auth.modules) === false) { $ocms.auth.modules = {}; } + var ma = 0; + if ($ocms.auth.modules[module + (person_guid || '')] || false) { + ma = $ocms.auth.modules[module + (person_guid || '')]; + if (ma < 2 && (person_guid || '') === auth.guid) { + ma = 2; + } + if (ma >= (min || 0)) { fnc(r); }; + } else { + $ocms.postXT({ + url: $ocms.url('auth'), data: { module: module, person_guid: (person_guid || '') }, success: function (res) { + ma = res[module]; + $ocms.auth.modules[module + (person_guid || '')] = ma; + if (ma < 2 && (person_guid || '') === $ocms.auth.person_guid) { + ma = 2; + } + if (ma >= (min || 0)) { fnc(r); }; + }, error: function (jqXHR) { + $ocms.failure.call(this, jqXHR); + } + }); + } + }; + $ocms.auth.locale = 'de'; + $ocms.ocms_prepauth = function (modules, person_guid, fnc) { + $ocms.postXT({ + url: $ocms.url('auth'), data: { fn: 'csv', modules: modules, person_guid: (person_guid || '') }, success: function (res) { + $ocms.ocms_regauth(res); + }, error: function (jqXHR) { + $ocms.failure.call(this, jqXHR); + }, complete: function () { fnc(); } + }); + }; + $ocms.ocms_regauth = function (object) { + $.each(object || {}, function (module, res) { auth.modules[module] = parseInt(res); }); + }; + + + $ocms.init = function (ev) { + var mdl = typeof ev === 'string' ? ev : ((ev.data || {}).fn || ''); + if (mdl === '') { + return; + } else if (mdl === 'home') { + $cfr(); $lfr(); + $('#topbar').ocmsmenu([], true); + $('#activemodule').text($t.ov); + $ocms.ov.call($('#contentframe')); + } else { + $cfr(); $lfr(); + $('#topbar').ocmsmenu([]); + $ocms.postXT({ + url: $ocms.url(mdl + '/auth'), success: function (auth) { + if (typeof $ocms[mdl] === 'undefined') { + $ocms[mdl] = {}; + } + $ocms[mdl].auth = auth; + if (auth.manage > 0) { + $ocms.getScript({ + module: mdl, script: ['web/imdl', mdl, $ocms.auth.locale || 'de', 'js'].join('.'), css: ['web/imdl', mdl, 'css'].join('.'), condition: typeof $ocms[mdl].init2 !== 'function' }, function () { $ocms[mdl].init2(); }); + } + }, error: function () { + $('#contentframe').empty(); + } + }); + } + }; + + $ocms.menuarray = function (itm) { + this.array = []; + this.sep = function () { + if (this.length > 0 && this.array[array.length - 1].fnc !== 'separator') { + this.push({ fnc: 'separator' }); + } + }; + this.push = function (newitm) { + if (typeof newitm === 'undefined') { + return null; + } else if (Array.isArray(newitm) === true) { + Array.prototype.push.apply(this.array, newitm); + } else if (typeof newitm === 'object') { + this.array.push(newitm); + } + return newitm; + }; + this.unshift = function (newitm) { + if (typeof newitm === 'undefined') { + return null; + } else if (Array.isArray(newitm) === true) { + Array.prototype.unshift.apply(this.array, newitm); + } else if (typeof newitm === 'object') { + this.array.unshift(newitm); + } + return newitm; + }; + this.push(itm); + }; + $ocms.menu = function (menu, empty) { + /* + * create menu based on definition in form of [ { id: '', lbl: '', ico: '', fnc: function() { }, itm: [ ], data: {} } ] + */ + menu = menu || []; + var bar = $(this).removeClass('vis'); + if (bool(empty, true) === true && bar.is('#mainmenu') === false) { bar.empty(); } + if (bool(empty, false) === false && bar.is('#sidebar,#topbar')) { menu.unshift({ id: 'sbctrl', glyph: 'glyphicon-th-list', aclass: 'fbtn', fnc: function () { $lf(); } }); $lf(0); } + if ((menu || []).length === 0) { + bar.empty().addClass('hd'); + } else { + bar.removeClass('hd'); + var nav = bar.is('nav') === true ? bar : bar.children('nav'); + if (nav.length !== 1) { + nav = $('').tC('nv', bar.is('#sidebar')).tC('ctxt', bar.is('#topbar')).appendTo(bar); + } + var nul = $$.ul().appendTo(nav); + + var subi, subm = function (la, ix) { + var li = $(this).addClass('dropdown submenu'); + la.append($$.sc('caret dd')).addClass('dds dropdown-toggle').attr({ 'aria-expanded': 'false' }); + if ((ix.ico || '') !== '') { la.prepend($$.sc('ico ' + ix.ico)); } + var lul = $$.ul({ class: 'dropdown-menu', role: 'menu' }).appendTo(li); + $.each(ix.itm || [], function (mi, mx) { + subi.call(lul, mx); + }); + }; + var dis = function (ix) { + $(this).tC('disabled', (typeof ix.disabled === 'boolean' ? ix.disabled : (typeof ix.disabled === 'string' && ix.disabled === 'subs' && (ix.itm || []).length === 0 ? true : false))) + }; + subi = function (mx) { + var ml = $$.li({ id: mx.id }).attr(mx.attr || {}).addClass(mx.lclass).appendTo($(this)), ma, role = (typeof mx.fnc === 'string' && mx.fnc !== '') ? mx.fnc.split(':')[0] : ''; + if (role !== '' && role !== 'init') { + ml.attr('role', role).appendIf($$.s(mx.lbl), ne(mx.lbl) !== ''); + } else { + ma = $$.a({ class: 'on', role: 'button' }).addClass(mx.aclass).appendTo(ml).append($$.s(mx.lbl)); + dis.call(ma, mx); + if ((mx.itm || []).length > 0) { + subm.call(ml, ma, mx); + } + ma.click($nuf); + if (typeof mx.fnc === 'function') { + ma.click(mx.data || {}, mx.fnc); + } else if (role === 'init') { + ma.click($.extend({}, mx.data || {}, { fn: mx.fnc.split(':')[1] }), $ocms.init); + } + } + }; + $.each(menu, function (ii, ix) { + var li = $$.li({ id: ix.id }).attr(ix.attr || {}).addClass(ix.lclass), la, role = (typeof ix.fnc === 'string' && ix.fnc !== '') ? ix.fnc.split(':')[0] : ''; + if (role !== '' && role !== 'init') { + li.attr('role', role).appendIf($$.s(ix.lbl), ne(ix.lbl) !== ''); + } else { + la = $$.a({ class: 'on', role: 'button' }).addClass(ix.aclass).appendTo(li); + dis.call(la, ix); + if ((ix.lbl || '') !== '') { la.append($$.s(ix.lbl)); } + if ((ix.ico || '') !== '') { la.prepend($$.sc('ico ' + ix.ico)); } + if ((ix.glyph || '') !== '') { la.prepend($$.sc('glyphicon ' + ix.glyph)); } + if ((ix.itm || []).length > 0) { + li.addClass('dropdown'); + la.append($$.sc('caret dd')).addClass('dds dropdown-toggle').attr({ 'aria-expanded': 'false' }); + var lul = $$.ul({ class: 'dropdown-menu', role: 'menu' }).appendTo(li); + $.each(ix.itm || [], function (mi, mx) { + subi.call(lul, mx); + }); + } + if ((ix.sel || []).length > 0) { + + } else { + la.click($nuf); + if (typeof ix.fnc === 'function') { + la.click(ix.data || {}, ix.fnc); + } else if (role === 'init') { + la.click($.extend({}, ix.data || {}, { fn: ix.fnc.split(':')[1] }), $ocms.init); + } + } + } + li.appendTo(nul); + }); + nav.activatemenu(); + } + }; + /* DIALOGS & POPUPS ********************************************************************************************************************************/ + $ocms.easytbl = (array, options) => { + options = options || {}; + let tbl = $$.tbl().addClass(options.class).css('border-collapse', 'collapse'), bdy = $$.tbody(tbl), basecss = (bool(options.frame, false) === true) ? { padding: '5px', border: '1px solid #727272' } : {}; + if (Array.isArray(options.header) === true) { + let hd = $$.thead(tbl); + $.each(options.header, (hi, hx) => $$.th(hd).css(options.cellcss || basecss).rwText(hx)); + } else if (bool(options.header, false) === true && (array || []).length > 0) { + let hd = $$.thead(tbl); + $.each(Object.keys(array[0]), (hi, hx) => $$.th(hd).css(options.cellcss || basecss).rwText(hx)); + } + $.each(array || [], (ai, ax) => { + let tr = $$.tr(); + $.each(ax, (bi, bx) => { + bx = bx || ''; + let td = $$.td(tr).css(options.cellcss || basecss); + if (bx instanceof jQuery) { + td.append(bx); + } else if (typeof bx === 'string') { + if (bx.substring(0, 1) === '<') { + td.append(bx); + } else { td.text(bx); } + } + }); + tbl.append(tr); + }); + return tbl; + }; + $ocms.dlgtbl = (array, title, options) => { + options = options || {}; + let tbl = $ocms.easytbl(array, options) + $ocms.dlg(tbl, $.extend({ title: title }, options)); + }; + $ocms.dlg = function (content, options) { + options = options || {} + let mexist = $('body > .modal').length > 0; + let t = (n) => typeof options[n], f = (n) => t(n) === 'function'; + if (bool(options.exclusive, true) === true && mexist === true) { + alert($t.dbldlg || 'Es ist bereits ein Dialog geöffnet'); + return; + } + let modal = $$.dc('modal', $('body')), dlg = $$.dc('modal-dialog', modal); + if (isNaN(options.zindex) === false) { + modal.css('zIndex', options.zindex); + } else if (mexist === true) { + modal.css('zIndex', parseInt($('body > .modal:last').cssValue('zIndex')) + 200); + } + if (isNaN(options.zindex_min) === false) { + if (modal.cssValue('zIndex') < options.zindex_min) { + modal.css('zIndex', options.zindex_min); + } + } + + if (t('size') === 'string') { + dlg.addClass('sz' + ne(options.size)); + } else if (Array.isArray(options.size)) { + dlg.css('height', (options.size[0] || -1) < 0 ? null : options.size[0].toString() + 'px'); + dlg.css('width', (options.size[1] || -1) < 0 ? null : options.size[1].toString() + 'px'); + } + + let clbtn = $$.dc('modal-close').appendTo(dlg), ct = $$.dc('modal-content', dlg); + let c = ct, hd, isform = bool(options.form, false); + if (isform === true) { /* squeeze in a form */ + c = $('
').appendTo(c); + } + if (ne(options.title) !== '') { + hd = $$.dc('modal-header', c); + $('

').text(options.title).appendTo(hd); + } + let bdy = $$.dc('modal-body', c), ft = $$.dc('modal-footer', c); + if ((content instanceof jQuery) === true) { + bdy.append(content); + } + let close = function (be) { + if (!!be && typeof be.stopPropagation === 'function') { + be.stopPropagation(); + } + dlg.removeClass('in'); + if (f('closing')===true) { + options.closing.call(c); + } + bdy.hide().emptyWithEditors(); + modal.remove(); + if (f('close') === true) { + options.close.call(c); + } + }; + if (c.find(':input[required]').length > 0) { + $$.dc('note_required', ft).append($$.sc('ind_required', '*')).append($$.s($t.t1 || 'Eingabe erforderlich')); + $$.dc('note_invalid', ft).append($$.s($t.t2 || 'Bitte überprüfen Sie Ihre Eingaben im Formular.')); + } + if (f('cancel') === true) { + let ccb = $$.bbtn(options.cancelbutton || 'Abbrechen', 'cancel').attr({ type: 'button', role: 'cancel' }).appendTo(ft); + ccb.click(function (e) { + var r = options.cancel.call(c, e); + e.stopPropagation(); + close(); + }); + } + if (f('confirm') === true) { + let cfb = $$.bbtn(options.button || 'OK', 'confirm').attr({ type: bool(options.form, false) === true ? 'submit' : 'button', role: 'confirm' }).appendTo(ft); + if (isform === true) { + c.submit(function (e) { + try { + var r = options.confirm.call(c, e); + } finally { + e.preventDefault(); + } + return false; + }); + c.on('modal_submit', function () { + var r = options.confirm.call(c, e); + }); + } else { + cfb.click(function (e) { + var r = options.confirm.call(c, e); + e.stopPropagation(); + }); + c.on('modal_submit', function () { + cfb.click() + }); + } + } else if (isform === true) { + c.submit(function (e) { e.preventDefault(); return false; }); + } + c.on('modal_close', function () { + close(); + }); + clbtn.click(close); + if (f('opening') === true) { + options.opening.call(c); + } + dlg.addClass('in'); + if (ne(options.mode).indexOf('maxbody') > -1) { + bdy.css('min-height', (ct.height() - hd.outerHeight() - ft.outerHeight()).toString() + 'px'); + } + if (f('open') === true) { + options.open.call(c); + } + return { hd: hd, bdy: bdy, ft: ft, ct: ct, dlg: dlg, c: c }; + }; + $ocms.mform = function (fields) { /* modal form */ + let fb = $$.dc('form-body'); + let flds = Array.isArray(fields) ? fields : (fields instanceof fields_definition ? fields.fields : []); + /* EXAMPLE !! + var flds = [ + { name: 'userinfo', label: $t.l1, type: 'string', value: $ocms.auth.login, change: $ocms.login.uichange, required: true }, + { name: 'userlogin', type: 'hidden', required: true, value: $ocms.auth.login }, + { name: 'username', type: 'string', label: $t.l4, required: true, readonly: true, placeholder: $t.l5, value: $ocms.auth.fullname_rev }, + { name: 'userpass', type: 'password', label: $t.l3, required: true, placeholder: $t.l3 }, + ]; + */ + $.each(flds || [], function (ff, f) { + let ftyp = f.type || ''; + if (ftyp === 'ignore') { + return true; + } + let fg = $$.dc('form-group', fb), id = f.id || 'dlg_' + (f.name || '') + (f.type === 'html' ? '_' + (((1 + Math.random()) * 0x10000) || 0).toString(16).substr(9) : ''); + let lbl = $$.lbl(f.label || f.name, { for: id }).appendTo($$.dc('form-itm', fg)); + let fi = $$.dc('form-itm', fg), inp = $$.i({ id: id, name: f.name, placeholder: f.placeholder, type: f.type }); + + switch (ftyp) { + case 'email': + f.pattern = ne(f.pattern, '[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,}$'); + break; + case 'url': + f.pattern = ne(f.pattern, 'https?://.+'); + break; + case 'number': + f.pattern = ne(f.pattern, '[-+]?[0-9]*[.,]?[0-9]*'); + inp.attr('step', f.precision || 'any'); + inp.attr('data-format', 'float'); + break; + case 'integer': + case 'int': + f.pattern = ne(f.pattern, '[-+]?[0-9]*'); + inp.attr('type', 'number'); + inp.attr('data-format', 'integer'); + break; + case 'date': + var dbp = '|([0-9]{4}.(0[1-9]|1[012]).(0[1-9]|1[0-9]|2[0-9]|3[01]))' + if (ne(f.pattern, $t.datepattern) !== '') { + f.pattern = ne(f.pattern, '(' + $t.datepattern + ')' + dbp); + } + if (ne(f.placeholder, $t.dateplaceholder) !== '') { + inp.attr('placeholder', ne(f.placeholder, $t.dateplaceholder)) + } + if (typeof f.value === 'string') { + var dtv = f.value.substr(0, 10); + f.value = inp.prop('type') !== 'date' ? fdt(dtv + 'T00:00:00', ne(f.dateformat, $t.dateformat)) : dtv; + } + inp.attr('data-format', 'date:' + ne(f.dateformat, $t.dateformat) + ';yyyy-MM-dd'); /* alternative format, bc some browsers internally use english standard */ + break; + case 'datetime': + var dtbp = '|([0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])\\s([0-5][0-9]):([0-5][0-9]))' + inp.attr('type', 'datetime-local'); + if (ne(f.pattern, $t.datetimepattern) !== '') { + f.pattern = ne(f.pattern, '(' + $t.datetimepattern + ')' + dtbp); + } + if (ne(f.placeholder, $t.datetimeplaceholder) !== '') { + inp.attr('placeholder', ne(f.placeholder, $t.datetimeplaceholder)) + } + if (typeof f.value === 'string' && f.value.substr(10, 1) === 'T') { + f.value = inp.prop('type').substr(0, 8) !== 'datetime' ? fdt(f.value, ne(f.datetimeformat, $t.datetimeformat)) : f.value; + } + inp.attr('data-format', 'datetime:' + ne(f.datetimeformat, $t.datetimeformat) + ';yyyy-MM-dd HH:mm:ss'); /* alternative format, bc some browsers internally use english standard */ + break; + case 'hidden': + fg.addClass('hd'); + break; + case 'html': /* dropthrough by intention */ + case 'text': + inp = $$.txt({ id: id, name: f.name, placeholder: f.placeholder, type: f.type }); + inp.tC('tinymce', f.type === 'html'); + break; + case 'bool': /* dropthrough by intention */ + case 'boolean': + f.url = [ + { value: 'true', label: ($t || {}).true || 'Yes' }, + { value: 'false', label: ($t || {}).false || 'No' } + ]; + if (typeof f.value === 'boolean') { + f.value = f.value ? 'true' : 'false'; + } /* dropthrough by intention */ + case 'select': + inp = $$.sel({ id: id, name: f.name, type: f.type }); + if (bool(f.required, false) === false) { + $$.eOpt().appendTo(inp); + } + try { + var ffo = function (opt) { + if (Array.isArray(opt) === true) { + $.each(opt, function (oi, ox) { + if (typeof ox === 'string') { + $$.opt(ox, ox).appendTo(inp); + } else if (Array.isArray(ox) === true) { + $$.opt(ox[0], ox[1]).appendTo(inp); + } else if (typeof ox === 'object') { + $$.opt(ox.value, ox.label || ox.text).appendTo(inp); + } + }); + } + } + if (Array.isArray(f.url) === true) { + ffo(f.url); + } else if (typeof f.url === 'function') { + f.url.call(inp); + } else if (typeof f.url === 'string') { + $ocms.postXT({ + url: f.url, success: ffo + }); + } + } catch (eo) { + $.noop(); + } + break; + default: + if (ne(f['max-length']) !== '') { inp.attr('max-length', f['max-length']); } + } + if (ne(f.pattern) !== '') { inp.attr('pattern', f.pattern); } + inp.val(f.value).change(); + inp.change(function () { $(this)[0].setCustomValidity(''); }); /* reset invalidity state on change */ + inp.addClass('form-control').prop('required', bool(f.required, false)).prop('readonly', bool(f.readonly, false)).appendTo(fi); /* not too early so that inp can be replaced */ + if (bool(f.required, false) === true) { lbl.append($$.sc('ind_required', '*')); } + if (typeof f.attr === 'object') { inp.attr(f.attr); } + if (typeof f.prop === 'object') { inp.prop(f.prop); } + if (typeof f.class === 'string') { inp.addClass(f.class); } + if (typeof f.change === 'function') { + inp.change(f.change); + if (bool(f.applychange, false) === true && typeof f.value !== 'undefined') { + inp.change(); + } + } + if ((f.note || '') !== '') { + $$.dc('form-note', fi).rwText(f.note); + } + if (typeof f.complete === 'function') { + f.complete.call(inp); + } + }); + + //let tinys = fb.find('.tinymce'); + //if (tinys.length > 0) { + // pa = [new Promise((resolve, reject) => { + // $ocms.initMCE(tinys); + // resolve(); + // })]; + // await Promise.all(pa); + //} + return fb; + }; + $ocms.initMCE = function (tgt, options) { + //if ($vm.nl.option_individualized) { $vm.nl.nkit_custMCE_plugins.push('nkit_vm_variables'); } + tgt = $(tgt); + options = options || {}; + try { + let sets = { + target: tgt[0], + inline: false, + width: options.width || '100%', + statusbar: false, + //valid_children: '+p[ph]', + //custom_elements: 'ph', + //extended_valid_elements: 'span[class,style,title],div[class,style,title]', + document_base_url: window.location.origin + '/', + //file_picker_callback: function (callback, value, meta) { + // if (meta.filetype === 'image') { + // $nkit.imageFilePicker(callback, value, meta); + // } + //}, + content_style: 'ph:before {content: \'«\'; color: #BBB; font-style:italic; } ph:after {content: \'»\'; color: #BBB; font-style:italic; } ph { color: #AAA; font-style:italic; }', + relative_urls: false, + remove_script_host: false, + //plugins: ($nkit.nkit_custMCE_plugins || []).join(' ') + }; + if (bool(options.hidemenu, false) === true) { + sets.menubar = false; + sets.menu = {}; + } + if (bool(options.hidetoolbar, false) === true) { + sets.toolbar = false + } + $.extend(sets, options || {}); /* merge options into settings -> allows to overwrite these defaults */ + + tinymce.init(sets); + + } catch (e) { + alert(e.message); + } + }; + $ocms.dlgform = function (flds, options) { + options = options || {}; + let gf1 = $$.dc('frm').append($ocms.mform(flds || []).addClass('stacked')); + if (options.addcontent instanceof jQuery) { gf1.append(options.addcontent); } + let cfm; + if (typeof options.submit === 'function') { + cfm = options.submit; + } else if (typeof options.success === 'function') { + cfm = function (e) { + var c = $(this).ldng(1); + var qs = $.extend({ loginaccount: $ocms.auth.account || '' }, c.serializeObject(bool(options.checkvalidity, true), { typedvalues: bool(options.typedvalues, false) })); + if ((options.url || '') !== ''){ + $ocms.postXT({ + url: options.url, data: qs, success: function (response) { + options.success.call(this, response); + c.trigger('modal_close'); + }, error: function () { + alert($t.l17); + }, complete: function () { + c.ldng(0); + }, timeout: 60000 + }); + } else { + options.success.call(this, qs); + c.trigger('modal_close'); + } + }; + } + let opt = { + form: true, title: options.title || '', button: options.button || $t.submit, confirm: cfm, size: options.size || [500, 600], open: function () { + let c = $(this); + let tinys = c.find('.tinymce'); + if (tinys.length > 0) { + $ocms.initMCE(tinys, options.tinymce || {}); + } + } + }; + let d = $ocms.dlg.call(this, gf1, opt); + return d; + }; + $ocms.login.dlg = function (options) { + options = options || {}; + let flds = [ + { name: 'userinfo', label: $t.l1, type: 'string', value: $ocms.auth.login, change: $ocms.login.uichange, required: true }, + { name: 'userlogin', type: 'hidden', required: true, value: $ocms.auth.login }, + { name: 'username', type: 'string', label: $t.l4, required: true, readonly: true, placeholder: $t.l5, value: $ocms.auth.fullname_rev }, + { name: 'userpass', type: 'password', label: $t.l3, required: true, placeholder: $t.l3 }, + ]; + if (($ocms.auth.account || '') === '') { + flds.unshift({ id: 'dlg_loginaccount', name: 'loginaccount', type: 'string', required: true, value: $ocms.auth.account }); + } + let gf1 = $$.dc('frm').append($ocms.mform(flds).addClass('stacked')); + let f_submit = function (e) { + var c = $(this).ldng(1); + var qs = $.extend({ loginaccount: $ocms.auth.account || '' }, c.serializeObject()); + $ocms.postXT({ + url: '/vt/login', data: qs, success: function (response) { + if (((response || {}).login || '') !== '') { + c.trigger('modal_close'); + $ocms.auth = response; + + /* try to resend the rejected post*/ + if (typeof options.ajo === 'object') { + options.ajo.islogin === true; /* prevent loop */ + $.ajax(options.ajo); + } + } + }, error: function () { + alert($t.l17); + }, complete: function () { + c.ldng(0); + }, timeout: 60000 + }); + }; + let d = $ocms.dlg.call(this, gf1, { form: true, title: $t.l0, button: $t.submit, confirm: f_submit, size: [500, 600] }); + let ah = $$.dc('modal-content').css('height', 'auto').attr('novalidate', 'true').append($$.dc('modal-header').appendIf($('

').text($ocms.auth.accountname), ($ocms.auth.accountname || '') !== '').append($('

Vereinsmanager

'))); + d.dlg.prepend(ah); + }; + + $ocms.addNoEntryInfo = function (txt) { + $(this).append($$.dc('noentryinfo').text(txt || $t.t11)); + }; + + +})($ocms); + + diff --git a/Fuchs/js/intranet/oci_main_menu.js b/Fuchs/js/intranet/oci_main_menu.js new file mode 100644 index 0000000..e4b9fbd --- /dev/null +++ b/Fuchs/js/intranet/oci_main_menu.js @@ -0,0 +1,8 @@ +(function () { + $ocms.ocmsmenu = [ + { lbl: '', id: 'm_home', ico: 'glyphicon glyphicon-home', fnc: 'init:home' } + , { fnc: 'separator' } + //, { fnc: 'separator' } + //, { lbl: $t.m_efa, id: 'm_efa', fnc: 'init:efa' } + ]; +})(); \ No newline at end of file diff --git a/Fuchs/js/intranet/oci_mainbase.js b/Fuchs/js/intranet/oci_mainbase.js new file mode 100644 index 0000000..167dfa3 --- /dev/null +++ b/Fuchs/js/intranet/oci_mainbase.js @@ -0,0 +1,663 @@ +var $$ = { + s: function (ct) { return $('').text(ct); }, + br: function () { return $('
'); }, + sc: function (cls, ct) { return $('').addClass(cls).text(ct); }, + td: function (param1, param2) { + var td = $(''); + if ((param1 instanceof jQuery) === true) { + td.appendTo(param1); + } else if (typeof param1 === 'object') { + td.attr(param1); + } else if (typeof param1 === 'string') { + td.text(param1); + } + if (typeof param2 === 'object') { + td.attr(param2); + } else if (typeof param2 === 'string') { + td.text(param2); + } + return td; + }, + th: function (param1, param2) { + var th = $(''); + if ((param1 instanceof jQuery) === true) { + th.appendTo(param1); + } else if (typeof param1 === 'object') { + th.attr(param1); + } else if (typeof param1 === 'string') { + th.text(param1); + } + if (typeof param2 === 'object') { + th.attr(param2); + } else if (typeof param2 === 'string') { + th.text(param2); + } + return th; + }, + tdc: function (cls, param1, param2) { return $$.td(param1, param2).addClass(cls); }, + td2: function (ct) { + var _td3 = $(''); + if ($.type(ct) === 'string') { _td3.text(ct); } else if (ct instanceof jQuery) { _td3.append(ct); } else if (typeof ct === 'function') { ct.call(_td3); } else { _td3.html(' '); } + return _td3; + }, + td3: function (ct) { + var _td3 = $(''); + if ($.type(ct) === 'string') { _td3.text(ct); } else if (ct instanceof jQuery) { _td3.append(ct); } else if (typeof ct === 'function') { ct.call(_td3); } else { _td3.html(' '); } + return _td3; + }, + tdtr: function (ct, tbl) { + var tr = $$.tr().appendTo(tbl); + if ((ct instanceof jQuery) === true || typeof ct === 'string') { + ct.appendTo($$.td().appendTo(tr)); + } else if (Array.isArray(ct) === true) { + $.each(ct, function (ci, cx) { + $(cx).appendTo($$.td().appendTo(tr)); + }); + } + return tr; + }, + tr: function (param1, param2) { + var tr = $(''); + if ((param1 instanceof jQuery) === true) { + tr.appendTo(param1); + } else if (typeof param1 === 'object') { + tr.attr(param1); + } + if (typeof param2 === 'object') { + tr.attr(param2); + } + return tr; + }, + trc: function (cls, param1) { + var tr = $('').addClass(cls); + if ((param1 instanceof jQuery) === true) { + tr.appendTo(param1); + } else if (typeof param1 === 'object') { + tr.attr(param1); + } + return tr + }, + d: function (att) { return $('
').attr(att || {}); }, + dc: function (cls, param1, param2, param3) { + var d = $('
').addClass(cls); + if ((param1 instanceof jQuery) === true) { + d.appendTo(param1); + } else if (typeof param1 === 'object') { + d.attr(param1); + } else if (typeof param1 === 'function') { + d.click(param1); + } else if (typeof param1 === 'string') { + d.text(param1); + } + if (typeof param2 === 'string') { + d.text(param2); + } else if (typeof param2 === 'object') { + d.attr(param2); + } else if (typeof param2 === 'function') { + d.click(param2); + } + if (typeof param3 === 'string') { + d.text(param3); + } else if (typeof param3 === 'object') { + d.attr(param3); + } else if (typeof param3 === 'function') { + d.click(param3); + } + return d; + }, + df: function (att) { return $('
 
').attr(att || {}); }, + opt: function (param1, param2, param3) { + var d = $(''); + if (typeof param1 === 'string') { + d.attr('value', param1); + } else if (typeof param1 === 'object') { + d.attr(param1); + } + if (typeof param2 === 'string') { + d.text(param2); + } else if (typeof param2 === 'object') { + d.attr(param2); + } + if (typeof param3 === 'object') { + d.attr(param3); + } + return d; + }, + eOpt: function (selected) { + var _eOpt = $(''); + if (selected || false) { _eOpt.attr('selected', 'selected'); } + return _eOpt; + }, + tbl: function (att) { return $('
').attr(att || {}); }, + tblc: function (cls) { return $('
').addClass(cls); }, + thead: function (tbl) { let h = $(''); if (tbl instanceof jQuery) { h.prependTo(tbl); } return h; }, + tbody: function (tbl) { let b = $(''); if (tbl instanceof jQuery) { b.appendTo(tbl); } return b; }, + tblset: function (att, parent) { + let b = $$.tbl(att || {}); + if (parent instanceof jQuery) { + parent.append(b); + } + return { tbl: b, hd: $$.thead().appendTo(b), bdy: $$.tbody().appendTo(b) }; + }, + i: function (att) { return $('').attr(att || {}); }, + img: function (src, att) { return $('').attr('src', src).attr(att || {}); }, + sel: function (att) { return $('').attr(att || {}); }, + btn: function (att) { return $('').attr(att || {}); }, + a: function (att) { return $('').attr(att || {}); }, + li: function (att) { return $('
  • ').attr(att || {}); }, + ul: function (att) { return $('
      ').attr(att || {}); }, + nav: function (att) { return $('').attr(att || {}); }, + lbl: function (ct, att) { + var l = $(''); + if (typeof ct === 'string') { + l.text(ct); + } + if (typeof ct === 'object') { + l.attr(ct); + } else if (typeof att === 'object') { + l.attr(att); + } + return l; + }, + txt: function (att) { return $('').attr(att || {}); }, + 0: function (tag, att) { return $('<' + tag + '>').attr(att || {}); }, + /* bootstrap */ + bbtn: function (txt, cls) { return $$.btn({ type: 'button', class: 'btn' }).addClass(cls).text(txt); }, + svg: (tag) => { + return $(document.createElementNS('http://www.w3.org/2000/svg', tag)); + } +}; +String.prototype.trim = function () { return this.replace(/^\s+|\s+$/g, ''); }; +String.prototype.left = function (n) { + if ($.type(n) === 'string') { + var i = this.indexOf(n); + if (i > 0) + return this.slice(0, i); + else + return ""; + } else { + return this.substring(0, n); + } +}; +String.prototype.right = function (n) { + if ($.type(n) === 'string') { + var i = this.indexOf(n); + if (i > 0) + return this.substring(this.length - i); + else + return ""; + } else { + return this.substring(this.length - n); + } +}; +Array.prototype.move = function (old_index, new_index) { + if (new_index >= this.length) { + var k = new_index - this.length; + while ((k--) + 1) { + this.push(undefined); + } + } + this.splice(new_index, 0, this.splice(old_index, 1)[0]); + return this; // for testing purposes +}; +function getMonday(d) { + d = new Date(d); + var day = d.getDay(), + diff = d.getDate() - day + (day == 0 ? -6 : 1); // adjust when day is sunday + return new Date(d.setDate(diff)); +} +(function ($) { + $.fn.appendToIf = function (target, condition) { + var t = $(this), c = (typeof condition === 'function' ? condition(t) : condition); + if ((typeof c === 'boolean' ? c : true) === true) { + t.appendTo(target); + } + return t; + }; + $.fn.appendIf = function (content, condition) { + var t = $(this), c = (typeof condition === 'function' ? condition(t) : condition); + if ((typeof c === 'boolean' ? c : true) === true) { + t.append(content); + } + return t; + }; + $.fn.rwText = function (text, addtitle, options) { + var tgt = $(this).empty(); + options = $.extend({ wrap: true }, options); + var sa = Array.isArray(text) === true ? text : (text || '').split('\n'); + $.each(sa, function (ti, tx) { + if ((tx || '') !== '') { + if (ti > 0) { + tgt.append($$.br()); + } + tgt.append(options.wrap === true ? $$.s(tx) : tx); + } + }); + if (addtitle || false) { tgt.attr('title', addtitle); } + return tgt; + }; + $.fn.loadSel = function (url, data, complete) { + if ($(this).prop('tagName').toUpperCase() === 'SELECT') { + var sel = $(this); + $ocms.postXT.call(this, { + url: url, data: data || {}, success: function (response) { + $.each(response, function () { + sel.append($$.opt(response.value, response.text)); + }); + }, complete: function () { + sel.ldng(0); + if (typeof complete === 'function') { + complete.call(sel); + } + } + }); + } + }; + $.fn.emptyWithEditors = function (parent) { + var t = $(this); + t.find(':input.tinymce').each(function (ei, ex) { + try { + var te = tinymce.get($(ex).attr('id')); + if (te) { te.remove(); } + } catch (ee) { + $.noop(); + } + }); + return t.empty(); + }; + $.fn.cssValue = function (styleName) { + if (this.length > 0) { + var cv = this.css(styleName) || ''; + if (cv === '') { + return 0; + } else { + var v, r = (/(^[\d\.]*)(\D{1,3}$)/ig).exec(cv); + if (r !== null) { + switch (r[2]) { + case 'rem': + return $ocms.rpx(parseFloat(r[1])); + default: + return parseFloat(r[1]); + } + } else if (isNaN(cv) === false) { + return parseFloat(cv) + } else { return 0; } + } + } else { return 0; } + }; + /* @description: gets very inner height excluding borders and padding */ + $.fn.veryInnerHeight = function () { + let c = (p) => $(this).cssValue(p); + return ($(this).innerHeight() - c('padding-top') - c('padding-bottom')); + }; + /* @description: gets very inner width excluding borders and padding */ + $.fn.veryInnerWidth = function () { + let c = (p) => $(this).cssValue(p); + return ($(this).innerWidth() - c('padding-left') - c('padding-right')); + }; + $.fn.marginWidth = function() { + let c = (p) => $(this).cssValue(p); + return (c('margin-left') + c('margin-right')); + }; + $.fn.marginHeight = function () { + let c = (p) => $(this).cssValue(p); + return (c('margin-top') + c('margin-bottom')); + }; + + $.inArrayRegEx = function (search, array, start) { + var regex = (($.type(search) === 'regexp') ? search : (new RegExp(search))); + if (!array) return -1; + start = start || 0; + for (var i = start; i < array.length; i++) { + if (regex.test(array[i])) { + return i; + } + } + return -1; + }; + /* @Desciption: Programmatically Lighten or Darken a hex color (or rgb, and blend colors) + * @author: Pimp Trizkit + * @source: internet http://stackoverflow.com/a/13542669 + * + * usage: + * var color1 = "#FF343B"; + * var color2 = "#343BFF"; + * var color3 = "rgb(234,47,120)"; + * var color4 = "rgb(120,99,248)"; + * var shadedcolor1 = shadeBlend(0.75,color1); + * var shadedcolor3 = shadeBlend(-0.5,color3); + * var blendedcolor1 = shadeBlend(0.333,color1,color2); + * var blendedcolor34 = shadeBlend(-0.8,color3,color4); // Same as using 0.8 + */ + $.shadeBlend = function (p, c0, c1) { + var n = p < 0 ? p * -1 : p, u = Math.round, w = parseInt; + var f, t; + if (c0.length > 7) { + f = c0.split(','); + t = (c1 ? c1 : p < 0 ? 'rgb(0,0,0)' : 'rgb(255,255,255)').split(','); + var R = w(f[0].slice(4)), G = w(f[1]), B = w(f[2]); + return 'rgb(' + (u((w(t[0].slice(4)) - R) * n) + R) + ',' + (u((w(t[1]) - G) * n) + G) + ',' + (u((w(t[2]) - B) * n) + B) + ')'; + } else { + f = w(c0.slice(1), 16); + t = w((c1 ? c1 : p < 0 ? '#000000' : '#FFFFFF').slice(1), 16); + var R1 = f >> 16, G1 = f >> 8 & 0x00FF, B1 = f & 0x0000FF; + return '#' + (0x1000000 + (u(((t >> 16) - R1) * n) + R1) * 0x10000 + (u(((t >> 8 & 0x00FF) - G1) * n) + G1) * 0x100 + (u(((t & 0x0000FF) - B1) * n) + B1)).toString(16).slice(1); + } + }; + $.fn.IN = function (complete) { + $(this).fadeIn(400, complete); + return $(this); + }; + $.fn.OUT = function (complete) { + $(this).fadeOut(400, complete); + return $(this); + }; + $.fn.tooltip = function (mouse, tree) { + var target = (typeof mouse === 'boolean' ? mouse : false) === true ? 'mouse' : false; + var cascade = typeof tree === 'boolean' ? tree : false; + var t = $(this); + t.each(function () { + var elem = cascade ? $(this).find('.tooltiptext') : $(this).children('.tooltiptext'); + if ($(elem).length > 0) { + elem.each(function () { + var e = $(this), p = $(this).filter(':not(:empty)').parent(); + p.qtip({ + suppress: false, + content: { + text: e.clone() + }, + position: { + target: target, + adjust: { x: 2, y: 2 }, + viewport: true + }, + events: { + hidden: $ocms.tooltip_hidden + }, show: { effect: false }, hide: { effect: false } + }); + e.remove() + }); + } else { + $(this).qtip({ + position: { + target: target, + adjust: { x: 2, y: 2 }, + viewport: true + }, + events: { + hidden: $ocms.tooltip_hidden + }, effect: false + }); + } + }); + return t; + }; + + $.fn.rC = function (arg) { + return $(this).removeClass(arg); + }; + $.fn.aC = function (arg) { + return $(this).addClass(arg); + }; + $.fn.tC = function (arg, state) { + return $(this).toggleClass(arg, state); + }; +})(jQuery); +function $lf(vis) { + var ts = typeof vis === 'undefined' ? null : ((typeof vis === 'number' && vis !== 1) || (typeof cl === 'boolean' && vis === false)); + return $('#listframe').tC('hd', ts).is('.hd'); +}; +function $nuf(e) { + if (e) { e.stopPropagation(); } + if ($(this).is('.disabled')) { + return; + } + /* close any nav */ + var f = function (nav) { nav.removeClass('vis').find('li.dropdown').removeClass('open').removeClass('vis').attr('aria-expanded', 'false'); } + var p = $(this).parent('li.dropdown'); + if (p.length > 0) { + p.tC('open'), navs = p.is('.open') === true ? 'true' : 'false'; + p.attr('aria-expanded', navs); + /* close any other branch */ + var thisnav = p.closest('nav'); + thisnav.find('li.dropdown').not(p.parentsUntil('nav')).not(p).removeClass('open').attr('aria-expanded', 'false'); + if (p.is('.open') === false) { + p.find('li.dropdown').removeClass('open').attr('aria-expanded', 'false'); + } + f($('nav').not(thisnav)); + } else { + f($('nav')); + } +}; +function $tbr() { + $lf(0); + return $('#topbar').ocmsmenu([]); +}; +//function $sbr(empty) { +// return $('#sidebar').ocmsmenu([], empty); +//}; +function $lfr() { + $('#sidebar').empty(); + return $('#listframe').removeClass('fix').addClass('hd').empty(); +}; +function $cfr() { + $tbr(); + return $('#contentframe').empty(); +}; +function jObj(jsstr, key) { + let jo = {}; + if ((jsstr || '').substr(0, 1) === '{') { + try { + jo = JSON.parse(jsstr); + } catch (e) { + jo = {}; + } + } + return jo[key] || ''; +}; +(function ($) { + $.fn.ocmsmenu = function (menu, empty) { + var tgt = $(this); + $ocms.menu.call(tgt, menu, empty); + return tgt; + }; + $.fn.activatemenu = function () { + var tgt = $(this).filter('nav'); + tgt.find('a').not('.on').addClass('on').click($nuf); + tgt.find('.nav-btn').not('.on').addClass('on').click(function (e) { + e.stopPropagation(); + var t = $(this); $(t.attr('data-target')).tC(t.attr('data-toggle')); + }); + return tgt; + }; +})(jQuery); +function string(inp, vals) { + var ret = inp || '', rx; + $.each(vals || [], function (vi, vx) { + rx = new RegExp('\\{' + vi.toString() + '\\}', 'ig'); + ret = ret.replace(rx, vx); + }); + return ret; +}; +function init_tooltip(mouse) { + var target = (typeof mouse === 'boolean' ? mouse : false) === true ? 'mouse' : false; + $('[title]').qtip({ + position: { + target: target, + adjust: { x: 2, y: 2 }, + viewport: true + }, + events: { + hidden: $ocms.tooltip_hidden + }, effect: false + }); + $('div.tooltiptext').each(function () { + var p = $(this).filter(':not(:empty)').parent(); + p.qtip({ + suppress: false, + content: { + text: $(this).clone() + }, + position: { + target: target, + adjust: { x: 2, y: 2 }, + viewport: true + }, + events: { + hidden: $ocms.tooltip_hidden + } + }); + }); +} +class ObjectArray extends Array { + /** + * Get whether the Array is empty + * */ + isEmpty() { + return this[0].length === 0; + } + + // built-in methods will use this as the constructor + static get [Symbol.species]() { + return Array; + } + /** + * returns a new new array of items where function applied to currentvalue returns true + * @param {function(currentValue[, index[, array]])} fnc + */ + filter(fnc) { + if (typeof fnc === 'function') { + return new ObjectArray(this[0].filter(fnc)); + } else { + return this; + } + } + /** + * removes items where function applied to currentvalue is true + * changes the ObjectArray itself and returns it + * @param {function(currentValue[, index[, array]])} fnc + */ + remove(fnc) { + if (typeof fnc === 'function') { + let i = this[0].findIndex(fnc); + while (i > -1) { + this[0].splice(i); + i = this[0].findIndex(fnc); + }; + } else { + return this; + } + } + /** + * sorts the ObjectArray using the Array.sort function and returns it + * @param {function(element)} fnc + */ + sortBy(fnc) { + if (typeof fnc === 'function') { + this[0].sort(fnc); + } + return this; + } + /** + * sorts the ObjectArray using the Array.sort function and String.localeCompare function and returns it + * The compared strings are converted to upper case to make function case-insensitive + * undefined values are treated as empty strings + * @param {string} property + */ + sortString(property) { + this[0].sort((a, b) => { + let nameA = (a[property] || '').toString().toUpperCase(); // ignore upper and lowercase + let nameB = (b[property] || '').toString().toUpperCase(); // ignore upper and lowercase + console.debug(nameA.localeCompare(nameB)); + return nameA.localeCompare(nameB); + }); + return this; + } + /** + * sorts the ObjectArray using the Array.sort function and value comparison and returns it + * empty or non-numeric values are identified by isNaN and put to End of array + * @param {string} property + */ + sortNum(property) { + this[0].sort((a, b) => { + let nameA = a[property], nameB = b[property]; + if ((isNaN(nameB) === true && isNaN(nameA) === false) || nameA < nameB) { + return -1; + } else if ((isNaN(nameB) === false && isNaN(nameA) === true) || nameA > nameB) { + return 1; + } else { + // names must be equal + return 0; + } + }); + return this; + } + /** + * sums the value of the objects parameter, if value is valid number + * @param {string} property + */ + sum(property) { + return this[0].reduce((accumulator, currentValue) => accumulator + (isNaN(currentValue[property]) === true ? 0 : currentValue[property]), 0) + } + /** + * returns new object with array by named property value + * @param {string} property + */ + groupBy(property) { + return this[0].reduce(function (acc, obj) { + let key = obj[property]; + if (!acc[key]) { + acc[key] = []; + } + acc[key].push(obj); + return acc; + }, {}); + } + /** + * + * @param {function(value, index, array)} fnc + */ + each(fnc) { + if (typeof fnc === 'function') { + let stop = false; + this[0].forEach((value, index, array) =>{ + if (stop === false) { + let r = fnc(value, index, array); + if (typeof r === 'boolean' && r === false) { + stop = true; + } + } + }); + } + } + + get toArray() { + return this[0]; + } +} +class NumArray extends Array { + sum() { + return this.reduce((accumulator, currentValue) => accumulator + currentValue); + }; + first() { + return this[0]; + }; + last() { + return this[this.length - 1]; + }; + average() { + return this.sum() / this.length; + }; + range() { + let self = this.map(x => x).sort(); /* do not change original */ + return { + min: self[0], + max: self[this.length - 1] + } + }; + + // built-in methods will use this as the constructor + static get [Symbol.species]() { + return Array; + } +} \ No newline at end of file diff --git a/Fuchs/js/intranet/oci_sortable.js b/Fuchs/js/intranet/oci_sortable.js new file mode 100644 index 0000000..9458116 --- /dev/null +++ b/Fuchs/js/intranet/oci_sortable.js @@ -0,0 +1,288 @@ + +if (!Element.prototype.matches) { + Element.prototype.matches = + Element.prototype.msMatchesSelector || + Element.prototype.webkitMatchesSelector; +} + +if (!Element.prototype.closest) { + Element.prototype.closest = function (s) { + var el = this; + + do { + if (Element.prototype.matches.call(el, s)) return el; + el = el.parentElement || el.parentNode; + } while (el !== null && el.nodeType === 1); + return null; + }; +} + +(function (name, factory) { + + if (typeof window === "object") { + + // add to window + window[name] = factory(); + + // add jquery plugin, if available + if (typeof jQuery === "function") { + jQuery.fn[name] = function (options) { + return this.each(function () { + new window[name](this, options); + }); + }; + } + } + +})("Sortable", function () { + + // get position of mouse/touch in relation to viewport + var getPoint = function (e) { + var _w = window, + _b = document.body, + _d = document.documentElement; + var scrollX = Math.max(0, _w.pageXOffset || _d.scrollLeft || _b.scrollLeft || 0) - (_d.clientLeft || 0), + scrollY = Math.max(0, _w.pageYOffset || _d.scrollTop || _b.scrollTop || 0) - (_d.clientTop || 0), + pointX = e ? (Math.max(0, e.pageX || e.clientX || 0) - scrollX) : 0, + pointY = e ? (Math.max(0, e.pageY || e.clientY || 0) - scrollY) : 0; + + return { x: pointX, y: pointY }; + }; + + // class constructor + var Factory = function (container, options) { + if (container && container instanceof Element) { + this._container = container; + this._options = options || {}; /* nothing atm */ + this._clickItem = null; + this._dragItem = null; + this._showDragItem = (typeof this._options.dragItem === 'boolean' && this._options.dragItem === false) ? false : true; + this._hovItem = null; + this._sortLists = []; + this._click = {}; + this._dragging = false; + this._dragHandleClass = this._options.dragHandleClass || ''; + this._parentident = this._options.parentident || ''; + this._swapdone = typeof this._options.swapdone === "function" ? this._options._swapdone : null; + + this._container.setAttribute("data-is-sortable", 1); + this._container.classList.add("sortable"); + this._container.style["position"] = "static"; + + window.addEventListener("mousedown", this._onPress.bind(this), true); + window.addEventListener("touchstart", this._onPress.bind(this), true); + window.addEventListener("mouseup", this._onRelease.bind(this), true); + window.addEventListener("touchend", this._onRelease.bind(this), true); + window.addEventListener("mousemove", this._onMove.bind(this), true); + window.addEventListener("touchmove", this._onMove.bind(this), true); + } + }; + + // class prototype + Factory.prototype = { + constructor: Factory, + + // serialize order into array list + toArray: function (attr) { + attr = attr || "id"; + + var data = [], + item = null, + uniq = ""; + + for (var i = 0; i < this._container.children.length; ++i) { + item = this._container.children[i], + uniq = item.getAttribute(attr) || ""; + uniq = uniq.replace(/[^0-9]+/gi, ""); + data.push(uniq); + } + return data; + }, + + // serialize order array into a string + toString: function (attr, delimiter) { + delimiter = delimiter || ":"; + return this.toArray(attr).join(delimiter); + }, + + // checks if mouse x/y is on top of an item + _isOnTop: function (item, x, y) { + var box = item.getBoundingClientRect(), + isx = (x > box.left && x < (box.left + box.width)), + isy = (y > box.top && y < (box.top + box.height)); + return (isx && isy); + }, + + // manipulate the className of an item (for browsers that lack classList support) + _itemClass: function (item, task, cls) { + var list = item.className.split(/\s+/), + index = list.indexOf(cls); + + if (task === "add" && index == -1) { + list.push(cls); + item.className = list.join(" "); + } + else if (task === "remove" && index != -1) { + list.splice(index, 1); + item.className = list.join(" "); + } + }, + + // swap position of two item in sortable list container + _swapItems: function (item1, item2) { + var parent1 = item1.parentNode, + parent2 = item2.parentNode; + if (item2.className.indexOf('nosort') < 0) { + if (parent1 !== parent2) { + // move to new list + parent2.insertBefore(item1, item2); + } + else { + // sort is same list + var temp = document.createElement("div"); + parent1.insertBefore(temp, item1); + parent2.insertBefore(item1, item2); + parent1.insertBefore(item2, temp); + parent1.removeChild(temp); + } + if (typeof this._swapdone === 'function') { + this._swapdone(parent1, parent2, item1, item2); + } + } + }, + + // update item position + _moveItem: function (item, x, y) { + item.style["-webkit-transform"] = "translateX( " + x + "px ) translateY( " + y + "px )"; + item.style["-moz-transform"] = "translateX( " + x + "px ) translateY( " + y + "px )"; + item.style["-ms-transform"] = "translateX( " + x + "px ) translateY( " + y + "px )"; + item.style["transform"] = "translateX( " + x + "px ) translateY( " + y + "px )"; + }, + + // make a temp fake item for dragging and add to container + _makeDragItem: function (item) { + this._trashDragItem(); + this._sortLists = document.querySelectorAll("[data-is-sortable]"); + + this._clickItem = item; + this._itemClass(this._clickItem, "add", "sortactive"); + this._dragItem = document.createElement(item.tagName); + this._dragItem.className = "dragging"; + this._dragItem.innerHTML = item.innerHTML; + this._dragItem.style["position"] = "absolute"; + this._dragItem.style["z-index"] = "999"; + this._dragItem.style["left"] = (item.offsetLeft || 0) + "px"; + this._dragItem.style["top"] = (item.offsetTop || 0) + "px"; + this._dragItem.style["width"] = (item.offsetWidth || 0) + "px"; + + if (this._showDragItem === true) { + this._container.appendChild(this._dragItem); + } + }, + + // remove drag item that was added to container + _trashDragItem: function () { + if (this._dragItem && this._clickItem) { + this._itemClass(this._clickItem, "remove", "sortactive"); + this._clickItem = null; + + if (this._showDragItem === true) { + this._container.removeChild(this._dragItem); + } + this._dragItem = null; + } + }, + + // on item press/drag + _onPress: function (e) { + if (!e) { return; } + function op(tgt) { + if (tgt && tgt.parentNode === this._container && (this._dragHandleClass === '' || e.target.className.indexOf(this._dragHandleClass) > -1) && tgt.className.indexOf("nosort") < 0) { + e.preventDefault(); + this._dragging = true; + this._click = getPoint(e); + this._makeDragItem(tgt); + this._onMove(e); + return true; + } else { + return false; + } + } + if (op.call(this, e.target) === false && this._parentident !== '' && e.target.closest(this._parentident)) { + op.call(this, e.target.closest(this._parentident)) + } + }, + + // on item release/drop + _onRelease: function (e) { + this._dragging = false; + this._trashDragItem(); + }, + + // on item drag/move + _onMove: function (e) { + if (this._dragItem && this._dragging) { + e.preventDefault(); + + var point = getPoint(e); + var container = this._container; + + // drag fake item + if (this._showDragItem === true) { + this._moveItem(this._dragItem, (point.x - this._click.x), (point.y - this._click.y)); + } + + // keep an eye for other sortable lists and switch over to it on hover + for (var a = 0; a < this._sortLists.length; ++a) { + var subContainer = this._sortLists[a]; + + if (this._isOnTop(subContainer, point.x, point.y)) { + container = subContainer; + } + } + + // container is empty, move clicked item over to it on hover + if (this._isOnTop(container, point.x, point.y) && container.children.length === 0) { + container.appendChild(this._clickItem); + return; + } + + // check if current drag item is over another item and swap places + for (var b = 0; b < container.children.length; ++b) { + var subItem = container.children[b]; + + if (subItem === this._clickItem || subItem === this._dragItem) { + continue; + } + if (this._isOnTop(subItem, point.x, point.y)) { + this._hovItem = subItem; + if (subItem.className.indexOf('nosort') < 0) { + this._dragItem.className = this._dragItem.className.replace(/\bnotgt\b/g, ''); + this._swapItems(this._clickItem, subItem); + } else { + var arr = this._dragItem.className.split(' '); + if (arr.indexOf('notgt') === -1) { + this._dragItem.className += ' notgt'; + } + } + } + } + } + }, + + }; + + // export + return Factory; +}); + + +//// helper init function +//initSortable(list) { +// var listObj = $(list); +// var sortable = []; +// listObj.each(function (i, d) { +// sortable.push(new Sortable(d)); +// }); +//} + diff --git a/Fuchs/js/intranet/oci_texts_basic_de.js b/Fuchs/js/intranet/oci_texts_basic_de.js new file mode 100644 index 0000000..23d5420 --- /dev/null +++ b/Fuchs/js/intranet/oci_texts_basic_de.js @@ -0,0 +1,53 @@ +var $t = { + lng: 'de-DE', + dn: ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'], mn: ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'], ma: ['Jan', 'Feb', 'Mrz', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'], + datepattern: '(0[1-9]|1[0-9]|2[0-9]|3[01]).(0[1-9]|1[012]).[0-9]{4}', + datetimepattern: '(0[1-9]|1[0-9]|2[0-9]|3[01]).(0[1-9]|1[012]).[0-9]{4}\\s([0-5][0-9]):([0-5][0-9])', + dateplaceholder: 'dd.MM.yyyy', + datetimeplaceholder: 'dd.MM.yyyy HH:mm', + dateformat: 'dd.MM.yyyy', + datetimeformat: 'dd.MM.yyyy HH:mm', + f1: 'Der Server hat einen Fehler gemeldet: \n', + f2: 'Bitte versuchen Sie es erneut.', + + m0: 'Diese Internet-Seite benötigt einen html5-kompatiblen Browser.', + m0b: 'Unterstützt werden bspw: Internet Explorer ab Version 10, Firefox ab Version 31, Chrome ab Version 31, Safari ab Version 7, Opera ab Version 27', + m1: 'Dieser Datensatz ist momentan von jemand anderem zur Bearbeitung gesperrt.', + m2: 'Diese Funktion ist zur Zeit nicht verfügbar', + + t1: 'Eingabe erforderlich.', + t2: 'Eingabe ist nicht erforderlich.', + + true: 'Ja', + false: 'Nein', + alert: 'Hinweis', + confirm: 'Bestätigen', + open: 'Öffnen', + 'not implemented': 'Diese Funktion in zur Zeit noch nicht verfügbar.', + l0: 'Anmeldung', + l1: 'Email / Anmeldename', + l2: 'Email-Adresse / Anmeldename', + l3: 'Passwort', + l4: 'Benutzer', + l5: 'Wird vom System ermittelt...', + l6: 'Anmelden', + l7: 'Passwort vergessen?', + //l7a: 'Die Passwort vergessen Funktion wird aus Sicherheitsgründen auch dann einen erfolgreichen Versand bestätigen, wenn die Kombination aus Email-Adresse und Nachname nicht gefunden wurde.', + l7a: 'Die "Passwort vergessen"-Funktion läuft in zwei Schritten ab:\n \nIm ersten Schritt wird eine SMS mit einem Code an die hinterlegte Mobilfunk-Nummer versandt.\nIm zweiten Schritt geben Sie bitte diesen Code in das Formular ein und übermitteln es erneut.\n \nIn beiden Schritten wird aus Sicherheitsgründen kein Fehler angezeigt und auch dann ein erfolgreicher Versand bestätigt, wenn die Kombination aus Email-Adresse und Nachname nicht gefunden wurde und/oder der code falsch ist.', + l8: 'Keinen Account?', + l9: 'Anmeldenamen der Email-Adresse wurde nicht erkannt.', + l10: 'Nachname', + l11: 'Email-Adresse', + l12: 'Passwort zusenden', + l13: 'Das Passwort wurde erfolgreich verschickt', + l14: 'Das Passwort konnte nicht verschickt werden', + l15: 'Sie sind nicht berechtigt, diese Funktion auszuführen.', + l16: 'Sie müssen zunächst einen Account angeben.', + l17: 'Die Kombination aus Anmeldenamen und Passwort konnte nicht bestätigt werden.', + l18: 'Es gibt ein Problem mit dem Formular.\nEs kann momentan nicht verarbeitet und versendet werden.', + + name: 'Name', + submit: 'Senden', + cancel: 'Abbrechen', + noop: 'Diese Funktion is noch nicht verfügar.' +}; diff --git a/Fuchs/js/intranet/oci_texts_gui_de.js b/Fuchs/js/intranet/oci_texts_gui_de.js new file mode 100644 index 0000000..5293b53 --- /dev/null +++ b/Fuchs/js/intranet/oci_texts_gui_de.js @@ -0,0 +1,29 @@ +$.extend($t, { + t1: 'Eingabe erforderlich', + t2: 'Bitte überprüfen Sie Ihre Eingaben im Formular.', + + 'b0': 'Erstellt', + 'b1': 'Zuletzt geändert', + 'b2': 'von', + + + 't12': 'Der Server hat einen Fehler zurückgegeben. Bitte versuchen Sie es erneut.', + 't17': 'Eine Email mit einem Aktivierungs-Link wurde an deine Adresse versandt.', + 't18': 'Ein Account mit deinem Namen existiert bereits. Dennoch erstellen?', + 't19': 'Einträge sind entweder unngültig oder zu kurz.', + 't20': 'Der Server hat einen Fehler gemeldet. Bitte versuch es erneut.', + 't21': 'Der Zugang wurde nicht gefunden.', + 't30a': 'Als erledigt markieren.', + 't30b': 'Als unerledigt markieren.', + + 't55': 'Ein Email mit einem Aktivierungs-Link wurde an Ihre Adresse versandt.', + 't56': 'Ein Zugang für diesen Namen besteht bereits. Trotzdem erstellen?', + 't57': 'Ein bestehender Zugang wurde für diese Serie registriert.', + 't60': 'Bitte geben Sie Email-Adresse an, die Sie hier hinterlegt haben.', + 't61': 'Ihr Passwort wurde erfolgreich versandt.', + 't62': 'Die angegebene Email-Adresse stimmt nicht mit der hier hinterlegten überein.', + + + ov: 'Persönliche Übersicht', + +}); diff --git a/Fuchs/js/intranet/oci_texts_val_de.js b/Fuchs/js/intranet/oci_texts_val_de.js new file mode 100644 index 0000000..a0ba2e3 --- /dev/null +++ b/Fuchs/js/intranet/oci_texts_val_de.js @@ -0,0 +1,5 @@ +'use strict'; + +var $v = { + +}; diff --git a/Fuchs/media/files/Datenschutzordnung.pdf b/Fuchs/media/files/Datenschutzordnung.pdf new file mode 100644 index 0000000..e2c7566 Binary files /dev/null and b/Fuchs/media/files/Datenschutzordnung.pdf differ diff --git a/Fuchs/media/files/Freistellungsbescheinigung - Copy.pdf b/Fuchs/media/files/Freistellungsbescheinigung - Copy.pdf new file mode 100644 index 0000000..1aacf3e Binary files /dev/null and b/Fuchs/media/files/Freistellungsbescheinigung - Copy.pdf differ diff --git a/Fuchs/media/files/Freistellungsbescheinigung.pdf b/Fuchs/media/files/Freistellungsbescheinigung.pdf new file mode 100644 index 0000000..877d407 Binary files /dev/null and b/Fuchs/media/files/Freistellungsbescheinigung.pdf differ diff --git a/Fuchs/media/files/Information_zum_Mindestlohn.pdf b/Fuchs/media/files/Information_zum_Mindestlohn.pdf new file mode 100644 index 0000000..dcbc4e5 Binary files /dev/null and b/Fuchs/media/files/Information_zum_Mindestlohn.pdf differ diff --git a/Fuchs/media/files/Installation_von_Fremdprodukten.pdf b/Fuchs/media/files/Installation_von_Fremdprodukten.pdf new file mode 100644 index 0000000..6695c97 Binary files /dev/null and b/Fuchs/media/files/Installation_von_Fremdprodukten.pdf differ diff --git a/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise - Copy (2).pdf b/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise - Copy (2).pdf new file mode 100644 index 0000000..02bc1fd Binary files /dev/null and b/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise - Copy (2).pdf differ diff --git a/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise - Copy (3).pdf b/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise - Copy (3).pdf new file mode 100644 index 0000000..7f2f79b Binary files /dev/null and b/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise - Copy (3).pdf differ diff --git a/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise - Copy.pdf b/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise - Copy.pdf new file mode 100644 index 0000000..d3288d2 Binary files /dev/null and b/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise - Copy.pdf differ diff --git a/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise.pdf b/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise.pdf new file mode 100644 index 0000000..845caf2 Binary files /dev/null and b/Fuchs/media/files/SanitaerFuchs_ErklaerungPreise.pdf differ diff --git a/Fuchs/media/files/SanitaerFuchs_Fotoanleitung.pdf b/Fuchs/media/files/SanitaerFuchs_Fotoanleitung.pdf new file mode 100644 index 0000000..bb9649f Binary files /dev/null and b/Fuchs/media/files/SanitaerFuchs_Fotoanleitung.pdf differ diff --git a/Fuchs/media/files/SanitaerFuchs_OnlineBeratung.pdf b/Fuchs/media/files/SanitaerFuchs_OnlineBeratung.pdf new file mode 100644 index 0000000..0f194a9 Binary files /dev/null and b/Fuchs/media/files/SanitaerFuchs_OnlineBeratung.pdf differ diff --git a/Fuchs/media/files/Widerrufsbelehrung.pdf b/Fuchs/media/files/Widerrufsbelehrung.pdf new file mode 100644 index 0000000..375297f Binary files /dev/null and b/Fuchs/media/files/Widerrufsbelehrung.pdf differ diff --git a/Fuchs/media/icons/ambulance.png b/Fuchs/media/icons/ambulance.png new file mode 100644 index 0000000..516f26d Binary files /dev/null and b/Fuchs/media/icons/ambulance.png differ diff --git a/Fuchs/media/icons/apple-touch-icon-114x114.png b/Fuchs/media/icons/apple-touch-icon-114x114.png new file mode 100644 index 0000000..f788089 Binary files /dev/null and b/Fuchs/media/icons/apple-touch-icon-114x114.png differ diff --git a/Fuchs/media/icons/apple-touch-icon-120x120.png b/Fuchs/media/icons/apple-touch-icon-120x120.png new file mode 100644 index 0000000..d2ba2d4 Binary files /dev/null and b/Fuchs/media/icons/apple-touch-icon-120x120.png differ diff --git a/Fuchs/media/icons/apple-touch-icon-144x144.png b/Fuchs/media/icons/apple-touch-icon-144x144.png new file mode 100644 index 0000000..537d85b Binary files /dev/null and b/Fuchs/media/icons/apple-touch-icon-144x144.png differ diff --git a/Fuchs/media/icons/apple-touch-icon-152x152.png b/Fuchs/media/icons/apple-touch-icon-152x152.png new file mode 100644 index 0000000..e80adef Binary files /dev/null and b/Fuchs/media/icons/apple-touch-icon-152x152.png differ diff --git a/Fuchs/media/icons/apple-touch-icon-57x57.png b/Fuchs/media/icons/apple-touch-icon-57x57.png new file mode 100644 index 0000000..dbe9d51 Binary files /dev/null and b/Fuchs/media/icons/apple-touch-icon-57x57.png differ diff --git a/Fuchs/media/icons/apple-touch-icon-60x60.png b/Fuchs/media/icons/apple-touch-icon-60x60.png new file mode 100644 index 0000000..4a3f035 Binary files /dev/null and b/Fuchs/media/icons/apple-touch-icon-60x60.png differ diff --git a/Fuchs/media/icons/apple-touch-icon-72x72.png b/Fuchs/media/icons/apple-touch-icon-72x72.png new file mode 100644 index 0000000..7800ecc Binary files /dev/null and b/Fuchs/media/icons/apple-touch-icon-72x72.png differ diff --git a/Fuchs/media/icons/apple-touch-icon-76x76.png b/Fuchs/media/icons/apple-touch-icon-76x76.png new file mode 100644 index 0000000..e4d11d0 Binary files /dev/null and b/Fuchs/media/icons/apple-touch-icon-76x76.png differ diff --git a/Fuchs/media/icons/brochure.png b/Fuchs/media/icons/brochure.png new file mode 100644 index 0000000..4c55179 Binary files /dev/null and b/Fuchs/media/icons/brochure.png differ diff --git a/Fuchs/media/icons/calculator.png b/Fuchs/media/icons/calculator.png new file mode 100644 index 0000000..9c42c90 Binary files /dev/null and b/Fuchs/media/icons/calculator.png differ diff --git a/Fuchs/media/icons/download_pdf.svg b/Fuchs/media/icons/download_pdf.svg new file mode 100644 index 0000000..4b9e35b --- /dev/null +++ b/Fuchs/media/icons/download_pdf.svg @@ -0,0 +1,34 @@ + + + + background + + + + Layer 1 + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Fuchs/media/icons/email.svg b/Fuchs/media/icons/email.svg new file mode 100644 index 0000000..1164833 --- /dev/null +++ b/Fuchs/media/icons/email.svg @@ -0,0 +1,7 @@ + + + + + diff --git a/Fuchs/media/icons/favicon-128x128.png b/Fuchs/media/icons/favicon-128x128.png new file mode 100644 index 0000000..48bd9b7 Binary files /dev/null and b/Fuchs/media/icons/favicon-128x128.png differ diff --git a/Fuchs/media/icons/favicon-16x16.png b/Fuchs/media/icons/favicon-16x16.png new file mode 100644 index 0000000..a65645f Binary files /dev/null and b/Fuchs/media/icons/favicon-16x16.png differ diff --git a/Fuchs/media/icons/favicon-196x196.png b/Fuchs/media/icons/favicon-196x196.png new file mode 100644 index 0000000..5048dae Binary files /dev/null and b/Fuchs/media/icons/favicon-196x196.png differ diff --git a/Fuchs/media/icons/favicon-32x32.png b/Fuchs/media/icons/favicon-32x32.png new file mode 100644 index 0000000..09abeff Binary files /dev/null and b/Fuchs/media/icons/favicon-32x32.png differ diff --git a/Fuchs/media/icons/favicon-96x96.png b/Fuchs/media/icons/favicon-96x96.png new file mode 100644 index 0000000..4706073 Binary files /dev/null and b/Fuchs/media/icons/favicon-96x96.png differ diff --git a/Fuchs/media/icons/favicon.ico b/Fuchs/media/icons/favicon.ico new file mode 100644 index 0000000..670d45e Binary files /dev/null and b/Fuchs/media/icons/favicon.ico differ diff --git a/Fuchs/media/icons/message-closed-envelope.png b/Fuchs/media/icons/message-closed-envelope.png new file mode 100644 index 0000000..fdf8014 Binary files /dev/null and b/Fuchs/media/icons/message-closed-envelope.png differ diff --git a/Fuchs/media/icons/online_meeting.svg b/Fuchs/media/icons/online_meeting.svg new file mode 100644 index 0000000..8953574 --- /dev/null +++ b/Fuchs/media/icons/online_meeting.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/Fuchs/media/icons/phone-call.png b/Fuchs/media/icons/phone-call.png new file mode 100644 index 0000000..500ca33 Binary files /dev/null and b/Fuchs/media/icons/phone-call.png differ diff --git a/Fuchs/media/icons/phone.svg b/Fuchs/media/icons/phone.svg new file mode 100644 index 0000000..a928bc0 --- /dev/null +++ b/Fuchs/media/icons/phone.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/icons/piggy-bank.png b/Fuchs/media/icons/piggy-bank.png new file mode 100644 index 0000000..346a534 Binary files /dev/null and b/Fuchs/media/icons/piggy-bank.png differ diff --git a/Fuchs/media/icons/placeholder-black-shape-for-localization-on-maps.png b/Fuchs/media/icons/placeholder-black-shape-for-localization-on-maps.png new file mode 100644 index 0000000..83cd95c Binary files /dev/null and b/Fuchs/media/icons/placeholder-black-shape-for-localization-on-maps.png differ diff --git a/Fuchs/media/icons/plan-idea.png b/Fuchs/media/icons/plan-idea.png new file mode 100644 index 0000000..397016d Binary files /dev/null and b/Fuchs/media/icons/plan-idea.png differ diff --git a/Fuchs/media/icons/pos.png b/Fuchs/media/icons/pos.png new file mode 100644 index 0000000..6f63de8 Binary files /dev/null and b/Fuchs/media/icons/pos.png differ diff --git a/Fuchs/media/icons/radiator.png b/Fuchs/media/icons/radiator.png new file mode 100644 index 0000000..bab925c Binary files /dev/null and b/Fuchs/media/icons/radiator.png differ diff --git a/Fuchs/media/icons/settings-symbol-of-a-cross-of-tools.png b/Fuchs/media/icons/settings-symbol-of-a-cross-of-tools.png new file mode 100644 index 0000000..f3821ec Binary files /dev/null and b/Fuchs/media/icons/settings-symbol-of-a-cross-of-tools.png differ diff --git a/Fuchs/media/images/Arbeitsstunde im SHK-Handwerk.JPG b/Fuchs/media/images/Arbeitsstunde im SHK-Handwerk.JPG new file mode 100644 index 0000000..cf1bc97 Binary files /dev/null and b/Fuchs/media/images/Arbeitsstunde im SHK-Handwerk.JPG differ diff --git a/Fuchs/media/images/Arbeitsstunde im SHK-Handwerk_Kuchendiagramm.JPG b/Fuchs/media/images/Arbeitsstunde im SHK-Handwerk_Kuchendiagramm.JPG new file mode 100644 index 0000000..8de8072 Binary files /dev/null and b/Fuchs/media/images/Arbeitsstunde im SHK-Handwerk_Kuchendiagramm.JPG differ diff --git a/Fuchs/media/images/SebastianFuchs_DeinTraumjob.jpg b/Fuchs/media/images/SebastianFuchs_DeinTraumjob.jpg new file mode 100644 index 0000000..31dbe87 Binary files /dev/null and b/Fuchs/media/images/SebastianFuchs_DeinTraumjob.jpg differ diff --git a/Fuchs/media/images/SebastianFuchs_DeinTraumjob.png b/Fuchs/media/images/SebastianFuchs_DeinTraumjob.png new file mode 100644 index 0000000..ba2a426 Binary files /dev/null and b/Fuchs/media/images/SebastianFuchs_DeinTraumjob.png differ diff --git a/Fuchs/media/images/SebastianFuchs_vph.png b/Fuchs/media/images/SebastianFuchs_vph.png new file mode 100644 index 0000000..2bd39bc Binary files /dev/null and b/Fuchs/media/images/SebastianFuchs_vph.png differ diff --git a/Fuchs/media/images/SebastianFuchs_vph2.png b/Fuchs/media/images/SebastianFuchs_vph2.png new file mode 100644 index 0000000..6212ca3 Binary files /dev/null and b/Fuchs/media/images/SebastianFuchs_vph2.png differ diff --git a/Fuchs/media/images/bafa1.png b/Fuchs/media/images/bafa1.png new file mode 100644 index 0000000..f0530a7 Binary files /dev/null and b/Fuchs/media/images/bafa1.png differ diff --git a/Fuchs/media/images/eco_house.png b/Fuchs/media/images/eco_house.png new file mode 100644 index 0000000..e2a6daf Binary files /dev/null and b/Fuchs/media/images/eco_house.png differ diff --git a/Fuchs/media/images/green_arrow_right.png b/Fuchs/media/images/green_arrow_right.png new file mode 100644 index 0000000..8ee9408 Binary files /dev/null and b/Fuchs/media/images/green_arrow_right.png differ diff --git a/Fuchs/media/images/mobilecom_1_300.jpg b/Fuchs/media/images/mobilecom_1_300.jpg new file mode 100644 index 0000000..2b58496 Binary files /dev/null and b/Fuchs/media/images/mobilecom_1_300.jpg differ diff --git a/Fuchs/media/images/sanitaerfuchs_weihnachten.jpg b/Fuchs/media/images/sanitaerfuchs_weihnachten.jpg new file mode 100644 index 0000000..9bd4ec7 Binary files /dev/null and b/Fuchs/media/images/sanitaerfuchs_weihnachten.jpg differ diff --git a/Fuchs/media/layout/100Emoji.svg b/Fuchs/media/layout/100Emoji.svg new file mode 100644 index 0000000..23f0af8 --- /dev/null +++ b/Fuchs/media/layout/100Emoji.svg @@ -0,0 +1 @@ +100Emoji \ No newline at end of file diff --git a/Fuchs/media/layout/Call_blau.svg b/Fuchs/media/layout/Call_blau.svg new file mode 100644 index 0000000..5ca111b --- /dev/null +++ b/Fuchs/media/layout/Call_blau.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Fuchs/media/layout/SanitaerFuchs.logo.svg b/Fuchs/media/layout/SanitaerFuchs.logo.svg new file mode 100644 index 0000000..1ea0121 --- /dev/null +++ b/Fuchs/media/layout/SanitaerFuchs.logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/layout/SanitaerFuchs_es.jpg b/Fuchs/media/layout/SanitaerFuchs_es.jpg new file mode 100644 index 0000000..7cd3cda Binary files /dev/null and b/Fuchs/media/layout/SanitaerFuchs_es.jpg differ diff --git a/Fuchs/media/layout/SanitaerFuchs_es.png b/Fuchs/media/layout/SanitaerFuchs_es.png new file mode 100644 index 0000000..39e47c1 Binary files /dev/null and b/Fuchs/media/layout/SanitaerFuchs_es.png differ diff --git a/Fuchs/media/layout/SanitaerFuchs_es.svg b/Fuchs/media/layout/SanitaerFuchs_es.svg new file mode 100644 index 0000000..1ea0121 --- /dev/null +++ b/Fuchs/media/layout/SanitaerFuchs_es.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/layout/SebastianFuchs.logo.png b/Fuchs/media/layout/SebastianFuchs.logo.png new file mode 100644 index 0000000..b378942 Binary files /dev/null and b/Fuchs/media/layout/SebastianFuchs.logo.png differ diff --git a/Fuchs/media/layout/Slit Shadow 2 Sharp.png b/Fuchs/media/layout/Slit Shadow 2 Sharp.png new file mode 100644 index 0000000..6546676 Binary files /dev/null and b/Fuchs/media/layout/Slit Shadow 2 Sharp.png differ diff --git a/Fuchs/media/layout/UK_Flag_Wavy_small.jpg b/Fuchs/media/layout/UK_Flag_Wavy_small.jpg new file mode 100644 index 0000000..af8d5fa Binary files /dev/null and b/Fuchs/media/layout/UK_Flag_Wavy_small.jpg differ diff --git a/Fuchs/media/layout/bild_folgt_web.jpg b/Fuchs/media/layout/bild_folgt_web.jpg new file mode 100644 index 0000000..d4ec72c Binary files /dev/null and b/Fuchs/media/layout/bild_folgt_web.jpg differ diff --git a/Fuchs/media/layout/bild_folgt_web_thumb.jpg b/Fuchs/media/layout/bild_folgt_web_thumb.jpg new file mode 100644 index 0000000..d88474e Binary files /dev/null and b/Fuchs/media/layout/bild_folgt_web_thumb.jpg differ diff --git a/Fuchs/media/layout/logo_sanitaerfuchs.svg b/Fuchs/media/layout/logo_sanitaerfuchs.svg new file mode 100644 index 0000000..3e3d93c --- /dev/null +++ b/Fuchs/media/layout/logo_sanitaerfuchs.svg @@ -0,0 +1 @@ +logo_sanitaefuchs \ No newline at end of file diff --git a/Fuchs/media/layout/logo_sanitaerfuchs_.svg b/Fuchs/media/layout/logo_sanitaerfuchs_.svg new file mode 100644 index 0000000..53bd16b --- /dev/null +++ b/Fuchs/media/layout/logo_sanitaerfuchs_.svg @@ -0,0 +1 @@ +LogoWeiß_mitClaim \ No newline at end of file diff --git a/Fuchs/media/layout/logo_sanitaerfuchs_61h.png b/Fuchs/media/layout/logo_sanitaerfuchs_61h.png new file mode 100644 index 0000000..e887b83 Binary files /dev/null and b/Fuchs/media/layout/logo_sanitaerfuchs_61h.png differ diff --git a/Fuchs/media/layout/shadow.svg b/Fuchs/media/layout/shadow.svg new file mode 100644 index 0000000..1f01d5d --- /dev/null +++ b/Fuchs/media/layout/shadow.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/Fuchs/media/layout/tree3.svg b/Fuchs/media/layout/tree3.svg new file mode 100644 index 0000000..41c6a95 --- /dev/null +++ b/Fuchs/media/layout/tree3.svg @@ -0,0 +1,33 @@ + + +TreeAnimation + \ No newline at end of file diff --git a/Fuchs/media/layout/tree3_withtext.svg b/Fuchs/media/layout/tree3_withtext.svg new file mode 100644 index 0000000..5bbee2c --- /dev/null +++ b/Fuchs/media/layout/tree3_withtext.svg @@ -0,0 +1,54 @@ + + +Asset 1 +Wir pflanzen einen Baum!für jedes Bad und jede Heizung \ No newline at end of file diff --git a/Fuchs/media/logos/BadTeam0211.png b/Fuchs/media/logos/BadTeam0211.png new file mode 100644 index 0000000..0822293 Binary files /dev/null and b/Fuchs/media/logos/BadTeam0211.png differ diff --git a/Fuchs/media/logos/F95_Metropolpartner_Extern_rot (1).png b/Fuchs/media/logos/F95_Metropolpartner_Extern_rot (1).png new file mode 100644 index 0000000..f943b2b Binary files /dev/null and b/Fuchs/media/logos/F95_Metropolpartner_Extern_rot (1).png differ diff --git a/Fuchs/media/logos/F95_Metropolpartner_Extern_rot.png b/Fuchs/media/logos/F95_Metropolpartner_Extern_rot.png new file mode 100644 index 0000000..f943b2b Binary files /dev/null and b/Fuchs/media/logos/F95_Metropolpartner_Extern_rot.png differ diff --git a/Fuchs/media/logos/ItsForKids.png b/Fuchs/media/logos/ItsForKids.png new file mode 100644 index 0000000..c1f5d56 Binary files /dev/null and b/Fuchs/media/logos/ItsForKids.png differ diff --git a/Fuchs/media/logos/KreishandwerkerschaftDuesseldorf.png b/Fuchs/media/logos/KreishandwerkerschaftDuesseldorf.png new file mode 100644 index 0000000..bf9b104 Binary files /dev/null and b/Fuchs/media/logos/KreishandwerkerschaftDuesseldorf.png differ diff --git a/Fuchs/media/logos/Logo_wirmachenmit_HandwerkhochN_S.png b/Fuchs/media/logos/Logo_wirmachenmit_HandwerkhochN_S.png new file mode 100644 index 0000000..f179169 Binary files /dev/null and b/Fuchs/media/logos/Logo_wirmachenmit_HandwerkhochN_S.png differ diff --git a/Fuchs/media/logos/PMT-Partnerlogo.jpg b/Fuchs/media/logos/PMT-Partnerlogo.jpg new file mode 100644 index 0000000..0b1d1ac Binary files /dev/null and b/Fuchs/media/logos/PMT-Partnerlogo.jpg differ diff --git a/Fuchs/media/logos/PMT-Partnerlogo.png b/Fuchs/media/logos/PMT-Partnerlogo.png new file mode 100644 index 0000000..acb8617 Binary files /dev/null and b/Fuchs/media/logos/PMT-Partnerlogo.png differ diff --git a/Fuchs/media/logos/PMT-Partnerlogo_final-2021.jpg b/Fuchs/media/logos/PMT-Partnerlogo_final-2021.jpg new file mode 100644 index 0000000..8e6cf56 Binary files /dev/null and b/Fuchs/media/logos/PMT-Partnerlogo_final-2021.jpg differ diff --git a/Fuchs/media/logos/PMT-Partnerlogo_final-2021.png b/Fuchs/media/logos/PMT-Partnerlogo_final-2021.png new file mode 100644 index 0000000..79f3c5f Binary files /dev/null and b/Fuchs/media/logos/PMT-Partnerlogo_final-2021.png differ diff --git a/Fuchs/media/logos/Sebastian Fuchs - SHK-Expert_RGB_web.jpg b/Fuchs/media/logos/Sebastian Fuchs - SHK-Expert_RGB_web.jpg new file mode 100644 index 0000000..5d87825 Binary files /dev/null and b/Fuchs/media/logos/Sebastian Fuchs - SHK-Expert_RGB_web.jpg differ diff --git a/Fuchs/media/logos/Sebastian Fuchs - Vaillant_Kompetenzpartner - Copy.png b/Fuchs/media/logos/Sebastian Fuchs - Vaillant_Kompetenzpartner - Copy.png new file mode 100644 index 0000000..f456e91 Binary files /dev/null and b/Fuchs/media/logos/Sebastian Fuchs - Vaillant_Kompetenzpartner - Copy.png differ diff --git a/Fuchs/media/logos/Sebastian Fuchs - Vaillant_Kompetenzpartner.png b/Fuchs/media/logos/Sebastian Fuchs - Vaillant_Kompetenzpartner.png new file mode 100644 index 0000000..f456e91 Binary files /dev/null and b/Fuchs/media/logos/Sebastian Fuchs - Vaillant_Kompetenzpartner.png differ diff --git a/Fuchs/media/logos/Sebastian Fuchs - klimaneutral.jpg b/Fuchs/media/logos/Sebastian Fuchs - klimaneutral.jpg new file mode 100644 index 0000000..96d498c Binary files /dev/null and b/Fuchs/media/logos/Sebastian Fuchs - klimaneutral.jpg differ diff --git a/Fuchs/media/logos/TonneBeckmann.jpg b/Fuchs/media/logos/TonneBeckmann.jpg new file mode 100644 index 0000000..e92061f Binary files /dev/null and b/Fuchs/media/logos/TonneBeckmann.jpg differ diff --git a/Fuchs/media/logos/dasHandwerk_250w.png b/Fuchs/media/logos/dasHandwerk_250w.png new file mode 100644 index 0000000..c3d606e Binary files /dev/null and b/Fuchs/media/logos/dasHandwerk_250w.png differ diff --git a/Fuchs/media/logos/energiegemeinschaft_ev_neu_rgb_web_klein.jpg b/Fuchs/media/logos/energiegemeinschaft_ev_neu_rgb_web_klein.jpg new file mode 100644 index 0000000..5316ba7 Binary files /dev/null and b/Fuchs/media/logos/energiegemeinschaft_ev_neu_rgb_web_klein.jpg differ diff --git a/Fuchs/media/logos/f95_teamPARTNER_w.png b/Fuchs/media/logos/f95_teamPARTNER_w.png new file mode 100644 index 0000000..a3107a9 Binary files /dev/null and b/Fuchs/media/logos/f95_teamPARTNER_w.png differ diff --git a/Fuchs/media/logos/f95_teamPARTNER_w_250w.png b/Fuchs/media/logos/f95_teamPARTNER_w_250w.png new file mode 100644 index 0000000..7578cc9 Binary files /dev/null and b/Fuchs/media/logos/f95_teamPARTNER_w_250w.png differ diff --git a/Fuchs/media/logos/img_5523-crop-u165902.jpg b/Fuchs/media/logos/img_5523-crop-u165902.jpg new file mode 100644 index 0000000..1b96fdf Binary files /dev/null and b/Fuchs/media/logos/img_5523-crop-u165902.jpg differ diff --git a/Fuchs/media/logos/kaldewei_competenceclub.jpg b/Fuchs/media/logos/kaldewei_competenceclub.jpg new file mode 100644 index 0000000..9a4983e Binary files /dev/null and b/Fuchs/media/logos/kaldewei_competenceclub.jpg differ diff --git a/Fuchs/media/logos/oekoprofit.jpg b/Fuchs/media/logos/oekoprofit.jpg new file mode 100644 index 0000000..d8959a0 Binary files /dev/null and b/Fuchs/media/logos/oekoprofit.jpg differ diff --git a/Fuchs/media/logos/oekoprofit_dus.jpg b/Fuchs/media/logos/oekoprofit_dus.jpg new file mode 100644 index 0000000..23339ec Binary files /dev/null and b/Fuchs/media/logos/oekoprofit_dus.jpg differ diff --git a/Fuchs/media/logos/shk_duesseldorf.jpg b/Fuchs/media/logos/shk_duesseldorf.jpg new file mode 100644 index 0000000..af9c426 Binary files /dev/null and b/Fuchs/media/logos/shk_duesseldorf.jpg differ diff --git a/Fuchs/media/logos/unternehmer-mit-herz.png b/Fuchs/media/logos/unternehmer-mit-herz.png new file mode 100644 index 0000000..28a76ff Binary files /dev/null and b/Fuchs/media/logos/unternehmer-mit-herz.png differ diff --git a/Fuchs/media/logos/veu.png b/Fuchs/media/logos/veu.png new file mode 100644 index 0000000..85858f4 Binary files /dev/null and b/Fuchs/media/logos/veu.png differ diff --git a/Fuchs/media/photos/Fuchs Sebastian-3939web.jpg b/Fuchs/media/photos/Fuchs Sebastian-3939web.jpg new file mode 100644 index 0000000..59125d2 Binary files /dev/null and b/Fuchs/media/photos/Fuchs Sebastian-3939web.jpg differ diff --git a/Fuchs/media/photos/SebastianFuchs.020.jpg b/Fuchs/media/photos/SebastianFuchs.020.jpg new file mode 100644 index 0000000..e57b3ee Binary files /dev/null and b/Fuchs/media/photos/SebastianFuchs.020.jpg differ diff --git a/Fuchs/media/photos/SebastianFuchs_p2.jpg b/Fuchs/media/photos/SebastianFuchs_p2.jpg new file mode 100644 index 0000000..900f5f7 Binary files /dev/null and b/Fuchs/media/photos/SebastianFuchs_p2.jpg differ diff --git a/Fuchs/media/photos/Team_Jubel_FB_Jobs.jpg b/Fuchs/media/photos/Team_Jubel_FB_Jobs.jpg new file mode 100644 index 0000000..f5ab3a6 Binary files /dev/null and b/Fuchs/media/photos/Team_Jubel_FB_Jobs.jpg differ diff --git a/Fuchs/media/planner_icons/IconTest.html b/Fuchs/media/planner_icons/IconTest.html new file mode 100644 index 0000000..0dd24ab --- /dev/null +++ b/Fuchs/media/planner_icons/IconTest.html @@ -0,0 +1,435 @@ + + + + + + + Sanitär Fuchs | Heizung + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + +
      +
      +
      100%Düsseldorf
      +
      100%Meisterbetrieb
      +
      100%positiv bewertet
      +
      +
      +
      + +
      +
      +
      + + + +
      +
      +
      + + + + + + + + +
      +
      +
      +

      Heizungsplaner

      + +
      +
      +
      +
      +
      Ihr Anliegen
      +
      Was führt Sie heute zu uns? Wie können wir Ihnen helfen?
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      + + +
      +
      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      + + +
      +
      +
      +
      + +

      Sebastian Fuchs - Bad und Heizung GmbH und Co. KG
      Germaniastr. 15
      40223 Düsseldorf
      Telefon: 0211 - 31 07 222

      + + +
      +
      ProcessWeb
      +
      +
      + +
      + +
      +
      +
      +
      Heizungsplaner
      + +
      + +
      +
      +
      +
      +
      +
      +
      0211 - 31 07 222
      +
      + + +
      +
      + +
      + + + + + + + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/air_fan.svg b/Fuchs/media/planner_icons/air_fan.svg new file mode 100644 index 0000000..2e14092 --- /dev/null +++ b/Fuchs/media/planner_icons/air_fan.svg @@ -0,0 +1,6 @@ + + diff --git a/Fuchs/media/planner_icons/appartment.svg b/Fuchs/media/planner_icons/appartment.svg new file mode 100644 index 0000000..f225d6f --- /dev/null +++ b/Fuchs/media/planner_icons/appartment.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/Fuchs/media/planner_icons/appartmenthouse.svg b/Fuchs/media/planner_icons/appartmenthouse.svg new file mode 100644 index 0000000..9b04def --- /dev/null +++ b/Fuchs/media/planner_icons/appartmenthouse.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Fuchs/media/planner_icons/boiler.svg b/Fuchs/media/planner_icons/boiler.svg new file mode 100644 index 0000000..a186ff3 --- /dev/null +++ b/Fuchs/media/planner_icons/boiler.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/camera.svg b/Fuchs/media/planner_icons/camera.svg new file mode 100644 index 0000000..72c53e0 --- /dev/null +++ b/Fuchs/media/planner_icons/camera.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/combinationheating.svg b/Fuchs/media/planner_icons/combinationheating.svg new file mode 100644 index 0000000..cfc4009 --- /dev/null +++ b/Fuchs/media/planner_icons/combinationheating.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/durchlauferhitzer.svg b/Fuchs/media/planner_icons/durchlauferhitzer.svg new file mode 100644 index 0000000..fb601ed --- /dev/null +++ b/Fuchs/media/planner_icons/durchlauferhitzer.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/floorheating.svg b/Fuchs/media/planner_icons/floorheating.svg new file mode 100644 index 0000000..fb312e4 --- /dev/null +++ b/Fuchs/media/planner_icons/floorheating.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/fluidgas.svg b/Fuchs/media/planner_icons/fluidgas.svg new file mode 100644 index 0000000..e48e4a8 --- /dev/null +++ b/Fuchs/media/planner_icons/fluidgas.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/Fuchs/media/planner_icons/gas.svg b/Fuchs/media/planner_icons/gas.svg new file mode 100644 index 0000000..115425e --- /dev/null +++ b/Fuchs/media/planner_icons/gas.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/geotherm.svg b/Fuchs/media/planner_icons/geotherm.svg new file mode 100644 index 0000000..c644693 --- /dev/null +++ b/Fuchs/media/planner_icons/geotherm.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/Fuchs/media/planner_icons/heating.svg b/Fuchs/media/planner_icons/heating.svg new file mode 100644 index 0000000..68675f0 --- /dev/null +++ b/Fuchs/media/planner_icons/heating.svg @@ -0,0 +1,4 @@ + + + + diff --git a/Fuchs/media/planner_icons/house.svg b/Fuchs/media/planner_icons/house.svg new file mode 100644 index 0000000..b435571 --- /dev/null +++ b/Fuchs/media/planner_icons/house.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/Fuchs/media/planner_icons/iconfinder_004_040_drop_drib_water_blood_1273033.svg b/Fuchs/media/planner_icons/iconfinder_004_040_drop_drib_water_blood_1273033.svg new file mode 100644 index 0000000..acd7753 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_004_040_drop_drib_water_blood_1273033.svg @@ -0,0 +1,63 @@ + +image/svg+xml \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_018_boiler_water_heater_403915.svg b/Fuchs/media/planner_icons/iconfinder_018_boiler_water_heater_403915.svg new file mode 100644 index 0000000..282f12a --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_018_boiler_water_heater_403915.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_07_heating-underfloor-floor-house_2592495.svg b/Fuchs/media/planner_icons/iconfinder_07_heating-underfloor-floor-house_2592495.svg new file mode 100644 index 0000000..300f233 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_07_heating-underfloor-floor-house_2592495.svg @@ -0,0 +1,352 @@ + +image/svg+xml \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_07_plumbing-boiler-heater-water_2592488.svg b/Fuchs/media/planner_icons/iconfinder_07_plumbing-boiler-heater-water_2592488.svg new file mode 100644 index 0000000..546663b --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_07_plumbing-boiler-heater-water_2592488.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_11731928Untitled-3_3969945.svg b/Fuchs/media/planner_icons/iconfinder_11731928Untitled-3_3969945.svg new file mode 100644 index 0000000..3e1b383 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_11731928Untitled-3_3969945.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_11742691Untitled-3_3969943.svg b/Fuchs/media/planner_icons/iconfinder_11742691Untitled-3_3969943.svg new file mode 100644 index 0000000..acc2533 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_11742691Untitled-3_3969943.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_1378_2123121.svg b/Fuchs/media/planner_icons/iconfinder_1378_2123121.svg new file mode 100644 index 0000000..68675f0 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_1378_2123121.svg @@ -0,0 +1,4 @@ + + + + diff --git a/Fuchs/media/planner_icons/iconfinder_156_2350987.svg b/Fuchs/media/planner_icons/iconfinder_156_2350987.svg new file mode 100644 index 0000000..461d723 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_156_2350987.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_36_3418030.svg b/Fuchs/media/planner_icons/iconfinder_36_3418030.svg new file mode 100644 index 0000000..cae9ea0 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_36_3418030.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_56_Repair_tool_tools_2932919.svg b/Fuchs/media/planner_icons/iconfinder_56_Repair_tool_tools_2932919.svg new file mode 100644 index 0000000..807a93a --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_56_Repair_tool_tools_2932919.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder__leaf_earth_1962139.svg b/Fuchs/media/planner_icons/iconfinder__leaf_earth_1962139.svg new file mode 100644 index 0000000..9d748e8 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder__leaf_earth_1962139.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_button-exchange-currency-currency_exchange-currency_conversion.svg_5130028.svg b/Fuchs/media/planner_icons/iconfinder_button-exchange-currency-currency_exchange-currency_conversion.svg_5130028.svg new file mode 100644 index 0000000..b8b4154 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_button-exchange-currency-currency_exchange-currency_conversion.svg_5130028.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_flame_214272.svg b/Fuchs/media/planner_icons/iconfinder_flame_214272.svg new file mode 100644 index 0000000..899eee2 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_flame_214272.svg @@ -0,0 +1,44 @@ + +image/svg+xml \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_i221_942599.svg b/Fuchs/media/planner_icons/iconfinder_i221_942599.svg new file mode 100644 index 0000000..cb863ae --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_i221_942599.svg @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_tank_1554126.svg b/Fuchs/media/planner_icons/iconfinder_tank_1554126.svg new file mode 100644 index 0000000..9c7f8c3 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_tank_1554126.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iconfinder_warm-floor_4144289.svg b/Fuchs/media/planner_icons/iconfinder_warm-floor_4144289.svg new file mode 100644 index 0000000..f1e43c0 --- /dev/null +++ b/Fuchs/media/planner_icons/iconfinder_warm-floor_4144289.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Fuchs/media/planner_icons/iso_floor.svg b/Fuchs/media/planner_icons/iso_floor.svg new file mode 100644 index 0000000..42825d4 --- /dev/null +++ b/Fuchs/media/planner_icons/iso_floor.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/Fuchs/media/planner_icons/iso_none.svg b/Fuchs/media/planner_icons/iso_none.svg new file mode 100644 index 0000000..03fbc82 --- /dev/null +++ b/Fuchs/media/planner_icons/iso_none.svg @@ -0,0 +1,4 @@ + + + + diff --git a/Fuchs/media/planner_icons/iso_roof.svg b/Fuchs/media/planner_icons/iso_roof.svg new file mode 100644 index 0000000..b2d7f13 --- /dev/null +++ b/Fuchs/media/planner_icons/iso_roof.svg @@ -0,0 +1,60 @@ + + + + + + image/svg+xml + + + + + + + + + + diff --git a/Fuchs/media/planner_icons/iso_unclear.svg b/Fuchs/media/planner_icons/iso_unclear.svg new file mode 100644 index 0000000..0899274 --- /dev/null +++ b/Fuchs/media/planner_icons/iso_unclear.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/Fuchs/media/planner_icons/iso_walls.svg b/Fuchs/media/planner_icons/iso_walls.svg new file mode 100644 index 0000000..dc3c067 --- /dev/null +++ b/Fuchs/media/planner_icons/iso_walls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/Fuchs/media/planner_icons/iso_windows.svg b/Fuchs/media/planner_icons/iso_windows.svg new file mode 100644 index 0000000..54c73e5 --- /dev/null +++ b/Fuchs/media/planner_icons/iso_windows.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Fuchs/media/planner_icons/maintain.svg b/Fuchs/media/planner_icons/maintain.svg new file mode 100644 index 0000000..cd372e2 --- /dev/null +++ b/Fuchs/media/planner_icons/maintain.svg @@ -0,0 +1,4 @@ + + diff --git a/Fuchs/media/planner_icons/none.svg b/Fuchs/media/planner_icons/none.svg new file mode 100644 index 0000000..fc1cfcf --- /dev/null +++ b/Fuchs/media/planner_icons/none.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/notfall.svg b/Fuchs/media/planner_icons/notfall.svg new file mode 100644 index 0000000..1dbd24b --- /dev/null +++ b/Fuchs/media/planner_icons/notfall.svg @@ -0,0 +1,4 @@ + + + + diff --git a/Fuchs/media/planner_icons/oil.svg b/Fuchs/media/planner_icons/oil.svg new file mode 100644 index 0000000..0c18358 --- /dev/null +++ b/Fuchs/media/planner_icons/oil.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/other.svg b/Fuchs/media/planner_icons/other.svg new file mode 100644 index 0000000..e40e36a --- /dev/null +++ b/Fuchs/media/planner_icons/other.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/question.svg b/Fuchs/media/planner_icons/question.svg new file mode 100644 index 0000000..ba80a68 --- /dev/null +++ b/Fuchs/media/planner_icons/question.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/radiator_valve.svg b/Fuchs/media/planner_icons/radiator_valve.svg new file mode 100644 index 0000000..5a80666 --- /dev/null +++ b/Fuchs/media/planner_icons/radiator_valve.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/repair.svg b/Fuchs/media/planner_icons/repair.svg new file mode 100644 index 0000000..b97d4d3 --- /dev/null +++ b/Fuchs/media/planner_icons/repair.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/planner_icons/serialhouse.svg b/Fuchs/media/planner_icons/serialhouse.svg new file mode 100644 index 0000000..b7723fb --- /dev/null +++ b/Fuchs/media/planner_icons/serialhouse.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Fuchs/media/planner_icons/serialmidhouse.svg b/Fuchs/media/planner_icons/serialmidhouse.svg new file mode 100644 index 0000000..ffdd4d7 --- /dev/null +++ b/Fuchs/media/planner_icons/serialmidhouse.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/Fuchs/media/planner_icons/service.svg b/Fuchs/media/planner_icons/service.svg new file mode 100644 index 0000000..c38daac --- /dev/null +++ b/Fuchs/media/planner_icons/service.svg @@ -0,0 +1,3 @@ + + diff --git a/Fuchs/media/planner_icons/tausch.svg b/Fuchs/media/planner_icons/tausch.svg new file mode 100644 index 0000000..a111de6 --- /dev/null +++ b/Fuchs/media/planner_icons/tausch.svg @@ -0,0 +1,2 @@ + + diff --git a/Fuchs/media/sign/email.png b/Fuchs/media/sign/email.png new file mode 100644 index 0000000..9d96cf3 Binary files /dev/null and b/Fuchs/media/sign/email.png differ diff --git a/Fuchs/media/sign/fb.png b/Fuchs/media/sign/fb.png new file mode 100644 index 0000000..2544e22 Binary files /dev/null and b/Fuchs/media/sign/fb.png differ diff --git a/Fuchs/media/sign/fon.png b/Fuchs/media/sign/fon.png new file mode 100644 index 0000000..15166e0 Binary files /dev/null and b/Fuchs/media/sign/fon.png differ diff --git a/Fuchs/media/sign/loc.png b/Fuchs/media/sign/loc.png new file mode 100644 index 0000000..3ec4d2b Binary files /dev/null and b/Fuchs/media/sign/loc.png differ diff --git a/Fuchs/media/sign/signature_logo.png b/Fuchs/media/sign/signature_logo.png new file mode 100644 index 0000000..44867de Binary files /dev/null and b/Fuchs/media/sign/signature_logo.png differ diff --git a/Fuchs/media/sign/signature_logos.png b/Fuchs/media/sign/signature_logos.png new file mode 100644 index 0000000..8f17940 Binary files /dev/null and b/Fuchs/media/sign/signature_logos.png differ diff --git a/Fuchs/media/sign/web.png b/Fuchs/media/sign/web.png new file mode 100644 index 0000000..1ec4f8d Binary files /dev/null and b/Fuchs/media/sign/web.png differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-130web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-130web.jpg new file mode 100644 index 0000000..e8867cd Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-130web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-130web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-130web_thumb.jpg new file mode 100644 index 0000000..e173a02 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-130web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-1web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-1web.jpg new file mode 100644 index 0000000..6dca56d Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-1web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-1web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-1web_thumb.jpg new file mode 100644 index 0000000..4ebf55a Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-1web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-32-2web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-32-2web.jpg new file mode 100644 index 0000000..811ea4d Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-32-2web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-32-2web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-32-2web_thumb.jpg new file mode 100644 index 0000000..dafb635 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-32-2web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-34-2web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-34-2web.jpg new file mode 100644 index 0000000..5c78980 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-34-2web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-34-2web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-34-2web_thumb.jpg new file mode 100644 index 0000000..010fc3e Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-34-2web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4028web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4028web.jpg new file mode 100644 index 0000000..b4fd7b4 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4028web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4028web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4028web_thumb.jpg new file mode 100644 index 0000000..e6b1225 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4028web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4048web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4048web.jpg new file mode 100644 index 0000000..03b6953 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4048web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4048web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4048web_thumb.jpg new file mode 100644 index 0000000..50c07b9 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4048web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4052web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4052web.jpg new file mode 100644 index 0000000..139db70 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4052web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4052web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4052web_thumb.jpg new file mode 100644 index 0000000..c155e98 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4052web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4062web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4062web.jpg new file mode 100644 index 0000000..126e63a Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4062web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4062web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4062web_thumb.jpg new file mode 100644 index 0000000..e05d8c0 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4062web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4075web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4075web.jpg new file mode 100644 index 0000000..f9c0767 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4075web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4075web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4075web_thumb.jpg new file mode 100644 index 0000000..1bc132e Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4075web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4087web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4087web.jpg new file mode 100644 index 0000000..9ec1d29 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4087web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4087web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4087web_thumb.jpg new file mode 100644 index 0000000..978b662 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4087web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4097web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4097web.jpg new file mode 100644 index 0000000..41a87a3 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4097web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4097web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4097web_thumb.jpg new file mode 100644 index 0000000..65f8a7f Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4097web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4108web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4108web.jpg new file mode 100644 index 0000000..12be02c Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4108web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4108web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4108web_thumb.jpg new file mode 100644 index 0000000..e0c570f Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4108web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4127web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4127web.jpg new file mode 100644 index 0000000..b4e1cd8 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4127web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4127web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4127web_thumb.jpg new file mode 100644 index 0000000..13c4c11 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4127web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4131web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4131web.jpg new file mode 100644 index 0000000..8dab609 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4131web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4131web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4131web_thumb.jpg new file mode 100644 index 0000000..023fe5d Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4131web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4144web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4144web.jpg new file mode 100644 index 0000000..452c954 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4144web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-4144web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-4144web_thumb.jpg new file mode 100644 index 0000000..671f05a Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-4144web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-61web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-61web.jpg new file mode 100644 index 0000000..c800957 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-61web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-61web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-61web_thumb.jpg new file mode 100644 index 0000000..7a38204 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-61web_thumb.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-84web.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-84web.jpg new file mode 100644 index 0000000..24699ec Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-84web.jpg differ diff --git a/Fuchs/media/team/Fuchs Mitarbeiter-84web_thumb.jpg b/Fuchs/media/team/Fuchs Mitarbeiter-84web_thumb.jpg new file mode 100644 index 0000000..97a1cb6 Binary files /dev/null and b/Fuchs/media/team/Fuchs Mitarbeiter-84web_thumb.jpg differ diff --git a/Fuchs/media/teaser_images/03_DuraStyle_DS6499_253709WEB.jpg b/Fuchs/media/teaser_images/03_DuraStyle_DS6499_253709WEB.jpg new file mode 100644 index 0000000..6a0f330 Binary files /dev/null and b/Fuchs/media/teaser_images/03_DuraStyle_DS6499_253709WEB.jpg differ diff --git a/Fuchs/media/teaser_images/Fuchs Mitarbeiter-4154web.jpg b/Fuchs/media/teaser_images/Fuchs Mitarbeiter-4154web.jpg new file mode 100644 index 0000000..13b62a3 Binary files /dev/null and b/Fuchs/media/teaser_images/Fuchs Mitarbeiter-4154web.jpg differ diff --git a/Fuchs/media/teaser_images/IMG_7922web.jpg b/Fuchs/media/teaser_images/IMG_7922web.jpg new file mode 100644 index 0000000..61a716f Binary files /dev/null and b/Fuchs/media/teaser_images/IMG_7922web.jpg differ diff --git a/Fuchs/media/teaser_images/SanitaerFuchs_Team.jpg b/Fuchs/media/teaser_images/SanitaerFuchs_Team.jpg new file mode 100644 index 0000000..859faa3 Binary files /dev/null and b/Fuchs/media/teaser_images/SanitaerFuchs_Team.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.001.jpg b/Fuchs/media/teaser_images/SebastianFuchs.001.jpg new file mode 100644 index 0000000..be257c6 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.001.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.002.jpg b/Fuchs/media/teaser_images/SebastianFuchs.002.jpg new file mode 100644 index 0000000..5669a6d Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.002.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.003.jpg b/Fuchs/media/teaser_images/SebastianFuchs.003.jpg new file mode 100644 index 0000000..b934626 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.003.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.004.jpg b/Fuchs/media/teaser_images/SebastianFuchs.004.jpg new file mode 100644 index 0000000..a54faec Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.004.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.005.jpg b/Fuchs/media/teaser_images/SebastianFuchs.005.jpg new file mode 100644 index 0000000..30d7a9f Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.005.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.006.jpg b/Fuchs/media/teaser_images/SebastianFuchs.006.jpg new file mode 100644 index 0000000..2b8113a Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.006.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.007.jpg b/Fuchs/media/teaser_images/SebastianFuchs.007.jpg new file mode 100644 index 0000000..b5bc052 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.007.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.008.jpg b/Fuchs/media/teaser_images/SebastianFuchs.008.jpg new file mode 100644 index 0000000..390fe6e Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.008.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.009.jpg b/Fuchs/media/teaser_images/SebastianFuchs.009.jpg new file mode 100644 index 0000000..7466c03 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.009.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.010.jpg b/Fuchs/media/teaser_images/SebastianFuchs.010.jpg new file mode 100644 index 0000000..1f5d3cb Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.010.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.011.jpg b/Fuchs/media/teaser_images/SebastianFuchs.011.jpg new file mode 100644 index 0000000..d053cea Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.011.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.012.jpg b/Fuchs/media/teaser_images/SebastianFuchs.012.jpg new file mode 100644 index 0000000..c14ba8e Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.012.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.013.jpg b/Fuchs/media/teaser_images/SebastianFuchs.013.jpg new file mode 100644 index 0000000..f534c61 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.013.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.014.jpg b/Fuchs/media/teaser_images/SebastianFuchs.014.jpg new file mode 100644 index 0000000..289aef7 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.014.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.015.jpg b/Fuchs/media/teaser_images/SebastianFuchs.015.jpg new file mode 100644 index 0000000..326a001 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.015.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.016.jpg b/Fuchs/media/teaser_images/SebastianFuchs.016.jpg new file mode 100644 index 0000000..e8901fb Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.016.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.017.jpg b/Fuchs/media/teaser_images/SebastianFuchs.017.jpg new file mode 100644 index 0000000..85b41b3 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.017.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.018.jpg b/Fuchs/media/teaser_images/SebastianFuchs.018.jpg new file mode 100644 index 0000000..2ce50d3 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.018.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.019.jpg b/Fuchs/media/teaser_images/SebastianFuchs.019.jpg new file mode 100644 index 0000000..9f41e2b Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.019.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.022.jpg b/Fuchs/media/teaser_images/SebastianFuchs.022.jpg new file mode 100644 index 0000000..836c8aa Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.022.jpg differ diff --git a/Fuchs/media/teaser_images/SebastianFuchs.023.jpg b/Fuchs/media/teaser_images/SebastianFuchs.023.jpg new file mode 100644 index 0000000..ec2b208 Binary files /dev/null and b/Fuchs/media/teaser_images/SebastianFuchs.023.jpg differ diff --git a/Fuchs/media/teaser_images/Wasserfleck_web.jpg b/Fuchs/media/teaser_images/Wasserfleck_web.jpg new file mode 100644 index 0000000..ad626f5 Binary files /dev/null and b/Fuchs/media/teaser_images/Wasserfleck_web.jpg differ diff --git a/Fuchs/media/teaser_images/atmotec-exclusiv-szene-1273440.jpg b/Fuchs/media/teaser_images/atmotec-exclusiv-szene-1273440.jpg new file mode 100644 index 0000000..a6a8238 Binary files /dev/null and b/Fuchs/media/teaser_images/atmotec-exclusiv-szene-1273440.jpg differ diff --git a/Fuchs/media/teaser_images/ecocompact-scene-999685CUT.jpg b/Fuchs/media/teaser_images/ecocompact-scene-999685CUT.jpg new file mode 100644 index 0000000..bed3fbb Binary files /dev/null and b/Fuchs/media/teaser_images/ecocompact-scene-999685CUT.jpg differ diff --git a/Fuchs/media/teaser_images/ecotec-exclusive-szene-999690.jpg b/Fuchs/media/teaser_images/ecotec-exclusive-szene-999690.jpg new file mode 100644 index 0000000..f08bc90 Binary files /dev/null and b/Fuchs/media/teaser_images/ecotec-exclusive-szene-999690.jpg differ diff --git a/Fuchs/media/teaser_images/ecotec-plus-2-print-1272553.jpg b/Fuchs/media/teaser_images/ecotec-plus-2-print-1272553.jpg new file mode 100644 index 0000000..3453549 Binary files /dev/null and b/Fuchs/media/teaser_images/ecotec-plus-2-print-1272553.jpg differ diff --git a/Fuchs/media/teaser_images/ecotec-plus-2-print-999691.jpg b/Fuchs/media/teaser_images/ecotec-plus-2-print-999691.jpg new file mode 100644 index 0000000..1211c31 Binary files /dev/null and b/Fuchs/media/teaser_images/ecotec-plus-2-print-999691.jpg differ diff --git a/Fuchs/media/teaser_images/electronicved-pro-szene-999699.jpg b/Fuchs/media/teaser_images/electronicved-pro-szene-999699.jpg new file mode 100644 index 0000000..4493b02 Binary files /dev/null and b/Fuchs/media/teaser_images/electronicved-pro-szene-999699.jpg differ diff --git a/Fuchs/media/teaser_images/puravida_009.web.jpg b/Fuchs/media/teaser_images/puravida_009.web.jpg new file mode 100644 index 0000000..c93f58f Binary files /dev/null and b/Fuchs/media/teaser_images/puravida_009.web.jpg differ diff --git a/Fuchs/media/teaser_images/sanitaer fuchs-3204web.jpg b/Fuchs/media/teaser_images/sanitaer fuchs-3204web.jpg new file mode 100644 index 0000000..3d1e4bb Binary files /dev/null and b/Fuchs/media/teaser_images/sanitaer fuchs-3204web.jpg differ diff --git a/Fuchs/media/teaser_images/sanitaer fuchs-3212web.jpg b/Fuchs/media/teaser_images/sanitaer fuchs-3212web.jpg new file mode 100644 index 0000000..bae1ef6 Binary files /dev/null and b/Fuchs/media/teaser_images/sanitaer fuchs-3212web.jpg differ diff --git a/Fuchs/media/teaser_images/sanitaerfuchs_weihnachten (1).jpg b/Fuchs/media/teaser_images/sanitaerfuchs_weihnachten (1).jpg new file mode 100644 index 0000000..4d3daed Binary files /dev/null and b/Fuchs/media/teaser_images/sanitaerfuchs_weihnachten (1).jpg differ diff --git a/Fuchs/media/teaser_images/sanitaerfuchs_weihnachten.jpg b/Fuchs/media/teaser_images/sanitaerfuchs_weihnachten.jpg new file mode 100644 index 0000000..6d15f5b Binary files /dev/null and b/Fuchs/media/teaser_images/sanitaerfuchs_weihnachten.jpg differ diff --git a/Fuchs/media/tmp/151116_Logo_HEIZUNG_ONLINE_02web.jpg b/Fuchs/media/tmp/151116_Logo_HEIZUNG_ONLINE_02web.jpg new file mode 100644 index 0000000..b90eefd Binary files /dev/null and b/Fuchs/media/tmp/151116_Logo_HEIZUNG_ONLINE_02web.jpg differ diff --git a/Fuchs/media/tmp/1_0.jpg b/Fuchs/media/tmp/1_0.jpg new file mode 100644 index 0000000..9064c47 Binary files /dev/null and b/Fuchs/media/tmp/1_0.jpg differ diff --git a/Fuchs/media/tmp/DuesseltoolsLogoWeb72.jpg b/Fuchs/media/tmp/DuesseltoolsLogoWeb72.jpg new file mode 100644 index 0000000..85a56e4 Binary files /dev/null and b/Fuchs/media/tmp/DuesseltoolsLogoWeb72.jpg differ diff --git a/Fuchs/media/tmp/HEIZUNG_ONLINE_02web.jpg b/Fuchs/media/tmp/HEIZUNG_ONLINE_02web.jpg new file mode 100644 index 0000000..b90eefd Binary files /dev/null and b/Fuchs/media/tmp/HEIZUNG_ONLINE_02web.jpg differ diff --git a/Fuchs/media/tmp/IMG_5523.png b/Fuchs/media/tmp/IMG_5523.png new file mode 100644 index 0000000..5d61a93 Binary files /dev/null and b/Fuchs/media/tmp/IMG_5523.png differ diff --git a/Fuchs/media/tmp/LogoMontage3.jpg b/Fuchs/media/tmp/LogoMontage3.jpg new file mode 100644 index 0000000..ce11621 Binary files /dev/null and b/Fuchs/media/tmp/LogoMontage3.jpg differ diff --git a/Fuchs/media/tmp/gmap_fake.png b/Fuchs/media/tmp/gmap_fake.png new file mode 100644 index 0000000..1ca148b Binary files /dev/null and b/Fuchs/media/tmp/gmap_fake.png differ diff --git a/Fuchs/media/tmp/logo160.png b/Fuchs/media/tmp/logo160.png new file mode 100644 index 0000000..322b704 Binary files /dev/null and b/Fuchs/media/tmp/logo160.png differ diff --git a/Fuchs/mstile-144x144.png b/Fuchs/mstile-144x144.png new file mode 100644 index 0000000..f3b4009 Binary files /dev/null and b/Fuchs/mstile-144x144.png differ diff --git a/Fuchs/mstile-150x150.png b/Fuchs/mstile-150x150.png new file mode 100644 index 0000000..e3aef79 Binary files /dev/null and b/Fuchs/mstile-150x150.png differ diff --git a/Fuchs/mstile-310x150.png b/Fuchs/mstile-310x150.png new file mode 100644 index 0000000..72b4c3a Binary files /dev/null and b/Fuchs/mstile-310x150.png differ diff --git a/Fuchs/mstile-310x310.png b/Fuchs/mstile-310x310.png new file mode 100644 index 0000000..98bc503 Binary files /dev/null and b/Fuchs/mstile-310x310.png differ diff --git a/Fuchs/mstile-70x70.png b/Fuchs/mstile-70x70.png new file mode 100644 index 0000000..94b1a99 Binary files /dev/null and b/Fuchs/mstile-70x70.png differ diff --git a/Fuchs/package-lock.json b/Fuchs/package-lock.json new file mode 100644 index 0000000..f650a10 --- /dev/null +++ b/Fuchs/package-lock.json @@ -0,0 +1,6254 @@ +{ + "name": "fuchs", + "version": "1.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "fuchs", + "version": "1.1.0", + "dependencies": { + "fg-loadcss": "3.1.0", + "jquery": "4.0.0", + "js-cookie": "3.0.1", + "tinymce": "6.8.6" + }, + "devDependencies": { + "del": "8.0.1", + "gulp": "5.0.1", + "gulp-clean-css": "^4.3.0", + "gulp-concat": "2.6.1", + "gulp-htmlmin": "5.0.1", + "gulp-if": "3.0.0", + "gulp-less": "5.0.0", + "gulp-print": "5.0.2", + "gulp-sass": "6.0.1", + "gulp-terser": "2.1.0", + "merge-stream": "^2.0.0", + "sass": "^1.99.0" + } + }, + "node_modules/@gulpjs/messages": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@gulpjs/messages/-/messages-1.1.0.tgz", + "integrity": "sha512-Ys9sazDatyTgZVb4xPlDufLweJ/Os2uHWOv+Caxvy2O85JcnT4M3vc73bi8pdLWlv3fdWQz3pdI9tVwo8rQQSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@gulpjs/to-absolute-glob": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@gulpjs/to-absolute-glob/-/to-absolute-glob-4.0.0.tgz", + "integrity": "sha512-kjotm7XJrJ6v+7knhPaRgaT6q8F8K2jiafwYdNHLzmV0uGLuZY43FK6smNSHUPrhq5kX2slCUy+RGG/xGqmIKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-negated-glob": "^1.0.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz", + "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "detect-libc": "^2.0.3", + "is-glob": "^4.0.3", + "node-addon-api": "^7.0.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.6", + "@parcel/watcher-darwin-arm64": "2.5.6", + "@parcel/watcher-darwin-x64": "2.5.6", + "@parcel/watcher-freebsd-x64": "2.5.6", + "@parcel/watcher-linux-arm-glibc": "2.5.6", + "@parcel/watcher-linux-arm-musl": "2.5.6", + "@parcel/watcher-linux-arm64-glibc": "2.5.6", + "@parcel/watcher-linux-arm64-musl": "2.5.6", + "@parcel/watcher-linux-x64-glibc": "2.5.6", + "@parcel/watcher-linux-x64-musl": "2.5.6", + "@parcel/watcher-win32-arm64": "2.5.6", + "@parcel/watcher-win32-ia32": "2.5.6", + "@parcel/watcher-win32-x64": "2.5.6" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz", + "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz", + "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz", + "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz", + "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz", + "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz", + "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz", + "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz", + "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz", + "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz", + "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz", + "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz", + "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz", + "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "dependencies": { + "ansi-wrap": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=", + "dev": true, + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async-done": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-2.0.0.tgz", + "integrity": "sha512-j0s3bzYq9yKIVLKGE/tWlCpa3PfFLcrDZLTSVdnnCTGagXuXBJO4SsY9Xdk/fQBirCkH4evW5xOeJXqlAQFdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.4.4", + "once": "^1.4.0", + "stream-exhaust": "^1.0.2" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/async-settle": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-2.0.0.tgz", + "integrity": "sha512-Obu/KE8FurfQRN6ODdHN9LuXqwC+JFIM9NRyZqJJ4ZfLJmIYN9Rg0/kb+wF70VV5+fJusTMQlJ1t5rF7J/ETdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-done": "^2.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/b4a": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.8.0.tgz", + "integrity": "sha512-qRuSmNSkGQaHwNbM7J78Wwy+ghLEYF1zNrSeMxj4Kgw6y33O3mXcQ6Ie9fRvfU/YnxWkOchPXbaLb73TkIsfdg==", + "dev": true, + "license": "Apache-2.0", + "peerDependencies": { + "react-native-b4a": "*" + }, + "peerDependenciesMeta": { + "react-native-b4a": { + "optional": true + } + } + }, + "node_modules/bach": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/bach/-/bach-2.0.1.tgz", + "integrity": "sha512-A7bvGMGiTOxGMpNupYl9HQTf0FFDNF4VCmks4PJpFyN1AX2pdKuxuwdvUz2Hu388wcgp+OvGFNsumBfFNkR7eg==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-done": "^2.0.0", + "async-settle": "^2.0.0", + "now-and-later": "^3.0.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "node_modules/bare-events": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.2.tgz", + "integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==", + "dev": true, + "license": "Apache-2.0", + "peerDependencies": { + "bare-abort-controller": "*" + }, + "peerDependenciesMeta": { + "bare-abort-controller": { + "optional": true + } + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bl": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", + "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "node_modules/camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "dev": true + }, + "node_modules/cloneable-readable": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.2.tgz", + "integrity": "sha512-Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "node_modules/cloneable-readable/node_modules/process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "dev": true, + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/concat-with-sourcemaps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/copy-anything": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz", + "integrity": "sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ==", + "dev": true, + "dependencies": { + "is-what": "^3.12.0" + } + }, + "node_modules/copy-props": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-4.0.0.tgz", + "integrity": "sha512-bVWtw1wQLzzKiYROtvNlbJgxgBYt2bMJpkCbKmXM3xyijvcjjWXEk5nyrrT3bgJ7ODb19ZohE2T0Y3FgNPyoTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "each-props": "^3.0.0", + "is-plain-object": "^5.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/copy-props/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "node_modules/del": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/del/-/del-8.0.1.tgz", + "integrity": "sha512-gPqh0mKTPvaUZGAuHbrBUYKZWBNAeHG7TU3QH5EhVwPMyKvmfJaNXhcD2jTcXsJRRcffuho4vaYweu80dRrMGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "globby": "^14.0.2", + "is-glob": "^4.0.3", + "is-path-cwd": "^3.0.0", + "is-path-inside": "^4.0.0", + "p-map": "^7.0.2", + "presentable-error": "^0.0.1", + "slash": "^5.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/each-props": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-3.0.0.tgz", + "integrity": "sha512-IYf1hpuWrdzse/s/YJOrFmU15lyhSzxelNVAHTEG3DtP4QsLTWZUzcUL3HMXmKQxXpa4EIrBPpwRgj0aehdvAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^5.0.0", + "object.defaults": "^1.1.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/each-props/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "optional": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/events-universal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz", + "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "bare-events": "^2.7.0" + } + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true, + "license": "MIT" + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend-shallow/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "dependencies": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-levenshtein": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz", + "integrity": "sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fastest-levenshtein": "^1.0.7" + } + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fg-loadcss": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fg-loadcss/-/fg-loadcss-3.1.0.tgz", + "integrity": "sha512-UgtXKza8nBUO6UWW4c+MOprRL4W5WbIkzPJafnw6y6f5jhA3FiSZkWz8eXeAeX+mC4A/qq0ByDLiAk6erNARaQ==", + "engines": { + "node": ">= 11.9.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/findup-sync": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz", + "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.3", + "micromatch": "^4.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/fined": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-2.0.0.tgz", + "integrity": "sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==", + "dev": true, + "license": "MIT", + "dependencies": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^5.0.0", + "object.defaults": "^1.1.0", + "object.pick": "^1.3.0", + "parse-filepath": "^1.0.2" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/fined/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flagged-respawn": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-2.0.0.tgz", + "integrity": "sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "license": "MIT", + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", + "integrity": "sha1-24Sfznf2cIpfjzhq5TOgkHtUrnA=", + "dev": true + }, + "node_modules/fs-mkdirp-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-2.0.1.tgz", + "integrity": "sha512-UTOY+59K6IA94tec8Wjqm0FSh5OVudGNB0NL/P6fB3HiE3bYOY3VYBGijsnOHNkQSwC1FKkU77pmq7xp9CskLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.8", + "streamx": "^2.12.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/fs-mkdirp-stream/node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-stream": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-8.0.3.tgz", + "integrity": "sha512-fqZVj22LtFJkHODT+M4N1RJQ3TjnnQhfE9GwZI8qXscYarnhpip70poMldRnP8ipQ/w0B621kOhfc53/J9bd/A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@gulpjs/to-absolute-glob": "^4.0.0", + "anymatch": "^3.1.3", + "fastq": "^1.13.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "is-negated-glob": "^1.0.0", + "normalize-path": "^3.0.0", + "streamx": "^2.12.5" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-stream/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-watcher": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-6.0.0.tgz", + "integrity": "sha512-wGM28Ehmcnk2NqRORXFOTOR064L4imSw3EeOqU5bIwUf62eXGwg89WivH6VMahL8zlQHeodzvHpXplrqzrz3Nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-done": "^2.0.0", + "chokidar": "^3.5.3" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "license": "MIT", + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/globby": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", + "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.3", + "ignore": "^7.0.3", + "path-type": "^6.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/path-type": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", + "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.1.15", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", + "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "dev": true, + "optional": true + }, + "node_modules/gulp": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-5.0.1.tgz", + "integrity": "sha512-PErok3DZSA5WGMd6XXV3IRNO0mlB+wW3OzhFJLEec1jSERg2j1bxJ6e5Fh6N6fn3FH2T9AP4UYNb/pYlADB9sA==", + "dev": true, + "license": "MIT", + "dependencies": { + "glob-watcher": "^6.0.0", + "gulp-cli": "^3.1.0", + "undertaker": "^2.0.0", + "vinyl-fs": "^4.0.2" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/gulp-clean-css": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-4.3.0.tgz", + "integrity": "sha512-mGyeT3qqFXTy61j0zOIciS4MkYziF2U594t2Vs9rUnpkEHqfu6aDITMp8xOvZcvdX61Uz3y1mVERRYmjzQF5fg==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-css": "4.2.3", + "plugin-error": "1.0.1", + "through2": "3.0.1", + "vinyl-sourcemaps-apply": "0.2.1" + } + }, + "node_modules/gulp-clean-css/node_modules/clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/gulp-clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-clean-css/node_modules/through2": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", + "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "readable-stream": "2 || 3" + } + }, + "node_modules/gulp-cli": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-3.1.0.tgz", + "integrity": "sha512-zZzwlmEsTfXcxRKiCHsdyjZZnFvXWM4v1NqBJSYbuApkvVKivjcmOS2qruAJ+PkEHLFavcDKH40DPc1+t12a9Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@gulpjs/messages": "^1.1.0", + "chalk": "^4.1.2", + "copy-props": "^4.0.0", + "gulplog": "^2.2.0", + "interpret": "^3.1.1", + "liftoff": "^5.0.1", + "mute-stdout": "^2.0.0", + "replace-homedir": "^2.0.0", + "semver-greatest-satisfied-range": "^2.0.0", + "string-width": "^4.2.3", + "v8flags": "^4.0.0", + "yargs": "^16.2.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/gulp-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/gulp-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/gulp-cli/node_modules/glogg": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-2.2.0.tgz", + "integrity": "sha512-eWv1ds/zAlz+M1ioHsyKJomfY7jbDDPpwSkv14KQj89bycx1nvK5/2Cj/T9g7kzJcX5Bc7Yv22FjfBZS/jl94A==", + "dev": true, + "license": "MIT", + "dependencies": { + "sparkles": "^2.1.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/gulp-cli/node_modules/gulplog": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-2.2.0.tgz", + "integrity": "sha512-V2FaKiOhpR3DRXZuYdRLn/qiY0yI5XmqbTKrYbdemJ+xOh2d2MOweI/XFgMzd/9+1twdvMwllnZbWZNJ+BOm4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "glogg": "^2.2.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/gulp-cli/node_modules/sparkles": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-2.1.0.tgz", + "integrity": "sha512-r7iW1bDw8R/cFifrD3JnQJX0K1jqT0kprL48BiBpLZLJPmAm34zsVBsK5lc7HirZYZqMW65dOXZgbAGt/I6frg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/gulp-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/gulp-concat": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", + "integrity": "sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=", + "dev": true, + "dependencies": { + "concat-with-sourcemaps": "^1.0.0", + "through2": "^2.0.0", + "vinyl": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-htmlmin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/gulp-htmlmin/-/gulp-htmlmin-5.0.1.tgz", + "integrity": "sha512-ASlyDPZOSKjHYUifYV0rf9JPDflN9IRIb8lw2vRqtYMC4ljU3zAmnnaVXwFQ3H+CfXxZSUesZ2x7jrnPJu93jA==", + "dev": true, + "dependencies": { + "html-minifier": "^3.5.20", + "plugin-error": "^1.0.1", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 6.0" + } + }, + "node_modules/gulp-if": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-3.0.0.tgz", + "integrity": "sha512-fCUEngzNiEZEK2YuPm+sdMpO6ukb8+/qzbGfJBXyNOXz85bCG7yBI+pPSl+N90d7gnLvMsarthsAImx0qy7BAw==", + "dev": true, + "dependencies": { + "gulp-match": "^1.1.0", + "ternary-stream": "^3.0.0", + "through2": "^3.0.1" + } + }, + "node_modules/gulp-if/node_modules/through2": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", + "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==", + "dev": true, + "dependencies": { + "readable-stream": "2 || 3" + } + }, + "node_modules/gulp-less": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/gulp-less/-/gulp-less-5.0.0.tgz", + "integrity": "sha512-W2I3TewO/By6UZsM/wJG3pyK5M6J0NYmJAAhwYXQHR+38S0iDtZasmUgFCH3CQj+pQYw/PAIzxvFvwtEXz1HhQ==", + "dev": true, + "dependencies": { + "less": "^3.7.1 || ^4.0.0", + "object-assign": "^4.0.1", + "plugin-error": "^1.0.0", + "replace-ext": "^2.0.0", + "through2": "^4.0.0", + "vinyl-sourcemaps-apply": "^0.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/gulp-less/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gulp-less/node_modules/replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/gulp-less/node_modules/through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/gulp-match": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz", + "integrity": "sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==", + "dev": true, + "dependencies": { + "minimatch": "^3.0.3" + } + }, + "node_modules/gulp-print": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/gulp-print/-/gulp-print-5.0.2.tgz", + "integrity": "sha512-iIpHMzC/b3gFvVXOfP9Jk94SWGIsDLVNUrxULRleQev+08ug07mh84b1AOlW6QDQdmInQiqDFqJN1UvhU2nXdg==", + "dev": true, + "dependencies": { + "ansi-colors": "^3.2.4", + "fancy-log": "^1.3.3", + "map-stream": "0.0.7", + "vinyl": "^2.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/gulp-print/node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/gulp-print/node_modules/map-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", + "integrity": "sha1-ih8HiW2CsQkmvTdEokIACfiJdKg=", + "dev": true + }, + "node_modules/gulp-sass": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/gulp-sass/-/gulp-sass-6.0.1.tgz", + "integrity": "sha512-4wonidxB8lGPHvahelpGavUBJAuERSl+OIVxPCyQthK4lSJhZ/u3/qjFcyAtnMIXDl6fXTn34H4BXsN7gt54kQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.clonedeep": "^4.5.0", + "picocolors": "^1.0.0", + "plugin-error": "^1.0.1", + "replace-ext": "^2.0.0", + "strip-ansi": "^6.0.1", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/gulp-sass/node_modules/replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/gulp-terser": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/gulp-terser/-/gulp-terser-2.1.0.tgz", + "integrity": "sha512-lQ3+JUdHDVISAlUIUSZ/G9Dz/rBQHxOiYDQ70IVWFQeh4b33TC1MCIU+K18w07PS3rq/CVc34aQO4SUbdaNMPQ==", + "dev": true, + "dependencies": { + "plugin-error": "^1.0.1", + "terser": "^5.9.0", + "through2": "^4.0.2", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gulp-terser/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gulp-terser/node_modules/through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", + "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "dev": true, + "dependencies": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "bin": { + "html-minifier": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/html-minifier/node_modules/clean-css": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", + "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/html-minifier/node_modules/commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", + "dev": true + }, + "node_modules/html-minifier/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true, + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/immutable": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.5.tgz", + "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==", + "dev": true, + "license": "MIT" + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "license": "ISC" + }, + "node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-3.0.0.tgz", + "integrity": "sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-path-inside": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", + "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jquery": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-4.0.0.tgz", + "integrity": "sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==", + "license": "MIT" + }, + "node_modules/js-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz", + "integrity": "sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/last-run": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-2.0.0.tgz", + "integrity": "sha512-j+y6WhTLN4Itnf9j5ZQos1BGPCS8DAwmgMroR3OzfxAsBxam0hMw7J8M3KqZl0pLQJ1jNnwIexg5DYpC/ctwEQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/lead": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-4.0.0.tgz", + "integrity": "sha512-DpMa59o5uGUWWjruMp71e6knmwKU3jRBBn1kjuLWN9EeIOxNeSAwvHf03WIl8g/ZMR2oSQC9ej3yeLBwdDc/pg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/less": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.1.tgz", + "integrity": "sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw==", + "dev": true, + "dependencies": { + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^1.10.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^2.5.2", + "source-map": "~0.6.0" + } + }, + "node_modules/less/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/liftoff": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-5.0.1.tgz", + "integrity": "sha512-wwLXMbuxSF8gMvubFcFRp56lkFV69twvbU5vDPbaw+Q+/rF8j0HKjGbIdlSi+LuJm9jf7k9PB+nTxnsLMPcv2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "extend": "^3.0.2", + "findup-sync": "^5.0.0", + "fined": "^2.0.0", + "flagged-respawn": "^2.0.0", + "is-plain-object": "^5.0.0", + "rechoir": "^0.8.0", + "resolve": "^1.20.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/liftoff/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==", + "dev": true + }, + "node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=", + "dev": true + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "optional": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mute-stdout": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-2.0.0.tgz", + "integrity": "sha512-32GSKM3Wyc8dg/p39lWPKYu8zci9mJFzV1Np9Of0ZEpe6Fhssn/FbI7ywAMd40uX+p3ZKh3T5EeCFv81qS3HmQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/needle": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", + "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", + "dev": true, + "optional": true, + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/needle/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "optional": true + }, + "node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.1" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/now-and-later": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-3.0.0.tgz", + "integrity": "sha512-pGO4pzSdaxhWTGkfSfHx3hVzJVslFPwBp2Myq9MYN/ChfJZF87ochMAXnvz6/58RJSf5ik2q9tXprBBrk2cpcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/p-map": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz", + "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "dev": true, + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-root-regex": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/plugin-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", + "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + "dev": true, + "dependencies": { + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/presentable-error": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/presentable-error/-/presentable-error-0.0.1.tgz", + "integrity": "sha512-E6rsNU1QNJgB3sjj7OANinGncFKuK+164sLXw1/CqBjj/EkXSoSdHCtWQGBNlREIGLnL7IEUEGa08YFVUbrhVg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true, + "optional": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "node_modules/replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/replace-homedir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-2.0.0.tgz", + "integrity": "sha512-bgEuQQ/BHW0XkkJtawzrfzHFSN70f/3cNOiHa2QsYxqrjaC30X1k74FJ6xswVBP0sr0SpGIdVFuPwfrYziVeyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.12", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz", + "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-options": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-2.0.0.tgz", + "integrity": "sha512-/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A==", + "dev": true, + "license": "MIT", + "dependencies": { + "value-or-function": "^4.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sass": { + "version": "1.99.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.99.0.tgz", + "integrity": "sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^4.0.0", + "immutable": "^5.1.5", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" + } + }, + "node_modules/sass/node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/sass/node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true, + "optional": true + }, + "node_modules/semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true, + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/semver-greatest-satisfied-range": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-2.0.0.tgz", + "integrity": "sha512-lH3f6kMbwyANB7HuOWRMlLCa2itaCrZJ+SAqqkSZrZKO/cAsk2EOyaKHUtNkVLFyFW9pct22SFesFp3Z7zpA0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "sver": "^1.8.3" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-composer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-composer/-/stream-composer-1.0.2.tgz", + "integrity": "sha512-bnBselmwfX5K10AH6L4c8+S5lgZMWI7ZYrz2rvYjCPB2DIMC4Ig8OpxGpNJSxRZ58oti7y1IcNvjBAz9vW5m4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "streamx": "^2.13.2" + } + }, + "node_modules/stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true, + "license": "MIT" + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "node_modules/streamx": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.25.0.tgz", + "integrity": "sha512-0nQuG6jf1w+wddNEEXCF4nTg3LtufWINB5eFEN+5TNZW7KWJp6x87+JFL43vaAUPyCfH1wID+mNVyW6OHtFamg==", + "dev": true, + "license": "MIT", + "dependencies": { + "events-universal": "^1.0.0", + "fast-fifo": "^1.3.2", + "text-decoder": "^1.1.0" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sver": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/sver/-/sver-1.8.4.tgz", + "integrity": "sha512-71o1zfzyawLfIWBOmw8brleKyvnbn73oVHNCsu51uPMz/HWiKkkXsI31JjHW5zqXEqnPYkIiHd8ZmL7FCimLEA==", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "semver": "^6.3.0" + } + }, + "node_modules/sver/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/teex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz", + "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "streamx": "^2.12.5" + } + }, + "node_modules/ternary-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-3.0.0.tgz", + "integrity": "sha512-oIzdi+UL/JdktkT+7KU5tSIQjj8pbShj3OASuvDEhm0NT5lppsm7aXWAmAq4/QMaBIyfuEcNLbAQA+HpaISobQ==", + "dev": true, + "dependencies": { + "duplexify": "^4.1.1", + "fork-stream": "^0.0.4", + "merge-stream": "^2.0.0", + "through2": "^3.0.1" + } + }, + "node_modules/ternary-stream/node_modules/duplexify": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.1.tgz", + "integrity": "sha512-DY3xVEmVHTv1wSzKNbwoU6nVjzI369Y6sPoqfYr0/xlx3IdX2n94xIszTcjPO8W8ZIv0Wb0PXNcjuZyT4wiICA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" + } + }, + "node_modules/ternary-stream/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/ternary-stream/node_modules/through2": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", + "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==", + "dev": true, + "dependencies": { + "readable-stream": "2 || 3" + } + }, + "node_modules/terser": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz", + "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "dev": true, + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "acorn": "^8.5.0" + }, + "peerDependenciesMeta": { + "acorn": { + "optional": true + } + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/text-decoder": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.7.tgz", + "integrity": "sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "b4a": "^1.6.4" + } + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tinymce": { + "version": "6.8.6", + "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-6.8.6.tgz", + "integrity": "sha512-++XYEs8lKWvZxDCjrr8Baiw7KiikraZ5JkLMg6EdnUVNKJui0IsrAADj5MsyUeFkcEryfn2jd3p09H7REvewyg==", + "license": "MIT" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-through": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-3.0.0.tgz", + "integrity": "sha512-y8MN937s/HVhEoBU1SxfHC+wxCHkV1a9gW8eAdTadYh/bGyesZIVcbjI+mSpFbSVwQici/XjBjuUyri1dnXwBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "streamx": "^2.12.5" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", + "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "dev": true, + "dependencies": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/uglify-js/node_modules/commander": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "dev": true + }, + "node_modules/uglify-js/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/undertaker": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-2.0.0.tgz", + "integrity": "sha512-tO/bf30wBbTsJ7go80j0RzA2rcwX6o7XPBpeFcb+jzoeb4pfMM2zUeSDIkY1AWqeZabWxaQZ/h8N9t35QKDLPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "bach": "^2.0.1", + "fast-levenshtein": "^3.0.0", + "last-run": "^2.0.0", + "undertaker-registry": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/undertaker-registry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-2.0.0.tgz", + "integrity": "sha512-+hhVICbnp+rlzZMgxXenpvTxpuvA67Bfgtt+O9WOE5jo7w/dyiF1VmoZVIHvP2EkUjsyKyTwYKlLhA+j47m1Ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=", + "dev": true + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "node_modules/v8flags": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-4.0.1.tgz", + "integrity": "sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/value-or-function": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-4.0.0.tgz", + "integrity": "sha512-aeVK81SIuT6aMJfNo9Vte8Dw0/FZINGBV8BfCraGtqVxIeLAEhJyoWs8SmvRVmXfGss2PmmOwZCuBPbZR+IYWg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/vinyl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz", + "integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-contents": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/vinyl-contents/-/vinyl-contents-2.0.0.tgz", + "integrity": "sha512-cHq6NnGyi2pZ7xwdHSW1v4Jfnho4TEGtxZHw01cmnc8+i7jgR6bRnED/LbrKan/Q7CvVLbnvA5OepnhbpjBZ5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^5.0.0", + "vinyl": "^3.0.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/vinyl-contents/node_modules/replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/vinyl-contents/node_modules/vinyl": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.1.tgz", + "integrity": "sha512-0QwqXteBNXgnLCdWdvPQBX6FXRHtIH3VhJPTd5Lwn28tJXc34YqSCWUmkOvtJHBmB3gGoPtrOKk3Ts8/kEZ9aA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^2.1.2", + "remove-trailing-separator": "^1.1.0", + "replace-ext": "^2.0.0", + "teex": "^1.0.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/vinyl-fs": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-4.0.2.tgz", + "integrity": "sha512-XRFwBLLTl8lRAOYiBqxY279wY46tVxLaRhSwo3GzKEuLz1giffsOquWWboD/haGf5lx+JyTigCFfe7DWHoARIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fs-mkdirp-stream": "^2.0.1", + "glob-stream": "^8.0.3", + "graceful-fs": "^4.2.11", + "iconv-lite": "^0.6.3", + "is-valid-glob": "^1.0.0", + "lead": "^4.0.0", + "normalize-path": "3.0.0", + "resolve-options": "^2.0.0", + "stream-composer": "^1.0.2", + "streamx": "^2.14.0", + "to-through": "^3.0.0", + "value-or-function": "^4.0.0", + "vinyl": "^3.0.1", + "vinyl-sourcemap": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/vinyl-fs/node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/vinyl-fs/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/vinyl-fs/node_modules/replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/vinyl-fs/node_modules/vinyl": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.1.tgz", + "integrity": "sha512-0QwqXteBNXgnLCdWdvPQBX6FXRHtIH3VhJPTd5Lwn28tJXc34YqSCWUmkOvtJHBmB3gGoPtrOKk3Ts8/kEZ9aA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^2.1.2", + "remove-trailing-separator": "^1.1.0", + "replace-ext": "^2.0.0", + "teex": "^1.0.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/vinyl-sourcemap": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-2.0.0.tgz", + "integrity": "sha512-BAEvWxbBUXvlNoFQVFVHpybBbjW1r03WhohJzJDSfgrrK5xVYIDTan6xN14DlyImShgDRv2gl9qhM6irVMsV0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "convert-source-map": "^2.0.0", + "graceful-fs": "^4.2.10", + "now-and-later": "^3.0.0", + "streamx": "^2.12.5", + "vinyl": "^3.0.0", + "vinyl-contents": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/vinyl-sourcemap/node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/vinyl-sourcemap/node_modules/replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/vinyl-sourcemap/node_modules/vinyl": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.1.tgz", + "integrity": "sha512-0QwqXteBNXgnLCdWdvPQBX6FXRHtIH3VhJPTd5Lwn28tJXc34YqSCWUmkOvtJHBmB3gGoPtrOKk3Ts8/kEZ9aA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^2.1.2", + "remove-trailing-separator": "^1.1.0", + "replace-ext": "^2.0.0", + "teex": "^1.0.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/vinyl-sourcemaps-apply": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", + "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=", + "dev": true, + "dependencies": { + "source-map": "^0.5.1" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + } + }, + "dependencies": { + "@gulpjs/messages": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@gulpjs/messages/-/messages-1.1.0.tgz", + "integrity": "sha512-Ys9sazDatyTgZVb4xPlDufLweJ/Os2uHWOv+Caxvy2O85JcnT4M3vc73bi8pdLWlv3fdWQz3pdI9tVwo8rQQSg==", + "dev": true + }, + "@gulpjs/to-absolute-glob": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@gulpjs/to-absolute-glob/-/to-absolute-glob-4.0.0.tgz", + "integrity": "sha512-kjotm7XJrJ6v+7knhPaRgaT6q8F8K2jiafwYdNHLzmV0uGLuZY43FK6smNSHUPrhq5kX2slCUy+RGG/xGqmIKA==", + "dev": true, + "requires": { + "is-negated-glob": "^1.0.0" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@parcel/watcher": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz", + "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==", + "dev": true, + "optional": true, + "requires": { + "@parcel/watcher-android-arm64": "2.5.6", + "@parcel/watcher-darwin-arm64": "2.5.6", + "@parcel/watcher-darwin-x64": "2.5.6", + "@parcel/watcher-freebsd-x64": "2.5.6", + "@parcel/watcher-linux-arm-glibc": "2.5.6", + "@parcel/watcher-linux-arm-musl": "2.5.6", + "@parcel/watcher-linux-arm64-glibc": "2.5.6", + "@parcel/watcher-linux-arm64-musl": "2.5.6", + "@parcel/watcher-linux-x64-glibc": "2.5.6", + "@parcel/watcher-linux-x64-musl": "2.5.6", + "@parcel/watcher-win32-arm64": "2.5.6", + "@parcel/watcher-win32-ia32": "2.5.6", + "@parcel/watcher-win32-x64": "2.5.6", + "detect-libc": "^2.0.3", + "is-glob": "^4.0.3", + "node-addon-api": "^7.0.0", + "picomatch": "^4.0.3" + }, + "dependencies": { + "picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "optional": true + } + } + }, + "@parcel/watcher-android-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz", + "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==", + "dev": true, + "optional": true + }, + "@parcel/watcher-darwin-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz", + "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==", + "dev": true, + "optional": true + }, + "@parcel/watcher-darwin-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz", + "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==", + "dev": true, + "optional": true + }, + "@parcel/watcher-freebsd-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz", + "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-arm-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz", + "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-arm-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz", + "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz", + "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-arm64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz", + "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-x64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz", + "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-x64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz", + "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==", + "dev": true, + "optional": true + }, + "@parcel/watcher-win32-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz", + "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==", + "dev": true, + "optional": true + }, + "@parcel/watcher-win32-ia32": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz", + "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==", + "dev": true, + "optional": true + }, + "@parcel/watcher-win32-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz", + "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==", + "dev": true, + "optional": true + }, + "@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true + }, + "ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "requires": { + "ansi-wrap": "^0.1.0" + } + }, + "ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=", + "dev": true, + "requires": { + "ansi-wrap": "0.1.0" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", + "dev": true + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", + "dev": true + }, + "array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "async-done": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-2.0.0.tgz", + "integrity": "sha512-j0s3bzYq9yKIVLKGE/tWlCpa3PfFLcrDZLTSVdnnCTGagXuXBJO4SsY9Xdk/fQBirCkH4evW5xOeJXqlAQFdsw==", + "dev": true, + "requires": { + "end-of-stream": "^1.4.4", + "once": "^1.4.0", + "stream-exhaust": "^1.0.2" + } + }, + "async-settle": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-2.0.0.tgz", + "integrity": "sha512-Obu/KE8FurfQRN6ODdHN9LuXqwC+JFIM9NRyZqJJ4ZfLJmIYN9Rg0/kb+wF70VV5+fJusTMQlJ1t5rF7J/ETdg==", + "dev": true, + "requires": { + "async-done": "^2.0.0" + } + }, + "b4a": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.8.0.tgz", + "integrity": "sha512-qRuSmNSkGQaHwNbM7J78Wwy+ghLEYF1zNrSeMxj4Kgw6y33O3mXcQ6Ie9fRvfU/YnxWkOchPXbaLb73TkIsfdg==", + "dev": true, + "requires": {} + }, + "bach": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/bach/-/bach-2.0.1.tgz", + "integrity": "sha512-A7bvGMGiTOxGMpNupYl9HQTf0FFDNF4VCmks4PJpFyN1AX2pdKuxuwdvUz2Hu388wcgp+OvGFNsumBfFNkR7eg==", + "dev": true, + "requires": { + "async-done": "^2.0.0", + "async-settle": "^2.0.0", + "now-and-later": "^3.0.0" + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "bare-events": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.2.tgz", + "integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==", + "dev": true, + "requires": {} + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true + }, + "bl": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", + "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", + "dev": true, + "requires": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "requires": { + "fill-range": "^7.1.1" + } + }, + "buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "dev": true, + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true + }, + "clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "dev": true + }, + "cloneable-readable": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.2.tgz", + "integrity": "sha512-Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + }, + "dependencies": { + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "copy-anything": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz", + "integrity": "sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ==", + "dev": true, + "requires": { + "is-what": "^3.12.0" + } + }, + "copy-props": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-4.0.0.tgz", + "integrity": "sha512-bVWtw1wQLzzKiYROtvNlbJgxgBYt2bMJpkCbKmXM3xyijvcjjWXEk5nyrrT3bgJ7ODb19ZohE2T0Y3FgNPyoTw==", + "dev": true, + "requires": { + "each-props": "^3.0.0", + "is-plain-object": "^5.0.0" + }, + "dependencies": { + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + } + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "del": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/del/-/del-8.0.1.tgz", + "integrity": "sha512-gPqh0mKTPvaUZGAuHbrBUYKZWBNAeHG7TU3QH5EhVwPMyKvmfJaNXhcD2jTcXsJRRcffuho4vaYweu80dRrMGA==", + "dev": true, + "requires": { + "globby": "^14.0.2", + "is-glob": "^4.0.3", + "is-path-cwd": "^3.0.0", + "is-path-inside": "^4.0.0", + "p-map": "^7.0.2", + "presentable-error": "^0.0.1", + "slash": "^5.1.0" + } + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true + }, + "detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true, + "optional": true + }, + "each-props": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-3.0.0.tgz", + "integrity": "sha512-IYf1hpuWrdzse/s/YJOrFmU15lyhSzxelNVAHTEG3DtP4QsLTWZUzcUL3HMXmKQxXpa4EIrBPpwRgj0aehdvAw==", + "dev": true, + "requires": { + "is-plain-object": "^5.0.0", + "object.defaults": "^1.1.0" + }, + "dependencies": { + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + } + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "optional": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true + }, + "escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true + }, + "events-universal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz", + "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==", + "dev": true, + "requires": { + "bare-events": "^2.7.0" + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "requires": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + } + }, + "fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "dev": true + }, + "fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + } + }, + "fast-levenshtein": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz", + "integrity": "sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==", + "dev": true, + "requires": { + "fastest-levenshtein": "^1.0.7" + } + }, + "fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true + }, + "fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "fg-loadcss": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fg-loadcss/-/fg-loadcss-3.1.0.tgz", + "integrity": "sha512-UgtXKza8nBUO6UWW4c+MOprRL4W5WbIkzPJafnw6y6f5jhA3FiSZkWz8eXeAeX+mC4A/qq0ByDLiAk6erNARaQ==" + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "findup-sync": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz", + "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.3", + "micromatch": "^4.0.4", + "resolve-dir": "^1.0.1" + } + }, + "fined": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-2.0.0.tgz", + "integrity": "sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^5.0.0", + "object.defaults": "^1.1.0", + "object.pick": "^1.3.0", + "parse-filepath": "^1.0.2" + }, + "dependencies": { + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + } + } + }, + "flagged-respawn": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-2.0.0.tgz", + "integrity": "sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==", + "dev": true + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true + }, + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "requires": { + "for-in": "^1.0.1" + } + }, + "fork-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", + "integrity": "sha1-24Sfznf2cIpfjzhq5TOgkHtUrnA=", + "dev": true + }, + "fs-mkdirp-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-2.0.1.tgz", + "integrity": "sha512-UTOY+59K6IA94tec8Wjqm0FSh5OVudGNB0NL/P6fB3HiE3bYOY3VYBGijsnOHNkQSwC1FKkU77pmq7xp9CskLw==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.8", + "streamx": "^2.12.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + } + } + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-stream": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-8.0.3.tgz", + "integrity": "sha512-fqZVj22LtFJkHODT+M4N1RJQ3TjnnQhfE9GwZI8qXscYarnhpip70poMldRnP8ipQ/w0B621kOhfc53/J9bd/A==", + "dev": true, + "requires": { + "@gulpjs/to-absolute-glob": "^4.0.0", + "anymatch": "^3.1.3", + "fastq": "^1.13.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "is-negated-glob": "^1.0.0", + "normalize-path": "^3.0.0", + "streamx": "^2.12.5" + }, + "dependencies": { + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + } + } + }, + "glob-watcher": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-6.0.0.tgz", + "integrity": "sha512-wGM28Ehmcnk2NqRORXFOTOR064L4imSw3EeOqU5bIwUf62eXGwg89WivH6VMahL8zlQHeodzvHpXplrqzrz3Nw==", + "dev": true, + "requires": { + "async-done": "^2.0.0", + "chokidar": "^3.5.3" + } + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + }, + "globby": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", + "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", + "dev": true, + "requires": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.3", + "ignore": "^7.0.3", + "path-type": "^6.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.3.0" + }, + "dependencies": { + "path-type": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", + "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.1.15", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", + "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "dev": true, + "optional": true + }, + "gulp": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-5.0.1.tgz", + "integrity": "sha512-PErok3DZSA5WGMd6XXV3IRNO0mlB+wW3OzhFJLEec1jSERg2j1bxJ6e5Fh6N6fn3FH2T9AP4UYNb/pYlADB9sA==", + "dev": true, + "requires": { + "glob-watcher": "^6.0.0", + "gulp-cli": "^3.1.0", + "undertaker": "^2.0.0", + "vinyl-fs": "^4.0.2" + } + }, + "gulp-clean-css": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-4.3.0.tgz", + "integrity": "sha512-mGyeT3qqFXTy61j0zOIciS4MkYziF2U594t2Vs9rUnpkEHqfu6aDITMp8xOvZcvdX61Uz3y1mVERRYmjzQF5fg==", + "dev": true, + "requires": { + "clean-css": "4.2.3", + "plugin-error": "1.0.1", + "through2": "3.0.1", + "vinyl-sourcemaps-apply": "0.2.1" + }, + "dependencies": { + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "through2": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", + "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==", + "dev": true, + "requires": { + "readable-stream": "2 || 3" + } + } + } + }, + "gulp-cli": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-3.1.0.tgz", + "integrity": "sha512-zZzwlmEsTfXcxRKiCHsdyjZZnFvXWM4v1NqBJSYbuApkvVKivjcmOS2qruAJ+PkEHLFavcDKH40DPc1+t12a9Q==", + "dev": true, + "requires": { + "@gulpjs/messages": "^1.1.0", + "chalk": "^4.1.2", + "copy-props": "^4.0.0", + "gulplog": "^2.2.0", + "interpret": "^3.1.1", + "liftoff": "^5.0.1", + "mute-stdout": "^2.0.0", + "replace-homedir": "^2.0.0", + "semver-greatest-satisfied-range": "^2.0.0", + "string-width": "^4.2.3", + "v8flags": "^4.0.0", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "glogg": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-2.2.0.tgz", + "integrity": "sha512-eWv1ds/zAlz+M1ioHsyKJomfY7jbDDPpwSkv14KQj89bycx1nvK5/2Cj/T9g7kzJcX5Bc7Yv22FjfBZS/jl94A==", + "dev": true, + "requires": { + "sparkles": "^2.1.0" + } + }, + "gulplog": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-2.2.0.tgz", + "integrity": "sha512-V2FaKiOhpR3DRXZuYdRLn/qiY0yI5XmqbTKrYbdemJ+xOh2d2MOweI/XFgMzd/9+1twdvMwllnZbWZNJ+BOm4A==", + "dev": true, + "requires": { + "glogg": "^2.2.0" + } + }, + "sparkles": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-2.1.0.tgz", + "integrity": "sha512-r7iW1bDw8R/cFifrD3JnQJX0K1jqT0kprL48BiBpLZLJPmAm34zsVBsK5lc7HirZYZqMW65dOXZgbAGt/I6frg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "gulp-concat": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", + "integrity": "sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=", + "dev": true, + "requires": { + "concat-with-sourcemaps": "^1.0.0", + "through2": "^2.0.0", + "vinyl": "^2.0.0" + } + }, + "gulp-htmlmin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/gulp-htmlmin/-/gulp-htmlmin-5.0.1.tgz", + "integrity": "sha512-ASlyDPZOSKjHYUifYV0rf9JPDflN9IRIb8lw2vRqtYMC4ljU3zAmnnaVXwFQ3H+CfXxZSUesZ2x7jrnPJu93jA==", + "dev": true, + "requires": { + "html-minifier": "^3.5.20", + "plugin-error": "^1.0.1", + "through2": "^2.0.3" + } + }, + "gulp-if": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-3.0.0.tgz", + "integrity": "sha512-fCUEngzNiEZEK2YuPm+sdMpO6ukb8+/qzbGfJBXyNOXz85bCG7yBI+pPSl+N90d7gnLvMsarthsAImx0qy7BAw==", + "dev": true, + "requires": { + "gulp-match": "^1.1.0", + "ternary-stream": "^3.0.0", + "through2": "^3.0.1" + }, + "dependencies": { + "through2": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", + "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==", + "dev": true, + "requires": { + "readable-stream": "2 || 3" + } + } + } + }, + "gulp-less": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/gulp-less/-/gulp-less-5.0.0.tgz", + "integrity": "sha512-W2I3TewO/By6UZsM/wJG3pyK5M6J0NYmJAAhwYXQHR+38S0iDtZasmUgFCH3CQj+pQYw/PAIzxvFvwtEXz1HhQ==", + "dev": true, + "requires": { + "less": "^3.7.1 || ^4.0.0", + "object-assign": "^4.0.1", + "plugin-error": "^1.0.0", + "replace-ext": "^2.0.0", + "through2": "^4.0.0", + "vinyl-sourcemaps-apply": "^0.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true + }, + "through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "requires": { + "readable-stream": "3" + } + } + } + }, + "gulp-match": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz", + "integrity": "sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==", + "dev": true, + "requires": { + "minimatch": "^3.0.3" + } + }, + "gulp-print": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/gulp-print/-/gulp-print-5.0.2.tgz", + "integrity": "sha512-iIpHMzC/b3gFvVXOfP9Jk94SWGIsDLVNUrxULRleQev+08ug07mh84b1AOlW6QDQdmInQiqDFqJN1UvhU2nXdg==", + "dev": true, + "requires": { + "ansi-colors": "^3.2.4", + "fancy-log": "^1.3.3", + "map-stream": "0.0.7", + "vinyl": "^2.2.0" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + }, + "map-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", + "integrity": "sha1-ih8HiW2CsQkmvTdEokIACfiJdKg=", + "dev": true + } + } + }, + "gulp-sass": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/gulp-sass/-/gulp-sass-6.0.1.tgz", + "integrity": "sha512-4wonidxB8lGPHvahelpGavUBJAuERSl+OIVxPCyQthK4lSJhZ/u3/qjFcyAtnMIXDl6fXTn34H4BXsN7gt54kQ==", + "dev": true, + "requires": { + "lodash.clonedeep": "^4.5.0", + "picocolors": "^1.0.0", + "plugin-error": "^1.0.1", + "replace-ext": "^2.0.0", + "strip-ansi": "^6.0.1", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "dependencies": { + "replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true + } + } + }, + "gulp-terser": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/gulp-terser/-/gulp-terser-2.1.0.tgz", + "integrity": "sha512-lQ3+JUdHDVISAlUIUSZ/G9Dz/rBQHxOiYDQ70IVWFQeh4b33TC1MCIU+K18w07PS3rq/CVc34aQO4SUbdaNMPQ==", + "dev": true, + "requires": { + "plugin-error": "^1.0.1", + "terser": "^5.9.0", + "through2": "^4.0.2", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "requires": { + "readable-stream": "3" + } + } + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", + "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "dev": true, + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": { + "clean-css": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", + "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true, + "optional": true + }, + "immutable": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.5.tgz", + "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "dev": true + }, + "is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "requires": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "requires": { + "hasown": "^2.0.2" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-path-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-3.0.0.tgz", + "integrity": "sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==", + "dev": true + }, + "is-path-inside": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", + "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "requires": { + "is-unc-path": "^1.0.0" + } + }, + "is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "requires": { + "unc-path-regex": "^0.1.2" + } + }, + "is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true + }, + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "jquery": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-4.0.0.tgz", + "integrity": "sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==" + }, + "js-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz", + "integrity": "sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==" + }, + "last-run": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-2.0.0.tgz", + "integrity": "sha512-j+y6WhTLN4Itnf9j5ZQos1BGPCS8DAwmgMroR3OzfxAsBxam0hMw7J8M3KqZl0pLQJ1jNnwIexg5DYpC/ctwEQ==", + "dev": true + }, + "lead": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-4.0.0.tgz", + "integrity": "sha512-DpMa59o5uGUWWjruMp71e6knmwKU3jRBBn1kjuLWN9EeIOxNeSAwvHf03WIl8g/ZMR2oSQC9ej3yeLBwdDc/pg==", + "dev": true + }, + "less": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.1.tgz", + "integrity": "sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw==", + "dev": true, + "requires": { + "copy-anything": "^2.0.1", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^2.5.2", + "parse-node-version": "^1.0.1", + "source-map": "~0.6.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + } + } + }, + "liftoff": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-5.0.1.tgz", + "integrity": "sha512-wwLXMbuxSF8gMvubFcFRp56lkFV69twvbU5vDPbaw+Q+/rF8j0HKjGbIdlSi+LuJm9jf7k9PB+nTxnsLMPcv2Q==", + "dev": true, + "requires": { + "extend": "^3.0.2", + "findup-sync": "^5.0.0", + "fined": "^2.0.0", + "flagged-respawn": "^2.0.0", + "is-plain-object": "^5.0.0", + "rechoir": "^0.8.0", + "resolve": "^1.20.0" + }, + "dependencies": { + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + } + } + }, + "lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==", + "dev": true + }, + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=", + "dev": true + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "optional": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "mute-stdout": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-2.0.0.tgz", + "integrity": "sha512-32GSKM3Wyc8dg/p39lWPKYu8zci9mJFzV1Np9Of0ZEpe6Fhssn/FbI7ywAMd40uX+p3ZKh3T5EeCFv81qS3HmQ==", + "dev": true + }, + "needle": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", + "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", + "dev": true, + "optional": true, + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "optional": true + } + } + }, + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "requires": { + "lower-case": "^1.1.1" + } + }, + "node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, + "optional": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "now-and-later": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-3.0.0.tgz", + "integrity": "sha512-pGO4pzSdaxhWTGkfSfHx3hVzJVslFPwBp2Myq9MYN/ChfJZF87ochMAXnvz6/58RJSf5ik2q9tXprBBrk2cpcg==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dev": true, + "requires": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "p-map": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz", + "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==", + "dev": true + }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "dev": true, + "requires": { + "no-case": "^2.2.0" + } + }, + "parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + } + }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "requires": { + "path-root-regex": "^0.1.0" + } + }, + "path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "optional": true + }, + "plugin-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", + "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" + } + }, + "presentable-error": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/presentable-error/-/presentable-error-0.0.1.tgz", + "integrity": "sha512-E6rsNU1QNJgB3sjj7OANinGncFKuK+164sLXw1/CqBjj/EkXSoSdHCtWQGBNlREIGLnL7IEUEGa08YFVUbrhVg==", + "dev": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true, + "optional": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + } + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "requires": { + "resolve": "^1.20.0" + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "dev": true + }, + "replace-homedir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-2.0.0.tgz", + "integrity": "sha512-bgEuQQ/BHW0XkkJtawzrfzHFSN70f/3cNOiHa2QsYxqrjaC30X1k74FJ6xswVBP0sr0SpGIdVFuPwfrYziVeyw==", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "resolve": { + "version": "1.22.12", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz", + "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, + "resolve-options": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-2.0.0.tgz", + "integrity": "sha512-/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A==", + "dev": true, + "requires": { + "value-or-function": "^4.0.0" + } + }, + "reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sass": { + "version": "1.99.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.99.0.tgz", + "integrity": "sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==", + "dev": true, + "requires": { + "@parcel/watcher": "^2.4.1", + "chokidar": "^4.0.0", + "immutable": "^5.1.5", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "dependencies": { + "chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "requires": { + "readdirp": "^4.0.1" + } + }, + "readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "dev": true + } + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true, + "optional": true + }, + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true, + "optional": true + }, + "semver-greatest-satisfied-range": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-2.0.0.tgz", + "integrity": "sha512-lH3f6kMbwyANB7HuOWRMlLCa2itaCrZJ+SAqqkSZrZKO/cAsk2EOyaKHUtNkVLFyFW9pct22SFesFp3Z7zpA0g==", + "dev": true, + "requires": { + "sver": "^1.8.3" + } + }, + "slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "stream-composer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-composer/-/stream-composer-1.0.2.tgz", + "integrity": "sha512-bnBselmwfX5K10AH6L4c8+S5lgZMWI7ZYrz2rvYjCPB2DIMC4Ig8OpxGpNJSxRZ58oti7y1IcNvjBAz9vW5m4w==", + "dev": true, + "requires": { + "streamx": "^2.13.2" + } + }, + "stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "streamx": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.25.0.tgz", + "integrity": "sha512-0nQuG6jf1w+wddNEEXCF4nTg3LtufWINB5eFEN+5TNZW7KWJp6x87+JFL43vaAUPyCfH1wID+mNVyW6OHtFamg==", + "dev": true, + "requires": { + "events-universal": "^1.0.0", + "fast-fifo": "^1.3.2", + "text-decoder": "^1.1.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "sver": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/sver/-/sver-1.8.4.tgz", + "integrity": "sha512-71o1zfzyawLfIWBOmw8brleKyvnbn73oVHNCsu51uPMz/HWiKkkXsI31JjHW5zqXEqnPYkIiHd8ZmL7FCimLEA==", + "dev": true, + "requires": { + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "optional": true + } + } + }, + "teex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz", + "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==", + "dev": true, + "requires": { + "streamx": "^2.12.5" + } + }, + "ternary-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-3.0.0.tgz", + "integrity": "sha512-oIzdi+UL/JdktkT+7KU5tSIQjj8pbShj3OASuvDEhm0NT5lppsm7aXWAmAq4/QMaBIyfuEcNLbAQA+HpaISobQ==", + "dev": true, + "requires": { + "duplexify": "^4.1.1", + "fork-stream": "^0.0.4", + "merge-stream": "^2.0.0", + "through2": "^3.0.1" + }, + "dependencies": { + "duplexify": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.1.tgz", + "integrity": "sha512-DY3xVEmVHTv1wSzKNbwoU6nVjzI369Y6sPoqfYr0/xlx3IdX2n94xIszTcjPO8W8ZIv0Wb0PXNcjuZyT4wiICA==", + "dev": true, + "requires": { + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "through2": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", + "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==", + "dev": true, + "requires": { + "readable-stream": "2 || 3" + } + } + } + }, + "terser": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz", + "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "text-decoder": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.7.tgz", + "integrity": "sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==", + "dev": true, + "requires": { + "b4a": "^1.6.4" + } + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", + "dev": true + }, + "tinymce": { + "version": "6.8.6", + "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-6.8.6.tgz", + "integrity": "sha512-++XYEs8lKWvZxDCjrr8Baiw7KiikraZ5JkLMg6EdnUVNKJui0IsrAADj5MsyUeFkcEryfn2jd3p09H7REvewyg==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "to-through": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-3.0.0.tgz", + "integrity": "sha512-y8MN937s/HVhEoBU1SxfHC+wxCHkV1a9gW8eAdTadYh/bGyesZIVcbjI+mSpFbSVwQici/XjBjuUyri1dnXwBw==", + "dev": true, + "requires": { + "streamx": "^2.12.5" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", + "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "dev": true, + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true + }, + "undertaker": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-2.0.0.tgz", + "integrity": "sha512-tO/bf30wBbTsJ7go80j0RzA2rcwX6o7XPBpeFcb+jzoeb4pfMM2zUeSDIkY1AWqeZabWxaQZ/h8N9t35QKDLPQ==", + "dev": true, + "requires": { + "bach": "^2.0.1", + "fast-levenshtein": "^3.0.0", + "last-run": "^2.0.0", + "undertaker-registry": "^2.0.0" + } + }, + "undertaker-registry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-2.0.0.tgz", + "integrity": "sha512-+hhVICbnp+rlzZMgxXenpvTxpuvA67Bfgtt+O9WOE5jo7w/dyiF1VmoZVIHvP2EkUjsyKyTwYKlLhA+j47m1Ew==", + "dev": true + }, + "unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "v8flags": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-4.0.1.tgz", + "integrity": "sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg==", + "dev": true + }, + "value-or-function": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-4.0.0.tgz", + "integrity": "sha512-aeVK81SIuT6aMJfNo9Vte8Dw0/FZINGBV8BfCraGtqVxIeLAEhJyoWs8SmvRVmXfGss2PmmOwZCuBPbZR+IYWg==", + "dev": true + }, + "vinyl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz", + "integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + }, + "vinyl-contents": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/vinyl-contents/-/vinyl-contents-2.0.0.tgz", + "integrity": "sha512-cHq6NnGyi2pZ7xwdHSW1v4Jfnho4TEGtxZHw01cmnc8+i7jgR6bRnED/LbrKan/Q7CvVLbnvA5OepnhbpjBZ5Q==", + "dev": true, + "requires": { + "bl": "^5.0.0", + "vinyl": "^3.0.0" + }, + "dependencies": { + "replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true + }, + "vinyl": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.1.tgz", + "integrity": "sha512-0QwqXteBNXgnLCdWdvPQBX6FXRHtIH3VhJPTd5Lwn28tJXc34YqSCWUmkOvtJHBmB3gGoPtrOKk3Ts8/kEZ9aA==", + "dev": true, + "requires": { + "clone": "^2.1.2", + "remove-trailing-separator": "^1.1.0", + "replace-ext": "^2.0.0", + "teex": "^1.0.1" + } + } + } + }, + "vinyl-fs": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-4.0.2.tgz", + "integrity": "sha512-XRFwBLLTl8lRAOYiBqxY279wY46tVxLaRhSwo3GzKEuLz1giffsOquWWboD/haGf5lx+JyTigCFfe7DWHoARIA==", + "dev": true, + "requires": { + "fs-mkdirp-stream": "^2.0.1", + "glob-stream": "^8.0.3", + "graceful-fs": "^4.2.11", + "iconv-lite": "^0.6.3", + "is-valid-glob": "^1.0.0", + "lead": "^4.0.0", + "normalize-path": "3.0.0", + "resolve-options": "^2.0.0", + "stream-composer": "^1.0.2", + "streamx": "^2.14.0", + "to-through": "^3.0.0", + "value-or-function": "^4.0.0", + "vinyl": "^3.0.1", + "vinyl-sourcemap": "^2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true + }, + "vinyl": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.1.tgz", + "integrity": "sha512-0QwqXteBNXgnLCdWdvPQBX6FXRHtIH3VhJPTd5Lwn28tJXc34YqSCWUmkOvtJHBmB3gGoPtrOKk3Ts8/kEZ9aA==", + "dev": true, + "requires": { + "clone": "^2.1.2", + "remove-trailing-separator": "^1.1.0", + "replace-ext": "^2.0.0", + "teex": "^1.0.1" + } + } + } + }, + "vinyl-sourcemap": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-2.0.0.tgz", + "integrity": "sha512-BAEvWxbBUXvlNoFQVFVHpybBbjW1r03WhohJzJDSfgrrK5xVYIDTan6xN14DlyImShgDRv2gl9qhM6irVMsV0Q==", + "dev": true, + "requires": { + "convert-source-map": "^2.0.0", + "graceful-fs": "^4.2.10", + "now-and-later": "^3.0.0", + "streamx": "^2.12.5", + "vinyl": "^3.0.0", + "vinyl-contents": "^2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true + }, + "vinyl": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.1.tgz", + "integrity": "sha512-0QwqXteBNXgnLCdWdvPQBX6FXRHtIH3VhJPTd5Lwn28tJXc34YqSCWUmkOvtJHBmB3gGoPtrOKk3Ts8/kEZ9aA==", + "dev": true, + "requires": { + "clone": "^2.1.2", + "remove-trailing-separator": "^1.1.0", + "replace-ext": "^2.0.0", + "teex": "^1.0.1" + } + } + } + }, + "vinyl-sourcemaps-apply": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", + "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=", + "dev": true, + "requires": { + "source-map": "^0.5.1" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } +} diff --git a/Fuchs/package.json b/Fuchs/package.json new file mode 100644 index 0000000..0001e6d --- /dev/null +++ b/Fuchs/package.json @@ -0,0 +1,24 @@ +{ + "name": "fuchs", + "version": "1.1.0", + "dependencies": { + "fg-loadcss": "3.1.0", + "jquery": "4.0.0", + "js-cookie": "3.0.1", + "tinymce": "6.8.6" + }, + "devDependencies": { + "del": "8.0.1", + "gulp": "5.0.1", + "gulp-clean-css": "^4.3.0", + "gulp-concat": "2.6.1", + "gulp-htmlmin": "5.0.1", + "gulp-if": "3.0.0", + "gulp-less": "5.0.0", + "gulp-print": "5.0.2", + "gulp-sass": "6.0.1", + "gulp-terser": "2.1.0", + "merge-stream": "^2.0.0", + "sass": "^1.99.0" + } +} diff --git a/Fuchs/tmp/DebugDetail.txt b/Fuchs/tmp/DebugDetail.txt new file mode 100644 index 0000000..a747a6d --- /dev/null +++ b/Fuchs/tmp/DebugDetail.txt @@ -0,0 +1,16 @@ +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(wHmaN) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(wHmaN) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(wHmaN) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(8MRDN) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(ylvP9) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(ylvP9) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(ylvP9) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(KS7pN) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(KS7pN) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(KS7pN) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(g9IFa) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(g9IFa) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(g9IFa) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(g9IFa) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(g9IFa) - True +28.07.2021 10:29:52: Update__entitytable - lock received for ServiceRequest(g9IFa) - True diff --git a/Fuchs/tmp/DebugLog.txt b/Fuchs/tmp/DebugLog.txt new file mode 100644 index 0000000..361498c --- /dev/null +++ b/Fuchs/tmp/DebugLog.txt @@ -0,0 +1,116 @@ +2021.05.17 18:58:40 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(yXGXl) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 173 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 126 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 215 + at fds.fds_MFR_Client.VB$StateMachine_13_Update__entitytable.MoveNext() in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 288 +2021.05.17 19:06:13 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(TlnnQ) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 173 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 126 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) + at fds.fds_MFR_Client.VB$StateMachine_13_Update__entitytable.MoveNext() +2021.05.17 20:01:44 - Update__entitytable - Object reference not set to an instance of an object. for ServiceRequest(91Uig) + Data: at fds.fds_MFR_Client.VB$StateMachine_13_Update__entitytable.MoveNext() in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 290 +2021.05.17 20:03:18 - Update__entitytable - Object reference not set to an instance of an object. for ServiceRequest(1QWCs) + Data: at fds.fds_MFR_Client.VB$StateMachine_13_Update__entitytable.MoveNext() in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 290 +2021.07.08 10:22:00 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(cXrt5) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 173 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 126 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 237 + at fds.fds_MFR_Client.VB$StateMachine_13_Update__entitytable.MoveNext() in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 310 +2021.07.08 10:30:17 - Update__entitytable - Unable to cast object of type 'System.CultureAwareComparer' to type 'System.Collections.Generic.IEqualityComparer`1[System.Char]'. for ServiceRequest(zME9r) + Data: at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 237 + at fds.fds_MFR_Client.VB$StateMachine_13_Update__entitytable.MoveNext() in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 310 +2021.07.08 10:43:18 - Update__entitytable - Ungültige Konvertierung von Typ JArray in Typ Boolean. for ServiceRequest(CYssw) + Data: at Microsoft.VisualBasic.CompilerServices.Conversions.ToBoolean(Object Value) + at fds.fds_MFR_Client.VB$StateMachine_13_Update__entitytable.MoveNext() +2021.07.08 10:57:10 - Update__entitytable - Ungültige Konvertierung von Typ JArray in Typ Boolean. for ServiceRequest(jyiKo) + Data: at Microsoft.VisualBasic.CompilerServices.Conversions.ToBoolean(Object Value) + at fds.fds_MFR_Client.VB$StateMachine_13_Update__entitytable.MoveNext() +2021.07.28 14:09:47 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(KvsmQ) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 177 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 130 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 238 + at fds.fds_MFR_Client.VB$StateMachine_14_Update__entitytable.MoveNext() in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 365 +2021.07.28 14:14:44 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(JRn4I) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 177 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 130 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 238 + at fds.fds_MFR_Client.VB$StateMachine_14_Update__entitytable.MoveNext() in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 366 +2021.07.28 14:16:08 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(sxisl) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 177 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 130 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 238 + at fds.fds_MFR_Client.VB$StateMachine_14_Update__entitytable.MoveNext() in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 366 +2021.07.28 14:19:31 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(f4Hu8) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 177 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 130 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) + at fds.fds_MFR_Client.VB$StateMachine_14_Update__entitytable.MoveNext() +2021.07.28 14:22:54 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(LoG65) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 177 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 130 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) + at fds.fds_MFR_Client.VB$StateMachine_14_Update__entitytable.MoveNext() +2021.07.28 14:23:20 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(TSQu5) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 177 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 130 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) + at fds.fds_MFR_Client.VB$StateMachine_14_Update__entitytable.MoveNext() +2021.07.28 14:25:25 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(XVRqF) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(IRestResponse response, String location, String customMessage) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 177 + at MFR_RESTClient.MFRClient.Execute(IRestRequest request, String message, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 130 + at MFR_RESTClient.MFRClient.ReadOData(String address, Boolean throwerror_if_nOK) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 52 + at fds.fds_MFR_Client.ReadOData(String address, Boolean throwerror_if_nOK) + at fds.fds_MFR_Client.VB$StateMachine_14_Update__entitytable.MoveNext() +2021.08.02 11:38:58 - getDatevZip - mfr + Exception:Cannot set a value on node type 'Element'. + Stack: at System.Xml.XmlNode.set_Value(String value) + at fds.fds_mfr.createDATEV_document_xml(List`1 files) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 361 + at fds.fds_mfr.getDatevZip(Stream& stream, DateTime tgtdate, String mode, String AuthUser, Boolean DebugDetails) in C:\Users\sailo\Data\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 308 +2024.01.09 16:41:33 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(QTnse) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(RestResponse response, String location, String customMessage) in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 163 + at MFR_RESTClient.MFRClient.VB$StateMachine_25_Execute.MoveNext() in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 128 + --- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() + at MFR_RESTClient.MFRClient.VB$StateMachine_21_ReadOData.MoveNext() in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 51 + --- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() + at fds.fds_MFR_Client.VB$StateMachine_11_ReadOData.MoveNext() in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 567 + --- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() + at fds.fds_MFR_Client.VB$StateMachine_14_Update__entitytable.MoveNext() in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 702 +2024.01.09 16:41:59 - Update__entitytable - Exception of type 'MFR_RESTClient.MFRClientException' was thrown. for ServiceRequest(xZ9ds) + Data: at MFR_RESTClient.MFRClient.ThrowExceptionIfNecessary(RestResponse response, String location, String customMessage) in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 163 + at MFR_RESTClient.MFRClient.VB$StateMachine_25_Execute.MoveNext() in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 128 + --- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() + at MFR_RESTClient.MFRClient.VB$StateMachine_21_ReadOData.MoveNext() in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\MFR_RESTClient\MFRClient.vb:line 51 + --- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() + at fds.fds_MFR_Client.VB$StateMachine_11_ReadOData.MoveNext() in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 567 + --- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() + at fds.fds_MFR_Client.VB$StateMachine_14_Update__entitytable.MoveNext() in C:\Users\StefanOtt\My Programming\PWProjects\Fuchs\Fuchs_DataService\fds_mfr.vb:line 702 diff --git a/Fuchs/web/loadcss/loadCSS.js b/Fuchs/web/loadcss/loadCSS.js new file mode 100644 index 0000000..b6ee575 --- /dev/null +++ b/Fuchs/web/loadcss/loadCSS.js @@ -0,0 +1,88 @@ +/*! loadCSS. [c]2020 Filament Group, Inc. MIT License */ +(function(w){ + "use strict"; + /* exported loadCSS */ + var loadCSS = function( href, before, media, attributes ){ + // Arguments explained: + // `href` [REQUIRED] is the URL for your CSS file. + // `before` [OPTIONAL] is the element the script should use as a reference for injecting our stylesheet before + // By default, loadCSS attempts to inject the link after the last stylesheet or script in the DOM. However, you might desire a more specific location in your document. + // `media` [OPTIONAL] is the media type or query of the stylesheet. By default it will be 'all' + // `attributes` [OPTIONAL] is the Object of attribute name/attribute value pairs to set on the stylesheet's DOM Element. + var doc = w.document; + var ss = doc.createElement( "link" ); + var ref; + if( before ){ + ref = before; + } + else { + var refs = ( doc.body || doc.getElementsByTagName( "head" )[ 0 ] ).childNodes; + ref = refs[ refs.length - 1]; + } + + var sheets = doc.styleSheets; + // Set any of the provided attributes to the stylesheet DOM Element. + if( attributes ){ + for( var attributeName in attributes ){ + if( attributes.hasOwnProperty( attributeName ) ){ + ss.setAttribute( attributeName, attributes[attributeName] ); + } + } + } + ss.rel = "stylesheet"; + ss.href = href; + // temporarily set media to something inapplicable to ensure it'll fetch without blocking render + ss.media = "only x"; + + // wait until body is defined before injecting link. This ensures a non-blocking load in IE11. + function ready( cb ){ + if( doc.body ){ + return cb(); + } + setTimeout(function(){ + ready( cb ); + }); + } + // Inject link + // Note: the ternary preserves the existing behavior of "before" argument, but we could choose to change the argument to "after" in a later release and standardize on ref.nextSibling for all refs + // Note: `insertBefore` is used instead of `appendChild`, for safety re: http://www.paulirish.com/2011/surefire-dom-element-insertion/ + ready( function(){ + ref.parentNode.insertBefore( ss, ( before ? ref : ref.nextSibling ) ); + }); + // A method (exposed on return object for external use) that mimics onload by polling document.styleSheets until it includes the new sheet. + var onloadcssdefined = function( cb ){ + var resolvedHref = ss.href; + var i = sheets.length; + while( i-- ){ + if( sheets[ i ].href === resolvedHref ){ + return cb(); + } + } + setTimeout(function() { + onloadcssdefined( cb ); + }); + }; + + function loadCB(){ + if( ss.addEventListener ){ + ss.removeEventListener( "load", loadCB ); + } + ss.media = media || "all"; + } + + // once loaded, set link's media back to `all` so that the stylesheet applies once it loads + if( ss.addEventListener ){ + ss.addEventListener( "load", loadCB); + } + ss.onloadcssdefined = onloadcssdefined; + onloadcssdefined( loadCB ); + return ss; + }; + // commonjs + if( typeof exports !== "undefined" ){ + exports.loadCSS = loadCSS; + } + else { + w.loadCSS = loadCSS; + } +}( typeof global !== "undefined" ? global : this )); diff --git a/Fuchs/web/loadcss/onloadCSS.js b/Fuchs/web/loadcss/onloadCSS.js new file mode 100644 index 0000000..90aa916 --- /dev/null +++ b/Fuchs/web/loadcss/onloadCSS.js @@ -0,0 +1,29 @@ +/*! onloadCSS. (onload callback for loadCSS) [c]2017 Filament Group, Inc. MIT License */ +/* global navigator */ +/* exported onloadCSS */ +function onloadCSS( ss, callback ) { + var called; + function newcb(){ + if( !called && callback ){ + called = true; + callback.call( ss ); + } + } + if( ss.addEventListener ){ + ss.addEventListener( "load", newcb ); + } + if( ss.attachEvent ){ + ss.attachEvent( "onload", newcb ); + } + + // This code is for browsers that don’t support onload + // No support for onload (it'll bind but never fire): + // * Android 4.3 (Samsung Galaxy S4, Browserstack) + // * Android 4.2 Browser (Samsung Galaxy SIII Mini GT-I8200L) + // * Android 2.3 (Pantech Burst P9070) + + // Weak inference targets Android < 4.4 + if( "isApplicationInstalled" in navigator && "onloadcssdefined" in ss ) { + ss.onloadcssdefined( newcb ); + } +} diff --git a/Fuchs/web/loadcss/onloadCSS_Array.js b/Fuchs/web/loadcss/onloadCSS_Array.js new file mode 100644 index 0000000..6ad15a9 --- /dev/null +++ b/Fuchs/web/loadcss/onloadCSS_Array.js @@ -0,0 +1,55 @@ +/*! onloadCSS. (onload callback for loadCSS) [c]2017 Filament Group, Inc. MIT License */ +/* global navigator */ +/* exported onloadCSS */ +function onloadCSS(ss, options ) { + options = options || {}; + let f = function (si) { + return new Promise((resolve, reject) => { + let called, success = false; + function newcbs() { + if (!called) { + called = true; + resolve(true); + } + } function newcbe() { + if (!called && callback) { + called = true; + resolve(false); + } + } + if (ss.addEventListener) { + si.addEventListener('load', newcb); + } else if (ss.attachEvent) { + si.attachEvent('onload', newcb); + } + + // This code is for browsers that don’t support onload + // No support for onload (it'll bind but never fire): + // * Android 4.3 (Samsung Galaxy S4, Browserstack) + // * Android 4.2 Browser (Samsung Galaxy SIII Mini GT-I8200L) + // * Android 2.3 (Pantech Burst P9070) + + // Weak inference targets Android < 4.4 + if ('isApplicationInstalled' in navigator && 'onloadcssdefined' in ss) { + si.onloadcssdefined(newcb); + } + }); + }; + let fin = async function (success) { + if (success === true && typeof options.success === 'function') { + options.success(); + } else if (success === true && typeof options.success === 'object' && options.success instanceof Promise) { + await options.success(); + } + options.complete() + } + if (Array.isArray(ss)) { + let total = ss.length; + Promise.all(ss.map(f)).then(function (resolveValues) { + var ok = resolveValues.reduce((sum, x) => sum + (x === true ? 1 : 0)); + fin(total === ok); + }); + } else { + f(ss); + } +} diff --git a/Fuchs/web/loadcss2/loadCSS.js b/Fuchs/web/loadcss2/loadCSS.js new file mode 100644 index 0000000..b6ee575 --- /dev/null +++ b/Fuchs/web/loadcss2/loadCSS.js @@ -0,0 +1,88 @@ +/*! loadCSS. [c]2020 Filament Group, Inc. MIT License */ +(function(w){ + "use strict"; + /* exported loadCSS */ + var loadCSS = function( href, before, media, attributes ){ + // Arguments explained: + // `href` [REQUIRED] is the URL for your CSS file. + // `before` [OPTIONAL] is the element the script should use as a reference for injecting our stylesheet before + // By default, loadCSS attempts to inject the link after the last stylesheet or script in the DOM. However, you might desire a more specific location in your document. + // `media` [OPTIONAL] is the media type or query of the stylesheet. By default it will be 'all' + // `attributes` [OPTIONAL] is the Object of attribute name/attribute value pairs to set on the stylesheet's DOM Element. + var doc = w.document; + var ss = doc.createElement( "link" ); + var ref; + if( before ){ + ref = before; + } + else { + var refs = ( doc.body || doc.getElementsByTagName( "head" )[ 0 ] ).childNodes; + ref = refs[ refs.length - 1]; + } + + var sheets = doc.styleSheets; + // Set any of the provided attributes to the stylesheet DOM Element. + if( attributes ){ + for( var attributeName in attributes ){ + if( attributes.hasOwnProperty( attributeName ) ){ + ss.setAttribute( attributeName, attributes[attributeName] ); + } + } + } + ss.rel = "stylesheet"; + ss.href = href; + // temporarily set media to something inapplicable to ensure it'll fetch without blocking render + ss.media = "only x"; + + // wait until body is defined before injecting link. This ensures a non-blocking load in IE11. + function ready( cb ){ + if( doc.body ){ + return cb(); + } + setTimeout(function(){ + ready( cb ); + }); + } + // Inject link + // Note: the ternary preserves the existing behavior of "before" argument, but we could choose to change the argument to "after" in a later release and standardize on ref.nextSibling for all refs + // Note: `insertBefore` is used instead of `appendChild`, for safety re: http://www.paulirish.com/2011/surefire-dom-element-insertion/ + ready( function(){ + ref.parentNode.insertBefore( ss, ( before ? ref : ref.nextSibling ) ); + }); + // A method (exposed on return object for external use) that mimics onload by polling document.styleSheets until it includes the new sheet. + var onloadcssdefined = function( cb ){ + var resolvedHref = ss.href; + var i = sheets.length; + while( i-- ){ + if( sheets[ i ].href === resolvedHref ){ + return cb(); + } + } + setTimeout(function() { + onloadcssdefined( cb ); + }); + }; + + function loadCB(){ + if( ss.addEventListener ){ + ss.removeEventListener( "load", loadCB ); + } + ss.media = media || "all"; + } + + // once loaded, set link's media back to `all` so that the stylesheet applies once it loads + if( ss.addEventListener ){ + ss.addEventListener( "load", loadCB); + } + ss.onloadcssdefined = onloadcssdefined; + onloadcssdefined( loadCB ); + return ss; + }; + // commonjs + if( typeof exports !== "undefined" ){ + exports.loadCSS = loadCSS; + } + else { + w.loadCSS = loadCSS; + } +}( typeof global !== "undefined" ? global : this )); diff --git a/Fuchs/web/loadcss2/onloadCSS.js b/Fuchs/web/loadcss2/onloadCSS.js new file mode 100644 index 0000000..90aa916 --- /dev/null +++ b/Fuchs/web/loadcss2/onloadCSS.js @@ -0,0 +1,29 @@ +/*! onloadCSS. (onload callback for loadCSS) [c]2017 Filament Group, Inc. MIT License */ +/* global navigator */ +/* exported onloadCSS */ +function onloadCSS( ss, callback ) { + var called; + function newcb(){ + if( !called && callback ){ + called = true; + callback.call( ss ); + } + } + if( ss.addEventListener ){ + ss.addEventListener( "load", newcb ); + } + if( ss.attachEvent ){ + ss.attachEvent( "onload", newcb ); + } + + // This code is for browsers that don’t support onload + // No support for onload (it'll bind but never fire): + // * Android 4.3 (Samsung Galaxy S4, Browserstack) + // * Android 4.2 Browser (Samsung Galaxy SIII Mini GT-I8200L) + // * Android 2.3 (Pantech Burst P9070) + + // Weak inference targets Android < 4.4 + if( "isApplicationInstalled" in navigator && "onloadcssdefined" in ss ) { + ss.onloadcssdefined( newcb ); + } +} diff --git a/Fuchs/web/loadcss_test/loadCSS.js b/Fuchs/web/loadcss_test/loadCSS.js new file mode 100644 index 0000000..b6ee575 --- /dev/null +++ b/Fuchs/web/loadcss_test/loadCSS.js @@ -0,0 +1,88 @@ +/*! loadCSS. [c]2020 Filament Group, Inc. MIT License */ +(function(w){ + "use strict"; + /* exported loadCSS */ + var loadCSS = function( href, before, media, attributes ){ + // Arguments explained: + // `href` [REQUIRED] is the URL for your CSS file. + // `before` [OPTIONAL] is the element the script should use as a reference for injecting our stylesheet before + // By default, loadCSS attempts to inject the link after the last stylesheet or script in the DOM. However, you might desire a more specific location in your document. + // `media` [OPTIONAL] is the media type or query of the stylesheet. By default it will be 'all' + // `attributes` [OPTIONAL] is the Object of attribute name/attribute value pairs to set on the stylesheet's DOM Element. + var doc = w.document; + var ss = doc.createElement( "link" ); + var ref; + if( before ){ + ref = before; + } + else { + var refs = ( doc.body || doc.getElementsByTagName( "head" )[ 0 ] ).childNodes; + ref = refs[ refs.length - 1]; + } + + var sheets = doc.styleSheets; + // Set any of the provided attributes to the stylesheet DOM Element. + if( attributes ){ + for( var attributeName in attributes ){ + if( attributes.hasOwnProperty( attributeName ) ){ + ss.setAttribute( attributeName, attributes[attributeName] ); + } + } + } + ss.rel = "stylesheet"; + ss.href = href; + // temporarily set media to something inapplicable to ensure it'll fetch without blocking render + ss.media = "only x"; + + // wait until body is defined before injecting link. This ensures a non-blocking load in IE11. + function ready( cb ){ + if( doc.body ){ + return cb(); + } + setTimeout(function(){ + ready( cb ); + }); + } + // Inject link + // Note: the ternary preserves the existing behavior of "before" argument, but we could choose to change the argument to "after" in a later release and standardize on ref.nextSibling for all refs + // Note: `insertBefore` is used instead of `appendChild`, for safety re: http://www.paulirish.com/2011/surefire-dom-element-insertion/ + ready( function(){ + ref.parentNode.insertBefore( ss, ( before ? ref : ref.nextSibling ) ); + }); + // A method (exposed on return object for external use) that mimics onload by polling document.styleSheets until it includes the new sheet. + var onloadcssdefined = function( cb ){ + var resolvedHref = ss.href; + var i = sheets.length; + while( i-- ){ + if( sheets[ i ].href === resolvedHref ){ + return cb(); + } + } + setTimeout(function() { + onloadcssdefined( cb ); + }); + }; + + function loadCB(){ + if( ss.addEventListener ){ + ss.removeEventListener( "load", loadCB ); + } + ss.media = media || "all"; + } + + // once loaded, set link's media back to `all` so that the stylesheet applies once it loads + if( ss.addEventListener ){ + ss.addEventListener( "load", loadCB); + } + ss.onloadcssdefined = onloadcssdefined; + onloadcssdefined( loadCB ); + return ss; + }; + // commonjs + if( typeof exports !== "undefined" ){ + exports.loadCSS = loadCSS; + } + else { + w.loadCSS = loadCSS; + } +}( typeof global !== "undefined" ? global : this )); diff --git a/Fuchs/web/loadcss_test/onloadCSS.js b/Fuchs/web/loadcss_test/onloadCSS.js new file mode 100644 index 0000000..90aa916 --- /dev/null +++ b/Fuchs/web/loadcss_test/onloadCSS.js @@ -0,0 +1,29 @@ +/*! onloadCSS. (onload callback for loadCSS) [c]2017 Filament Group, Inc. MIT License */ +/* global navigator */ +/* exported onloadCSS */ +function onloadCSS( ss, callback ) { + var called; + function newcb(){ + if( !called && callback ){ + called = true; + callback.call( ss ); + } + } + if( ss.addEventListener ){ + ss.addEventListener( "load", newcb ); + } + if( ss.attachEvent ){ + ss.attachEvent( "onload", newcb ); + } + + // This code is for browsers that don’t support onload + // No support for onload (it'll bind but never fire): + // * Android 4.3 (Samsung Galaxy S4, Browserstack) + // * Android 4.2 Browser (Samsung Galaxy SIII Mini GT-I8200L) + // * Android 2.3 (Pantech Burst P9070) + + // Weak inference targets Android < 4.4 + if( "isApplicationInstalled" in navigator && "onloadcssdefined" in ss ) { + ss.onloadcssdefined( newcb ); + } +} diff --git a/Fuchs/wwwroot/fts/glyphicons-halflings-regular.eot b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000..b5aab37 Binary files /dev/null and b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.eot differ diff --git a/Fuchs/wwwroot/fts/glyphicons-halflings-regular.svg b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.svg new file mode 100644 index 0000000..94fb549 --- /dev/null +++ b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Fuchs/wwwroot/fts/glyphicons-halflings-regular.ttf b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000..8dab117 Binary files /dev/null and b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.ttf differ diff --git a/Fuchs/wwwroot/fts/glyphicons-halflings-regular.woff b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..a078bce Binary files /dev/null and b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.woff differ diff --git a/Fuchs/wwwroot/fts/glyphicons-halflings-regular.woff2 b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.woff2 new file mode 100644 index 0000000..a631cf8 Binary files /dev/null and b/Fuchs/wwwroot/fts/glyphicons-halflings-regular.woff2 differ diff --git a/Fuchs/wwwroot/lib/jquery/jquery.factory.js b/Fuchs/wwwroot/lib/jquery/jquery.factory.js new file mode 100644 index 0000000..9a3ce4e --- /dev/null +++ b/Fuchs/wwwroot/lib/jquery/jquery.factory.js @@ -0,0 +1,9680 @@ +/*! + * jQuery JavaScript Library v4.0.0 + * https://jquery.com/ + * + * Copyright OpenJS Foundation and other contributors + * Released under the MIT license + * https://jquery.com/license/ + * + * Date: 2026-01-18T00:20Z + */ +// Expose a factory as `jQueryFactory`. Aimed at environments without +// a real `window` where an emulated window needs to be constructed. Example: +// +// const jQuery = require( "jquery/factory" )( window ); +// +// See ticket trac-14549 for more info. +function jQueryFactoryWrapper( window, noGlobal ) { + +"use strict"; + +if ( !window.document ) { + throw new Error( "jQuery requires a window with a document" ); +} + +var arr = []; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +// Support: IE 11+ +// IE doesn't have Array#flat; provide a fallback. +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + +var push = arr.push; + +var indexOf = arr.indexOf; + +// [[Class]] -> type pairs +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +// All support tests are defined in their respective modules. +var support = {}; + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + return typeof obj === "object" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} + +function isWindow( obj ) { + return obj != null && obj === obj.window; +} + +function isArrayLike( obj ) { + + var length = !!obj && obj.length, + type = toType( obj ); + + if ( typeof obj === "function" || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} + +var document$1 = window.document; + +var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true +}; + +function DOMEval( code, node, doc ) { + doc = doc || document$1; + + var i, + script = doc.createElement( "script" ); + + script.text = code; + for ( i in preservedScriptAttributes ) { + if ( node && node[ i ] ) { + script[ i ] = node[ i ]; + } + } + + if ( doc.head.appendChild( script ).parentNode ) { + script.parentNode.removeChild( script ); + } +} + +var version = "4.0.0", + + rhtmlSuffix = /HTML$/i, + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + } +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && typeof target !== "function" ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + + // Retrieve the text value of an array of DOM nodes + text: function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += jQuery.text( node ); + } + } + if ( nodeType === 1 || nodeType === 11 ) { + return elem.textContent; + } + if ( nodeType === 9 ) { + return elem.documentElement.textContent; + } + if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; + }, + + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + isXMLDoc: function( elem ) { + var namespace = elem && elem.namespaceURI, + docElem = elem && ( elem.ownerDocument || elem ).documentElement; + + // Assume HTML when documentElement doesn't yet exist, such as inside + // document fragments. + return !rhtmlSuffix.test( namespace || docElem && docElem.nodeName || "HTML" ); + }, + + // Note: an element does not contain itself + contains: function( a, b ) { + var bup = b && b.parentNode; + + return a === bup || !!( bup && bup.nodeType === 1 && ( + + // Support: IE 9 - 11+ + // IE doesn't have `contains` on SVG. + a.contains ? + a.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + }, + + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), + function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); + } ); + +function nodeName( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); +} + +var pop = arr.pop; + +// https://www.w3.org/TR/css3-selectors/#whitespace +var whitespace = "[\\x20\\t\\r\\n\\f]"; + +var isIE = document$1.documentMode; + +var rbuggyQSA = isIE && new RegExp( + + // Support: IE 9 - 11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + ":enabled|:disabled|" + + + // Support: IE 11+ + // IE 11 doesn't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" + +); + +var rtrimCSS = new RegExp( + "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", + "g" +); + +// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram +var identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+"; + +var rleadingCombinator = new RegExp( "^" + whitespace + "*([>+~]|" + + whitespace + ")" + whitespace + "*" ); + +var rdescend = new RegExp( whitespace + "|>" ); + +var rsibling = /[+~]/; + +var documentElement$1 = document$1.documentElement; + +// Support: IE 9 - 11+ +// IE requires a prefix. +var matches = documentElement$1.matches || documentElement$1.msMatchesSelector; + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties + // (see https://github.com/jquery/sizzle/issues/157) + if ( keys.push( key + " " ) > jQuery.expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Checks a node for validity as a jQuery selector context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Attribute selectors: https://www.w3.org/TR/selectors/#attribute-selectors +var attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]"; + +var pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)"; + +var filterMatchExpr = { + ID: new RegExp( "^#(" + identifier + ")" ), + CLASS: new RegExp( "^\\.(" + identifier + ")" ), + TAG: new RegExp( "^(" + identifier + "|[*])" ), + ATTR: new RegExp( "^" + attributes ), + PSEUDO: new RegExp( "^" + pseudos ), + CHILD: new RegExp( + "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ) +}; + +var rpseudo = new RegExp( pseudos ); + +// CSS escapes +// https://www.w3.org/TR/CSS21/syndata.html#escaped-characters + +var runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + if ( nonHex ) { + + // Strip the backslash prefix from a non-hex escape sequence + return nonHex; + } + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + return high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }; + +function unescapeSelector( sel ) { + return sel.replace( runescape, funescape ); +} + +function selectorError( msg ) { + jQuery.error( "Syntax error, unrecognized expression: " + msg ); +} + +var rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ); + +var tokenCache = createCache(); + +function tokenize( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = jQuery.expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rleadingCombinator.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrimCSS, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in filterMatchExpr ) { + if ( ( match = jQuery.expr.match[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + if ( parseOnly ) { + return soFar.length; + } + + return soFar ? + selectorError( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +} + +var preFilter = { + ATTR: function( match ) { + match[ 1 ] = unescapeSelector( match[ 1 ] ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = unescapeSelector( match[ 3 ] || match[ 4 ] || match[ 5 ] || "" ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + CHILD: function( match ) { + + /* matches from filterMatchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + selectorError( match[ 0 ] ); + } + + // numeric x and y parameters for jQuery.expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) + ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + selectorError( match[ 0 ] ); + } + + return match; + }, + + PSEUDO: function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( filterMatchExpr.CHILD.test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - + unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +function access( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( typeof value !== "function" ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +} + +// Only count HTML whitespace +// Other whitespace should count in values +// https://infra.spec.whatwg.org/#ascii-whitespace +var rnothtmlwhite = /[^\x20\t\r\n\f]+/g; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ]; + } + + if ( value !== undefined ) { + if ( value === null || + + // For compat with previous handling of boolean attributes, + // remove when `false` passed. For ARIA attributes - + // many of which recognize a `"false"` value - continue to + // set the `"false"` value as jQuery <4 did. + ( value === false && name.toLowerCase().indexOf( "aria-" ) !== 0 ) ) { + + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = elem.getAttribute( name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: {}, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Support: IE <=11+ +// An input loses its value after becoming a radio +if ( isIE ) { + jQuery.attrHooks.type = { + set: function( elem, value ) { + if ( value === "radio" && nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + }; +} + +// CSS string/identifier serialization +// https://drafts.csswg.org/cssom/#common-serializing-idioms +var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g; + +function fcssescape( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; +} + +jQuery.escapeSelector = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +var sort = arr.sort; + +var splice = arr.splice; + +var hasDuplicate; + +// Document order sorting +function sortOrder( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+ + // IE sometimes throws a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 ) { + + // Choose the first element that is related to the document + // Support: IE 11+ + // IE sometimes throws a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document$1 || a.ownerDocument == document$1 && + jQuery.contains( document$1, a ) ) { + return -1; + } + + // Support: IE 11+ + // IE sometimes throws a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document$1 || b.ownerDocument == document$1 && + jQuery.contains( document$1, b ) ) { + return 1; + } + + // Maintain original order + return 0; + } + + return compare & 4 ? -1 : 1; +} + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +jQuery.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + hasDuplicate = false; + + sort.call( results, sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + splice.call( results, duplicates[ j ], 1 ); + } + } + + return results; +}; + +jQuery.fn.uniqueSort = function() { + return this.pushStack( jQuery.uniqueSort( slice.apply( this ) ) ); +}; + +var i, + outermostContext, + + // Local document vars + document, + documentElement, + documentIsHTML, + + // Instance-specific data + dirruns = 0, + done = 0, + classCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + + // Regular expressions + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = jQuery.extend( { + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + needsContext: new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, filterMatchExpr ), + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr$1 = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + // Used for iframes; see `setDocument`. + // Support: IE 9 - 11+ + // Removing the function wrapper causes a "Permission Denied" + // error in IE. + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && nodeName( elem, "fieldset" ); + }, + { dir: "parentNode", next: "legend" } + ); + +function find( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr$1.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + push.call( results, elem ); + } + return results; + + // Element context + } else { + if ( newContext && ( elem = newContext.getElementById( m ) ) && + jQuery.contains( context, elem ) ) { + + push.call( results, elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && context.getElementsByClassName ) { + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rleadingCombinator.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && + testContext( context.parentNode ) || + context; + + // Outside of IE, if we're not changing the context we can + // use :scope instead of an ID. + // Support: IE 11+ + // IE sometimes throws a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( newContext != context || isIE ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = jQuery.escapeSelector( nid ); + } else { + context.setAttribute( "id", ( nid = jQuery.expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === jQuery.expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrimCSS, "$1" ), context, results, seed ); +} + +/** + * Mark a function for special use by jQuery selector module + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ jQuery.expando ] = true; + return fn; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + return nodeName( elem, "input" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + return ( nodeName( elem, "input" ) || nodeName( elem, "button" ) ) && + elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11+ + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [node] An element or document object to use to set the document + */ +function setDocument( node ) { + var subWindow, + doc = node ? node.ownerDocument || node : document$1; + + // Return early if doc is invalid or already selected + // Support: IE 11+ + // IE sometimes throws a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 ) { + return; + } + + // Update global variables + document = doc; + documentElement = document.documentElement; + documentIsHTML = !jQuery.isXMLDoc( document ); + + // Support: IE 9 - 11+ + // Accessing iframe documents after unload throws "permission denied" errors (see trac-13936) + // Support: IE 11+ + // IE sometimes throws a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( isIE && document$1 != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + subWindow.addEventListener( "unload", unloadHandler ); + } +} + +find.matches = function( expr, elements ) { + return find( expr, null, null, elements ); +}; + +find.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + return matches.call( elem, expr ); + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return find( expr, document, null, [ elem ] ).length > 0; +}; + +jQuery.expr = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + find: { + ID: function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }, + + TAG: function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else { + return context.querySelectorAll( tag ); + } + }, + + CLASS: function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + } + }, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: preFilter, + + filter: { + ID: function( id ) { + var attrId = unescapeSelector( id ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }, + + TAG: function( nodeNameSelector ) { + var expectedNodeName = unescapeSelector( nodeNameSelector ).toLowerCase(); + return nodeNameSelector === "*" ? + + function() { + return true; + } : + + function( elem ) { + return nodeName( elem, expectedNodeName ); + }; + }, + + CLASS: function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + ")" + className + + "(" + whitespace + "|$)" ) ) && + classCache( className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + ATTR: function( name, operator, check ) { + return function( elem ) { + var result = jQuery.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + if ( operator === "=" ) { + return result === check; + } + if ( operator === "!=" ) { + return result !== check; + } + if ( operator === "^=" ) { + return check && result.indexOf( check ) === 0; + } + if ( operator === "*=" ) { + return check && result.indexOf( check ) > -1; + } + if ( operator === "$=" ) { + return check && result.slice( -check.length ) === check; + } + if ( operator === "~=" ) { + return ( " " + result.replace( rwhitespace, " " ) + " " ) + .indexOf( check ) > -1; + } + if ( operator === "|=" ) { + return result === check || result.slice( 0, check.length + 1 ) === check + "-"; + } + + return false; + }; + }, + + CHILD: function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + nodeName( node, name ) : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + outerCache = parent[ jQuery.expando ] || + ( parent[ jQuery.expando ] = {} ); + cache = outerCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + outerCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + outerCache = elem[ jQuery.expando ] || + ( elem[ jQuery.expando ] = {} ); + cache = outerCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + nodeName( node, name ) : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ jQuery.expando ] || + ( node[ jQuery.expando ] = {} ); + outerCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + PSEUDO: function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // https://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var fn = jQuery.expr.pseudos[ pseudo ] || + jQuery.expr.setFilters[ pseudo.toLowerCase() ] || + selectorError( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as jQuery does + if ( fn[ jQuery.expando ] ) { + return fn( argument ); + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + not: markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrimCSS, "$1" ) ); + + return matcher[ jQuery.expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element + // (see https://github.com/jquery/sizzle/issues/299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + has: markFunction( function( selector ) { + return function( elem ) { + return find( selector, elem ).length > 0; + }; + } ), + + contains: markFunction( function( text ) { + text = unescapeSelector( text ); + return function( elem ) { + return ( elem.textContent || jQuery.text( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // https://www.w3.org/TR/selectors/#lang-pseudo + lang: markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + selectorError( "unsupported lang: " + lang ); + } + lang = unescapeSelector( lang ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + target: function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + root: function( elem ) { + return elem === documentElement; + }, + + focus: function( elem ) { + return elem === document.activeElement && + document.hasFocus() && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + enabled: createDisabledPseudo( false ), + disabled: createDisabledPseudo( true ), + + checked: function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // https://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + return ( nodeName( elem, "input" ) && !!elem.checked ) || + ( nodeName( elem, "option" ) && !!elem.selected ); + }, + + selected: function( elem ) { + + // Support: IE <=11+ + // Accessing the selectedIndex property + // forces the browser to treat the default option as + // selected when in an optgroup. + if ( isIE && elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + empty: function( elem ) { + + // https://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + parent: function( elem ) { + return !jQuery.expr.pseudos.empty( elem ); + }, + + // Element/input types + header: function( elem ) { + return rheader.test( elem.nodeName ); + }, + + input: function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + button: function( elem ) { + return nodeName( elem, "input" ) && elem.type === "button" || + nodeName( elem, "button" ); + }, + + text: function( elem ) { + return nodeName( elem, "input" ) && elem.type === "text"; + }, + + // Position-in-collection + first: createPositionalPseudo( function() { + return [ 0 ]; + } ), + + last: createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + eq: createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + even: createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + odd: createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + lt: createPositionalPseudo( function( matchIndexes, length, argument ) { + var i; + + if ( argument < 0 ) { + i = argument + length; + } else if ( argument > length ) { + i = length; + } else { + i = argument; + } + + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + gt: createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +jQuery.expr.pseudos.nth = jQuery.expr.pseudos.eq; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + jQuery.expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + jQuery.expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = jQuery.expr.pseudos; +jQuery.expr.setFilters = new setFilters(); + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ jQuery.expando ] || ( elem[ jQuery.expando ] = {} ); + + if ( skip && nodeName( elem, skip ) ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = outerCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + outerCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + find( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ jQuery.expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ jQuery.expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, matcherOut, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || + multipleContexts( selector || "*", + context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems; + + if ( matcher ) { + + // If we have a postFinder, or filtered seed, or non-seed postFilter + // or preexisting results, + matcherOut = postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results; + + // Find primary matches + matcher( matcherIn, matcherOut, context, xml ); + } else { + matcherOut = matcherIn; + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf.call( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = jQuery.expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || jQuery.expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf.call( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + + // Support: IE 11+ + // IE sometimes throws a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + var ret = ( !leadingRelative && ( xml || context != outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element + // (see https://github.com/jquery/sizzle/issues/299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = jQuery.expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = jQuery.expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ jQuery.expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( jQuery.expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrimCSS, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && jQuery.expr.find.TAG( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ); + + if ( outermost ) { + + // Support: IE 11+ + // IE sometimes throws a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + for ( ; ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+ + // IE sometimes throws a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + push.call( results, elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + jQuery.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +function compile( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ jQuery.expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +} + +/** + * A low-level selection function that works with jQuery's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with jQuery selector compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +function select( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && + jQuery.expr.relative[ tokens[ 1 ].type ] ) { + + context = ( jQuery.expr.find.ID( + unescapeSelector( token.matches[ 0 ] ), + context + ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr.needsContext.test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( jQuery.expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = jQuery.expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + unescapeSelector( token.matches[ 0 ] ), + rsibling.test( tokens[ 0 ].type ) && + testContext( context.parentNode ) || context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +} + +// Initialize against the default document +setDocument(); + +jQuery.find = find; + +// These have always been private, but they used to be documented as part of +// Sizzle so let's maintain them for now for backwards compatibility purposes. +find.compile = compile; +find.select = select; +find.setDocument = setDocument; +find.tokenize = tokenize; + +function dir( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +} + +function siblings( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +} + +var rneedsContext = jQuery.expr.match.needsContext; + +// rsingleTag matches a string consisting of a single HTML element with no attributes +// and captures the element's name +var rsingleTag = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i; + +function isObviousHtml( input ) { + return input[ 0 ] === "<" && + input[ input.length - 1 ] === ">" && + input.length >= 3; +} + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( typeof qualifier === "function" ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + +// Initialize a jQuery object + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (trac-9521) + // Strict HTML recognition (trac-11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // HANDLE: $(DOMElement) + if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( typeof selector === "function" ) { + return rootjQuery.ready !== undefined ? + rootjQuery.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + + } else { + + // Handle obvious HTML strings + match = selector + ""; + if ( isObviousHtml( match ) ) { + + // Assume that strings that start and end with <> are HTML and skip + // the regex check. This also handles browser-supported HTML wrappers + // like TrustedHTML. + match = [ null, selector, null ]; + + // Handle HTML strings or selectors + } else if ( typeof selector === "string" ) { + match = rquickExpr.exec( selector ); + } else { + return jQuery.makeArray( selector, this ); + } + + // Match html or make sure no context is specified for #id + // Note: match[1] may be a string or a TrustedHTML wrapper + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document$1, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( typeof this[ match ] === "function" ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document$1.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr) & $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + } + + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document$1 ); + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to jQuery#find + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11+ + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( typeof arg === "function" ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && typeof( method = value.promise ) === "function" ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && typeof( method = value.then ) === "function" ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + reject( value ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + catch: function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = typeof fns[ tuple[ 4 ] ] === "function" && + fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && typeof returned.promise === "function" ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( typeof then === "function" ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.error ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the error, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getErrorHook ) { + process.error = jQuery.Deferred.getErrorHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + typeof onProgress === "function" ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + typeof onFulfilled === "function" ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + typeof onRejected === "function" ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the primary Deferred + primary = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + primary.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( primary.state() === "pending" || + typeof( resolveValues[ i ] && resolveValues[ i ].then ) === "function" ) { + + return primary.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), primary.reject ); + } + + return primary.promise(); + } +} ); + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +// If `jQuery.Deferred.getErrorHook` is defined, `asyncError` is an error +// captured before the async barrier to get the original error cause +// which may otherwise be hidden. +jQuery.Deferred.exceptionHook = function( error, asyncError ) { + + if ( error && rerrorNames.test( error.name ) ) { + window.console.warn( + "jQuery.Deferred exception", + error, + asyncError + ); + } +}; + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See trac-6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document$1, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document$1.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +if ( document$1.readyState !== "loading" ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document$1.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + +// Matches dashed string for camelizing +var rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase +function camelCase( string ) { + return string.replace( rdashAlpha, fcamelCase ); +} + +/** + * Determines whether an object can have data + */ +function acceptData( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +} + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = Object.create( null ); + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see trac-8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return value; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45+ + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; + +var dataPriv = new Data(); + +var dataUser = new Data(); + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11+ + // The attrs elements can be null (trac-14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.set( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.set( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); + +var pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +// isHiddenWithinTree reports if an element has a non-"none" display style (inline and/or +// through the CSS cascade), which is useful in deciding whether or not to make it visible. +// It differs from the :hidden selector (jQuery.expr.pseudos.hidden) in two important ways: +// * A hidden ancestor does not force an element to be classified as hidden. +// * Being disconnected from the document does not force an element to be classified as hidden. +// These differences improve the behavior of .toggle() et al. when applied to elements that are +// detached or contained within hidden ancestors (gh-2404, gh-2863). +function isHiddenWithinTree( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + jQuery.css( elem, "display" ) === "none"; +} + +var ralphaStart = /^[a-z]/, + + // The regex visualized: + // + // /----------\ + // | | /-------\ + // | / Top \ | | | + // /--- Border ---+-| Right |-+---+- Width -+---\ + // | | Bottom | | + // | \ Left / | + // | | + // | /----------\ | + // | /-------------\ | | |- END + // | | | | / Top \ | | + // | | / Margin \ | | | Right | | | + // |---------+-| |-+---+-| Bottom |-+----| + // | \ Padding / \ Left / | + // BEGIN -| | + // | /---------\ | + // | | | | + // | | / Min \ | / Width \ | + // \--------------+-| |-+---| |---/ + // \ Max / \ Height / + rautoPx = /^(?:Border(?:Top|Right|Bottom|Left)?(?:Width|)|(?:Margin|Padding)?(?:Top|Right|Bottom|Left)?|(?:Min|Max)?(?:Width|Height))$/; + +function isAutoPx( prop ) { + + // The first test is used to ensure that: + // 1. The prop starts with a lowercase letter (as we uppercase it for the second regex). + // 2. The prop is not empty. + return ralphaStart.test( prop ) && + rautoPx.test( prop[ 0 ].toUpperCase() + prop.slice( 1 ) ); +} + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( isAutoPx( prop ) ? "px" : "" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( !isAutoPx( prop ) || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 - 66+ + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/; + +// Convert dashed to camelCase, handle vendor prefixes. +// Used by the css & effects modules. +// Support: IE <=9 - 11+ +// Microsoft forgot to hump their vendor prefix (trac-9572) +function cssCamelCase( string ) { + return camelCase( string.replace( rmsPrefix, "ms-" ) ); +} + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); + +var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }, + composed = { composed: true }; + +// Support: IE 9 - 11+ +// Check attachment across shadow DOM boundaries when possible (gh-3504). +// Provide a fallback for browsers without Shadow DOM v1 support. +if ( !documentElement$1.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }; +} + +// rtagName captures the name from the first start tag in a string of HTML +// https://html.spec.whatwg.org/multipage/syntax.html#tag-open-state +// https://html.spec.whatwg.org/multipage/syntax.html#tag-name-state +var rtagName = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i; + +var wrapMap = { + + // Table parts need to be wrapped with `` or they're + // stripped to their contents when put in a div. + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do, so we cannot shorten + // this by omitting or other required elements. + thead: [ "table" ], + col: [ "colgroup", "table" ], + tr: [ "tbody", "table" ], + td: [ "tr", "tbody", "table" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +function getAll( context, tag ) { + + // Support: IE <=9 - 11+ + // Use typeof to avoid zero-argument method invocation on host objects (trac-15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + + // Use slice to snapshot the live collection from gEBTN + ret = arr.slice.call( context.getElementsByTagName( tag || "*" ) ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + +var rscriptType = /^$|^module$|\/(?:java|ecma)script/i; + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" && ( elem.nodeType || isArrayLike( elem ) ) ) { + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || arr; + + // Create wrappers & descend into them. + j = wrap.length; + while ( --j > -1 ) { + tmp = tmp.appendChild( context.createElement( wrap[ j ] ) ); + } + + tmp.innerHTML = jQuery.htmlPrefilter( elem ); + + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (trac-12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = typeof value === "function"; + + if ( valueIsFunction ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + args[ 0 ] = value.call( this, index, self.html() ); + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (trac-8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Re-enable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.get( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce, + crossOrigin: node.crossOrigin + }, doc ); + } + } else { + DOMEval( node.textContent, node, doc ); + } + } + } + } + } + } + + return collection; +} + +var rcheckableType = /^(?:checkbox|radio)$/i; + +var rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement$1, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: Firefox <=42 - 66+ + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11+ + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (trac-13208) + // Don't process clicks on disabled elements (trac-6911, trac-8165, trac-11382, trac-11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (trac-13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: typeof hook === "function" ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: jQuery.extend( Object.create( null ), { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", true ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + if ( event.result !== undefined ) { + + // Setting `event.originalEvent.returnValue` in modern + // browsers does the same as just calling `preventDefault()`, + // the browsers ignore the value anyway. + // Incidentally, IE 11 is the only browser from our supported + // ones which respects the value returned from a `beforeunload` + // handler attached by `addEventListener`; other browsers do + // so only for inline handlers, so not setting the value + // directly shouldn't reduce any functionality. + event.preventDefault(); + } + } + } + } ) +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, isSetup ) { + + // Missing `isSetup` indicates a trigger call, which must force setup through jQuery.event.add + if ( !isSetup ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var result, + saved = dataPriv.get( this, type ); + + // This controller function is invoked under multiple circumstances, + // differentiated by the stored value in `saved`: + // 1. For an outer synthetic `.trigger()`ed event (detected by + // `event.isTrigger & 1` and non-array `saved`), it records arguments + // as an array and fires an [inner] native event to prompt state + // changes that should be observed by registered listeners (such as + // checkbox toggling and focus updating), then clears the stored value. + // 2. For an [inner] native event (detected by `saved` being + // an array), it triggers an inner synthetic event, records the + // result, and preempts propagation to further jQuery listeners. + // 3. For an inner synthetic event (detected by `event.isTrigger & 1` and + // array `saved`), it prevents double-propagation of surrogate events + // but otherwise allows everything to proceed (particularly including + // further listeners). + // Possible `saved` data shapes: `[...], `{ value }`, `false`. + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), + // so this array will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + this[ type ](); + result = dataPriv.get( this, type ); + dataPriv.set( this, type, false ); + + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + + // Support: Chrome 86+ + // In Chrome, if an element having a focusout handler is + // blurred by clicking outside of it, it invokes the handler + // synchronously. If that handler calls `.remove()` on + // the element, the data is cleared, leaving `result` + // undefined. We need to guard against this. + return result && result.value; + } + + // If this is an inner synthetic event for an event with a bubbling + // surrogate (focus or blur), assume that the surrogate already + // propagated from triggering the native event and prevent that + // from happening again here. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order. + // Fire an inner synthetic event with the original arguments. + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + saved[ 0 ], + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event by all jQuery handlers while allowing + // native handlers on the same element to run. On target, this is achieved + // by stopping immediate propagation just on the jQuery event. However, + // the native event is re-wrapped by a jQuery one on each level of the + // propagation so the only way to stop it for jQuery is to stop it for + // everyone via native `stopPropagation()`. This is not a problem for + // focus/blur which don't bubble, but it does also stop click on checkboxes + // and radios. We accept this limitation. + event.stopPropagation(); + event.isImmediatePropagationStopped = returnTrue; + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented ? + returnTrue : + returnFalse; + + // Create target properties + this.target = src.target; + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + which: true +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + + // Support: IE 11+ + // Attach a single focusin/focusout handler on the document while someone wants focus/blur. + // This is because the former are synchronous in IE while the latter are async. In other + // browsers, all those handlers are invoked synchronously. + function focusMappedHandler( nativeEvent ) { + + // `eventHandle` would already wrap the event, but we need to change the `type` here. + var event = jQuery.event.fix( nativeEvent ); + event.type = nativeEvent.type === "focusin" ? "focus" : "blur"; + event.isSimulated = true; + + // focus/blur don't bubble while focusin/focusout do; simulate the former by only + // invoking the handler at the lower level. + if ( event.target === event.currentTarget ) { + + // The setup part calls `leverageNative`, which, in turn, calls + // `jQuery.event.add`, so event handle will already have been set + // by this point. + dataPriv.get( this, "handle" )( event ); + } + } + + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, true ); + + if ( isIE ) { + this.addEventListener( delegateType, focusMappedHandler ); + } else { + + // Return false to allow normal processing in the caller + return false; + } + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + teardown: function() { + if ( isIE ) { + this.removeEventListener( delegateType, focusMappedHandler ); + } else { + + // Return false to indicate standard teardown should be applied + return false; + } + }, + + // Suppress native focus or blur if we're currently inside + // a leveraged native-event stack + _default: function( event ) { + return dataPriv.get( event.target, type ); + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + +var + + // Support: IE <=10 - 11+ + // In IE using regex groups here causes severe slowdowns. + rnoInnerhtml = / 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + push.apply( ret, elems ); + } + + return this.pushStack( ret ); + }; +} ); + +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var rcustomProp = /^--/; + +function getStyles( elem ) { + + // Support: IE <=11+ (trac-14150) + // In IE popup's `window` is the opener window which makes `window.getComputedStyle( elem )` + // break. Using `elem.ownerDocument.defaultView` avoids the issue. + var view = elem.ownerDocument.defaultView; + + // `document.implementation.createHTMLDocument( "" )` has a `null` `defaultView` + // property; check `defaultView` truthiness to fallback to window in such a case. + if ( !view ) { + view = window; + } + + return view.getComputedStyle( elem ); +} + +// A method for quickly swapping in/out CSS properties to get correct calculations. +function swap( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +} + +function curCSS( elem, name, computed ) { + var ret, + isCustomProp = rcustomProp.test( name ); + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for `.css('--customProperty')` (gh-3144) + if ( computed ) { + + // A fallback to direct property access is needed as `computed`, being + // the output of `getComputedStyle`, contains camelCased keys and + // `getPropertyValue` requires kebab-case ones. + // + // Support: IE <=9 - 11+ + // IE only supports `"float"` in `getPropertyValue`; in computed styles + // it's only available as `"cssFloat"`. We no longer modify properties + // sent to `.css()` apart from camelCasing, so we need to check both. + // Normally, this would create difference in behavior: if + // `getPropertyValue` returns an empty string, the value returned + // by `.css()` would be `undefined`. This is usually the case for + // disconnected elements. However, in IE even disconnected elements + // with no styles return `"none"` for `getPropertyValue( "float" )` + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( isCustomProp && ret ) { + + // Support: Firefox 105 - 135+ + // Spec requires trimming whitespace for custom properties (gh-4926). + // Firefox only trims leading whitespace. + // + // Fall back to `undefined` if empty string returned. + // This collapses a missing definition with property defined + // and set to an empty string but there's no standard API + // allowing us to differentiate them without a performance penalty + // and returning `undefined` aligns with older jQuery. + // + // rtrimCSS treats U+000D CARRIAGE RETURN and U+000C FORM FEED + // as whitespace while CSS does not, but this is not a problem + // because CSS preprocessing replaces them with U+000A LINE FEED + // (which *is* CSS whitespace) + // https://www.w3.org/TR/css-syntax-3/#input-preprocessing + ret = ret.replace( rtrimCSS, "$1" ) || undefined; + } + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11+ + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document$1.createElement( "div" ).style; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped vendor prefixed property +function finalPropName( name ) { + if ( name in emptyStyle ) { + return name; + } + return vendorPropName( name ) || name; +} + +var reliableTrDimensionsVal, reliableColDimensionsVal, + table = document$1.createElement( "table" ); + +// Executing table tests requires only one layout, so they're executed +// at the same time to save the second computation. +function computeTableStyleTests() { + if ( + + // This is a singleton, we need to execute it only once + !table || + + // Finish early in limited (non-browser) environments + !table.style + ) { + return; + } + + var trStyle, + col = document$1.createElement( "col" ), + tr = document$1.createElement( "tr" ), + td = document$1.createElement( "td" ); + + table.style.cssText = "position:absolute;left:-11111px;" + + "border-collapse:separate;border-spacing:0"; + tr.style.cssText = "box-sizing:content-box;border:1px solid;height:1px"; + td.style.cssText = "height:9px;width:9px;padding:0"; + + col.span = 2; + + documentElement$1 + .appendChild( table ) + .appendChild( col ) + .parentNode + .appendChild( tr ) + .appendChild( td ) + .parentNode + .appendChild( td.cloneNode( true ) ); + + // Don't run until window is visible + if ( table.offsetWidth === 0 ) { + documentElement$1.removeChild( table ); + return; + } + + trStyle = window.getComputedStyle( tr ); + + // Support: Firefox 135+ + // Firefox always reports computed width as if `span` was 1. + // Support: Safari 18.3+ + // In Safari, computed width for columns is always 0. + // In both these browsers, using `offsetWidth` solves the issue. + // Support: IE 11+ + // In IE, `` computed width is `"auto"` unless `width` is set + // explicitly via CSS so measurements there remain incorrect. Because of + // the lack of a proper workaround, we accept this limitation, treating + // IE as passing the test. + reliableColDimensionsVal = isIE || Math.round( parseFloat( + window.getComputedStyle( col ).width ) + ) === 18; + + // Support: IE 10 - 11+ + // IE misreports `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Support: Firefox 70 - 135+ + // Only Firefox includes border widths + // in computed dimensions for table rows. (gh-4529) + reliableTrDimensionsVal = Math.round( parseFloat( trStyle.height ) + + parseFloat( trStyle.borderTopWidth ) + + parseFloat( trStyle.borderBottomWidth ) ) === tr.offsetHeight; + + documentElement$1.removeChild( table ); + + // Nullify the table so it wouldn't be stored in the memory; + // it will also be a sign that checks were already performed. + table = null; +} + +jQuery.extend( support, { + reliableTrDimensions: function() { + computeTableStyleTests(); + return reliableTrDimensionsVal; + }, + + reliableColDimensions: function() { + computeTableStyleTests(); + return reliableColDimensionsVal; + } +} ); + +var cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0, + marginDelta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + // Count margin delta separately to only add it after scroll gutter adjustment. + // This is needed to make negative margins work with `outerHeight( true )` (gh-3982). + if ( box === "margin" ) { + marginDelta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta + marginDelta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = isIE || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + if ( + ( + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: IE 9 - 11+ + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + ( isIE && isBorderBox ) || + + ( !support.reliableColDimensions() && nodeName( elem, "col" ) ) || + + ( !support.reliableTrDimensions() && nodeName( elem, "tr" ) ) + ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = cssCamelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (trac-7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug trac-9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (trac-7116) + if ( value == null || value !== value ) { + return; + } + + // If the value is a number, add `px` for certain CSS properties + if ( type === "number" ) { + value += ret && ret[ 3 ] || ( isAutoPx( origName ) ? "px" : "" ); + } + + // Support: IE <=9 - 11+ + // background-* props of a cloned element affect the source element (trac-8908) + if ( isIE && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = cssCamelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Elements with `display: none` can have dimension info if + // we invisibly show them. + return jQuery.css( elem, "display" ) === "none" ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + isBorderBox = extra && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( isAutoPx( prop ) ? "px" : "" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document$1.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, 13 ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11+ + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.set( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + // eslint-disable-next-line no-loop-func + anim.done( function() { + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = cssCamelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + percent = 1 - ( remaining / animation.duration || 0 ), + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( typeof result.stop === "function" ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( typeof animation.opts.start === "function" ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( typeof props === "function" ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || easing || + typeof speed === "function" && speed, + duration: speed, + easing: fn && easing || easing && typeof easing !== "function" && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( typeof opt.old === "function" ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + +// Based off of the plugin by Clint Helfers, with permission. +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11+ + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // Use proper attribute retrieval (trac-12072) + var tabindex = elem.getAttribute( "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + + // href-less anchor's `tabIndex` property value is `0` and + // the `tabindex` attribute value: `null`. We want `-1`. + rclickable.test( elem.nodeName ) && elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11+ +// Accessing the selectedIndex property forces the browser to respect +// setting selected on the option. The getter ensures a default option +// is selected when in an optgroup. ESLint rule "no-unused-expressions" +// is disabled for this code since it considers such accessions noop. +if ( isIE ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + // eslint-disable-next-line no-unused-expressions + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + + var parent = elem.parentNode; + if ( parent ) { + // eslint-disable-next-line no-unused-expressions + parent.selectedIndex; + + if ( parent.parentNode ) { + // eslint-disable-next-line no-unused-expressions + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + +// Strip and collapse whitespace according to HTML spec +// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace +function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); +} + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classNames, cur, curValue, className, i, finalValue; + + if ( typeof value === "function" ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classNames = classesToArray( value ); + + if ( classNames.length ) { + return this.each( function() { + curValue = getClass( this ); + cur = this.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + for ( i = 0; i < classNames.length; i++ ) { + className = classNames[ i ]; + if ( cur.indexOf( " " + className + " " ) < 0 ) { + cur += className + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + this.setAttribute( "class", finalValue ); + } + } + } ); + } + + return this; + }, + + removeClass: function( value ) { + var classNames, cur, curValue, className, i, finalValue; + + if ( typeof value === "function" ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classNames = classesToArray( value ); + + if ( classNames.length ) { + return this.each( function() { + curValue = getClass( this ); + + // This expression is here for better compressibility (see addClass) + cur = this.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + for ( i = 0; i < classNames.length; i++ ) { + className = classNames[ i ]; + + // Remove *all* instances + while ( cur.indexOf( " " + className + " " ) > -1 ) { + cur = cur.replace( " " + className + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + this.setAttribute( "class", finalValue ); + } + } + } ); + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var classNames, className, i, self; + + if ( typeof value === "function" ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + if ( typeof stateVal === "boolean" ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + classNames = classesToArray( value ); + + if ( classNames.length ) { + return this.each( function() { + + // Toggle individual class names + self = jQuery( this ); + + for ( i = 0; i < classNames.length; i++ ) { + className = classNames[ i ]; + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + } ); + } + + return this; + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = typeof value === "function"; + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + if ( option.selected && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + if ( ( option.selected = + jQuery.inArray( jQuery( option ).val(), values ) > -1 + ) ) { + optionSet = true; + } + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +if ( isIE ) { + jQuery.valHooks.option = { + get: function( elem ) { + + var val = elem.getAttribute( "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11+ + // option.text throws exceptions (trac-14686, trac-14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }; +} + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; +} ); + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document$1 ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document$1; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (trac-9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (trac-9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document$1 ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( dataPriv.get( cur, "events" ) || Object.create( null ) )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (trac-6170) + if ( ontype && typeof elem[ type ] === "function" && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = /\?/; + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml, parserErrorElem; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11+ + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) {} + + parserErrorElem = xml && xml.getElementsByTagName( "parsererror" )[ 0 ]; + if ( !xml || parserErrorElem ) { + jQuery.error( "Invalid XML: " + ( + parserErrorElem ? + jQuery.map( parserErrorElem.childNodes, function( el ) { + return el.textContent; + } ).join( "\n" ) : + data + ) ); + } + return xml; +}; + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = typeof valueOrFunction === "function" ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ).filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ).map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // trac-7653, trac-8125, trac-8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (trac-10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document$1.createElement( "a" ); + +originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( typeof func === "function" ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes trac-9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + + // Support: IE 11+ + // `getResponseHeader( key )` in IE doesn't combine all header + // values for the provided key into a single result with values + // joined by commas as other browsers do. Instead, it returns + // them on separate lines. + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (trac-10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket trac-12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document$1.createElement( "a" ); + + // Support: IE <=8 - 11+ + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11+ + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an ESM-usage scenario (trac-15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // trac-9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + + ( nonce.guid++ ) + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script but not if jsonp + if ( !isSuccess && + jQuery.inArray( "script", s.dataTypes ) > -1 && + jQuery.inArray( "json", s.dataTypes ) < 0 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted. + // Handle the null callback placeholder. + if ( typeof data === "function" || data === null ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (trac-11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + scriptAttrs: options.crossOrigin ? { "crossOrigin": options.crossOrigin } : undefined, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( typeof html === "function" ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( typeof html === "function" ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = typeof html === "function"; + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + +jQuery.ajaxSettings.xhr = function() { + return new window.XMLHttpRequest(); +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200 +}; + +jQuery.ajaxTransport( function( options ) { + var callback; + + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = xhr.onload = xhr.onerror = xhr.onabort = xhr.ontimeout = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + complete( + + // File: protocol always yields status 0; see trac-8605, trac-14207 + xhr.status, + xhr.statusText + ); + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) === "text" ? + { text: xhr.responseText } : + { binary: xhr.response }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + xhr.onabort = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // trac-14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; +} ); + +function canUseScriptTag( s ) { + + // A script tag can only be used for async, cross domain or forced-by-attrs requests. + // Requests with headers cannot use a script tag. However, when both `scriptAttrs` & + // `headers` options are specified, both are impossible to satisfy together; we + // prefer `scriptAttrs` then. + // Sync requests remain handled differently to preserve strict script ordering. + return s.scriptAttrs || ( + !s.headers && + ( + s.crossDomain || + + // When dealing with JSONP (`s.dataTypes` include "json" then) + // don't use a script tag so that error responses still may have + // `responseJSON` set. Continue using a script tag for JSONP requests that: + // * are cross-domain as AJAX requests won't work without a CORS setup + // * have `scriptAttrs` set as that's a script-only functionality + // Note that this means JSONP requests violate strict CSP script-src settings. + // A proper solution is to migrate from using JSONP to a CORS setup. + ( s.async && jQuery.inArray( "json", s.dataTypes ) < 0 ) + ) + ); +} + +// Install script dataType. Don't specify `contents.script` so that an explicit +// `dataType: "script"` is required (see gh-2432, gh-4822) +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + + // These types of requests are handled via a script tag + // so force their methods to GET. + if ( canUseScriptTag( s ) ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + if ( canUseScriptTag( s ) ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " '; + const directionality = editor.getBody().dir; + const dirAttr = directionality ? ' dir="' + encode(directionality) + '"' : ''; + const previewHtml = '' + '' + '' + headHtml + '' + '' + editor.getContent() + preventClicksOnLinksScript + '' + ''; + return previewHtml; + }; + + const open = editor => { + const content = getPreviewHtml(editor); + const dataApi = editor.windowManager.open({ + title: 'Preview', + size: 'large', + body: { + type: 'panel', + items: [{ + name: 'preview', + type: 'iframe', + sandboxed: true, + transparent: false + }] + }, + buttons: [{ + type: 'cancel', + name: 'close', + text: 'Close', + primary: true + }], + initialData: { preview: content } + }); + dataApi.focus('close'); + }; + + const register$1 = editor => { + editor.addCommand('mcePreview', () => { + open(editor); + }); + }; + + const register = editor => { + const onAction = () => editor.execCommand('mcePreview'); + editor.ui.registry.addButton('preview', { + icon: 'preview', + tooltip: 'Preview', + onAction + }); + editor.ui.registry.addMenuItem('preview', { + icon: 'preview', + text: 'Preview', + onAction + }); + }; + + var Plugin = () => { + global$2.add('preview', editor => { + register$1(editor); + register(editor); + }); + }; + + Plugin(); + +})(); diff --git a/Fuchs/wwwroot/lib/tinymce/plugins/preview/plugin.min.js b/Fuchs/wwwroot/lib/tinymce/plugins/preview/plugin.min.js new file mode 100644 index 0000000..fef9ec0 --- /dev/null +++ b/Fuchs/wwwroot/lib/tinymce/plugins/preview/plugin.min.js @@ -0,0 +1,5 @@ +/** + * TinyMCE version 6.8.6 (TBD) + */ + +!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.Env"),o=tinymce.util.Tools.resolve("tinymce.util.Tools");const n=e=>t=>t.options.get(e),i=n("content_style"),s=n("content_css_cors"),c=n("body_class"),r=n("body_id");e.add("preview",(e=>{(e=>{e.addCommand("mcePreview",(()=>{(e=>{const n=(e=>{var n;let l="";const a=e.dom.encode,d=null!==(n=i(e))&&void 0!==n?n:"";l+='';const m=s(e)?' crossorigin="anonymous"':"";o.each(e.contentCSS,(t=>{l+='"})),d&&(l+='");const y=r(e),u=c(e),v=' '; + const directionality = editor.getBody().dir; + const dirAttr = directionality ? ' dir="' + encode(directionality) + '"' : ''; + previewHtml = '' + '' + '' + '' + contentCssEntries + preventClicksOnLinksScript + '' + '' + previewHtml + '' + ''; + } + return replaceTemplateValues(previewHtml, getPreviewReplaceValues(editor)); + }; + const open = (editor, templateList) => { + const createTemplates = () => { + if (!templateList || templateList.length === 0) { + const message = editor.translate('No templates defined.'); + editor.notificationManager.open({ + text: message, + type: 'info' + }); + return Optional.none(); + } + return Optional.from(global$2.map(templateList, (template, index) => { + const isUrlTemplate = t => t.url !== undefined; + return { + selected: index === 0, + text: template.title, + value: { + url: isUrlTemplate(template) ? Optional.from(template.url) : Optional.none(), + content: !isUrlTemplate(template) ? Optional.from(template.content) : Optional.none(), + description: template.description + } + }; + })); + }; + const createSelectBoxItems = templates => map(templates, t => ({ + text: t.text, + value: t.text + })); + const findTemplate = (templates, templateTitle) => find(templates, t => t.text === templateTitle); + const loadFailedAlert = api => { + editor.windowManager.alert('Could not load the specified template.', () => api.focus('template')); + }; + const getTemplateContent = t => t.value.url.fold(() => Promise.resolve(t.value.content.getOr('')), url => fetch(url).then(res => res.ok ? res.text() : Promise.reject())); + const onChange = (templates, updateDialog) => (api, change) => { + if (change.name === 'template') { + const newTemplateTitle = api.getData().template; + findTemplate(templates, newTemplateTitle).each(t => { + api.block('Loading...'); + getTemplateContent(t).then(previewHtml => { + updateDialog(api, t, previewHtml); + }).catch(() => { + updateDialog(api, t, ''); + api.setEnabled('save', false); + loadFailedAlert(api); + }); + }); + } + }; + const onSubmit = templates => api => { + const data = api.getData(); + findTemplate(templates, data.template).each(t => { + getTemplateContent(t).then(previewHtml => { + editor.execCommand('mceInsertTemplate', false, previewHtml); + api.close(); + }).catch(() => { + api.setEnabled('save', false); + loadFailedAlert(api); + }); + }); + }; + const openDialog = templates => { + const selectBoxItems = createSelectBoxItems(templates); + const buildDialogSpec = (bodyItems, initialData) => ({ + title: 'Insert Template', + size: 'large', + body: { + type: 'panel', + items: bodyItems + }, + initialData, + buttons: [ + { + type: 'cancel', + name: 'cancel', + text: 'Cancel' + }, + { + type: 'submit', + name: 'save', + text: 'Save', + primary: true + } + ], + onSubmit: onSubmit(templates), + onChange: onChange(templates, updateDialog) + }); + const updateDialog = (dialogApi, template, previewHtml) => { + const content = getPreviewContent(editor, previewHtml); + const bodyItems = [ + { + type: 'listbox', + name: 'template', + label: 'Templates', + items: selectBoxItems + }, + { + type: 'htmlpanel', + html: `

      ${ htmlEscape(template.value.description) }

      ` + }, + { + label: 'Preview', + type: 'iframe', + name: 'preview', + sandboxed: false, + transparent: false + } + ]; + const initialData = { + template: template.text, + preview: content + }; + dialogApi.unblock(); + dialogApi.redial(buildDialogSpec(bodyItems, initialData)); + dialogApi.focus('template'); + }; + const dialogApi = editor.windowManager.open(buildDialogSpec([], { + template: '', + preview: '' + })); + dialogApi.block('Loading...'); + getTemplateContent(templates[0]).then(previewHtml => { + updateDialog(dialogApi, templates[0], previewHtml); + }).catch(() => { + updateDialog(dialogApi, templates[0], ''); + dialogApi.setEnabled('save', false); + loadFailedAlert(dialogApi); + }); + }; + const optTemplates = createTemplates(); + optTemplates.each(openDialog); + }; + + const showDialog = editor => templates => { + open(editor, templates); + }; + const register$1 = editor => { + editor.addCommand('mceInsertTemplate', curry(insertTemplate, editor)); + editor.addCommand('mceTemplate', createTemplateList(editor, showDialog(editor))); + }; + + const setup = editor => { + editor.on('PreProcess', o => { + const dom = editor.dom, dateFormat = getMdateFormat(editor); + global$2.each(dom.select('div', o.node), e => { + if (dom.hasClass(e, 'mceTmpl')) { + global$2.each(dom.select('*', e), e => { + if (hasAnyClasses(dom, e, getModificationDateClasses(editor))) { + e.innerHTML = getDateTime(editor, dateFormat); + } + }); + replaceVals(editor, e); + } + }); + }); + }; + + const onSetupEditable = editor => api => { + const nodeChanged = () => { + api.setEnabled(editor.selection.isEditable()); + }; + editor.on('NodeChange', nodeChanged); + nodeChanged(); + return () => { + editor.off('NodeChange', nodeChanged); + }; + }; + const register = editor => { + const onAction = () => editor.execCommand('mceTemplate'); + editor.ui.registry.addButton('template', { + icon: 'template', + tooltip: 'Insert template', + onSetup: onSetupEditable(editor), + onAction + }); + editor.ui.registry.addMenuItem('template', { + icon: 'template', + text: 'Insert template...', + onSetup: onSetupEditable(editor), + onAction + }); + }; + + var Plugin = () => { + global$3.add('template', editor => { + register$2(editor); + register(editor); + register$1(editor); + setup(editor); + }); + }; + + Plugin(); + +})(); diff --git a/Fuchs/wwwroot/lib/tinymce/plugins/template/plugin.min.js b/Fuchs/wwwroot/lib/tinymce/plugins/template/plugin.min.js new file mode 100644 index 0000000..3478ccc --- /dev/null +++ b/Fuchs/wwwroot/lib/tinymce/plugins/template/plugin.min.js @@ -0,0 +1,5 @@ +/** + * TinyMCE version 6.8.6 (TBD) + */ + +!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(a=n=e,(r=String).prototype.isPrototypeOf(a)||(null===(s=n.constructor)||void 0===s?void 0:s.name)===r.name)?"string":t;var a,n,r,s})(t)===e,a=t("string"),n=t("object"),r=t("array"),s=("function",e=>"function"==typeof e);const l=(!1,()=>false);var o=tinymce.util.Tools.resolve("tinymce.util.Tools");const c=e=>t=>t.options.get(e),i=c("template_cdate_classes"),u=c("template_mdate_classes"),m=c("template_selected_content_classes"),p=c("template_preview_replace_values"),d=c("template_replace_values"),h=c("templates"),g=c("template_cdate_format"),v=c("template_mdate_format"),f=c("content_style"),y=c("content_css_cors"),b=c("body_class"),_=(e,t)=>{if((e=""+e).length{const n="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),r="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),s="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),l="January February March April May June July August September October November December".split(" ");return(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=t.replace("%D","%m/%d/%Y")).replace("%r","%I:%M:%S %p")).replace("%Y",""+a.getFullYear())).replace("%y",""+a.getYear())).replace("%m",_(a.getMonth()+1,2))).replace("%d",_(a.getDate(),2))).replace("%H",""+_(a.getHours(),2))).replace("%M",""+_(a.getMinutes(),2))).replace("%S",""+_(a.getSeconds(),2))).replace("%I",""+((a.getHours()+11)%12+1))).replace("%p",a.getHours()<12?"AM":"PM")).replace("%B",""+e.translate(l[a.getMonth()]))).replace("%b",""+e.translate(s[a.getMonth()]))).replace("%A",""+e.translate(r[a.getDay()]))).replace("%a",""+e.translate(n[a.getDay()]))).replace("%%","%")};class T{constructor(e,t){this.tag=e,this.value=t}static some(e){return new T(!0,e)}static none(){return T.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?T.some(e(this.value)):T.none()}bind(e){return this.tag?e(this.value):T.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:T.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return null==e?T.none():T.some(e)}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}T.singletonNone=new T(!1);const S=Object.hasOwnProperty;var x=tinymce.util.Tools.resolve("tinymce.html.Serializer");const C={'"':""","<":"<",">":">","&":"&","'":"'"},w=e=>e.replace(/["'<>&]/g,(e=>{return(t=C,a=e,((e,t)=>S.call(e,t))(t,a)?T.from(t[a]):T.none()).getOr(e);var t,a})),O=(e,t,a)=>((a,n)=>{for(let n=0,s=a.length;nx({validate:!0},e.schema).serialize(e.parser.parse(t,{insert:!0})),D=(e,t)=>(o.each(t,((t,a)=>{s(t)&&(t=t(a)),e=e.replace(new RegExp("\\{\\$"+a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")+"\\}","g"),t)})),e),N=(e,t)=>{const a=e.dom,n=d(e);o.each(a.select("*",t),(e=>{o.each(n,((t,n)=>{a.hasClass(e,n)&&s(t)&&t(e)}))}))},I=(e,t,a)=>{const n=e.dom,r=e.selection.getContent();a=D(a,d(e));let s=n.create("div",{},A(e,a));const l=n.select(".mceTmpl",s);l&&l.length>0&&(s=n.create("div"),s.appendChild(l[0].cloneNode(!0))),o.each(n.select("*",s),(t=>{O(n,t,i(e))&&(t.innerHTML=M(e,g(e))),O(n,t,u(e))&&(t.innerHTML=M(e,v(e))),O(n,t,m(e))&&(t.innerHTML=r)})),N(e,s),e.execCommand("mceInsertContent",!1,s.innerHTML),e.addVisual()};var E=tinymce.util.Tools.resolve("tinymce.Env");const k=(e,t)=>{const a=(e,t)=>((e,t,a)=>{for(let n=0,r=e.length;ne.text===t),l),n=t=>{e.windowManager.alert("Could not load the specified template.",(()=>t.focus("template")))},r=e=>e.value.url.fold((()=>Promise.resolve(e.value.content.getOr(""))),(e=>fetch(e).then((e=>e.ok?e.text():Promise.reject())))),s=(e,t)=>(s,l)=>{if("template"===l.name){const l=s.getData().template;a(e,l).each((e=>{s.block("Loading..."),r(e).then((a=>{t(s,e,a)})).catch((()=>{t(s,e,""),s.setEnabled("save",!1),n(s)}))}))}},c=t=>s=>{const l=s.getData();a(t,l.template).each((t=>{r(t).then((t=>{e.execCommand("mceInsertTemplate",!1,t),s.close()})).catch((()=>{s.setEnabled("save",!1),n(s)}))}))};(()=>{if(!t||0===t.length){const t=e.translate("No templates defined.");return e.notificationManager.open({text:t,type:"info"}),T.none()}return T.from(o.map(t,((e,t)=>{const a=e=>void 0!==e.url;return{selected:0===t,text:e.title,value:{url:a(e)?T.from(e.url):T.none(),content:a(e)?T.none():T.from(e.content),description:e.description}}})))})().each((t=>{const a=(e=>((e,t)=>{const a=e.length,n=new Array(a);for(let t=0;t({title:"Insert Template",size:"large",body:{type:"panel",items:e},initialData:a,buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],onSubmit:c(t),onChange:s(t,i)}),i=(t,n,r)=>{const s=((e,t)=>{var a;let n=A(e,t);if(-1===t.indexOf("")){let t="";const r=null!==(a=f(e))&&void 0!==a?a:"",s=y(e)?' crossorigin="anonymous"':"";o.each(e.contentCSS,(a=>{t+='"})),r&&(t+='");const l=b(e),c=e.dom.encode,i='