Skip to content

Commit

Permalink
2024.1 (#103)
Browse files Browse the repository at this point in the history
Merge 2024.1 Documentation
  • Loading branch information
cortex-td authored Feb 8, 2024
1 parent dabc8b0 commit 6c91195
Show file tree
Hide file tree
Showing 1,171 changed files with 75,565 additions and 31 deletions.
3 changes: 3 additions & 0 deletions .htmltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ IgnoreURLs:
- "https://learn.microsoft.com/.*"
- "https://fonts.googleapis.com.*"
- "https://fonts.gstatic.com.*"
- "http://www.mimekit.net/docs/.*"
- "https://nssm.cc/"
- "https://code.visualstudio.com/"
IgnoreDirs:
- "docs/?.*/_print/"
- "docs/?.*/_shared/"
- "docs/2022.9/?.*/"
- "docs/2023.3/?.*/"
- "docs/2023.5/?.*/"
- "docs/2023.7/?.*/"
9 changes: 7 additions & 2 deletions config/_default/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -200,15 +200,20 @@ enable = true
[[menu.main]]
identifier = 'documentation'
name = 'Documentation'
url = '/docs/2023.11'
url = '/docs/2024.1'
weight = 10

# Releases menu
[[params.versions]]
version = "2024.1"
url = "/docs/2024.1/"
dotNetVersion = "net-6.0"
latest = true

[[params.versions]]
version = "2023.11"
url = "/docs/2023.11/"
dotNetVersion = "net-6.0"
latest = true

[[params.versions]]
version = "2023.9"
Expand Down
474 changes: 474 additions & 0 deletions content/en/blog/releases/2024.X/2024.1.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions content/en/blog/releases/2024.X/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: "2024.X"
linkTitle: "2024.X"
date: 2024-01-01
---
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,6 @@ In these examples, the following properties are common:
| Property | Value |
|----------|-------|
| [Text][Text Property] | `"The quick brown fox jumps over the lazy dog."` |
| [Occurrence][Occurrence Property] | `1` |
| [Comparison Type][ComparisonType Property] | `Ordinal` |
| [Matches][Matches Property] | `($)Matches` with no value |

Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/2023.11/Reference/data-types/data/command.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ In future this limitation may be removed.

#### Block Statements Incompatible (Oracle Only)

Using an [OracleBlockStatement][] in the [CommandText][] will throw a [Command Exception][CommandExceptionIncompatibleStatementType]. You must use either a [QueryCommand][] or [NonQueryCommand][] instead.
Using an [OracleBlockStatement][] in the [CommandText][] will throw a [Command Exception][CommandExceptionIncompatibleStatementTypeOld]. You must use either a [QueryCommand][] or [NonQueryCommand][] instead.

## See Also

Expand Down Expand Up @@ -147,7 +147,7 @@ Using an [OracleBlockStatement][] in the [CommandText][] will throw a [Command E
[QueryCommand]: {{< url path="Cortex.Reference.DataTypes.Data.QueryCommand.MainDoc" >}}
[NonQueryCommand]: {{< url path="Cortex.Reference.DataTypes.Data.NonQueryCommand.MainDoc" >}}
[CommandException]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.MainDoc" >}}
[CommandExceptionIncompatibleStatementType]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.IncompatibleStatementType" >}}
[CommandExceptionIncompatibleStatementTypeOld]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.IncompatibleStatementTypeOld" >}}
[ConnectionDetailsProperty]: {{< url path="Cortex.Reference.Blocks.Data.ExecuteDataCommand.ExecuteDataCommand.ConnectionDetailsProperty" >}}
[CommandProperty]: {{< url path="Cortex.Reference.Blocks.Data.ExecuteDataCommand.ExecuteDataCommand.CommandProperty" >}}
[Command]: {{< url path="Cortex.Reference.DataTypes.Data.Command.MainDoc" >}}
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/2023.11/Reference/data-types/data/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ In future this limitation may be removed.

#### Block Statements Incompatible (Oracle Only)

Using an [OracleBlockStatement][] in the [CommandText][] will throw a [Command Exception][CommandExceptionIncompatibleStatementType]. You must use either a [QueryCommand][] or [NonQueryCommand][] instead.
Using an [OracleBlockStatement][] in the [CommandText][] will throw a [Command Exception][CommandExceptionIncompatibleStatementTypeOld]. You must use either a [QueryCommand][] or [NonQueryCommand][] instead.

## See Also

Expand Down Expand Up @@ -150,7 +150,7 @@ Using an [OracleBlockStatement][] in the [CommandText][] will throw a [Command E
[CommandProperty]: {{< url path="Cortex.Reference.Blocks.Data.ExecuteDataCommand.ExecuteDataCommand.CommandProperty" >}}
[OracleConnectionDetails]: {{< url path="Cortex.Reference.DataTypes.Data.OracleConnectionDetails.MainDoc" >}}
[CommandException]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.MainDoc" >}}
[CommandExceptionIncompatibleStatementType]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.IncompatibleStatementType" >}}
[CommandExceptionIncompatibleStatementTypeOld]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.IncompatibleStatementTypeOld" >}}

[OracleBlockStatement]: {{< url path="Oracle.PL-SQL.BlockStatement" >}}
[SQL Injection]: {{< url path="W3.SqlInjection" >}}
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ In future this limitation may be removed.

#### Multiple SQL Commands (Oracle Only)

For Oracle you must use [block statement syntax][OracleBlockStatement] to execute multiple commands, otherwise a [CommandException][CommandExceptionRuntime] will be thrown.
For Oracle you must use [block statement syntax][OracleBlockStatement] to execute multiple commands, otherwise a [CommandException][CommandExceptionRuntimeOld] will be thrown.

## See Also

Expand Down Expand Up @@ -146,7 +146,7 @@ For Oracle you must use [block statement syntax][OracleBlockStatement] to execut
[Commands]: {{< url path="Cortex.Reference.DataTypes.Data.Commands.MainDoc" >}}
[QueryCommand]: {{< url path="Cortex.Reference.DataTypes.Data.QueryCommand.MainDoc" >}}
[CommandProperty]: {{< url path="Cortex.Reference.Blocks.Data.ExecuteDataCommand.ExecuteDataCommand.CommandProperty" >}}
[CommandExceptionRuntime]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.Runtime" >}}
[CommandExceptionRuntimeOld]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.RuntimeOld" >}}

[OracleBlockStatement]: {{< url path="Oracle.PL-SQL.BlockStatement" >}}
[SQL Injection]: {{< url path="W3.SqlInjection" >}}
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ In future this limitation may be removed.

#### Multiple SQL Commands (Oracle Only)

For Oracle you must use [block statement syntax][OracleBlockStatement] to execute multiple commands, otherwise a [CommandException][CommandExceptionRuntime] will be thrown.
For Oracle you must use [block statement syntax][OracleBlockStatement] to execute multiple commands, otherwise a [CommandException][CommandExceptionRuntimeOld] will be thrown.

## See Also

Expand Down Expand Up @@ -146,7 +146,7 @@ For Oracle you must use [block statement syntax][OracleBlockStatement] to execut
[Commands]: {{< url path="Cortex.Reference.DataTypes.Data.Commands.MainDoc" >}}
[NonQueryCommand]: {{< url path="Cortex.Reference.DataTypes.Data.NonQueryCommand.MainDoc" >}}
[CommandProperty]: {{< url path="Cortex.Reference.Blocks.Data.ExecuteDataCommand.ExecuteDataCommand.CommandProperty" >}}
[CommandExceptionRuntime]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.Runtime" >}}
[CommandExceptionRuntimeOld]: {{< url path="Cortex.Reference.Exceptions.Data.CommandException.RuntimeOld" >}}

[OracleBlockStatement]: {{< url path="Oracle.PL-SQL.BlockStatement" >}}
[SQL Injection]: {{< url path="W3.SqlInjection" >}}
2 changes: 1 addition & 1 deletion content/en/docs/2023.11/Whats New/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ For a full list of what has been introduced in this release, please see the [202
[New Blocks]: {{< url path="Cortex.Blogs.Releases.2023.11.NewBlocks" version="2023.11" >}}
[Support for Oracle Data Connections]: {{< url path="Cortex.Blogs.Releases.2023.11.OracleSupport" version="2023.11" >}}
[Encrypted Headers are Supported in the Execute HTTP Request Block]: {{< url path="Cortex.Blogs.Releases.2023.11.EncryptedHeaders" version="2023.11" >}}
[improved installation]: {{< url path="Cortex.Blogs.Releases.2023.11.EncryptedHeaders" version="2023.11" >}}
[improved installation]: {{< url path="Cortex.Blogs.Releases.2023.11.ImprovedInstallation" version="2023.11" >}}
[CORTEX Gateway Rebranding]: {{< url path="Cortex.Blogs.Releases.2023.11.CORTEXGatewayRebranding" version="2023.11" >}}
[Product Portal]: {{< url path="Cortex.Blogs.Releases.2023.11.ProductPortal" version="2023.11" >}}
[2023.11 Release Notes]: {{< url path="Cortex.Blogs.Releases.2023.11.MainDoc" version="2023.11" >}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,25 +167,23 @@ A Friendly Name should be assigned to the certificate being used for the Cortex
### Grant additional folder permissions to the {{% ctx %}} Gateway Application Pool User
#### Cortex Blocks Provider Host folder
Check that the {{% ctx %}} Gateway `Application Pool` user has rights to the `Cortex Blocks Provider Host folder` folder using the following steps:
1. Navigate to `C:\ProgramData\Cortex`
1. Right-click on the `Cortex Blocks Provider Host` folder and click `Properties`.
1. In the dialog, click the `Security` tab.
1. Check the `Application Pool` user for Gateway is listed in the `Group or user names` and has `Modify` permissions.
1. If the `Application Pool` user for Gateway is not listed:
2. Right-click on the `Cortex Blocks Provider Host` folder and click `Properties`.
3. In the dialog, click the `Security` tab.
4. Check the `Application Pool` user for Gateway is listed in the `Group or user names` and has `Modify` permissions.
5. If the `Application Pool` user for Gateway is not listed:
1. Click the `Edit...` button.
1. Click the `Add...` button.
1. Enter the username of the application pool user and click `OK`.
1. In the `Permissions` section at the bottom, check `Modify`.
1. Click `OK`.
1. If the `Application Pool` user for Gateway is listed but does not have permissions:
2. Click the `Add...` button.
3. Enter the username of the application pool user and click `OK`.
4. In the `Permissions` section at the bottom, check `Modify`.
5. Click `OK`.
6. If the `Application Pool` user for Gateway is listed but does not have permissions:
1. Click the `Edit...` button.
1. Select the `Application Pool` user.
1. Check `Modify`.
1. Click `OK`.
2. Select the `Application Pool` user.
3. Check `Modify`.
4. Click `OK`.
#### Repo folder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,6 @@ Once the certificate has been imported, a `Friendly Name` should be assigned whi
### Grant additional folder permissions to the {{% ctx %}} Gateway Application Pool User
#### Cortex Blocks Provider Host folder
Check that the {{% ctx %}} Gateway `Application Pool` user has rights to the `Cortex Blocks Provider Host folder` folder using the following steps:
1. Navigate to `C:\ProgramData\Cortex`
Expand Down
8 changes: 8 additions & 0 deletions content/en/docs/2024.1/FAQs/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: "FAQs"
linkTitle: "FAQs"
description: "Answers to our most frequently asked questions."
weight: 10000
---

{{< workinprogress >}}
6 changes: 6 additions & 0 deletions content/en/docs/2024.1/Guides/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "Guides"
linkTitle: "Guides"
description: "This section includes all guides for the {{% ctx %}} Innovation platform."
weight: 10
---
8 changes: 8 additions & 0 deletions content/en/docs/2024.1/Guides/cortex-gateway/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: "CORTEX Gateway"
linkTitle: "CORTEX Gateway"
description: "The centralised web-based portal for accessing all user applications and tooling in the {{% ctx %}} Innovation platform."
weight: 1
---

{{< workinprogress >}}
7 changes: 7 additions & 0 deletions content/en/docs/2024.1/Guides/cortex-gateway/help/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Help"
linkTitle: "Help"
description: "System level help"
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Release Notes"
linkTitle: "Release Notes"
description: "Release notes for all currently available {{% ctx %}} Versions."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "CORTEX Gateway Management"
linkTitle: "CORTEX Gateway Management"
description: "{{% ctx %}} Gateway and Studio Management tools and settings"
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "LDAP Authorisation"
linkTitle: "LDAP Authorisation"
description: "Configure RBAC by assining roles to security groups."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "LDAP Connection"
linkTitle: "LDAP Connection"
description: "Connect to an Active Directory using LDAP."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "License Consumption"
linkTitle: "License Consumption"
description: "Review current license consumption of flows in master."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Packages"
linkTitle: "Packages"
description: "Create and Manage {{% ctx %}} Innovation Packages"
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Studio Authorisation"
linkTitle: "Studio Authorisation"
description: "Assign access rights to flows based on security groups."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Studio Export"
linkTitle: "Studio Export"
description: "Create {{% ctx %}} Studio Packages by exporting flows."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Studio Hierarchy"
linkTitle: "Studio Hierarchy"
description: "Manage the location of flows in the Flow Hierarchy."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Studio Import"
linkTitle: "Studio Import"
description: "Import {{% ctx %}} Studio Packages."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Version Control"
linkTitle: "Version Control"
description: "High level view of flows out of sync with master. Allow for mass Commit or Get Master"
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: "Welcome Page"
linkTitle: "Welcome Page"
description: "Welcome Page"
---

{{< workinprogress >}}

## Summary

## Recently Edited Flows

TODO: Summary, Screenshots
6 changes: 6 additions & 0 deletions content/en/docs/2024.1/Guides/cortex-innovation/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "CORTEX Innovation"
linkTitle: "CORTEX Innovation"
description: "The {{% ctx %}} Innovation platform."
weight: 300
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "Core Application"
linkTitle: "Core Application"
description: "The Core Application."
weight: 1
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "Services"
linkTitle: "Services"
description: "The Core Application Services."
weight: 1
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "API Gateway Service"
linkTitle: "API Gateway Service"
description: "The API Gateway Service."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Authorisation Service"
linkTitle: "Authorisation Service"
description: "The Authorisation Service."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Concurrency Management Service"
linkTitle: "Concurrency Management Service"
description: "The Concurrency Management Service."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Configuration Management Service"
linkTitle: "Configuration Management Service"
description: "The Configuration Management Service."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Data Storage Service"
linkTitle: "Data Storage Service"
description: "The Data Storage Service."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Execution Management Service"
linkTitle: "Execution Management Service"
description: "The Execution Management Service."
---

{{< workinprogress >}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Licence Management Service"
linkTitle: "Licence Management Service"
description: "The Licence Management Service."
---

{{< workinprogress >}}
Loading

0 comments on commit 6c91195

Please sign in to comment.