From a08fff3f4801f4b1ecb6ee140119d68f895105c6 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Mon, 11 Dec 2023 15:28:43 +0200 Subject: [PATCH 01/75] Adding jsPlumb --- frontend/package-lock.json | 11 +++++++++++ frontend/package.json | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index f320336203..08339440b7 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -22,6 +22,7 @@ "@angular/service-worker": "^14.2.3", "@aspnet/signalr": "^1.0.27", "@ctrl/ngx-codemirror": "^5.1.1", + "@jsplumb/browser-ui": "^6.2.10", "angular-marked": "^0.0.14", "codemirror": "^5.65.7", "echarts": "^5.4.0", @@ -3073,6 +3074,11 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, + "node_modules/@jsplumb/browser-ui": { + "version": "6.2.10", + "resolved": "https://registry.npmjs.org/@jsplumb/browser-ui/-/browser-ui-6.2.10.tgz", + "integrity": "sha512-trk++mK5q6hceJL79teemzcilJ+8DrZT/lMK0+B80AtHqZHr0YwMCf+so2JBb2Z/MDZ0fUEU9MbELY6OPhhs5g==" + }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", @@ -16095,6 +16101,11 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, + "@jsplumb/browser-ui": { + "version": "6.2.10", + "resolved": "https://registry.npmjs.org/@jsplumb/browser-ui/-/browser-ui-6.2.10.tgz", + "integrity": "sha512-trk++mK5q6hceJL79teemzcilJ+8DrZT/lMK0+B80AtHqZHr0YwMCf+so2JBb2Z/MDZ0fUEU9MbELY6OPhhs5g==" + }, "@leichtgewicht/ip-codec": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", diff --git a/frontend/package.json b/frontend/package.json index b07ed817c1..ba5e26355a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -25,6 +25,7 @@ "@angular/service-worker": "^14.2.3", "@aspnet/signalr": "^1.0.27", "@ctrl/ngx-codemirror": "^5.1.1", + "@jsplumb/browser-ui": "^6.2.10", "angular-marked": "^0.0.14", "codemirror": "^5.65.7", "echarts": "^5.4.0", @@ -62,4 +63,4 @@ "tslint": "~6.1.3", "typescript": "~4.8.3" } -} \ No newline at end of file +} From bc70f3a27194198abbd696adadd5da4bafabace8 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Mon, 11 Dec 2023 15:37:44 +0200 Subject: [PATCH 02/75] Converting [public] argument to bool --- backend/files/exceptions.hl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/files/exceptions.hl b/backend/files/exceptions.hl index 30dbbe22a4..bb060e2d7c 100644 --- a/backend/files/exceptions.hl +++ b/backend/files/exceptions.hl @@ -15,7 +15,8 @@ log.error:x:@.arguments/*/message if and exists:x:@.arguments/*/public - get-value:x:@.arguments/*/public + convert:x:@.arguments/*/public + type:bool .lambda // Exception message is supposed to propagate to client. From 7308739a423b53a2e9b7672f87ba86279effb326 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Mon, 11 Dec 2023 16:16:33 +0200 Subject: [PATCH 03/75] Started working on Workflow component --- .../app/_layout/header/header.component.ts | 5 ++ .../sql-studio/sql-studio.component.html | 4 +- .../module/workflow-editor.module.ts | 26 +++++++ .../module/workflow-editor.routing.module.ts | 21 +++++ .../workflow-editor.component.html | 76 +++++++++++++++++++ .../workflow-editor.component.scss | 7 ++ .../workflow-editor.component.ts | 32 ++++++++ .../_module/hyperlambda-playground.module.ts | 2 +- frontend/src/app/app-routing.module.ts | 4 + 9 files changed, 174 insertions(+), 3 deletions(-) create mode 100644 frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.module.ts create mode 100644 frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.routing.module.ts create mode 100644 frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.html create mode 100644 frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.scss create mode 100644 frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.ts diff --git a/frontend/src/app/_layout/header/header.component.ts b/frontend/src/app/_layout/header/header.component.ts index 0deb957488..8169ce01b6 100644 --- a/frontend/src/app/_layout/header/header.component.ts +++ b/frontend/src/app/_layout/header/header.component.ts @@ -390,6 +390,11 @@ optin verification and potential referential integrity issues.`; url: '/hyper-ide', exact: false, }, + { + name: 'Workflow Editor', + url: '/workflow-editor', + exact: false, + }, { name: 'Chatbot Wizard', url: '/chatbot-wizard', diff --git a/frontend/src/app/_protected/pages/create/sql-studio/sql-studio.component.html b/frontend/src/app/_protected/pages/create/sql-studio/sql-studio.component.html index df0594549a..fc2f35fb86 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/sql-studio.component.html +++ b/frontend/src/app/_protected/pages/create/sql-studio/sql-studio.component.html @@ -5,7 +5,7 @@
-

Select a database

+

Select a Database

@@ -192,7 +192,7 @@ -
+
diff --git a/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.module.ts b/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.module.ts new file mode 100644 index 0000000000..91c12a12c1 --- /dev/null +++ b/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.module.ts @@ -0,0 +1,26 @@ + +/* + * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + */ + +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; +import { WorkflowEditorRoutingModule } from './workflow-editor.routing.module'; +import { MaterialModule } from 'src/app/material.module'; +import { CmModule } from 'src/app/codemirror/_module/cm.module'; +import { CodemirrorModule } from '@ctrl/ngx-codemirror'; +import { WorkflowEditorComponent } from '../workflow-editor.component'; + +@NgModule({ + declarations: [ + WorkflowEditorComponent, + ], + imports: [ + CommonModule, + WorkflowEditorRoutingModule, + MaterialModule, + CmModule, + CodemirrorModule, + ] +}) +export class WorkflowEditorModule { } diff --git a/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.routing.module.ts b/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.routing.module.ts new file mode 100644 index 0000000000..1cba8458b6 --- /dev/null +++ b/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.routing.module.ts @@ -0,0 +1,21 @@ + +/* + * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + */ + +import { NgModule } from '@angular/core'; +import { Routes, RouterModule } from '@angular/router'; +import { WorkflowEditorComponent } from '../workflow-editor.component'; + +const routes: Routes = [ + { + path: '', + component: WorkflowEditorComponent + } +]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule] +}) +export class WorkflowEditorRoutingModule { } diff --git a/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.html b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.html new file mode 100644 index 0000000000..3ad372cad3 --- /dev/null +++ b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.html @@ -0,0 +1,76 @@ + + + + +
+ +
+

Select a Workflow

+
+ + +
+ + + + + + + + + + + + database + | + + + {{item.name}} + + + +
+ + +
+
+ + +
+
+
+ +
+
+ + + + +
+
+ + Foo + +
+
+ +
+
diff --git a/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.scss b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.scss new file mode 100644 index 0000000000..890c4126e8 --- /dev/null +++ b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.scss @@ -0,0 +1,7 @@ +/* + * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + */ + +@import "../../../../../assets/styles/_variables/colors.scss"; +@import "../../../../../assets/styles/_variables/mixin.scss"; +@import "../../../../../assets/styles/_variables/sizing.scss"; diff --git a/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.ts b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.ts new file mode 100644 index 0000000000..0e0491f88b --- /dev/null +++ b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.ts @@ -0,0 +1,32 @@ + +/* + * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + */ + +import { Component } from '@angular/core'; +import { ReplaySubject } from 'rxjs'; + +/** + * Primary Workflow component, allowing users to create and manage workflows. + */ +@Component({ + selector: 'app-workflow-editor', + templateUrl: './workflow-editor.component.html', + styleUrls: ['./workflow-editor.component.scss'] +}) +export class WorkflowEditorComponent { + + private _dbLoading: ReplaySubject = new ReplaySubject(); + + dbLoading = this._dbLoading.asObservable(); + workflows: any[] = []; + selectedWorkflow: any = null; + + workflowChanged(el: any) { + console.log(el); + } + + addNewWorkflow() { + + } +} diff --git a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.module.ts b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.module.ts index 91ba32131e..2a8f5759fc 100644 --- a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.module.ts +++ b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.module.ts @@ -22,7 +22,7 @@ import { CodemirrorModule } from '@ctrl/ngx-codemirror'; ComponentsModule, MaterialModule, CmModule, - CodemirrorModule + CodemirrorModule, ] }) export class HyperlambdaPlaygroundModule { } diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index b318b8e040..92f0b113b0 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -63,6 +63,10 @@ const routes: Routes = [ path: 'hyper-ide', loadChildren: () => import('./_protected/pages/create/hyper-ide/module/ide.module').then(m => m.IdeModule) }, + { + path: 'workflow-editor', + loadChildren: () => import('./_protected/pages/create/workflow-editor/module/workflow-editor.module').then(m => m.WorkflowEditorModule) + }, { path: 'chatbot-wizard', loadChildren: () => import('./_protected/pages/create/chatbot-wizard/_module/chatbot-wizard.module').then(m => m.ChatbotWizardModule) From e76653bc077e6f63ca5f6a1837589913c303a039 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Mon, 11 Dec 2023 18:11:15 +0200 Subject: [PATCH 04/75] b --- backend/files/etc/workflows/README.md | 4 + .../privacy-modal.component.html | 46 ++-- .../terms-modal/terms-modal.component.html | 206 +++++++++--------- .../pages/create/hyper-ide/ide.component.html | 1 + .../module/workflow-editor.module.ts | 4 + .../workflow-editor.component.html | 109 ++++----- .../workflow-editor.component.scss | 18 ++ .../workflow-editor.component.ts | 49 ++++- 8 files changed, 234 insertions(+), 203 deletions(-) create mode 100644 backend/files/etc/workflows/README.md diff --git a/backend/files/etc/workflows/README.md b/backend/files/etc/workflows/README.md new file mode 100644 index 0000000000..35b727139b --- /dev/null +++ b/backend/files/etc/workflows/README.md @@ -0,0 +1,4 @@ + +# Hyperlambda Workflows + +This folder contains Hyperlambda Workflows. diff --git a/frontend/src/app/_general/components/privacy-modal/privacy-modal.component.html b/frontend/src/app/_general/components/privacy-modal/privacy-modal.component.html index 1190d13972..74d98cb656 100644 --- a/frontend/src/app/_general/components/privacy-modal/privacy-modal.component.html +++ b/frontend/src/app/_general/components/privacy-modal/privacy-modal.component.html @@ -5,16 +5,16 @@

Privacy Policy

This policy applies to all our all existing and new users as of 14th of April 2023.

- At Arta Marketing, accessible from ainiro.io, one of our + At AINIRO.IO, accessible from ainiro.io, one of our main priorities is our users privacy. This document contains types of information - that is collected and recorded by Arta Marketing and how we use it. + that is collected and recorded by AINIRO.IO and how we use it. This policy applies to all our all existing and new users as of 14th of April 2023.

SCOPE

- Arta Marketing AS (Arta Marketing, "we") might collect and process personal data of users of + AINIRO.IO AS (AINIRO.IO, "we") might collect and process personal data of users of AINIRO's website and online services. This Privacy Policy applies to personal data we obtain from our customers and their representatives (“Users”) through our websites @@ -38,17 +38,17 @@

SCOPE

- This Privacy Policy only covers data processing carried out by Arta Marketing. The Privacy Policy + This Privacy Policy only covers data processing carried out by AINIRO.IO. The Privacy Policy does not address, and we are not responsible for, the privacy practices of any third parties. - Arta Marketing disclaims all responsibility for the processing carried out by third parties, also + AINIRO.IO disclaims all responsibility for the processing carried out by third parties, also in cases where Services include hyperlinks to third parties' websites.

Please note that this Privacy Policy applies to processing of personal data carried out by - Arta Marketing as a data controller. As regards the data Arta Marketing's customers or Users insert + AINIRO.IO as a data controller. As regards the data AINIRO.IO's customers or Users insert into - Services while using the Services, Arta Marketing registers this personal data as a data processor + Services while using the Services, AINIRO.IO registers this personal data as a data processor and the relevant customer shall be considered to be the data controller with regard to this personal data.

@@ -69,7 +69,7 @@

PERSONAL DATA PROCESSED AND SOURCES OF DATA.

- Arta Marketing may collect and process for example the following User Data from Users: (i) name and + AINIRO.IO may collect and process for example the following User Data from Users: (i) name and contact details; (ii) e-mail address; (iii) phone number; (iv) invoicing and billing information; (v) other personal data Users provide themselves.

@@ -116,9 +116,9 @@

WEB ANALYTICS SERVICES

PURPOSES

- There are several purposes for the processing of personal data by Arta Marketing. Personal data is + There are several purposes for the processing of personal data by AINIRO.IO. Personal data is processed - by Arta Marketing for managing the relationships with customers, facilitating transactions and + by AINIRO.IO for managing the relationships with customers, facilitating transactions and payments, and for managing, developing and analysing our customer service. Personal data is also used to direct marketing at special customer groups, and other business activities related to any of @@ -126,7 +126,7 @@

PURPOSES

- Personal data is also processed by Arta Marketing for the following purposes: + Personal data is also processed by AINIRO.IO for the following purposes:

TO PROVIDE OUR SERVICES AND CARRY OUT OUR CONTRACTUAL OBLIGATIONS.

@@ -193,10 +193,10 @@

TRANSFER TO COUNTRIES OUTSIDE OF EUROPE.

RECIPIENTS

- We only share personal data within the organisation of Arta Marketing if and as far as reasonably + We only share personal data within the organisation of AINIRO.IO if and as far as reasonably necessary to perform and develop our Services. We do not share personal data with third parties outside of - Arta Marketing's organization unless one of the following circumstances applies: + AINIRO.IO's organization unless one of the following circumstances applies:

IT IS NECESSARY FOR THE PURPOSES SET OUT IN THIS PRIVACY POLICY

@@ -212,12 +212,12 @@

IT IS NECESSARY FOR THE PURPOSES SET OUT IN THIS PRIVACY POLICY

FOR LEGAL REASONS

- We may share personal data with third parties outside Arta Marketing's organization if we have a + We may share personal data with third parties outside AINIRO.IO's organization if we have a good-faith belief that access to and use of the personal data is reasonably necessary to: (i) meet any applicable law, regulation, and/or court order; (ii) detect, prevent, or otherwise address fraud, security - or technical issues; and/or (iii) protect the interests, properties or safety of Arta Marketing, our + or technical issues; and/or (iii) protect the interests, properties or safety of AINIRO.IO, our Users or the public in accordance with the law. When possible, we will inform Users about such transfer and processing. @@ -238,7 +238,7 @@

TO AUTHORIZED SERVICE PROVIDERS

FOR OTHER LEGITIMATE REASONS

- If Arta Marketing is involved in a merger, acquisition or asset sale, we may transfer personal data + If AINIRO.IO is involved in a merger, acquisition or asset sale, we may transfer personal data to the third party involved. However, we will continue to ensure the confidentiality of all personal data. We will give notice to all Users concerned when the personal data are transferred or become subject @@ -248,7 +248,7 @@

FOR OTHER LEGITIMATE REASONS

WITH EXPLICIT CONSENT

- We may share personal data with third parties outside Arta Marketing's organization for other + We may share personal data with third parties outside AINIRO.IO's organization for other reasons than the ones mentioned before, when we have the User's explicit consent to do so. The User has the right to withdraw this consent at all times. @@ -257,7 +257,7 @@

WITH EXPLICIT CONSENT

STORAGE PERIOD

- Arta Marketing does not store personal data longer than is legally permitted and necessary for the + AINIRO.IO does not store personal data longer than is legally permitted and necessary for the purposes of providing the Services or the relevant parts thereof. The storage period depends on the nature of the information and the purposes of processing. The maximum period may therefore vary per use. @@ -279,7 +279,7 @@

STORAGE PERIOD

USERS' RIGHTS

- Arta Marketing offers access for the Users to the personal data processed by Arta Marketing. This + AINIRO.IO offers access for the Users to the personal data processed by AINIRO.IO. This means that Users may contact us and we will inform what personal data we have collected and processed regarding the said User and the purposes such data are used for. @@ -323,7 +323,7 @@

RIGHT TO OBJECT

- In the event and at the sole discretion of Arta Marketing, if it is determined that the Service can + In the event and at the sole discretion of AINIRO.IO, if it is determined that the Service can no longer be provided without customer acceptance of modified terms, a pro-rated refund of service will be paid back to the User. @@ -365,9 +365,9 @@

DIRECT MARKETING

You have the right to opt out of receiving electronic direct marketing communications from us, - and choosing not to receive marketing communications from us in the future. Arta Marketing uses the + and choosing not to receive marketing communications from us in the future. AINIRO.IO uses the Users' e-mail addresses on record to communicate of updates and important information regarding - the Arta Marketing infrastructure in the form of occasional newsletters. Users have the possibility + the AINIRO.IO infrastructure in the form of occasional newsletters. Users have the possibility to opt out of these e-mails by unsubscribing through the e-mail itself.

@@ -417,7 +417,7 @@

INFORMATION SECURITY

laws, about the breach as soon as reasonably possible. - Trade name: Arta Marketing AS + Trade name: AINIRO.IO AS Organization number: 930 920 657 diff --git a/frontend/src/app/_general/components/terms-modal/terms-modal.component.html b/frontend/src/app/_general/components/terms-modal/terms-modal.component.html index 0377ecacf3..1e22e07804 100644 --- a/frontend/src/app/_general/components/terms-modal/terms-modal.component.html +++ b/frontend/src/app/_general/components/terms-modal/terms-modal.component.html @@ -5,69 +5,69 @@

Terms & Conditions

These terms apply to all users as of 14th of April 2023.

Scope

-

These General Terms of Service (“Terms”) will be applied to an agreement between Arta Marketing AS, a +

These General Terms of Service (“Terms”) will be applied to an agreement between AINIRO.IO AS, a Norwegian company, and a customer (“Customer”) - to whom Arta Marketing provides cloud-based infrastructure and software services for the Customer's - commercial purposes (“Service”). In these Terms, Arta Marketing and Customer are referred to jointly + to whom AINIRO.IO provides cloud-based infrastructure and software services for the Customer's + commercial purposes (“Service”). In these Terms, AINIRO.IO and Customer are referred to jointly as the “Parties” and individually as a “Party”. The Parties expressly acknowledge that the Service is neither intended nor fit for use by consumers.

Agreement documents

-

An agreement is formed between the Parties when Arta Marketing receives an appropriately filled-in +

An agreement is formed between the Parties when AINIRO.IO receives an appropriately filled-in registration or order form (“Order”) which the Customer has submitted through a registration - and/or purchasing procedure on Arta Marketing's website under the domain ainiro.io. In connection + and/or purchasing procedure on AINIRO.IO's website under the domain ainiro.io. In connection with the registration procedure the Customer will create a service account. Any referral herein to “Agreement” includes the Order, service descriptions attached or referred to in the Order, the service level agreement (“SLA”), the acceptable use policy (“AUP”) and these Terms. The SLA and the - AUP are available on Arta Marketing's website under the domain ainiro.io.

+ AUP are available on AINIRO.IO's website under the domain ainiro.io.

Provision of service

-

Arta Marketing shall provide the Customer with the Service, which is specified in the Order. If the - provided Service differs from the specifications, Arta Marketing shall correct the Service promptly +

AINIRO.IO shall provide the Customer with the Service, which is specified in the Order. If the + provided Service differs from the specifications, AINIRO.IO shall correct the Service promptly after a notification by the Customer.

Service levels

-

Arta Marketing shall offer compensation to the Customer for all unscheduled interruptions in the - provision of the Service in accordance with the SLA in force. In such cases, Arta Marketing will add +

AINIRO.IO shall offer compensation to the Customer for all unscheduled interruptions in the + provision of the Service in accordance with the SLA in force. In such cases, AINIRO.IO will add free trial days to your subscription, not give a refund.

Support

-

Arta Marketing shall provide the Customer's administrative users with technical support with respect - to the Service through the means described under the Support page on Arta Marketing's website under +

AINIRO.IO shall provide the Customer's administrative users with technical support with respect + to the Service through the means described under the Support page on AINIRO.IO's website under the domain ainiro.io. - Contact details and service hours are provided on Arta Marketing's website under the domain + Contact details and service hours are provided on AINIRO.IO's website under the domain ainiro.io.

Access to Service Account

The Customer will be responsible for activities that occur under the Customer's service account, including actions taken by the Customer's employees and other representatives (“User”) as well as their compliance with user instructions and the AUP. The Customer must - promptly notify Arta Marketing if the Customer suspects that an unauthorised third party is using, + promptly notify AINIRO.IO if the Customer suspects that an unauthorised third party is using, or may have access to, the Service or the Customer's service account.

Third-party software

The Customer must comply with third-party software license terms if the use of such software - is offered by Arta Marketing for the provision of the Service, or if such software is obtained and - uploaded in the Service by the Customer, with Arta Marketing's separate instructions.

+ is offered by AINIRO.IO for the provision of the Service, or if such software is obtained and + uploaded in the Service by the Customer, with AINIRO.IO's separate instructions.

Paid subscriptions and free trials

The Service and the prices for the Service (“Service Fee”) are described in the service - descriptions available on Arta Marketing's website under the domain ainiro.io. Arta Marketing may + descriptions available on AINIRO.IO's website under the domain ainiro.io. AINIRO.IO may from time to time offer trials of the - Service for a specified period without payment. Arta Marketing reserves the right, in its sole + Service for a specified period without payment. AINIRO.IO reserves the right, in its sole discretion, to determine Customer's eligibility for a free trial and, subject to applicable laws, to withdraw or to modify an offer trial at any time without prior notice and with no liability, to the greatest extent permitted under the law. For a free trial of the Service, - Arta Marketing may require Customer to provide payment details to start the trial. At the end of + AINIRO.IO may require Customer to provide payment details to start the trial. At the end of such - trial, Arta Marketing may automatically start to charge the applicable service fees for the Service + trial, AINIRO.IO may automatically start to charge the applicable service fees for the Service immediately after the end of the free trial in accordance with Section Payment Terms and - according to the price list on Arta Marketing's website under the domain ainiro.io. The applicable + according to the price list on AINIRO.IO's website under the domain ainiro.io. The applicable subscription to the Service must be cancelled through Customer's account's subscription page, or the Service must be terminated in its entirety, before the end of the trial period in case Customer does not - accept the applicable prices provided on Arta Marketing's website under the domain ainiro.io. + accept the applicable prices provided on AINIRO.IO's website under the domain ainiro.io. Customer shall ensure that the authorised Users use the Service in compliance with this Agreement. Misuse of the Service by Customer or any User may lead to termination of the Agreement or suspension or denial of access to the Service.

Right to use the Service and eligibility

-

Subject to due subscription to the Service and compliance with the Agreement, Arta Marketing grants +

Subject to due subscription to the Service and compliance with the Agreement, AINIRO.IO grants to Customer a non-exclusive, nontransferable and limited right to enter and use the Service and grant Users access rights to the Service.

@@ -76,21 +76,21 @@

External Back-Up Copies

defined below) stored in the Service. Such back-up copies shall be stored outside the Service.

Changes to the Service

-

Arta Marketing is entitled to develop its services and business offerings. In case of a change in the - Service, Arta Marketing will notify the Customer in advance. If Arta Marketing considers that a +

AINIRO.IO is entitled to develop its services and business offerings. In case of a change in the + Service, AINIRO.IO will notify the Customer in advance. If AINIRO.IO considers that a change will - have a material effect in the Service, Arta Marketing will notify the Customer at least 30 days + have a material effect in the Service, AINIRO.IO will notify the Customer at least 30 days before the change will be effected and reserve the Customer a possibility to terminate the Agreement.

Prices

-

The prices of the Service are specified in the Order. Unless otherwise agreed, Arta Marketing charges - the Customer in advance for each calendar month of the Service according to Arta Marketing's price - list which is valid at the time and is available on Arta Marketing's website under the domain +

The prices of the Service are specified in the Order. Unless otherwise agreed, AINIRO.IO charges + the Customer in advance for each calendar month of the Service according to AINIRO.IO's price + list which is valid at the time and is available on AINIRO.IO's website under the domain ainiro.io. Applicable value added tax and other duties will be added to the prices unless the prices are specified VAT inclusive.

Payment terms

-

Arta Marketing shall charge for the Service on a monthly or annual subscription based model, where +

AINIRO.IO shall charge for the Service on a monthly or annual subscription based model, where the payment method associated with the subscription becomes automatically deducted in advance for one month/year at the time. Invoices are made available on the Customer's service account. To avoid @@ -111,7 +111,7 @@

Customer's obligations and rights

information as prompted by the Order and update such information when required. Please note that this Agreement only covers the Service and the use thereof and any and all linked third party services and platforms are provided by the relevant third parties and covered by their - terms of service or other agreement or license. Arta Marketing does not assume any liability in + terms of service or other agreement or license. AINIRO.IO does not assume any liability in regard to use of such third-party services and platforms, whether or not they are linked to the Service.

Use restrictions

@@ -131,7 +131,7 @@

Use restrictions

  • sign up for an account on behalf of someone else;
  • use, sell, rent, transfer, license or otherwise provide anybody with the Service, except - as provided herein without Arta Marketing's written consent;
  • + as provided herein without AINIRO.IO's written consent;
  • interfere with other Customers' use and enjoyment of the Service;
  • circumvent or try to circumvent any usage control or anti-copy functionalities of the Service;
  • @@ -152,67 +152,67 @@

    Customer Data

    Customer's behalf generates in or submits to the Service (“Customer Data”) or the data Customer submits to a third-party service or platform which might be accessed by the Service, subject to and on the basis of the permissions or consents Customer has granted. - Customer agrees that Arta Marketing does not assume any liability or responsibility in respect to + Customer agrees that AINIRO.IO does not assume any liability or responsibility in respect to any Customer Data, with the exceptions relating to Personal Data as set forth in Section Data Processing below. Customer shall at all times ensure that Customer Data does not infringe any third party intellectual property rights or violate any applicable laws or legislation. Customer shall not upload any illegal, offensive, threatening, libellous, defamatory, or - otherwise inappropriate data to the Service. For clarity, Arta Marketing is not responsible and + otherwise inappropriate data to the Service. For clarity, AINIRO.IO is not responsible and shall not be held liable for any Customer Data, nor does it endorse any opinion contained in any Customer Data. Aside from the rights specifically granted herein, Customer retains ownership of all rights, including intellectual property rights, in the Customer Data.

    Data processing

    -

    In order to provide the Service, Arta Marketing may process personal data on behalf of the Customer +

    In order to provide the Service, AINIRO.IO may process personal data on behalf of the Customer as - a data processor for the purposes of providing the Service. Arta Marketing processes certain + a data processor for the purposes of providing the Service. AINIRO.IO processes certain personal data also as a data controller. Such personal data includes, inter alia, data of the Customer's contact persons, invoicing details and other personal data of Customer's contact - persons which Arta Marketing processes in order to maintain the customer relationship. The - requirements relating to the personal data Arta Marketing processes as data controller are set out + persons which AINIRO.IO processes in order to maintain the customer relationship. The + requirements relating to the personal data AINIRO.IO processes as data controller are set out in - our Privacy Policy available on Arta Marketing's website under the domain ainiro.io. In this + our Privacy Policy available on AINIRO.IO's website under the domain ainiro.io. In this section, “Personal Data” refers to any information relating to an identified or identifiable natural person the Customer enters - into the Service and Arta Marketing processes on behalf of the Customer in the course and within the + into the Service and AINIRO.IO processes on behalf of the Customer in the course and within the scope of providing the Services. In connection with the use of the Service, the Customer may - transfer various data to Arta Marketing for processing on behalf of the Customer. Such data might + transfer various data to AINIRO.IO for processing on behalf of the Customer. Such data might include Personal Data. The Customer shall be considered as the sole data controller and - Arta Marketing as the sole data processor with respect to such data. The following terms and - conditions set forth in this section concern the data processing activities of Arta Marketing as a + AINIRO.IO as the sole data processor with respect to such data. The following terms and + conditions set forth in this section concern the data processing activities of AINIRO.IO as a data processor with respect to the Personal Data it processes on behalf of the Customer.

    General requirements relating to processing of Personal Data

    The Customer shall be responsible for the lawful collection, processing and use, and for the accuracy of the Personal Data, as well as for preserving the rights of the individuals concerned. If and to the extent legally required, the Customer shall inform the individuals - concerned regarding the processing of their Personal Data by Arta Marketing, and shall obtain their - consent if necessary. The Personal Data processed by Arta Marketing on behalf of the Customer may + concerned regarding the processing of their Personal Data by AINIRO.IO, and shall obtain their + consent if necessary. The Personal Data processed by AINIRO.IO on behalf of the Customer may include e.g. Personal Data of the Customer's employees and end-customers, such as contact details of the aforementioned data subjects. The Customer acknowledges that due to the - nature of the Service, Arta Marketing cannot control and has no obligation to verify Personal Data - the Customer transfers to Arta Marketing for processing on behalf of the Customer when the Customer + nature of the Service, AINIRO.IO cannot control and has no obligation to verify Personal Data + the Customer transfers to AINIRO.IO for processing on behalf of the Customer when the Customer uses the Service. The Customer ensures that the Customer is entitled to transfer the - Personal Data to Arta Marketing so that Arta Marketing may lawfully process the Personal Data on + Personal Data to AINIRO.IO so that AINIRO.IO may lawfully process the Personal Data on behalf of the - Customer in accordance with this Agreement. Arta Marketing shall not use Personal Data for any + Customer in accordance with this Agreement. AINIRO.IO shall not use Personal Data for any purpose other than that of rendering and providing the Service and will not assert liens or other rights over, or sell or disclose the Personal Data to any third parties, without the - Customer's prior written approval. Arta Marketing shall process Personal Data in accordance with + Customer's prior written approval. AINIRO.IO shall process Personal Data in accordance with this Agreement and documented instructions from the Customer. The Customer's instructions must be commercially reasonable, compliant with applicable data protection laws and consistent with - this Agreement. Arta Marketing shall not be obliged to verify whether any instructions given by the + this Agreement. AINIRO.IO shall not be obliged to verify whether any instructions given by the Customer are consistent with applicable laws, as the Customer is responsible for such - compliance verification of its instructions. However, if Arta Marketing detects that any instruction + compliance verification of its instructions. However, if AINIRO.IO detects that any instruction given by the Customer is noncompliant with the requirements of any data protection - legislation applicable to Arta Marketing's operations, Arta Marketing shall inform the Customer in + legislation applicable to AINIRO.IO's operations, AINIRO.IO shall inform the Customer in writing. - Arta Marketing and the Customer shall comply with the EU Regulation 2016/679 on the protection of + AINIRO.IO and the Customer shall comply with the EU Regulation 2016/679 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data (“Regulation”) and any applicable European or foreign data protection laws as - amended, as well as data protection authorities' orders and guidelines. Arta Marketing and the + amended, as well as data protection authorities' orders and guidelines. AINIRO.IO and the Customer shall implement and maintain appropriate technical and organisational security measures to protect the Personal Data within their area of responsibility, in order to safeguard the Personal Data against unauthorised or unlawful processing or access and @@ -230,152 +230,152 @@

    General requirements relating to processing of Personal Data

  • a process for regularly testing, assessing and evaluating the effectiveness of technical and organisational measures for ensuring the security of the processing.
  • -

    Arta Marketing's assistance obligations

    +

    AINIRO.IO's assistance obligations

    To respond to requests from individuals exercising their rights as foreseen in applicable data protection law, such as the right of access and the right to rectification or erasure, the Customer shall primarily use the corresponding functions of the Services, such as the - Arta Marketing HUB. Arta Marketing shall provide the Customer with commercially reasonable + AINIRO.IO HUB. AINIRO.IO shall provide the Customer with commercially reasonable assistance, without - undue delay, taking into account the nature of the processing. Arta Marketing shall further provide + undue delay, taking into account the nature of the processing. AINIRO.IO shall further provide the Customer with commercially reasonable assistance in ensuring compliance with the Customer's obligations to perform security and data protection assessments, breach notifications and prior consultations of the competent supervisory authority, as set out in the applicable data protection law, taking into account the nature of the processing and the - information available to Arta Marketing. In case such assistance requires extensive measures from - Arta Marketing, the Customer shall pay additional reasonable remuneration to Arta Marketing for + information available to AINIRO.IO. In case such assistance requires extensive measures from + AINIRO.IO, the Customer shall pay additional reasonable remuneration to AINIRO.IO for handling such - assistance requests. In addition, Arta Marketing shall, and shall procure that its personnel + assistance requests. In addition, AINIRO.IO shall, and shall procure that its personnel (including its subcontractors' personnel) shall:

    • only process Personal Data in accordance with the Customer's written instructions and - not for Arta Marketing's own purposes;
    • + not for AINIRO.IO's own purposes;
    • ensure that individuals processing Personal Data have committed themselves to confidentiality or are under an appropriate statutory obligation of confidentiality.

    Transfers of Personal Data

    -

    The Customer accepts that Arta Marketing may have Personal Data processed and accessible by its +

    The Customer accepts that AINIRO.IO may have Personal Data processed and accessible by its subprocessors outside the Customer's country of domicile to provide the Service. In case the processing is subject to any EU data protection law and Personal Data is transferred from the European Economic Area (“EEA”) to a subprocessor for processing in any country outside the EEA that is not recognised by the European Commission as providing an adequate level of - protection for personal data, Arta Marketing provides for appropriate safeguards by standard + protection for personal data, AINIRO.IO provides for appropriate safeguards by standard contractual clauses, adopted or approved by the European Commission and applicable to the processing by the nonEEA subprocessor or by any other appropriate safeguard as foreseen under Regulation.

    Audits

    -

    The Customer shall have the right to audit the facilities and processing activities of Arta Marketing +

    The Customer shall have the right to audit the facilities and processing activities of AINIRO.IO under this Agreement to examine the level of protection and security provided for Personal - Data processed under this Agreement and to assess the compliance of Arta Marketing with the terms + Data processed under this Agreement and to assess the compliance of AINIRO.IO with the terms and conditions relating to Personal Data set out herein. Each Party shall bear its own costs for any such audit. Where an audit may lead to the disclosure of business or trade secrets of - Arta Marketing or threaten intellectual property rights of Arta Marketing, the Customer shall employ + AINIRO.IO or threaten intellectual property rights of AINIRO.IO, the Customer shall employ an independent expert to carry out the audit, and the expert shall agree to be bound to - confidentiality to Arta Marketing's benefit.

    + confidentiality to AINIRO.IO's benefit.

    Subprocessors

    -

    General authorisation. The Customer gives its general authorisation to allow Arta Marketing to +

    General authorisation. The Customer gives its general authorisation to allow AINIRO.IO to involve - Arta Marketing's affiliated companies and other subcontractors as subprocessors to process Personal + AINIRO.IO's affiliated companies and other subcontractors as subprocessors to process Personal Data in connection with the provision of the Service, to the extent such appointment does - not lead to noncompliance with any applicable law or Arta Marketing's obligations under this - Agreement. Arta Marketing ensures that the involved subprocessors are properly qualified, will be - under a data processing agreement with Arta Marketing, and comply with data processing obligations - similar to the ones which apply to Arta Marketing under this Agreement. Arta Marketing shall be + not lead to noncompliance with any applicable law or AINIRO.IO's obligations under this + Agreement. AINIRO.IO ensures that the involved subprocessors are properly qualified, will be + under a data processing agreement with AINIRO.IO, and comply with data processing obligations + similar to the ones which apply to AINIRO.IO under this Agreement. AINIRO.IO shall be liable towards - the Customer for the processing of Personal Data carried out by Arta Marketing's subprocessors.

    + the Customer for the processing of Personal Data carried out by AINIRO.IO's subprocessors.

    Change of subprocessor

    -

    Arta Marketing is free to choose and change its subprocessors. Upon request, Arta Marketing shall +

    AINIRO.IO is free to choose and change its subprocessors. Upon request, AINIRO.IO shall inform the Customer of subprocessors currently involved. In case there is a later change of - subprocessor (addition or replacement), Arta Marketing shall notify the Customer of such change. In + subprocessor (addition or replacement), AINIRO.IO shall notify the Customer of such change. In case the Customer objects such change of subprocessor on reasonable grounds, the Customer - has the right to request change of the subprocessor. If Arta Marketing is not willing to change the + has the right to request change of the subprocessor. If AINIRO.IO is not willing to change the subprocessor the Customer has objected, the Customer shall have the right to terminate the Service and this Agreement.

    Breaches

    -

    Arta Marketing shall, without undue delay after having become aware of it, inform the Customer in +

    AINIRO.IO shall, without undue delay after having become aware of it, inform the Customer in writing about any data breaches relating to Personal Data and any other events where the - security of Personal Data processed on behalf of the Customer has been compromised. Arta Marketing's + security of Personal Data processed on behalf of the Customer has been compromised. AINIRO.IO's notification about the breach to the Customer shall include at least the following:

    • description of the nature of the breach;
    • -
    • name and contact details of Arta Marketing's contact point where more information can be +
    • name and contact details of AINIRO.IO's contact point where more information can be obtained;
    • -
    • description of the measures taken by Arta Marketing to address the breach, including, where +
    • description of the measures taken by AINIRO.IO to address the breach, including, where appropriate, measures to mitigate its possible adverse effects.

    Deletion and return of Personal Data

    -

    Arta Marketing shall not take any action to intentionally erase any Personal Data processed on behalf +

    AINIRO.IO shall not take any action to intentionally erase any Personal Data processed on behalf of the Customer, without the Customer's explicit request. Personal Data shall be processed under this Agreement until the Customer has ceased to use the Service. Within a reasonable time after the termination or expiry of this Agreement, or after the Customer has - permanently ceased to use the Service, Arta Marketing shall permanently delete Personal Data from + permanently ceased to use the Service, AINIRO.IO shall permanently delete Personal Data from its - storage media, except to the extent that Arta Marketing is under a statutory obligation to continue - storing such Personal Data. On the Customer's request, Arta Marketing shall confirm the deletion in + storage media, except to the extent that AINIRO.IO is under a statutory obligation to continue + storing such Personal Data. On the Customer's request, AINIRO.IO shall confirm the deletion in writing. The obligation to delete Personal Data shall not apply to Personal Data contained in regular back-up copies of comprehensive datasets from which the individual deletion of Personal Data would not be possible without significant efforts or costs.

    Intellectual Property Rights

    All intellectual property rights to and in the Service as well as intellectual property - rights pertaining thereto, are exclusive property of Arta Marketing or its licensors with all rights + rights pertaining thereto, are exclusive property of AINIRO.IO or its licensors with all rights reserved. All intellectual property rights to the content uploaded into the Service by or on behalf of the Customer will remain the exclusive property of the Customer or its licensors. All intellectual property rights relating to the provision of the Services, including suggestions for improvements made by the Customer, will remain the exclusive property of - Arta Marketing or its licensors.

    + AINIRO.IO or its licensors.

    Limited Warranty

    -

    Arta Marketing will offer service level compensations to the Customer in accordance with the SLA. In - all other respects the Service is provided on “as-is” and “as-available” basis, and Arta Marketing +

    AINIRO.IO will offer service level compensations to the Customer in accordance with the SLA. In + all other respects the Service is provided on “as-is” and “as-available” basis, and AINIRO.IO will not give the Customer any warranty or guarantee, express or implied, for the Service, including but without limitation to warranties of merchantability, fitness for any particular purpose, performance, or noninfringement. The parties expressly note that the Service is not designed to be error-free or uninterrupted and therefore they are neither intended nor fit for purposes that require fail-safe performance.

    Limited Liability

    -

    Arta Marketing will not be liable for indirect damage or consequential damages caused to the +

    AINIRO.IO will not be liable for indirect damage or consequential damages caused to the Customer. - Arta Marketing's total aggregate liability under or in connection with this Agreement shall be + AINIRO.IO's total aggregate liability under or in connection with this Agreement shall be limited to the aggregate Service Fee paid by the Customer for the Service for the last six (6) months preceding the occurrence for which damages are claimed. These limitations will not apply to damage caused by wilful misconduct or gross negligence. In order to be valid and enforceable, all claims for damages must be made within 30 days from the date the damage was or should reasonably have been noticed by the Customer.

    Assignment and Third-Party Benefits

    -

    Arta Marketing may assign the Agreement in whole or in part to another group company or in connection +

    AINIRO.IO may assign the Agreement in whole or in part to another group company or in connection with the trade sale which includes the provision of the Service. The Customer may assign the - Agreement to a third party with Arta Marketing's prior written consent which Arta Marketing will not + Agreement to a third party with AINIRO.IO's prior written consent which AINIRO.IO will not unreasonably withhold. The Agreement will not create any third-party beneficiary rights in any third party.

    Temporary Suspension

    -

    If the Customer has breached the provisions of the Agreement or Arta Marketing has justifiable +

    If the Customer has breached the provisions of the Agreement or AINIRO.IO has justifiable reasons - to believe such a breach exists, Arta Marketing may temporarily suspend the provision of the + to believe such a breach exists, AINIRO.IO may temporarily suspend the provision of the Service.

    Termination for Convenience

    The Customer may terminate the Agreement for any reason by issuing 5 days written notice to - Arta Marketing. Any payment made will not be refunded, but the subscription will be cancelled. - Arta Marketing may terminate the Agreement for any reason by issuing 30 days written notice to + AINIRO.IO. Any payment made will not be refunded, but the subscription will be cancelled. + AINIRO.IO may terminate the Agreement for any reason by issuing 30 days written notice to the Customer.

    Termination for Cause

    Either Party may terminate the Agreement with immediate effect if the other Party has materially breached the provisions of the Agreement.

    Transition Service

    -

    Arta Marketing will provide the Customer with transition services in order to enable the Customer to +

    AINIRO.IO will provide the Customer with transition services in order to enable the Customer to transfer the Customer Data to another service provider. The Customer must order the transition services before the termination of the Agreement. The description of the - transition services and applicable prices are provided on Arta Marketing's website under the domain + transition services and applicable prices are provided on AINIRO.IO's website under the domain ainiro.io.

    Entire Agreement and Amendments

    The Agreement constitutes the entire agreement and supersedes all previous commitments between the parties in respect of the provision of the Service. All amendments to the - Agreement must be made in writing. Arta Marketing may modify this Agreement by notifying the + Agreement must be made in writing. AINIRO.IO may modify this Agreement by notifying the Customer - in writing, such as by e-mail or by posting a revised document version on Arta Marketing's website. - If Arta Marketing considers that a revision will have a material effect on the Agreement, Arta + in writing, such as by e-mail or by posting a revised document version on AINIRO.IO's website. + If AINIRO.IO considers that a revision will have a material effect on the Agreement, Arta Marketing will notify the Customer at least 30 days before the revision will be effected and reserve the Customer a possibility to terminate the Agreement.

    diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.html b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.html index 158be0c6b8..136cd6f652 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.html +++ b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.html @@ -1,5 +1,6 @@
    +
    diff --git a/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.module.ts b/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.module.ts index 91c12a12c1..2996d15441 100644 --- a/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.module.ts +++ b/frontend/src/app/_protected/pages/create/workflow-editor/module/workflow-editor.module.ts @@ -10,6 +10,8 @@ import { MaterialModule } from 'src/app/material.module'; import { CmModule } from 'src/app/codemirror/_module/cm.module'; import { CodemirrorModule } from '@ctrl/ngx-codemirror'; import { WorkflowEditorComponent } from '../workflow-editor.component'; +import { ComponentsModule } from 'src/app/_general/components/components.module'; +import { SharedModule } from 'src/app/shared.module'; @NgModule({ declarations: [ @@ -17,10 +19,12 @@ import { WorkflowEditorComponent } from '../workflow-editor.component'; ], imports: [ CommonModule, + ComponentsModule, WorkflowEditorRoutingModule, MaterialModule, CmModule, CodemirrorModule, + SharedModule, ] }) export class WorkflowEditorModule { } diff --git a/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.html b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.html index 3ad372cad3..9b170c49e5 100644 --- a/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.html +++ b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.html @@ -1,76 +1,45 @@ - - - -
    - -
    -

    Select a Workflow

    -
    - - -
    - - - - - - - - - - - - database - | - - - {{item.name}} - - - -
    - - -
    -
    - - +
    + +
    + + + + +
    +
    + + + + database + | + + + {{item}} + + + +
    -
    -
    - - - - - - -
    -
    + + +
    - Foo +
    + + -
    -
    +
    -
    -
    + + +
    +
    diff --git a/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.scss b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.scss index 890c4126e8..bc954b665f 100644 --- a/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.scss +++ b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.scss @@ -5,3 +5,21 @@ @import "../../../../../assets/styles/_variables/colors.scss"; @import "../../../../../assets/styles/_variables/mixin.scss"; @import "../../../../../assets/styles/_variables/sizing.scss"; + +mat-card.workflow-card { + padding: 15px; + + app-ide-searchbox { + font-size: 11px; + } +} + +.max-height-full { + max-height: 53vh; + min-height: 100%; + overflow: hidden; +} + +.max-height { + max-height: 100%; +} diff --git a/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.ts b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.ts index 0e0491f88b..9a953486f5 100644 --- a/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.ts +++ b/frontend/src/app/_protected/pages/create/workflow-editor/workflow-editor.component.ts @@ -3,8 +3,11 @@ * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ -import { Component } from '@angular/core'; +import { Component, ElementRef, OnInit, ViewChild } from '@angular/core'; import { ReplaySubject } from 'rxjs'; +import { FileService } from 'src/app/_general/services/file.service'; +import { GeneralService } from 'src/app/_general/services/general.service'; +import { BrowserJsPlumbInstance, newInstance } from "@jsplumb/browser-ui"; /** * Primary Workflow component, allowing users to create and manage workflows. @@ -14,19 +17,51 @@ import { ReplaySubject } from 'rxjs'; templateUrl: './workflow-editor.component.html', styleUrls: ['./workflow-editor.component.scss'] }) -export class WorkflowEditorComponent { - +export class WorkflowEditorComponent implements OnInit { private _dbLoading: ReplaySubject = new ReplaySubject(); dbLoading = this._dbLoading.asObservable(); - workflows: any[] = []; + workflows: string[] = []; selectedWorkflow: any = null; + @ViewChild('surface', { static: false }) surface: ElementRef; + jsPlumbInstance: BrowserJsPlumbInstance; + + constructor( + private fileService: FileService, + private generalService: GeneralService) { } + + ngOnInit() { + + this._dbLoading.next(true); + this.generalService.showLoading(); + this.fileService.listFilesRecursively('/etc/workflows/', false).subscribe({ + + next: (files: string[]) => { + + this._dbLoading.next(false); + this.generalService.hideLoading(); + this.workflows = files + .filter(x => x.endsWith('.hl')) + .map(x => x.substring('/etc/workflows/'.length)) + .map(x => x.substring(0, x.length - 3)); + }, + + error: (error: any) => { + + this._dbLoading.next(false); + this.generalService.hideLoading(); + this.generalService.showFeedback(error?.error?.message ?? error, 'errorMessage'); + } + }); + } + + workflowChanged() { - workflowChanged(el: any) { - console.log(el); + this.jsPlumbInstance = newInstance({ + container: this.surface.nativeElement + }); } addNewWorkflow() { - } } From 0c60eec6486c0fa19b7f2964c06a9f69ceefea22 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Mon, 11 Dec 2023 18:51:18 +0200 Subject: [PATCH 05/75] b --- .../components/ide-editor/ide-editor.component.html | 1 + .../hyper-ide/components/ide-tree/ide-tree.component.html | 2 +- .../create/workflow-editor/workflow-editor.component.html | 7 ++++++- .../create/workflow-editor/workflow-editor.component.scss | 7 +++++++ .../create/workflow-editor/workflow-editor.component.ts | 5 ----- 5 files changed, 15 insertions(+), 7 deletions(-) diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.html b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.html index f889931505..8c6d144d15 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.html +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.html @@ -14,6 +14,7 @@

    Hyper IDE

    diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts index a8fe54b260..797cc37e38 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts @@ -22,6 +22,7 @@ import { TreeNode } from './models/tree-node.model'; import { CodemirrorActionsService } from '../../../../../../_general/services/codemirror-actions.service'; import { FileService } from '../../../../../../_general/services/file.service'; import { WorkflowService } from 'src/app/_general/services/workflow.service'; +import { MagicResponse } from 'src/app/_general/models/magic-response.model'; /** * Tree component for Hyper IDE displaying files and folders, allowing user @@ -63,7 +64,7 @@ export class IdeTreeComponent implements OnInit { zipFileInput: string; showRenameBox: TreeNode = null; currentSelection: string = ''; - toolboxItems: any[] = []; + workflowFunctions: any[] = []; constructor( private dialog: MatDialog, @@ -92,11 +93,36 @@ export class IdeTreeComponent implements OnInit { this.getWorkflowFunctionsFromServer(); } + /** + * Returns true if currently open file is a Hyperlambda workflow. + */ isWorkflowFile() { return this.currentFileData?.path?.endsWith('.workflow.hl') || false; } + /** + * Adds the specified function to the currently edited workflow. + */ + addFunction(el: any) { + + this.generalService.showLoading(); + this.workflowService.appendFunction(el.filename, this.currentFileData.content).subscribe({ + + next: (result: MagicResponse) => { + + this.currentFileData.content = result.result; + this.generalService.hideLoading(); + }, + + error: (error: any) => { + + this.generalService.hideLoading(); + this.generalService.showFeedback(error?.error?.message ?? error, 'errorMessage'); + } + }); + } + /** * Retrieves files and folders from backend. */ @@ -127,6 +153,7 @@ export class IdeTreeComponent implements OnInit { // Getting folders recursively. this.fileService.listFoldersRecursively(folder, this.systemFiles).subscribe({ + next: (folders: string[]) => { addToRoot(folders || [], true); @@ -142,6 +169,7 @@ export class IdeTreeComponent implements OnInit { }); }, error: (error: any) => { + resolve(false); this.generalService.showFeedback(error?.error?.message ?? error, 'errorMessage'); } @@ -151,14 +179,18 @@ export class IdeTreeComponent implements OnInit { getWorkflowFunctionsFromServer() { - this.workflowService.list().subscribe({ + this.generalService.showLoading(); + this.workflowService.listFunctions().subscribe({ next: (functions: any[]) => { - console.log(functions); + + this.generalService.hideLoading(); + this.workflowFunctions = functions; }, error: (error: any) => { + this.generalService.hideLoading(); this.generalService.showFeedback(error?.error?.message ?? error, 'errorMessage'); } }); From 4cb403f1fb7bce875d99416992c33491c38453a3 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Tue, 12 Dec 2023 17:24:52 +0200 Subject: [PATCH 29/75] b --- backend/files/misc/workflows/functions/get-config.hl | 2 ++ backend/files/misc/workflows/functions/send-email.hl | 7 +++++++ backend/files/misc/workflows/functions/sql-select.hl | 5 +++++ backend/files/system/workflows/append-function.post.hl | 4 ++++ 4 files changed, 18 insertions(+) diff --git a/backend/files/misc/workflows/functions/get-config.hl b/backend/files/misc/workflows/functions/get-config.hl index 9e1a679f29..73787e3fa2 100644 --- a/backend/files/misc/workflows/functions/get-config.hl +++ b/backend/files/misc/workflows/functions/get-config.hl @@ -5,6 +5,8 @@ */ .arguments key:string +.example + key:"magic:smtp:host" // Sanity checking invocation. validators.mandatory:x:@.arguments/*/key diff --git a/backend/files/misc/workflows/functions/send-email.hl b/backend/files/misc/workflows/functions/send-email.hl index 29f6c4e60a..7b1d3bd9f4 100644 --- a/backend/files/misc/workflows/functions/send-email.hl +++ b/backend/files/misc/workflows/functions/send-email.hl @@ -5,6 +5,13 @@ email:string subject:string body:string +.example + name:John Doe + email:john@doe.com + subject:Just checking in + body:@"Hi John, + +How's it going?" // Sanity checking invocation. validators.mandatory:x:@.arguments/*/name diff --git a/backend/files/misc/workflows/functions/sql-select.hl b/backend/files/misc/workflows/functions/sql-select.hl index 7d8c9a50be..fd2435ccc3 100644 --- a/backend/files/misc/workflows/functions/sql-select.hl +++ b/backend/files/misc/workflows/functions/sql-select.hl @@ -8,6 +8,11 @@ database-type:string database:string sql:string +.example + connection-string:generic + database-type:sqlite + database:magic + sql:select name from roles limit 2 // Sanity checking invocation. validators.mandatory:x:@.arguments/*/sql diff --git a/backend/files/system/workflows/append-function.post.hl b/backend/files/system/workflows/append-function.post.hl index 5ae93ee0b3..cea6a6f581 100644 --- a/backend/files/system/workflows/append-function.post.hl +++ b/backend/files/system/workflows/append-function.post.hl @@ -55,6 +55,10 @@ if . ..:x:@.function/0 +// Adding default argument placeholders for invocation. +add:x:@.invocation/*/execute/*/arguments + get-nodes:x:@.function/*/.example/* + // Appending function to existing lambda. add:x:@.lambda get-nodes:x:@.invocation/* From d155934ea4023eac54262ee53cdc8128f4f76ada Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Tue, 12 Dec 2023 17:40:22 +0200 Subject: [PATCH 30/75] b --- backend/files/etc/workflows/example.workflow.hl | 7 ++++--- .../magic.startup/magic.workflows.action.execute.hl | 6 +++--- backend/files/system/workflows/append-function.post.hl | 6 +++--- .../hyper-ide/components/ide-tree/ide-tree.component.html | 4 +++- .../hyper-ide/components/ide-tree/ide-tree.component.scss | 8 ++++++++ 5 files changed, 21 insertions(+), 10 deletions(-) diff --git a/backend/files/etc/workflows/example.workflow.hl b/backend/files/etc/workflows/example.workflow.hl index bbe7dedcb2..62db007b6b 100644 --- a/backend/files/etc/workflows/example.workflow.hl +++ b/backend/files/etc/workflows/example.workflow.hl @@ -4,9 +4,10 @@ * to return result of invocation. */ -// Executes sql-select action. -execute:magic.workflows.action.execute +// Executes sql-select function. +execute:magic.workflows.function.execute name:sql-select - action:/misc/workflows/functions/sql-select.hl + filename:/misc/workflows/functions/sql-select.hl arguments sql:select name from roles order by name limit 2 +return:x:-/* \ No newline at end of file diff --git a/backend/files/system/magic.startup/magic.workflows.action.execute.hl b/backend/files/system/magic.startup/magic.workflows.action.execute.hl index d7798883cd..bf79a2c3da 100644 --- a/backend/files/system/magic.startup/magic.workflows.action.execute.hl +++ b/backend/files/system/magic.startup/magic.workflows.action.execute.hl @@ -2,18 +2,18 @@ /* * Slot that executes a single workflow action. */ -slots.create:magic.workflows.action.execute +slots.create:magic.workflows.function.execute // Sanity checking invocation. validators.mandatory:x:@.arguments/*/name - validators.mandatory:x:@.arguments/*/action + validators.mandatory:x:@.arguments/*/filename // Parametrizing [io.file.execute]. add:x:./*/io.file.execute get-nodes:x:@.arguments/*/arguments/* // Executing action. - io.file.execute:x:@.arguments/*/action + io.file.execute:x:@.arguments/*/filename // Decorating [result] node. set-value:x:./*/return diff --git a/backend/files/system/workflows/append-function.post.hl b/backend/files/system/workflows/append-function.post.hl index cea6a6f581..b32e4dd9ef 100644 --- a/backend/files/system/workflows/append-function.post.hl +++ b/backend/files/system/workflows/append-function.post.hl @@ -35,13 +35,13 @@ set-value:x:@.name // Creating our function invocation. .invocation - execute:magic.workflows.action.execute + execute:magic.workflows.function.execute name - action + filename arguments set-value:x:@.invocation/*/execute/*/name get-value:x:@.name -set-value:x:@.invocation/*/execute/*/action +set-value:x:@.invocation/*/execute/*/filename get-value:x:@.arguments/*/filename // Creating our function comment. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html index db6ec03f44..9229406373 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html @@ -245,13 +245,15 @@
    @@ -267,7 +268,7 @@
    -
    +
    { - - this.currentFileData.content = result.result; - this.generalService.hideLoading(); - }, - - error: (error: any) => { - - this.generalService.hideLoading(); - this.generalService.showFeedback(error?.error?.message ?? error, 'errorMessage'); - } - }); + return this.currentFileData?.path?.endsWith('.hl') || false; } /** @@ -196,6 +174,48 @@ export class IdeTreeComponent implements OnInit { }); } + /** + * Adds the specified function to the currently edited workflow. + */ + addFunction(el: any) { + + // Retrieving editor instance. + const fileExisting: number = this.openFiles.findIndex((item: any) => item.path === this.currentFileData.path); + const activeWrapper = document.querySelector('.active-codemirror-editor-' + fileExisting); + const editor = (activeWrapper.querySelector('.CodeMirror')).CodeMirror; + + // Making sure we're in a position where we can insert Hyperlambda. + const sel = editor.doc.sel.ranges[0]; + if (sel.anchor.ch % 3 !== 0) { + this.generalService.showFeedback('You cannot insert Hyperlambda at the caret\'s current position since it would produce invalid Hyperlambda', 'errorMessage'); + editor.focus(); + return; + } + + this.generalService.showLoading(); + this.workflowService.getHyperlambda(el.filename).subscribe({ + + next: (result: MagicResponse) => { + + this.generalService.hideLoading(); + let hl = result.result.split('\r\n'); + let sp = ''; + for (let idxNo = 0; idxNo < sel.anchor.ch; idxNo++) { + sp += ' '; + } + editor.replaceSelection(hl.map(x => sp + x).join('\r\n')); + editor.changeGeneration(true); + editor.focus(); + }, + + error: (error: any) => { + + this.generalService.hideLoading(); + this.generalService.showFeedback(error?.error?.message ?? error, 'errorMessage'); + } + }); + } + /** * Invoked when user wants to execute a macro. */ From 332b9787726b873beae5c311f23a87d5de6e974b Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 09:15:35 +0200 Subject: [PATCH 33/75] Update ainiro.css --- frontend/src/assets/styles/codemirror/themes/ainiro.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/assets/styles/codemirror/themes/ainiro.css b/frontend/src/assets/styles/codemirror/themes/ainiro.css index 36bbe95f5e..3db99231d1 100644 --- a/frontend/src/assets/styles/codemirror/themes/ainiro.css +++ b/frontend/src/assets/styles/codemirror/themes/ainiro.css @@ -30,7 +30,7 @@ .cm-s-ainiro span.cm-bracket { color: #fffffc; font-weight: bold; } .cm-s-ainiro span.cm-tag { color: #9ddfe9; } .cm-s-ainiro span.cm-link { color: #f54b07; } -.cm-s-ainiro span.cm-error { border-bottom: #636363; color: #ffffec; } +.cm-s-ainiro span.cm-error { color: #ff0000; } .cm-s-ainiro span.cm-qualifier { color: #ffffec; } .cm-s-ainiro .CodeMirror-activeline-background { background: #494b41; } From 93f9f6b8bc030ed98049919ed30141c99c696163 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 09:48:10 +0200 Subject: [PATCH 34/75] b --- .../files/misc/workflows/snippets/for-each.hl | 6 + .../misc/workflows/snippets/if-else-if.hl | 25 ++++ .../files/misc/workflows/snippets/if-else.hl | 17 +++ backend/files/misc/workflows/snippets/if.hl | 10 ++ .../files/misc/workflows/snippets/while.hl | 10 ++ .../files/system/workflows/functions.get.hl | 6 +- .../system/workflows/get-hyperlambda.get.hl | 111 ++++++++++-------- .../ide-tree/ide-tree.component.html | 2 +- .../ide-tree/ide-tree.component.scss | 2 + .../components/ide-tree/ide-tree.component.ts | 2 +- 10 files changed, 140 insertions(+), 51 deletions(-) create mode 100644 backend/files/misc/workflows/snippets/for-each.hl create mode 100644 backend/files/misc/workflows/snippets/if-else-if.hl create mode 100644 backend/files/misc/workflows/snippets/if-else.hl create mode 100644 backend/files/misc/workflows/snippets/if.hl create mode 100644 backend/files/misc/workflows/snippets/while.hl diff --git a/backend/files/misc/workflows/snippets/for-each.hl b/backend/files/misc/workflows/snippets/for-each.hl new file mode 100644 index 0000000000..48eda7b56f --- /dev/null +++ b/backend/files/misc/workflows/snippets/for-each.hl @@ -0,0 +1,6 @@ + +// For each loop iterating through a list of items. +for-each:x:@.data/* + + // Currently iterated node can be found by reference in [.dp] node + log.info:x:@.dp/# diff --git a/backend/files/misc/workflows/snippets/if-else-if.hl b/backend/files/misc/workflows/snippets/if-else-if.hl new file mode 100644 index 0000000000..dd08dae254 --- /dev/null +++ b/backend/files/misc/workflows/snippets/if-else-if.hl @@ -0,0 +1,25 @@ + +/* + * If/else-if/else condition conditionally executing some Hyperlambda [.lambda] object, + * defaulting to executing its else if neither condition is true. + */ +if + eq:x:@.arguments/*/var1 + .:bool:true + .lambda + + // First condition is true. + log.info:First condition is true + +else-if + eq:x:@.arguments/*/var2 + .:bool:true + .lambda + + // Second condition is true. + log.info:Second condition is true + +else + + // Both above conditions are false. + log.info:Both conditions are false diff --git a/backend/files/misc/workflows/snippets/if-else.hl b/backend/files/misc/workflows/snippets/if-else.hl new file mode 100644 index 0000000000..526d0020f5 --- /dev/null +++ b/backend/files/misc/workflows/snippets/if-else.hl @@ -0,0 +1,17 @@ + +/* + * If/else condition conditionally executing some Hyperlambda [.lambda] object, + * defaulting to executing its else if condition is not true. + */ +if + eq:x:@.arguments/*/foo + .:bool:true + .lambda + + // Condition is true. + log.info:Condition is true + +else + + // Condition is false + log.info:Condition is false diff --git a/backend/files/misc/workflows/snippets/if.hl b/backend/files/misc/workflows/snippets/if.hl new file mode 100644 index 0000000000..8c8f3614b0 --- /dev/null +++ b/backend/files/misc/workflows/snippets/if.hl @@ -0,0 +1,10 @@ + +// If condition conditionally executing some Hyperlambda [.lambda] object. +if + eq:x:@.arguments/*/foo + .:bool:true + .lambda + + // Condition is true. + log.info:Condition is true + diff --git a/backend/files/misc/workflows/snippets/while.hl b/backend/files/misc/workflows/snippets/while.hl new file mode 100644 index 0000000000..323fe74599 --- /dev/null +++ b/backend/files/misc/workflows/snippets/while.hl @@ -0,0 +1,10 @@ + +// While loop executing its [.lambda] object as long as its condition is true. +while + eq:x:@.continue + .:bool:true + .lambda + + // Condition is true. + log.info:Condition is still true, iterating once more + diff --git a/backend/files/system/workflows/functions.get.hl b/backend/files/system/workflows/functions.get.hl index 4fef5f04a3..2efa6eb57d 100644 --- a/backend/files/system/workflows/functions.get.hl +++ b/backend/files/system/workflows/functions.get.hl @@ -6,11 +6,11 @@ // Verifying user is authorized to access endpoint. auth.ticket.verify:root -// Listing all functions in workflow functions folder. -io.file.list:/misc/workflows/functions/ +// Listing all functions and snippets in workflow folder. +io.file.list-recursively:/misc/workflows/ // Filtering out everything not ending with '.hl'. -for-each:x:@io.file.list/* +for-each:x:@io.file.list-recursively/* if strings.ends-with:x:@.dp/# .:.hl diff --git a/backend/files/system/workflows/get-hyperlambda.get.hl b/backend/files/system/workflows/get-hyperlambda.get.hl index f050dcc32c..e77faff4ee 100644 --- a/backend/files/system/workflows/get-hyperlambda.get.hl +++ b/backend/files/system/workflows/get-hyperlambda.get.hl @@ -9,52 +9,71 @@ auth.ticket.verify:root // Loading function Hyperlambda file and transforming to lambda object. -.function load-file:x:@.arguments/*/filename -add:x:@.function - hyper2lambda:x:@load-file - comments:true - -// Creating a name for function. -.name -strings.split:x:@.arguments/*/filename - .:/ -strings.split:x:-/0/- - .:. -remove-nodes:x:@strings.split/0/- -set-value:x:@.name - strings.join:x:@strings.split/0 - .:. - -// Creating our function invocation. -.invocation - execute:magic.workflows.function.execute - name - filename - arguments -set-value:x:@.invocation/*/execute/*/name - get-value:x:@.name -set-value:x:@.invocation/*/execute/*/filename - get-value:x:@.arguments/*/filename - -// Creating our function comment. + +// Checking if this is a function template. if - eq - get-name:x:@.function/0 - .:.. + strings.starts-with:x:@.arguments/*/filename + .:/misc/workflows/functions/ .lambda - unwrap:x:+/*/* - insert-before:x:@.invocation/0 - . - ..:x:@.function/0 - -// Adding default argument placeholders for invocation. -add:x:@.invocation/*/execute/*/arguments - get-nodes:x:@.function/*/.example/* - -// Returning result to caller as Hyperlambda. -lambda2hyper:x:@.invocation/* - comments:true -unwrap:x:+/* -return - result:x:@lambda2hyper + + /* + * This is a function template type of snippet. + * Parametrizing accordingly. + */ + .function + add:x:@.function + hyper2lambda:x:@load-file + comments:true + .name + strings.split:x:@.arguments/*/filename + .:/ + strings.split:x:-/0/- + .:. + remove-nodes:x:@strings.split/0/- + set-value:x:@.name + strings.join:x:@strings.split/0 + .:. + + // Creating our function invocation. + .invocation + execute:magic.workflows.function.execute + name + filename + arguments + set-value:x:@.invocation/*/execute/*/name + get-value:x:@.name + set-value:x:@.invocation/*/execute/*/filename + get-value:x:@.arguments/*/filename + + // Creating our function comment. + if + eq + get-name:x:@.function/0 + .:.. + .lambda + unwrap:x:+/*/* + insert-before:x:@.invocation/0 + . + ..:x:@.function/0 + + // Adding default argument placeholders for invocation. + add:x:@.invocation/*/execute/*/arguments + get-nodes:x:@.function/*/.example/* + + // Returning result to caller as Hyperlambda. + lambda2hyper:x:@.invocation/* + comments:true + unwrap:x:+/* + return + result:x:@lambda2hyper + +else + + /* + * This is just some other template snippet, + * returning as is. + */ + unwrap:x:+/* + return + result:x:@load-file diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html index 15c7ff1613..bb46e3b1da 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html @@ -256,7 +256,7 @@ matTooltipPosition="right" (click)="addFunction(item)" class="justify-content-start d-flex w-100"> - {{item.icon}} + {{item.icon ?? 'star'}} {{item.name}} diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss index 099d37f707..9f189a5239 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss @@ -199,6 +199,8 @@ padding-left: 5px; mat-icon { font-size: 18px; + margin-top: 2px; + margin-bottom: -2px; } } } diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts index 13b9450829..2bc21d2f3b 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts @@ -163,7 +163,7 @@ export class IdeTreeComponent implements OnInit { next: (functions: any[]) => { this.generalService.hideLoading(); - this.workflowFunctions = functions; + this.workflowFunctions = functions.reverse(); }, error: (error: any) => { From d7c2ed4c3677081c9e8cda4c23f197fbf200f819 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 09:58:21 +0200 Subject: [PATCH 35/75] filtering --- .../app/_general/services/workflow.service.ts | 2 +- .../components/ide-tree/ide-tree.component.html | 3 ++- .../components/ide-tree/ide-tree.component.scss | 2 +- .../components/ide-tree/ide-tree.component.ts | 16 ++++++++++++---- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/frontend/src/app/_general/services/workflow.service.ts b/frontend/src/app/_general/services/workflow.service.ts index 54a84f1f56..9110331960 100644 --- a/frontend/src/app/_general/services/workflow.service.ts +++ b/frontend/src/app/_general/services/workflow.service.ts @@ -23,7 +23,7 @@ export class WorkflowService { /** * Returns a list of all workflow funtions. */ - listFunctions() { + listToolboxItems() { return this.httpService.get('/magic/system/workflows/functions'); } diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html index bb46e3b1da..7af6ef7e82 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html @@ -246,6 +246,7 @@
    @@ -254,7 +255,7 @@ [disabled]="!isHyperlambdaFile()" [matTooltip]="item.description" matTooltipPosition="right" - (click)="addFunction(item)" + (click)="addSnippet(item)" class="justify-content-start d-flex w-100"> {{item.icon ?? 'star'}} {{item.name}} diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss index 9f189a5239..51ac2ecb80 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss @@ -18,7 +18,7 @@ flex: 0 0 auto; .mat-expansion-panel { - max-height: 25vh; + max-height: 22vh; } } diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts index 2bc21d2f3b..4a16e7b36d 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts @@ -90,7 +90,7 @@ export class IdeTreeComponent implements OnInit { this.getEndpoints(); } }); - this.getWorkflowFunctionsFromServer(); + this.getToolboxItemsFromServer(); } /** @@ -155,10 +155,13 @@ export class IdeTreeComponent implements OnInit { }); } - getWorkflowFunctionsFromServer() { + /** + * Returns all toolbox items from the server. + */ + getToolboxItemsFromServer() { this.generalService.showLoading(); - this.workflowService.listFunctions().subscribe({ + this.workflowService.listToolboxItems().subscribe({ next: (functions: any[]) => { @@ -177,7 +180,7 @@ export class IdeTreeComponent implements OnInit { /** * Adds the specified function to the currently edited workflow. */ - addFunction(el: any) { + addSnippet(el: any) { // Retrieving editor instance. const fileExisting: number = this.openFiles.findIndex((item: any) => item.path === this.currentFileData.path); @@ -810,6 +813,11 @@ export class IdeTreeComponent implements OnInit { return true } + filterToolbox(item: any, searchKeyword: string) { + + return searchKeyword && searchKeyword !== '' && !item.name.includes(searchKeyword); + } + installModule(file: FileList) { if (file[0].name.split('.')[1] === 'zip') { From d69de71302e4d549bdabca6fae51c240e8fe5f7d Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 10:08:55 +0200 Subject: [PATCH 36/75] b --- backend/files/misc/workflows/snippets/create-function.hl | 6 ++++++ backend/files/misc/workflows/snippets/load-file.hl | 3 +++ backend/files/misc/workflows/snippets/log-error.hl | 5 +++++ backend/files/misc/workflows/snippets/log-info.hl | 5 +++++ 4 files changed, 19 insertions(+) create mode 100644 backend/files/misc/workflows/snippets/create-function.hl create mode 100644 backend/files/misc/workflows/snippets/load-file.hl create mode 100644 backend/files/misc/workflows/snippets/log-error.hl create mode 100644 backend/files/misc/workflows/snippets/log-info.hl diff --git a/backend/files/misc/workflows/snippets/create-function.hl b/backend/files/misc/workflows/snippets/create-function.hl new file mode 100644 index 0000000000..051fc2d99e --- /dev/null +++ b/backend/files/misc/workflows/snippets/create-function.hl @@ -0,0 +1,6 @@ + +// Creates a new function or slot +function:foo.bar.my-function + + // Returns 42 to caller. + return:int:42 diff --git a/backend/files/misc/workflows/snippets/load-file.hl b/backend/files/misc/workflows/snippets/load-file.hl new file mode 100644 index 0000000000..4f16b28b25 --- /dev/null +++ b/backend/files/misc/workflows/snippets/load-file.hl @@ -0,0 +1,3 @@ + +// Loads the specified file assuming it is text content. +load-file:/etc/README.md diff --git a/backend/files/misc/workflows/snippets/log-error.hl b/backend/files/misc/workflows/snippets/log-error.hl new file mode 100644 index 0000000000..4529ba37e4 --- /dev/null +++ b/backend/files/misc/workflows/snippets/log-error.hl @@ -0,0 +1,5 @@ + +// Creates an error type of log entry. +log.error:This is written to the log as an error + val1:This is some additional value + val2:This is also some additional value diff --git a/backend/files/misc/workflows/snippets/log-info.hl b/backend/files/misc/workflows/snippets/log-info.hl new file mode 100644 index 0000000000..4cae60c62f --- /dev/null +++ b/backend/files/misc/workflows/snippets/log-info.hl @@ -0,0 +1,5 @@ + +// Creates an info type of log entry. +log.info:This is written to the log + val1:This is some additional value + val2:This is also some additional value From d2700fadbe884d5432155170b7fa78a668d48ebf Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 10:11:44 +0200 Subject: [PATCH 37/75] b --- backend/files/etc/workflows/example.hl | 2 +- backend/files/misc/workflows/snippets/http-get.hl | 3 +++ ...ws.action.execute.hl => magic.workflows.actions.execute.hl} | 2 +- backend/files/system/workflows/get-hyperlambda.get.hl | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 backend/files/misc/workflows/snippets/http-get.hl rename backend/files/system/magic.startup/{magic.workflows.action.execute.hl => magic.workflows.actions.execute.hl} (92%) diff --git a/backend/files/etc/workflows/example.hl b/backend/files/etc/workflows/example.hl index 1cd4f31e5b..8f54752410 100644 --- a/backend/files/etc/workflows/example.hl +++ b/backend/files/etc/workflows/example.hl @@ -5,7 +5,7 @@ */ // Executes sql-select function. -execute:magic.workflows.function.execute +execute:magic.workflows.functions.execute name:sql-select filename:/misc/workflows/functions/sql-select.hl arguments diff --git a/backend/files/misc/workflows/snippets/http-get.hl b/backend/files/misc/workflows/snippets/http-get.hl new file mode 100644 index 0000000000..e21c5efe69 --- /dev/null +++ b/backend/files/misc/workflows/snippets/http-get.hl @@ -0,0 +1,3 @@ + +// Retrieves the specified JSON document. +http.get:"https://foo.bar" diff --git a/backend/files/system/magic.startup/magic.workflows.action.execute.hl b/backend/files/system/magic.startup/magic.workflows.actions.execute.hl similarity index 92% rename from backend/files/system/magic.startup/magic.workflows.action.execute.hl rename to backend/files/system/magic.startup/magic.workflows.actions.execute.hl index bf79a2c3da..3c03e31de7 100644 --- a/backend/files/system/magic.startup/magic.workflows.action.execute.hl +++ b/backend/files/system/magic.startup/magic.workflows.actions.execute.hl @@ -2,7 +2,7 @@ /* * Slot that executes a single workflow action. */ -slots.create:magic.workflows.function.execute +slots.create:magic.workflows.functions.execute // Sanity checking invocation. validators.mandatory:x:@.arguments/*/name diff --git a/backend/files/system/workflows/get-hyperlambda.get.hl b/backend/files/system/workflows/get-hyperlambda.get.hl index e77faff4ee..213986d91a 100644 --- a/backend/files/system/workflows/get-hyperlambda.get.hl +++ b/backend/files/system/workflows/get-hyperlambda.get.hl @@ -37,7 +37,7 @@ if // Creating our function invocation. .invocation - execute:magic.workflows.function.execute + execute:magic.workflows.functions.execute name filename arguments From ccfad2a9fefde9a0ec2804d60d997c9f2575fb86 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 10:23:41 +0200 Subject: [PATCH 38/75] More snippets --- backend/files/misc/workflows/snippets/fork.hl | 6 ++++++ backend/files/misc/workflows/snippets/join.hl | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 backend/files/misc/workflows/snippets/fork.hl create mode 100644 backend/files/misc/workflows/snippets/join.hl diff --git a/backend/files/misc/workflows/snippets/fork.hl b/backend/files/misc/workflows/snippets/fork.hl new file mode 100644 index 0000000000..513a2d8ff5 --- /dev/null +++ b/backend/files/misc/workflows/snippets/fork.hl @@ -0,0 +1,6 @@ + +// Creates a new thread an executes the lambda object on the new thread. +fork + + // This executes on a different thread. + log.info:Hello from another thread diff --git a/backend/files/misc/workflows/snippets/join.hl b/backend/files/misc/workflows/snippets/join.hl new file mode 100644 index 0000000000..7075a1ff20 --- /dev/null +++ b/backend/files/misc/workflows/snippets/join.hl @@ -0,0 +1,18 @@ + +// Creates 2 new threads and waits for both threads to finish before proceeding. +join + + // First thread. + fork + + // This executes on thread 1. + log.info:Hello from thread 1 + + // Second thread. + fork + + // This executes on thread 2. + log.info:Hello from thread 2 + +// Both threads are finished executing. +log.info:Both threads are done executing From 6f2c543f7faaf42afd9b81526a281fb4bace7e84 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 10:26:03 +0200 Subject: [PATCH 39/75] Create http-post.hl --- backend/files/misc/workflows/snippets/http-post.hl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 backend/files/misc/workflows/snippets/http-post.hl diff --git a/backend/files/misc/workflows/snippets/http-post.hl b/backend/files/misc/workflows/snippets/http-post.hl new file mode 100644 index 0000000000..46af1e192a --- /dev/null +++ b/backend/files/misc/workflows/snippets/http-post.hl @@ -0,0 +1,6 @@ + +// Post the specified content as a JSON document to the specified URL. +http.post:"https://foo.bar" + payload + id:int:1 + userId:x:@.some-variable From 5c8617b20156e5e06f429d3f218cb34d371e1639 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 10:40:42 +0200 Subject: [PATCH 40/75] b --- .../files/misc/workflows/snippets/save-file.hl | 4 ++++ .../files/misc/workflows/snippets/switch.hl | 18 ++++++++++++++++++ .../components/ide-tree/ide-tree.component.ts | 5 ++++- 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 backend/files/misc/workflows/snippets/save-file.hl create mode 100644 backend/files/misc/workflows/snippets/switch.hl diff --git a/backend/files/misc/workflows/snippets/save-file.hl b/backend/files/misc/workflows/snippets/save-file.hl new file mode 100644 index 0000000000..6f738d7c6e --- /dev/null +++ b/backend/files/misc/workflows/snippets/save-file.hl @@ -0,0 +1,4 @@ + +// Saves the specified content to the specified file assuming the content is text-based. +save-file:/etc/foo.md + get-content:x:@.file-content diff --git a/backend/files/misc/workflows/snippets/switch.hl b/backend/files/misc/workflows/snippets/switch.hl new file mode 100644 index 0000000000..4d50c369ed --- /dev/null +++ b/backend/files/misc/workflows/snippets/switch.hl @@ -0,0 +1,18 @@ + +// Switch/case lambda conditionally executing a piece of Hyperlambda. +switch:x:@.arguments/*/input-value + + case:foo + + // [input-value] was equal to "foo". + log.info:Value was foo + + case:bar + + // [input-value] was equal to "bar". + log.info:Value was bar + + default + + // [input-value] was neither foo nor bar. + log.info:Value was neither foo nor bar diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts index 4a16e7b36d..7c60d7bdbc 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts @@ -815,7 +815,10 @@ export class IdeTreeComponent implements OnInit { filterToolbox(item: any, searchKeyword: string) { - return searchKeyword && searchKeyword !== '' && !item.name.includes(searchKeyword); + return searchKeyword && + searchKeyword !== '' && + !item.name.toLowerCase().includes(searchKeyword.toLowerCase()) && + !item.description.toLowerCase().includes(searchKeyword.toLowerCase()); } installModule(file: FileList) { From 29de2301192c498bca1070c1d07fd779005d1b1c Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 11:01:33 +0200 Subject: [PATCH 41/75] b --- backend/files/system/workflows/functions.get.hl | 8 ++++++++ .../components/ide-tree/ide-tree.component.html | 3 ++- .../components/ide-tree/ide-tree.component.ts | 13 ++++++++++++- frontend/src/assets/styles/general/elements.scss | 6 +++++- 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/backend/files/system/workflows/functions.get.hl b/backend/files/system/workflows/functions.get.hl index 2efa6eb57d..ed1c8c7025 100644 --- a/backend/files/system/workflows/functions.get.hl +++ b/backend/files/system/workflows/functions.get.hl @@ -29,6 +29,14 @@ for-each:x:@io.file.list-recursively/* add:x:@.lambda/@.lambda/0/-/*/* . description:x:@hyper2lambda/0 + if + strings.starts-with:x:@.dp/# + .:/misc/workflows/snippets/ + .lambda + unwrap:x:+/*/* + add:x:@.lambda/@.lambda/0/-/*/* + . + content:x:@load-file // Creating a name for function. strings.split:x:@.dp/# diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html index 7af6ef7e82..57cd59fc63 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html @@ -253,8 +253,9 @@ + +
    \ No newline at end of file diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-result/execute-result-dialog.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-result/execute-result-dialog.component.scss new file mode 100644 index 0000000000..e69de29bb2 diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-result/execute-result-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-result/execute-result-dialog.component.ts new file mode 100644 index 0000000000..4df9718a8e --- /dev/null +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-result/execute-result-dialog.component.ts @@ -0,0 +1,48 @@ + +/* + * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + */ + +// Angular and system imports. +import { Component, Inject, OnInit } from '@angular/core'; +import { MAT_DIALOG_DATA } from '@angular/material/dialog'; +import { CodemirrorActionsService } from 'src/app/_general/services/codemirror-actions.service'; + +/** + * Modal dialog allowing you to parametrise and execute a macro. + */ +@Component({ + selector: 'app-execute-result', + templateUrl: './execute-result-dialog.component.html', + styleUrls: ['./execute-result-dialog.component.scss'] +}) +export class ExecuteResult implements OnInit { + + hlReady: boolean = false; + hlModel: HlModel; + + /** + * Creates an instance of your component. + */ + constructor( + @Inject(MAT_DIALOG_DATA) public data: any, + private codemirrorActionsService: CodemirrorActionsService) { } + + ngOnInit() { + + const res = this.codemirrorActionsService.getActions(null, 'hl'); + res.readOnly = true; + this.hlModel = { + hyperlambda: this.data.hyperlambda, + options: res, + } + setTimeout(() => { + this.hlReady = true; + }, 500); + } +} + +interface HlModel { + hyperlambda: string, + options: any +} diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts index b974b5ede6..28468c24c6 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts @@ -25,6 +25,8 @@ import { FileService } from '../../../../../../_general/services/file.service'; import { VocabularyService } from '../../../../../../_general/services/vocabulary.service'; import { Endpoint } from 'src/app/_protected/models/common/endpoint.model'; import { AiService } from 'src/app/_general/services/ai.service'; +import { MagicResponse } from 'src/app/_general/models/magic-response.model'; +import { ExecuteResult } from '../execute-result/execute-result-dialog.component'; /** * Hyper IDE editor component, wrapping currently open files, allowing user to edit the code. @@ -129,7 +131,7 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges { data: { type: ['full', 'prompt'] } - }) + }); } ngAfterViewInit() { @@ -230,11 +232,18 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges { this.generalService.showLoading(); this.evaluatorService.execute(this.currentFileData.content).subscribe({ - next: () => { + + next: (response: MagicResponse) => { this.generalService.hideLoading(); - this.generalService.showFeedback('File successfully executed', 'successMessage'); + this.dialog.open(ExecuteResult, { + width: '900px', + data: { + hyperlambda: response.result, + } + }); }, + error: (error: any) => { this.generalService.hideLoading(); diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.module.ts b/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.module.ts index 00b297c207..9d7a46d608 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.module.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.module.ts @@ -20,6 +20,7 @@ import { RenameFolderDialogComponent } from '../components/rename-folder-dialog/ import { SelectMacroDialogComponent } from '../components/select-macro-dialog/select-macro-dialog.component'; import { UnsavedChangesDialogComponent } from '../components/unsaved-changes-dialog/unsaved-changes-dialog.component'; import { CmModule } from 'src/app/codemirror/_module/cm.module'; +import { ExecuteResult } from '../components/execute-result/execute-result-dialog.component'; @NgModule({ declarations: [ @@ -28,6 +29,7 @@ import { CmModule } from 'src/app/codemirror/_module/cm.module'; IdeEditorComponent, IdeSearchboxComponent, ExecuteMacroDialogComponent, + ExecuteResult, IncompatibleFileDialogComponent, NewFileFolderDialogComponent, RenameFileDialogComponent, From cebd93e5ccb0beff0d9e79e58527112568c96d68 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 14:45:28 +0200 Subject: [PATCH 48/75] b --- .../misc/workflows/snippets/publish-socket-message.hl | 11 +++++++++++ .../components/ide-editor/ide-editor.component.ts | 3 +-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 backend/files/misc/workflows/snippets/publish-socket-message.hl diff --git a/backend/files/misc/workflows/snippets/publish-socket-message.hl b/backend/files/misc/workflows/snippets/publish-socket-message.hl new file mode 100644 index 0000000000..c353c48593 --- /dev/null +++ b/backend/files/misc/workflows/snippets/publish-socket-message.hl @@ -0,0 +1,11 @@ + +/* + * Publishes a socket message to the specified channel with the specified arguments. + * + * [roles] are what role(s) client must belong to in order to retrieve message. + */ +sockets.signal:channel-name + roles:root, admin + args + arg1:Value of first argument + arg2:Value of second argument diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts index 28468c24c6..0f37e7b145 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts @@ -295,7 +295,7 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges { } } resolve(true); - }) + }); } private markEditorClean(clearHistory: boolean = true) { @@ -344,7 +344,6 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges { }); dialog.afterClosed().subscribe((data: string) => { if (data) { - const path: string = this.activeFolder.substring(0, this.activeFolder.lastIndexOf('/')); this.renameFolderFromParent.emit({ folder: this.activeFolder, newName: data, From 105c2284bdddd43d9ef65ebcae1a7a4dc9fb293c Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 15:04:39 +0200 Subject: [PATCH 49/75] Better trimming --- .../magic.startup/magic.http.scrape-url.hl | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/backend/files/system/magic.startup/magic.http.scrape-url.hl b/backend/files/system/magic.startup/magic.http.scrape-url.hl index 0178b9f03e..9d830c69e5 100644 --- a/backend/files/system/magic.startup/magic.http.scrape-url.hl +++ b/backend/files/system/magic.startup/magic.http.scrape-url.hl @@ -596,11 +596,15 @@ slots.create:magic.http.scrape-url // Checking if this is a list of some sort, at which point we turn it into an unordered list. switch:x:@get-name case:li - set-value:x:@.completion - strings.concat - .:"\r\n" - .:"- " - get-value:x:@.completion + if + neq:x:@.completion + .: + .lambda + set-value:x:@.completion + strings.concat + .:"\r\n" + .:"- " + get-value:x:@.completion case:p set-value:x:@.completion strings.concat @@ -644,14 +648,17 @@ slots.create:magic.http.scrape-url not-null:x:@.dp/#/*/prompt mt strings.length:x:@.dp/#/*/prompt - .:int:50 + .:int:0 exists:x:@.dp/#/*/completion not-null:x:@.dp/#/*/completion - mt - strings.length:x:@.dp/#/*/completion - .:int:50 .lambda + // Trimming both prompt and completion. + set-value:x:@.dp/#/*/prompt + strings.trim:x:@.dp/#/*/prompt + set-value:x:@.dp/#/*/completion + strings.trim:x:@.dp/#/*/completion + // Valid snippet, making sure we return it to caller. add:x:../*/return get-nodes:x:@.dp/# From 2540d9b4fdd65233b7e0dc918b7d503883b7d24a Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 15:04:47 +0200 Subject: [PATCH 50/75] More actions --- backend/files/misc/workflows/snippets/get-cache.hl | 3 +++ backend/files/misc/workflows/snippets/scrape-url.hl | 4 ++++ backend/files/misc/workflows/snippets/set-cache.hl | 4 ++++ 3 files changed, 11 insertions(+) create mode 100644 backend/files/misc/workflows/snippets/get-cache.hl create mode 100644 backend/files/misc/workflows/snippets/scrape-url.hl create mode 100644 backend/files/misc/workflows/snippets/set-cache.hl diff --git a/backend/files/misc/workflows/snippets/get-cache.hl b/backend/files/misc/workflows/snippets/get-cache.hl new file mode 100644 index 0000000000..c49cedd40f --- /dev/null +++ b/backend/files/misc/workflows/snippets/get-cache.hl @@ -0,0 +1,3 @@ + +// Returns the specified item from your memory cache. +cache.get:cache-key diff --git a/backend/files/misc/workflows/snippets/scrape-url.hl b/backend/files/misc/workflows/snippets/scrape-url.hl new file mode 100644 index 0000000000..ae7735cd5d --- /dev/null +++ b/backend/files/misc/workflows/snippets/scrape-url.hl @@ -0,0 +1,4 @@ + +// Example snippet scraping some web page. +execute:magic.http.scrape-url + url:"https://ainiro.io" diff --git a/backend/files/misc/workflows/snippets/set-cache.hl b/backend/files/misc/workflows/snippets/set-cache.hl new file mode 100644 index 0000000000..5622d8f1f7 --- /dev/null +++ b/backend/files/misc/workflows/snippets/set-cache.hl @@ -0,0 +1,4 @@ + +// Saves a value to the memory cache with the specified key. +cache.set:cache-key + value:x:@.some-value From 2986d1416e1f76b531bb2143951a26a69eec8705 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 15:07:41 +0200 Subject: [PATCH 51/75] b --- backend/files/misc/workflows/functions/sql-execute.hl | 6 ++---- backend/files/misc/workflows/functions/sql-select.hl | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/backend/files/misc/workflows/functions/sql-execute.hl b/backend/files/misc/workflows/functions/sql-execute.hl index 4d2f54cb3f..81157d25c7 100644 --- a/backend/files/misc/workflows/functions/sql-execute.hl +++ b/backend/files/misc/workflows/functions/sql-execute.hl @@ -7,14 +7,12 @@ connection-string:string database-type:string database:string - sql:string - parameters:* + sql:* .example connection-string:generic database-type:sqlite database:magic sql:insert into roles (name, description) value (@name, @description) - parameters @name:role-name @description:The description for your role .icon:storage @@ -46,7 +44,7 @@ data.connect:x:@.connection-string // Parametrizing SQL. add:x:./*/data.select - get-nodes:x:@.arguments/*/parameters/* + get-nodes:x:@.arguments/*/sql/* // Executing SQL. data.select:x:@.arguments/*/sql diff --git a/backend/files/misc/workflows/functions/sql-select.hl b/backend/files/misc/workflows/functions/sql-select.hl index cf3b40cb42..06027d5a52 100644 --- a/backend/files/misc/workflows/functions/sql-select.hl +++ b/backend/files/misc/workflows/functions/sql-select.hl @@ -7,14 +7,12 @@ connection-string:string database-type:string database:string - sql:string - parameters:* + sql:* .example connection-string:generic database-type:sqlite database:magic sql:select name from roles where name like @arg1 limit 2 - parameters @arg1:a% .icon:storage @@ -45,7 +43,7 @@ data.connect:x:@.connection-string // Parametrizing SQL. add:x:./*/data.select - get-nodes:x:@.arguments/*/parameters/* + get-nodes:x:@.arguments/*/sql/* // Executing SQL. data.select:x:@.arguments/*/sql From 88b69a9ab276a2b11c55593cbefe0eb70a67b40a Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 15:09:00 +0200 Subject: [PATCH 52/75] Update example.hl --- backend/files/etc/workflows/example.hl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/backend/files/etc/workflows/example.hl b/backend/files/etc/workflows/example.hl index 8ec1b9b03b..2880c0e4de 100644 --- a/backend/files/etc/workflows/example.hl +++ b/backend/files/etc/workflows/example.hl @@ -4,7 +4,11 @@ * to return result of invocation. */ -// Executes sql-select function. + +/* + * Execute some select SQL statement specified as [sql]. + * Optionally provide [connection-string], [database-type] and [database]. + */ execute:magic.workflows.functions.execute name:sql-select filename:/misc/workflows/functions/sql-select.hl @@ -13,5 +17,4 @@ execute:magic.workflows.functions.execute database-type:sqlite database:magic sql:select name from roles where name like @arg1 limit 2 - parameters @arg1:a% From a69c8261777f615e15f982922d058bc90f3f1200 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 15:09:39 +0200 Subject: [PATCH 53/75] Update example.hl --- backend/files/etc/workflows/example.hl | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/files/etc/workflows/example.hl b/backend/files/etc/workflows/example.hl index 2880c0e4de..c7625bf958 100644 --- a/backend/files/etc/workflows/example.hl +++ b/backend/files/etc/workflows/example.hl @@ -13,8 +13,5 @@ execute:magic.workflows.functions.execute name:sql-select filename:/misc/workflows/functions/sql-select.hl arguments - connection-string:generic - database-type:sqlite - database:magic sql:select name from roles where name like @arg1 limit 2 @arg1:a% From 4a33da7a4a04416913fa2fcb46f78c52a57f9b7f Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 15:14:37 +0200 Subject: [PATCH 54/75] b --- .../misc/workflows/snippets/http-get-with-token.hl | 10 ++++++++++ .../misc/workflows/snippets/http-post-with-token.hl | 13 +++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 backend/files/misc/workflows/snippets/http-get-with-token.hl create mode 100644 backend/files/misc/workflows/snippets/http-post-with-token.hl diff --git a/backend/files/misc/workflows/snippets/http-get-with-token.hl b/backend/files/misc/workflows/snippets/http-get-with-token.hl new file mode 100644 index 0000000000..19f0c11236 --- /dev/null +++ b/backend/files/misc/workflows/snippets/http-get-with-token.hl @@ -0,0 +1,10 @@ + +// Retrieves the specified JSON document with the specified bearer token. +.token +set-value:x:@.token + strings.concat + .:"Bearer " + config.get:"magic:foo:token" +http.get:"https://foo.bar" + headers + Authorization:x:@.token diff --git a/backend/files/misc/workflows/snippets/http-post-with-token.hl b/backend/files/misc/workflows/snippets/http-post-with-token.hl new file mode 100644 index 0000000000..37b1b0676c --- /dev/null +++ b/backend/files/misc/workflows/snippets/http-post-with-token.hl @@ -0,0 +1,13 @@ + +// Posts the specified content as a JSON document to the specified URL with the specified bearer token. +.token +set-value:x:@.token + strings.concat + .:"Bearer " + config.get:"magic:foo:token" +http.post:"https://foo.bar" + headers + Authorization:x:@.token + payload + id:int:1 + userId:x:@.some-variable From 16e423406a3e56adbb9aa56cf48c85cd3b8007f3 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 15:18:15 +0200 Subject: [PATCH 55/75] Update ainiro.css --- frontend/src/assets/styles/codemirror/themes/ainiro.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/assets/styles/codemirror/themes/ainiro.css b/frontend/src/assets/styles/codemirror/themes/ainiro.css index 3db99231d1..b43f2807f3 100644 --- a/frontend/src/assets/styles/codemirror/themes/ainiro.css +++ b/frontend/src/assets/styles/codemirror/themes/ainiro.css @@ -20,7 +20,7 @@ .cm-s-ainiro span.cm-property, .cm-s-ainiro span.cm-attribute { color: #9ddfe9; } .cm-s-ainiro span.cm-keyword { color: #ffb928; } -.cm-s-ainiro span.cm-string { color: #ffcf6c; } +.cm-s-ainiro span.cm-string { color: #9ddfe9; } .cm-s-ainiro span.cm-string.cm-property { color: #ffffec; } .cm-s-ainiro span.cm-type { color: #fffffc; } From c75729423a2ba84682c2284af155d5d1dfc6b485 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 15:18:51 +0200 Subject: [PATCH 56/75] Update example.hl --- backend/files/etc/workflows/example.hl | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/files/etc/workflows/example.hl b/backend/files/etc/workflows/example.hl index c7625bf958..86beb56d54 100644 --- a/backend/files/etc/workflows/example.hl +++ b/backend/files/etc/workflows/example.hl @@ -4,7 +4,6 @@ * to return result of invocation. */ - /* * Execute some select SQL statement specified as [sql]. * Optionally provide [connection-string], [database-type] and [database]. From fdd12ee1eb3c3031b7a61bc464a2d1e58dfafc53 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 15:30:11 +0200 Subject: [PATCH 57/75] Shortkeys ++ --- .../app/_general/services/codemirror-actions.service.ts | 5 +++++ .../components/ide-editor/ide-editor.component.ts | 5 +++++ .../components/ide-searchbox/ide-searchbox.component.ts | 8 +++++++- .../_protected/pages/create/hyper-ide/ide.component.html | 1 + .../_protected/pages/create/hyper-ide/ide.component.ts | 9 ++++++++- 5 files changed, 26 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/_general/services/codemirror-actions.service.ts b/frontend/src/app/_general/services/codemirror-actions.service.ts index 12d12cbf02..6d74eb4d28 100644 --- a/frontend/src/app/_general/services/codemirror-actions.service.ts +++ b/frontend/src/app/_general/services/codemirror-actions.service.ts @@ -54,6 +54,11 @@ export class CodemirrorActionsService { this.action.next('deleteFile'); }) }; + res.options.extraKeys['Alt-F'] = () => { + this.ngZone.run(() => { + this.action.next('find'); + }) + }; res.options.extraKeys['Alt-C'] = () => { this.ngZone.run(() => { this.action.next('close'); diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts index 0f37e7b145..c0e7f46a0e 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts @@ -56,6 +56,7 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges { @Output() renameFileFromParent: EventEmitter<{ file: { path: string }, newName: string }> = new EventEmitter<{ file: { path: string }, newName: string }>(); @Output() renameFolderFromParent: EventEmitter = new EventEmitter(); @Output() createNewFileObjectFromParent: EventEmitter = new EventEmitter(); + @Output() focusToFind: EventEmitter = new EventEmitter(); constructor( private dialog: MatDialog, @@ -539,6 +540,10 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges { this.saveActiveFile(); break; + case 'find': + this.focusToFind.emit(); + break; + case 'deleteFile': this.deleteActiveFile(); break; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.ts index fcbe0cb651..71a43655c3 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.ts @@ -3,7 +3,7 @@ * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ -import { Component, EventEmitter, Input, Output } from '@angular/core'; +import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'; import { BehaviorSubject } from 'rxjs'; /** @@ -21,6 +21,7 @@ export class IdeSearchboxComponent { @Output() filterList = new EventEmitter(); @Output() toggleFileSystems = new EventEmitter(); + @ViewChild('input', {static: true}) input: any; inputValue = this._inputValue.asObservable(); @@ -42,4 +43,9 @@ export class IdeSearchboxComponent { this.toggleFileSystems.emit(this.fileSystem); } + + focusToFind() { + + this.input.nativeElement.focus(); + } } diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.html b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.html index 136cd6f652..ee143eb755 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.html +++ b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.html @@ -51,6 +51,7 @@ [activeFolder]="tree.activeFolder" [openFiles]="tree.openFiles" (updateFileObject)="tree.updateFileObject($event)" + (focusToFind)="focusToFind($event)" (getFilesFromServer)="tree.getFilesFromServer()" (getEndpoints)="tree.getEndpoints()" [endpoints]="tree.endpoints" diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.ts index 13d636b906..a451bc46ac 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.ts @@ -3,8 +3,9 @@ * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ -import { Component } from '@angular/core'; +import { Component, ViewChild } from '@angular/core'; import { FileNode } from './models/file-node.model'; +import { IdeSearchboxComponent } from './components/ide-searchbox/ide-searchbox.component'; /** * Primary Hyper IDE component, allowing users to browse and edit files. @@ -18,6 +19,7 @@ export class IdeComponent { currentFileData: FileNode; searchKey: string; + @ViewChild('search', {static: true}) search: IdeSearchboxComponent; showEditor(event: { currentFileData: any }) { @@ -28,4 +30,9 @@ export class IdeComponent { this.searchKey = event.value; } + + focusToFind(e: any) { + + this.search.focusToFind(); + } } From 5a4fddcf4150001e4959413b06240c3266b24345 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 17:21:24 +0200 Subject: [PATCH 58/75] b --- .../workflows/snippets/search-duckduckgo-scrape.hl | 10 ++++++++++ .../files/misc/workflows/snippets/search-duckduckgo.hl | 6 ++++++ .../components/shortkeys/shortkeys.component.ts | 9 +++++++++ .../components/ide-editor/ide-editor.component.ts | 2 +- 4 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 backend/files/misc/workflows/snippets/search-duckduckgo-scrape.hl create mode 100644 backend/files/misc/workflows/snippets/search-duckduckgo.hl diff --git a/backend/files/misc/workflows/snippets/search-duckduckgo-scrape.hl b/backend/files/misc/workflows/snippets/search-duckduckgo-scrape.hl new file mode 100644 index 0000000000..e670a529a2 --- /dev/null +++ b/backend/files/misc/workflows/snippets/search-duckduckgo-scrape.hl @@ -0,0 +1,10 @@ + +/* + * Searches for some query using DuckDuckGo, + * finding [max] URLs, for then to scrape all URLs in parallel, + * and return aggregated result as Markdown. + */ +.query:Who invented Hyperlambda? +execute:magic.http.duckduckgo-and-scrape + query:x:@.query + max:int:5 diff --git a/backend/files/misc/workflows/snippets/search-duckduckgo.hl b/backend/files/misc/workflows/snippets/search-duckduckgo.hl new file mode 100644 index 0000000000..aac773c1fe --- /dev/null +++ b/backend/files/misc/workflows/snippets/search-duckduckgo.hl @@ -0,0 +1,6 @@ + +// Searches DuckDuckGo for the specified query and returns 5 results. +.query:Who invented Hyperlambda? +execute:magic.http.duckduckgo-search + query:x:@.query + max:int:5 diff --git a/frontend/src/app/_general/components/shortkeys/shortkeys.component.ts b/frontend/src/app/_general/components/shortkeys/shortkeys.component.ts index 2f57732866..d24c9ccd02 100644 --- a/frontend/src/app/_general/components/shortkeys/shortkeys.component.ts +++ b/frontend/src/app/_general/components/shortkeys/shortkeys.component.ts @@ -44,6 +44,15 @@ export class ShortkeysComponent implements OnInit { } ]; } + if (this.data.type.indexOf('find') > -1) { + this.shortkeys = [ + ...this.shortkeys, + { + name: 'Find', + key: 'Alt + F' + } + ]; + } if (this.data.type.indexOf('execute') > -1) { this.shortkeys = [ ...this.shortkeys, diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts index c0e7f46a0e..e8420d11a3 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts @@ -130,7 +130,7 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges { this.dialog.open(ShortkeysComponent, { width: '900px', data: { - type: ['full', 'prompt'] + type: ['full', 'prompt', 'find'] } }); } From c5057cbf9a9df2010377b54aa07b98fc06728ccc Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 17:49:45 +0200 Subject: [PATCH 59/75] Create compile-csharp.hl --- .../workflows/functions/compile-csharp.hl | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 backend/files/misc/workflows/functions/compile-csharp.hl diff --git a/backend/files/misc/workflows/functions/compile-csharp.hl b/backend/files/misc/workflows/functions/compile-csharp.hl new file mode 100644 index 0000000000..42eb164181 --- /dev/null +++ b/backend/files/misc/workflows/functions/compile-csharp.hl @@ -0,0 +1,73 @@ + +/* + * Compiles the specified C# code and loads into the AppDomain. + * + * Notice, will not compile the specified code if assembly already exists in + * AppDomain, unless [recompile] is true. + */ +.arguments + code:string + references:* + assembly-name:string + recompile:bool +.example + code:@" +using System; +using magic.node; +using magic.node.extensions; +using magic.signals.contracts; + +[Slot(Name = ""get-employee-details"")] +public class Foo : ISlot +{ + public void Signal(ISignaler signaler, Node input) + { + switch (input.GetEx().ToLower()) + { + case ""john"": + input.Add(new Node(""title"", ""cmo"")); + input.Add(new Node(""phone"", ""92929292"")); + input.Add(new Node(""email"", ""john@doe.come"")); + break; + } + } +}" + references + .:netstandard + .:System.Runtime + .:System.ComponentModel + .:System.Private.CoreLib + .:magic.node + .:magic.node.extensions + .:magic.signals.contracts + assembly-name:employees.dll + recompile:bool:false +.icon:rocket_launch + +// Sanity checking invocation. +validators.mandatory:x:@.arguments/*/code +validators.mandatory:x:@.arguments/*/references +validators.mandatory:x:@.arguments/*/assembly-name + +/* + * We only compile C# code if it does not already exist in AppDomain, + * unless caller explicitly specifies [recompile] as true. + */ +system.plugin.list +if + or + get-value:x:@.arguments/*/recompile + not-exists:x:@system.plugin.list/*/={@.arguments/*/assembly-name} + .lambda + + // Parametrizing [system.compile] invocation. + add:x:./*/system.compile + get-nodes:x:@.arguments/*/code + get-nodes:x:@.arguments/*/references + get-nodes:x:@.arguments/*/assembly-name + + // Compiling C# code. + system.compile + + // Loading assembly into AppDomain. + system.plugin.load:x:@system.compile From 2382e0364b1e07e82d74dca52f71053fa2505666 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 18:02:35 +0200 Subject: [PATCH 60/75] Update compile-csharp.hl --- .../workflows/functions/compile-csharp.hl | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/backend/files/misc/workflows/functions/compile-csharp.hl b/backend/files/misc/workflows/functions/compile-csharp.hl index 42eb164181..9f55e309f0 100644 --- a/backend/files/misc/workflows/functions/compile-csharp.hl +++ b/backend/files/misc/workflows/functions/compile-csharp.hl @@ -7,6 +7,7 @@ */ .arguments code:string + file:string references:* assembly-name:string recompile:bool @@ -62,10 +63,29 @@ if // Parametrizing [system.compile] invocation. add:x:./*/system.compile - get-nodes:x:@.arguments/*/code get-nodes:x:@.arguments/*/references get-nodes:x:@.arguments/*/assembly-name + // Checking if caller provided a [file] argument instead of a [code] argument. + if + and + not-exists:x:@.arguments/*/code + exists:x:@.arguments/*/file + not-null:x:@.arguments/*/file + .lambda + + // We've got a [file] argument instead of a [code] argument. + load-file:x:@.arguments/*/file + add:x:@.lambda/@.lambda/*/system.compile + . + code:x:@load-file + + else + + // Caller provided a [code] argument. + add:x:@.lambda/*/system.compile + get-nodes:x:@.arguments/*/code + // Compiling C# code. system.compile From bc8d9fc723649ffc4457afd2232c3eed68b0fc7d Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 19:20:14 +0200 Subject: [PATCH 61/75] b --- .../workflows/functions/chatgpt-invoke.hl | 69 +++++++++++++++++++ .../ide-tree/ide-tree.component.html | 2 +- 2 files changed, 70 insertions(+), 1 deletion(-) create mode 100644 backend/files/misc/workflows/functions/chatgpt-invoke.hl diff --git a/backend/files/misc/workflows/functions/chatgpt-invoke.hl b/backend/files/misc/workflows/functions/chatgpt-invoke.hl new file mode 100644 index 0000000000..f0244a8be0 --- /dev/null +++ b/backend/files/misc/workflows/functions/chatgpt-invoke.hl @@ -0,0 +1,69 @@ + +/* + * Invokes ChatGPT with the specified [messages]. + * + * Will use the default API key found from configurations. + */ +.arguments + model:string + max_tokens:int + messages:* +.example + messages + . + role:system + content:Answer my question in the style of Snoop Dogg + . + role:user + content:"Explain Einstein's theory of relativity as if I am 5" +.icon:chat_bubble + +// Sanity checking invocation. +validators.mandatory:x:@.arguments/*/messages +validators.default:x:@.arguments + model:gpt-4-1106-preview + max_tokens:int:4000 + +// Retrieving OpenAI API token from configuration settings. +.token +set-value:x:@.token + strings.concat + .:"Bearer " + config.get:"magic:openai:key" + +// Parametrizing invocation to ChatGPT. +add:x:./*/http.post/*/payload + get-nodes:x:@.arguments/*/messages + +// Invokes OpenAI. +http.post:"https://api.openai.com/v1/chat/completions" + convert:bool:true + headers + Authorization:x:@.token + Content-Type:application/json + payload + model:x:@.arguments/*/model + max_tokens:x:@.arguments/*/max_tokens + temperature:decimal:0.3 + +// Sanity checking above invocation. +if + not + and + mte:x:@http.post + .:int:200 + lt:x:@http.post + .:int:300 + .lambda + + // Oops, error - Logging error and returning status 500 to caller. + lambda2hyper:x:@http.post + log.error:Something went wrong while invoking OpenAI + message:x:@http.post/*/content/*/error/*/message + status:x:@http.post + error:x:@lambda2hyper + +// Returning result to caller. +unwrap:x:+/* +return + result:x:@http.post/*/content/*/choices/0/*/message/*/content \ No newline at end of file diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html index 57cd59fc63..9d74f11ad4 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.html @@ -258,7 +258,7 @@ [matTooltipClass]="getTooltipClass(item)" (click)="addSnippet(item)" class="justify-content-start d-flex w-100"> - {{item.icon ?? 'star'}} + {{item.icon ?? 'grade'}} {{item.name}} From ea4961f87aa7868cd87123ddc314c5b45e571760 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 19:45:18 +0200 Subject: [PATCH 62/75] b --- .../functions/{chatgpt-invoke.hl => invoke-openai-chat.hl} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename backend/files/misc/workflows/functions/{chatgpt-invoke.hl => invoke-openai-chat.hl} (100%) diff --git a/backend/files/misc/workflows/functions/chatgpt-invoke.hl b/backend/files/misc/workflows/functions/invoke-openai-chat.hl similarity index 100% rename from backend/files/misc/workflows/functions/chatgpt-invoke.hl rename to backend/files/misc/workflows/functions/invoke-openai-chat.hl From 03dc0f4b5d50412f7b26151a57da97a2f6e028e8 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 22:43:50 +0200 Subject: [PATCH 63/75] b --- .../misc/workflows/functions/get-context.hl | 41 +++++++++++++++++++ .../misc/workflows/functions/sql-execute.hl | 2 +- .../misc/workflows/functions/sql-select.hl | 2 +- 3 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 backend/files/misc/workflows/functions/get-context.hl diff --git a/backend/files/misc/workflows/functions/get-context.hl b/backend/files/misc/workflows/functions/get-context.hl new file mode 100644 index 0000000000..b8805de3ec --- /dev/null +++ b/backend/files/misc/workflows/functions/get-context.hl @@ -0,0 +1,41 @@ + +/* + * Returns context for the specified [query] from the specified [type], + * and returns to caller. + * + * Optionally add [threshold] and [max_tokens] to specify similarity and maximum + * tokens to return. + */ +.arguments + type:string + query:string + threshold:decimal + max_tokens:int +.example + type:ainiro + query:Tell me about your chatbot + threshold:decimal:0.3 + max_tokens:int:2000 +.icon:extension + +// Sanity checking invocation. +validators.mandatory:x:@.arguments/*/type +validators.mandatory:x:@.arguments/*/query + +// Applying default values for optional arguments. +validators.default:x:@.arguments + threshold:decimal:0.3 + max_tokens:int:4000 + +// Retrieving context. +execute:magic.ai.get-context + type:x:@.arguments/*/type + vector_model:text-embedding-ada-002 + prompt:x:@.arguments/*/query + threshold:x:@.arguments/*/threshold + max_tokens:x:@.arguments/*/max_tokens + +// Returning result of invocation to caller. +unwrap:x:./*/return/* +return + result:x:@execute/*/context diff --git a/backend/files/misc/workflows/functions/sql-execute.hl b/backend/files/misc/workflows/functions/sql-execute.hl index 81157d25c7..faf582f845 100644 --- a/backend/files/misc/workflows/functions/sql-execute.hl +++ b/backend/files/misc/workflows/functions/sql-execute.hl @@ -15,7 +15,7 @@ sql:insert into roles (name, description) value (@name, @description) @name:role-name @description:The description for your role -.icon:storage +.icon:backup // Sanity checking invocation. validators.mandatory:x:@.arguments/*/sql diff --git a/backend/files/misc/workflows/functions/sql-select.hl b/backend/files/misc/workflows/functions/sql-select.hl index 06027d5a52..f551d8517e 100644 --- a/backend/files/misc/workflows/functions/sql-select.hl +++ b/backend/files/misc/workflows/functions/sql-select.hl @@ -14,7 +14,7 @@ database:magic sql:select name from roles where name like @arg1 limit 2 @arg1:a% -.icon:storage +.icon:cloud_download // Sanity checking invocation. validators.mandatory:x:@.arguments/*/sql From 64951d5c239df484be1aacddc083c74b391aaf8a Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 22:47:31 +0200 Subject: [PATCH 64/75] b --- .../functions/{get-context.hl => get-database-context.hl} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename backend/files/misc/workflows/functions/{get-context.hl => get-database-context.hl} (94%) diff --git a/backend/files/misc/workflows/functions/get-context.hl b/backend/files/misc/workflows/functions/get-database-context.hl similarity index 94% rename from backend/files/misc/workflows/functions/get-context.hl rename to backend/files/misc/workflows/functions/get-database-context.hl index b8805de3ec..7811c13c1b 100644 --- a/backend/files/misc/workflows/functions/get-context.hl +++ b/backend/files/misc/workflows/functions/get-database-context.hl @@ -12,8 +12,8 @@ threshold:decimal max_tokens:int .example - type:ainiro - query:Tell me about your chatbot + type:x:@.arguments/*/type + query:x:@.arguments/*/query threshold:decimal:0.3 max_tokens:int:2000 .icon:extension From 43062968acaf5b488ecb2340807b5292e1c4a6db Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 23:24:04 +0200 Subject: [PATCH 65/75] Create get-duckduckgo-context.hl --- .../functions/get-duckduckgo-context.hl | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 backend/files/misc/workflows/functions/get-duckduckgo-context.hl diff --git a/backend/files/misc/workflows/functions/get-duckduckgo-context.hl b/backend/files/misc/workflows/functions/get-duckduckgo-context.hl new file mode 100644 index 0000000000..36b2940e10 --- /dev/null +++ b/backend/files/misc/workflows/functions/get-duckduckgo-context.hl @@ -0,0 +1,69 @@ + +/* + * Returns [max_tokens] context for the specified [query] by searching DuckDuckGo. + * + * [max_tokens] is optional and defaults to 4000. + */ +.arguments + query:string + max_tokens:int +.example + query:x:@.arguments/*/query + max_tokens:int:4000 +.icon:extension + +// Sanity checking invocation. +validators.mandatory:x:@.arguments/*/query + +// Applying default values for optional arguments. +validators.default:x:@.arguments + max_tokens:int:4000 + +// Retrieving context. +execute:magic.http.duckduckgo-and-scrape + query:x:@.arguments/*/query + max:int:10 + +// Building our context return value. +.context: +while + and + exists:x:@execute/0/*/snippets/0 + lt + openai.tokenize:x:@.context + get-value:x:@.arguments/*/max_tokens + .lambda + + // Temporary value. + .tmp + set-value:x:@.tmp + strings.concat + get-value:x:@.context + .:"\r\n" + .:"\r\n" + get-value:x:@execute/0/*/snippets/0/*/prompt + .:"\r\n" + get-value:x:@execute/0/*/snippets/0/*/completion + if + lt + openai.tokenize:x:@.tmp + get-value:x:@.arguments/*/max_tokens + .lambda + + // Still below [max_tokes]. + set-value:x:@.context + get-value:x:@.tmp + + // Removing top snippet. + remove-nodes:x:@execute/0/*/snippets/0 + if + not-exists:x:@execute/0/*/snippets/0 + .lambda + + // Removing currently iterated URL. + remove-nodes:x:@execute/0 + +// Returning result to caller. +unwrap:x:./*/return/* +return + result:x:@.context From 38457d89588aa448c33ca4e156a6fd7c80c899b5 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Wed, 13 Dec 2023 23:27:49 +0200 Subject: [PATCH 66/75] b --- .../{get-database-context.hl => context-from-database.hl} | 0 .../{get-duckduckgo-context.hl => context-from-search.hl} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename backend/files/misc/workflows/functions/{get-database-context.hl => context-from-database.hl} (100%) rename backend/files/misc/workflows/functions/{get-duckduckgo-context.hl => context-from-search.hl} (100%) diff --git a/backend/files/misc/workflows/functions/get-database-context.hl b/backend/files/misc/workflows/functions/context-from-database.hl similarity index 100% rename from backend/files/misc/workflows/functions/get-database-context.hl rename to backend/files/misc/workflows/functions/context-from-database.hl diff --git a/backend/files/misc/workflows/functions/get-duckduckgo-context.hl b/backend/files/misc/workflows/functions/context-from-search.hl similarity index 100% rename from backend/files/misc/workflows/functions/get-duckduckgo-context.hl rename to backend/files/misc/workflows/functions/context-from-search.hl From dade09ae6b11b286d6766253fa91a5f491f573cf Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Thu, 14 Dec 2023 08:45:13 +0200 Subject: [PATCH 67/75] Update compile-csharp.hl --- backend/files/misc/workflows/functions/compile-csharp.hl | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/files/misc/workflows/functions/compile-csharp.hl b/backend/files/misc/workflows/functions/compile-csharp.hl index 9f55e309f0..b022d69ace 100644 --- a/backend/files/misc/workflows/functions/compile-csharp.hl +++ b/backend/files/misc/workflows/functions/compile-csharp.hl @@ -31,6 +31,7 @@ public class Foo : ISlot input.Add(new Node(""email"", ""john@doe.come"")); break; } + input.Value = null; } }" references From 2795e6e9940a397568d4f9c1d0ecd15aca4080e7 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Thu, 14 Dec 2023 08:54:09 +0200 Subject: [PATCH 68/75] b --- .../misc/workflows/functions/invoke-openai-chat.hl | 2 +- .../components/ide-editor/ide-editor.component.ts | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/backend/files/misc/workflows/functions/invoke-openai-chat.hl b/backend/files/misc/workflows/functions/invoke-openai-chat.hl index f0244a8be0..2f87b420a4 100644 --- a/backend/files/misc/workflows/functions/invoke-openai-chat.hl +++ b/backend/files/misc/workflows/functions/invoke-openai-chat.hl @@ -15,7 +15,7 @@ content:Answer my question in the style of Snoop Dogg . role:user - content:"Explain Einstein's theory of relativity as if I am 5" + content:"Explain Einstein's theory of relativity as if I am 5 in one sentence" .icon:chat_bubble // Sanity checking invocation. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts index e8420d11a3..a2160fa643 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts @@ -231,8 +231,19 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges { } else { + // Verifying document contains any actual code. + const fileExisting: number = this.openFiles.findIndex((item: any) => item.path === this.currentFileData.path); + const activeWrapper = document.querySelector('.active-codemirror-editor-' + fileExisting); + const editor = (activeWrapper.querySelector('.CodeMirror')).CodeMirror; + if (editor.getDoc().getValue() === '') { + + this.generalService.showFeedback('Active document contains no code', 'errorMessage'); + return; + } + const selectedText = editor.getSelection(); + this.generalService.showLoading(); - this.evaluatorService.execute(this.currentFileData.content).subscribe({ + this.evaluatorService.execute(selectedText === '' ? this.currentFileData.content : selectedText).subscribe({ next: (response: MagicResponse) => { From e9447ad9208042297070c83f1fd3742555d7dadb Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Thu, 14 Dec 2023 09:41:02 +0200 Subject: [PATCH 69/75] b --- backend/files/system/evaluator/slots.get.hl | 13 +++++++++++++ .../app/_general/services/vocabulary.service.ts | 17 ++++++++++++++--- .../ide-editor/ide-editor.component.ts | 8 +++++++- .../codemirror-hyperlambda.component.ts | 5 +++-- frontend/src/app/codemirror/hyperlambda.js | 10 ++++++++++ 5 files changed, 47 insertions(+), 6 deletions(-) create mode 100644 backend/files/system/evaluator/slots.get.hl diff --git a/backend/files/system/evaluator/slots.get.hl b/backend/files/system/evaluator/slots.get.hl new file mode 100644 index 0000000000..6837c53c14 --- /dev/null +++ b/backend/files/system/evaluator/slots.get.hl @@ -0,0 +1,13 @@ + +// Returns all dynamic slots in the system. +.description:Returns all dynamic slots in the system +.type:internal + +// Ensures user is authorized to access endpoint. +auth.ticket.verify:root + +// Retrieving all system slots. +slots.vocabulary + +// Returning results of the above to caller. +return-nodes:x:@slots.vocabulary/* diff --git a/frontend/src/app/_general/services/vocabulary.service.ts b/frontend/src/app/_general/services/vocabulary.service.ts index 45d52e94c5..de7eb67100 100644 --- a/frontend/src/app/_general/services/vocabulary.service.ts +++ b/frontend/src/app/_general/services/vocabulary.service.ts @@ -44,14 +44,25 @@ export class VocabularyService { of(this._vocabulary); } - return new Observable((observer) => { + return new Observable<{vocabulary: string[], slots: string[]}>((observer) => { this.httpService.get('/magic/system/evaluator/vocabulary').subscribe({ next: (vocabulary: string[]) => { this._vocabulary = vocabulary; - observer.next(vocabulary); - observer.complete(); + + this.httpService.get('/magic/system/evaluator/slots').subscribe({ + next: (slots: string[]) => { + + observer.next({vocabulary, slots}); + observer.complete(); + }, + error: (error: any) => { + + observer.error(error); + observer.complete(); + } + }); }, error: (error: any) => { diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts index a2160fa643..78cbd3f187 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts @@ -139,7 +139,13 @@ export class IdeEditorComponent implements OnInit, OnDestroy, OnChanges { if (!window['_vocabulary']) { this.vocabularyService.vocabulary().subscribe({ - next: (vocabulary: string[]) => window['_vocabulary'] = vocabulary, + + next: (result: {vocabulary: string[], slots: string[]}) => { + + window['_vocabulary'] = result.vocabulary; + window['_slots'] = result.slots; + }, + error: error => this.generalService.showFeedback(error?.error?.message ?? error, 'errorMessage') }); } diff --git a/frontend/src/app/codemirror/codemirror-hyperlambda/codemirror-hyperlambda.component.ts b/frontend/src/app/codemirror/codemirror-hyperlambda/codemirror-hyperlambda.component.ts index 3fbabaead8..eb51ae7eac 100644 --- a/frontend/src/app/codemirror/codemirror-hyperlambda/codemirror-hyperlambda.component.ts +++ b/frontend/src/app/codemirror/codemirror-hyperlambda/codemirror-hyperlambda.component.ts @@ -48,9 +48,10 @@ export class HyperlambdaComponent implements OnInit { } else { this.vocabularyService.vocabulary().subscribe({ - next: (vocabulary: string[]) => { + next: (result: {vocabulary: string[], slots: string[]}) => { - window['_vocabulary'] = vocabulary; + window['_vocabulary'] = result.vocabulary; + window['_slot'] = result.slots; this.init(); }, error: (error: any) => this.generalService.showFeedback(error.error.message ?? error, 'errorMessage') diff --git a/frontend/src/app/codemirror/hyperlambda.js b/frontend/src/app/codemirror/hyperlambda.js index cd2fd5581c..5745efee01 100644 --- a/frontend/src/app/codemirror/hyperlambda.js +++ b/frontend/src/app/codemirror/hyperlambda.js @@ -853,6 +853,16 @@ list.push(window._vocabulary[idx]); } } + for (var idx = 0; idx < window._slots.length; idx++) { + if (window._slots[idx].indexOf(curWord) != -1) { + + /* + * This keyword contains the text from current line in editor, hence + * adding keyword back to caller + */ + list.push('execute:' + window._slots[idx]); + } + } return { list: list, from: CodeMirror.Pos(cur.line, start), to: CodeMirror.Pos(cur.line, end) }; }); From bd1782a9ddc0958edd4d726116c1a0c06056bd84 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Thu, 14 Dec 2023 09:59:42 +0200 Subject: [PATCH 70/75] Update hyperlambda.js --- frontend/src/app/codemirror/hyperlambda.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/codemirror/hyperlambda.js b/frontend/src/app/codemirror/hyperlambda.js index 5745efee01..6d0a9bce95 100644 --- a/frontend/src/app/codemirror/hyperlambda.js +++ b/frontend/src/app/codemirror/hyperlambda.js @@ -857,8 +857,8 @@ if (window._slots[idx].indexOf(curWord) != -1) { /* - * This keyword contains the text from current line in editor, hence - * adding keyword back to caller + * This dynamic slot contains the text from current line in editor, hence + * adding slot invocation and returning it back to caller */ list.push('execute:' + window._slots[idx]); } From 658d1a96a8dc2bb68f2545b457fa7e12e9325895 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Thu, 14 Dec 2023 10:01:51 +0200 Subject: [PATCH 71/75] Update hyperlambda.js --- frontend/src/app/codemirror/hyperlambda.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/frontend/src/app/codemirror/hyperlambda.js b/frontend/src/app/codemirror/hyperlambda.js index 6d0a9bce95..ddfcd70e64 100644 --- a/frontend/src/app/codemirror/hyperlambda.js +++ b/frontend/src/app/codemirror/hyperlambda.js @@ -853,14 +853,16 @@ list.push(window._vocabulary[idx]); } } - for (var idx = 0; idx < window._slots.length; idx++) { - if (window._slots[idx].indexOf(curWord) != -1) { + if (window._slots) { + for (var idx = 0; idx < window._slots.length; idx++) { + if (window._slots[idx].indexOf(curWord) != -1) { - /* - * This dynamic slot contains the text from current line in editor, hence - * adding slot invocation and returning it back to caller - */ - list.push('execute:' + window._slots[idx]); + /* + * This dynamic slot contains the text from current line in editor, hence + * adding slot invocation and returning it back to caller + */ + list.push('execute:' + window._slots[idx]); + } } } return { list: list, from: CodeMirror.Pos(cur.line, start), to: CodeMirror.Pos(cur.line, end) }; From df28f723a421786724231621552d1459b52f5105 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Thu, 14 Dec 2023 11:44:41 +0200 Subject: [PATCH 72/75] Copyright --- CONTRIBUTING.md | 7 +-- LICENSE | 2 +- README.md | 2 +- backend/LICENSE | 2 +- backend/Program.cs | 2 +- backend/Startup.cs | 2 +- backend/files/etc/snippets/eurovision.hl | 24 +++++++ .../files/etc/snippets/find-dead-images.hl | 63 +++++++++++++++++++ .../main/src/app/pipes/date-since.pipe.ts | 2 +- backend/slots/Collect.cs | 2 +- backend/slots/ConsoleLog.cs | 2 +- backend/slots/InitTimeZone.cs | 2 +- backend/slots/Version.cs | 2 +- backend/slots/VersionCompare.cs | 2 +- .../_general/classes/common-error-messages.ts | 2 +- .../src/app/_general/classes/common-regex.ts | 2 +- .../classes/passwords-matching-validator.ts | 2 +- .../assumptions/assumptions.component.scss | 2 +- .../assumptions/assumptions.component.ts | 2 +- .../backends-list.component.scss | 2 +- .../backends-list/backends-list.component.ts | 2 +- .../_general/components/components.module.ts | 2 +- .../confirmation-dialog.component.scss | 2 +- .../confirmation-dialog.component.ts | 2 +- ...eate-assumption-test-dialog.component.scss | 2 +- ...create-assumption-test-dialog.component.ts | 2 +- .../components/dialog/dialog.component.ts | 2 +- .../execute-endpoint-dialog.component.scss | 2 +- .../execute-endpoint-dialog.component.ts | 2 +- .../load-snippet-dialog.component.scss | 2 +- .../load-snippet-dialog.component.ts | 2 +- .../loading-skeleton.component.scss | 2 +- .../loading-skeleton.component.ts | 2 +- .../log-item-details.component.scss | 2 +- .../log-item-details.component.ts | 2 +- .../openai-answer-dialog.component.scss | 2 +- .../openai-answer-dialog.component.ts | 2 +- ...openai-configuration-dialog.component.scss | 2 +- .../openai-configuration-dialog.component.ts | 2 +- .../openai-prompt.component.scss | 2 +- .../openai-prompt/openai-prompt.component.ts | 2 +- .../privacy-modal/privacy-modal.component.ts | 2 +- .../pwa-update-dialog.component.ts | 2 +- .../query-params/query-params.component.ts | 2 +- .../searchbox/searchbox.component.ts | 2 +- .../shortkeys/shortkeys.component.ts | 2 +- .../snippet-name-dialog.component.ts | 2 +- .../terms-modal/terms-modal.component.ts | 2 +- .../src/app/_general/models/app-manifest.ts | 2 +- .../src/app/_general/models/arg-type.model.ts | 2 +- .../app/_general/models/column-ex.model.ts | 2 +- .../src/app/_general/models/crudify.model.ts | 2 +- .../app/_general/models/custom-sql.model.ts | 2 +- .../src/app/_general/models/database.model.ts | 2 +- .../app/_general/models/databases.model.ts | 2 +- .../models/default-database-type.model.ts | 2 +- .../src/app/_general/models/endpoint.model.ts | 2 +- .../app/_general/models/loc-result.model.ts | 2 +- .../_general/models/magic-response.model.ts | 2 +- .../_general/models/prompt-response.model.ts | 2 +- .../src/app/_general/models/table-ex.model.ts | 2 +- .../src/app/_general/models/verb.model.ts | 2 +- .../src/app/_general/pipes/date-since.pipe.ts | 2 +- frontend/src/app/_general/pipes/date.pipe.ts | 2 +- .../src/app/_general/pipes/marked.pipe.ts | 2 +- .../src/app/_general/pipes/sort-by.pipe.ts | 2 +- .../src/app/_general/services/ai.service.ts | 2 +- .../_general/services/assumption.service.ts | 2 +- .../app/_general/services/backend.service.ts | 2 +- .../services/backendsstorage.service.ts | 2 +- .../app/_general/services/bazar.service.ts | 2 +- .../app/_general/services/cache.service.ts | 2 +- .../services/codemirror-actions.service.ts | 2 +- .../app/_general/services/config.service.ts | 2 +- .../app/_general/services/crudify.service.ts | 2 +- .../_general/services/diagnostics.service.ts | 2 +- .../app/_general/services/endpoint.service.ts | 2 +- .../_general/services/evaluator.service.ts | 2 +- .../src/app/_general/services/file.service.ts | 2 +- .../app/_general/services/general.service.ts | 2 +- .../src/app/_general/services/http.service.ts | 2 +- .../src/app/_general/services/log.service.ts | 2 +- .../machine-learning-training.service.ts | 2 +- .../app/_general/services/message.service.ts | 2 +- .../app/_general/services/openai.service.ts | 2 +- .../_general/services/query-arg.service.ts | 2 +- .../src/app/_general/services/sql.service.ts | 2 +- .../app/_general/services/theme.service.ts | 2 +- .../services/transform-model.service.ts | 2 +- .../_general/services/update-pwa.service.ts | 2 +- .../_general/services/vocabulary.service.ts | 2 +- .../app/_general/services/workflow.service.ts | 2 +- .../src/app/_layout/core/core.component.ts | 2 +- .../app/_layout/footer/footer.component.scss | 2 +- .../app/_layout/footer/footer.component.ts | 2 +- .../app/_layout/header/_model/nav-links.ts | 2 +- .../src/app/_layout/header/_model/sub-menu.ts | 2 +- .../app/_layout/header/header.component.scss | 2 +- .../app/_layout/header/header.component.ts | 2 +- .../auth/authenticate-response.model.ts | 2 +- .../models/auth/name-email.model.ts | 2 +- .../_protected/models/common/backend.model.ts | 2 +- .../models/common/cache-item.model.ts | 2 +- .../models/common/core-version.model.ts | 2 +- .../_protected/models/common/count.model.ts | 2 +- .../models/common/endpoint.model.ts | 2 +- .../models/common/macro-argument.model.ts | 2 +- .../models/common/macro-definition.model.ts | 2 +- .../_protected/models/common/message.model.ts | 2 +- .../models/common/name-email.model.ts | 2 +- .../_protected/models/common/setup.model.ts | 2 +- .../_protected/models/common/status.model.ts | 2 +- .../_protected/models/common/token.model.ts | 2 +- .../_module/chatbot-wizard.module.ts | 2 +- .../_module/chatbot-wizard.routing.module.ts | 2 +- .../chatbot-wizard.component.scss | 2 +- .../chatbot-wizard.component.ts | 2 +- .../databases/_module/databases.module.ts | 2 +- .../_module/databases.routing.module.ts | 2 +- .../catalog-name/catalog-name.component.ts | 2 +- .../manage-catalogs.component.scss | 2 +- .../manage-catalogs.component.ts | 2 +- .../connect-databases.component.scss | 2 +- .../connect-databases.component.ts | 2 +- .../create/databases/databases.component.ts | 2 +- .../view-plugin-database.component.scss | 2 +- .../view-plugin-database.component.ts | 2 +- .../manage-databases.component.scss | 2 +- .../manage-databases.component.ts | 2 +- .../_module/endpoint.module.ts | 2 +- .../_module/endpoint.routing.module.ts | 2 +- .../auto-endpoint-generator.component.ts | 2 +- .../foreign-key-list.component.scss | 2 +- .../foreign-key-list.component.ts | 2 +- .../single-table-config.component.scss | 2 +- .../single-table-config.component.ts | 2 +- .../endpoint-generator.component.scss | 2 +- .../endpoint-generator.component.ts | 2 +- .../endpoint-generator/generator-base.ts | 2 +- .../add-argument-dialog.component.ts | 2 +- .../sql-endpoint-generator.component.ts | 2 +- .../_module/frontend-generator.module.ts | 2 +- .../frontend-generator.routing.module.ts | 2 +- .../auto-generate.component.scss | 2 +- .../auto-generate/auto-generate.component.ts | 2 +- .../frontend-generator.component.ts | 2 +- .../upload-existing.component.scss | 2 +- .../upload-existing.component.ts | 2 +- .../execute-macro-dialog.component.scss | 2 +- .../execute-macro-dialog.component.ts | 2 +- .../execute-result-dialog.component.ts | 2 +- .../ide-editor/ide-editor.component.scss | 2 +- .../ide-editor/ide-editor.component.ts | 2 +- .../ide-searchbox.component.scss | 2 +- .../ide-searchbox/ide-searchbox.component.ts | 2 +- .../ide-tree/ide-tree.component.scss | 2 +- .../components/ide-tree/ide-tree.component.ts | 2 +- .../ide-tree/models/flat-node.model.ts | 2 +- .../ide-tree/models/tree-node.model.ts | 2 +- .../incompatible-file-dialog.component.ts | 2 +- .../new-file-folder-dialog.component.scss | 2 +- .../new-file-folder-dialog.component.ts | 2 +- .../preview-file-dialog.component.scss | 2 +- .../preview-file-dialog.component.ts | 2 +- .../rename-file-dialog.component.ts | 2 +- .../rename-folder-dialog.component.ts | 2 +- .../select-macro-dialog.component.scss | 2 +- .../select-macro-dialog.component.ts | 2 +- .../unsaved-changes-dialog.component.ts | 2 +- .../pages/create/hyper-ide/ide.component.scss | 2 +- .../pages/create/hyper-ide/ide.component.ts | 2 +- .../hyper-ide/models/file-node.model.ts | 2 +- .../hyper-ide/models/macro-argument.model.ts | 2 +- .../models/macro-definition.model.ts | 2 +- .../create/hyper-ide/module/ide.module.ts | 2 +- .../hyper-ide/module/ide.routing.module.ts | 2 +- .../_module/sql-studio-routing.module.ts | 2 +- .../sql-studio/_module/sql-studio.module.ts | 2 +- .../load-sql-snippet-dialog.component.ts | 2 +- .../sql-view/sql-view.component.scss | 2 +- .../components/sql-view/sql-view.component.ts | 2 +- .../add-field-or-key.component.scss | 2 +- .../add-field-or-key.component.ts | 2 +- .../add-link-table.component.ts | 2 +- .../add-table/add-table.component.ts | 2 +- .../apply-migrate-script.component.ts | 2 +- .../export-ddl/export-ddl.component.scss | 2 +- .../export-ddl/export-ddl.component.ts | 2 +- .../tables-view/tables-view.component.scss | 2 +- .../tables-view/tables-view.component.ts | 2 +- .../create/sql-studio/sql-studio.component.ts | 2 +- .../dashboard/_models/dashboard.model.ts | 2 +- .../_module/dashboard-routing.module.ts | 2 +- .../dashboard/_module/dashboard.module.ts | 2 +- .../components/chart/chart.component.scss | 2 +- .../components/chart/chart.component.ts | 2 +- .../configure-theme-dialog.component.ts | 2 +- .../last-log-items.component.scss | 2 +- .../last-log-items.component.ts | 2 +- .../main-chart/main-chart.component.scss | 2 +- .../main-chart/main-chart.component.ts | 2 +- .../overview-dialog.component.ts | 2 +- .../overview/overview.component.scss | 2 +- .../components/overview/overview.component.ts | 2 +- .../components/splash/splash.component.scss | 2 +- .../components/splash/splash.component.ts | 2 +- .../pages/dashboard/dashboard.component.ts | 2 +- .../endpoints/_models/argument.model.ts | 2 +- .../manage/endpoints/_models/lookup.model.ts | 2 +- .../endpoints/_models/socket-user.model.ts | 2 +- .../endpoints/_module/endpoints.module.ts | 2 +- .../_module/endpoints.routing.module.ts | 2 +- .../endpoints-list.component.scss | 2 +- .../endpoints-list.component.ts | 2 +- .../endpoints-result.component.scss | 2 +- .../endpoints-result.component.ts | 2 +- .../manage/endpoints/endpoints.component.scss | 2 +- .../manage/endpoints/endpoints.component.ts | 2 +- .../_module/hyperlambda-playground.module.ts | 2 +- .../hyperlambda-playground.routing.module.ts | 2 +- .../hyperlambda-playground.component.scss | 2 +- .../hyperlambda-playground.component.ts | 2 +- .../_module/machine-learning.module.ts | 2 +- .../machine-learning.routing.module.ts | 2 +- ...machine-learning-edit-cache.component.scss | 2 +- .../machine-learning-edit-cache.component.ts | 2 +- .../machine-learning-edit-model.component.ts | 2 +- ...earning-edit-training-snippet.component.ts | 2 +- .../machine-learning-embed-ui.component.ts | 2 +- .../machine-learning-import.component.scss | 2 +- .../machine-learning-import.component.ts | 2 +- .../machine-learning-spice.component.ts | 2 +- .../machine-learning-test.component.scss | 2 +- .../machine-learning-test.component.ts | 2 +- .../machine-learning-train.component.ts | 2 +- .../machine-learning-history.component.scss | 2 +- .../machine-learning-history.component.ts | 2 +- .../machine-learning-models.component.scss | 2 +- .../machine-learning-models.component.ts | 2 +- ...hine-learning-training-data.component.scss | 2 +- ...achine-learning-training-data.component.ts | 2 +- .../machine-learning.component.ts | 2 +- .../manage/plugins/_module/plugins.module.ts | 2 +- .../plugins/_module/plugins.routing.module.ts | 2 +- .../view-app/view-plugin.component.scss | 2 +- .../view-app/view-plugin.component.ts | 2 +- .../manage/plugins/plugins.component.scss | 2 +- .../pages/manage/plugins/plugins.component.ts | 2 +- .../sockets/_models/published-message.ts | 2 +- .../manage/sockets/_module/socket.module.ts | 2 +- .../sockets/_module/socket.routing.module.ts | 2 +- .../sockets/_services/socket.service.ts | 2 +- .../publish-dialog.component.ts | 2 +- .../socket-searchbox.component.ts | 2 +- .../subscribe-dialog.component.ts | 2 +- .../socket-list/socket-list.component.ts | 2 +- .../socket-result/socket-result.component.ts | 2 +- .../manage/sockets/sockets.component.scss | 2 +- .../pages/manage/sockets/sockets.component.ts | 2 +- .../manage/tasks/_models/schedule.model.ts | 2 +- .../pages/manage/tasks/_models/task.model.ts | 2 +- .../pages/manage/tasks/_module/task.module.ts | 2 +- .../tasks/_module/task.routing.module.ts | 2 +- .../manage/tasks/_services/task.service.ts | 2 +- .../manage-task/manage-task.component.ts | 2 +- .../schedule-task/schedule-task.component.ts | 2 +- .../pages/manage/tasks/tasks.component.scss | 2 +- .../pages/manage/tasks/tasks.component.ts | 2 +- .../_models/authenticate-response.model.ts | 2 +- .../user-and-roles/_models/role.model.ts | 2 +- .../_models/user-roles.model.ts | 2 +- .../user-and-roles/_models/user.model.ts | 2 +- .../_module/users-roles.module.ts | 2 +- .../_module/users-roles.routing.module.ts | 2 +- .../user-and-roles/_services/role.service.ts | 2 +- .../user-and-roles/_services/user.service.ts | 2 +- .../add-extra-fields-dialog.component.ts | 2 +- .../change-password-dialog.component.ts | 2 +- .../edit-user-dialog.component.ts | 2 +- .../manage-role-dialog.component.ts | 2 +- .../new-user-dialog.component.scss | 2 +- .../new-user-dialog.component.ts | 2 +- .../shared-top-bar.component.scss | 2 +- .../shared-top-bar.component.ts | 2 +- .../roles-list/roles-list.component.scss | 2 +- .../roles-list/roles-list.component.ts | 2 +- .../user-and-roles/user-roles.component.ts | 2 +- .../users-list/users-list.component.scss | 2 +- .../users-list/users-list.component.ts | 2 +- .../configuration/_module/config.module.ts | 2 +- .../_module/config.routing.module.ts | 2 +- .../recaptcha-dialog.component.scss | 2 +- .../recaptcha-dialog.component.ts | 2 +- .../smtp-dialog/smtp-dialog.component.ts | 2 +- .../configuration.component.scss | 2 +- .../configuration/configuration.component.ts | 2 +- .../_models/crypto-invocations.model.ts | 2 +- .../cryptography/_models/key-pair.model.ts | 2 +- .../_models/public-key-full.model.ts | 2 +- .../cryptography/_models/public-key.model.ts | 2 +- .../_module/cryptography.module.ts | 2 +- .../_module/cryptography.routing.module.ts | 2 +- .../cryptography/_services/crypto.service.ts | 2 +- .../new-server-key.component.ts | 2 +- .../public-key-details.component.scss | 2 +- .../public-key-details.component.ts | 2 +- .../cryptography-public-keys.component.scss | 2 +- .../cryptography-public-keys.component.ts | 2 +- .../cryptography-receipts.component.ts | 2 +- .../cryptography/cryptography.component.scss | 2 +- .../cryptography/cryptography.component.ts | 2 +- .../_module/health-check.module.ts | 2 +- .../_module/health-check.routing.module.ts | 2 +- .../test-health-content-dialog.component.ts | 2 +- .../health-check/health-check.component.scss | 2 +- .../health-check/health-check.component.ts | 2 +- .../help-center/_module/help-center.module.ts | 2 +- .../_module/help-center.routing.module.ts | 2 +- .../misc/help-center/help-center.component.ts | 2 +- .../pages/misc/log/_models/log-item.model.ts | 2 +- .../pages/misc/log/_module/log.module.ts | 2 +- .../misc/log/_module/log.routing.module.ts | 2 +- .../pages/misc/log/log.component.scss | 2 +- .../pages/misc/log/log.component.ts | 2 +- .../pages/setup/_module/setup.module.ts | 2 +- .../setup/_module/setup.routing.module.ts | 2 +- .../_protected/pages/setup/setup.component.ts | 2 +- .../generate-token-dialog.component.scss | 2 +- .../generate-token-dialog.component.ts | 2 +- .../user/profile/_module/profile.module.ts | 2 +- .../profile/_module/profile.routing.module.ts | 2 +- .../pages/user/profile/profile.component.scss | 2 +- .../pages/user/profile/profile.component.ts | 2 +- frontend/src/app/access.guard.ts | 2 +- frontend/src/app/app-routing.module.ts | 2 +- frontend/src/app/app.component.scss | 2 +- frontend/src/app/app.component.ts | 2 +- frontend/src/app/app.module.ts | 2 +- .../src/app/codemirror/_module/cm.module.ts | 2 +- .../codemirror-hyperlambda.component.ts | 2 +- .../codemirror-sql.component.ts | 2 +- .../src/app/interceptors/auth.interceptor.ts | 2 +- .../app/interceptors/loader.interceptor.ts | 2 +- frontend/src/app/material.module.ts | 2 +- frontend/src/app/models/affected.model.ts | 2 +- frontend/src/app/models/app-manifest.ts | 2 +- frontend/src/app/models/bazar-app.model.ts | 2 +- frontend/src/app/models/column.model.ts | 2 +- frontend/src/app/models/count.model.ts | 2 +- frontend/src/app/models/dashboard.model.ts | 2 +- frontend/src/app/models/foreign-key.model.ts | 2 +- frontend/src/app/models/message.model.ts | 2 +- .../src/app/models/purchase-status.model.ts | 2 +- frontend/src/app/models/status.model.ts | 2 +- frontend/src/app/models/table.model.ts | 2 +- frontend/src/app/models/template.model.ts | 2 +- .../authentication/_module/auth.module.ts | 2 +- .../_module/auth.routing.module.ts | 2 +- .../auth-base/auth-base.component.scss | 2 +- .../auth-base/auth-base.component.ts | 2 +- .../auto-auth/auto-auth.component.ts | 2 +- .../forgot-password.component.ts | 2 +- .../authentication/login/login.component.ts | 2 +- .../not-found/lazy-loading/notfound.module.ts | 2 +- .../lazy-loading/notfound.routing.module.ts | 2 +- .../public/not-found/not-found.component.scss | 2 +- .../public/not-found/not-found.component.ts | 2 +- frontend/src/app/shared.module.ts | 2 +- frontend/src/environments/environment.prod.ts | 2 +- frontend/src/environments/environment.ts | 2 +- frontend/src/main.ts | 2 +- frontend/src/polyfills.ts | 2 +- frontend/src/styles.scss | 2 +- 373 files changed, 460 insertions(+), 374 deletions(-) create mode 100644 backend/files/etc/snippets/eurovision.hl create mode 100644 backend/files/etc/snippets/find-dead-images.hl diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f09b362dd7..cfea4ff703 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,9 +1,8 @@ # Contributon to Magic In order to contribute to Magic, we need your employer's consent that you are legally allowed to contribute to open source projects. -This implies at the minimum having your closest upwards _"C level executive"_ send you an email confirming that there it's OK for -you to contribute to Magic, allowing us to sub-license your work any ways we see fit, for then to forward that email to info@aista.com. -We also need your explicit consent, implying you are fine with Aista, Ltd sub-licensing your code, any ways we see fit. +This implies at the minimum having your closest upwards _"C level executive"_ send you an email confirming that it's OK for +you to contribute to Magic, allowing us to sub-license your work any ways we see fit, for then to forward that email to thomas@ainiro.io. -Hence, if you want to contribute to Magic, you will need to send two emails to info@aista.com as explained further up. Otherwise +Hence, if you want to contribute to Magic, you will need to send two emails to thomas@ainiro.io as explained further up. Otherwise we cannot for legal reasons accept your contribution. diff --git a/LICENSE b/LICENSE index 1f9995876b..b941e26398 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2020-2021 Thomas Hansen, thomas@servergardens.com +Copyright 2020-2023 Thomas Hansen, thomas@ainiro.io Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/README.md b/README.md index ad25352785..88826b76ff 100644 --- a/README.md +++ b/README.md @@ -54,4 +54,4 @@ See the enclosed LICENSE files within each folder, and/or plugin if in doubt. ## Copyright and maintenance -The projects is copyright of Aista, Ltd 2021 - 2023, and professionally maintained by [AINIRO your friendly ChatGPT website chatbot vendor](https://ainiro.io). +The projects is copyright of Thomas Hansen, Ltd 2021 - 2023, and professionally maintained by [AINIRO your friendly ChatGPT website chatbot vendor](https://ainiro.io). diff --git a/backend/LICENSE b/backend/LICENSE index 1f9995876b..b941e26398 100644 --- a/backend/LICENSE +++ b/backend/LICENSE @@ -1,4 +1,4 @@ -Copyright 2020-2021 Thomas Hansen, thomas@servergardens.com +Copyright 2020-2023 Thomas Hansen, thomas@ainiro.io Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/backend/Program.cs b/backend/Program.cs index 850ad86fe0..983a57ef23 100644 --- a/backend/Program.cs +++ b/backend/Program.cs @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, 2021 - 2023 team@ainiro.io. + * Copyright (c) Thomas Hansen, 2021 - 2023 thomas@ainiro.io. */ using Microsoft.AspNetCore; diff --git a/backend/Startup.cs b/backend/Startup.cs index 5c747145fa..9b76385324 100644 --- a/backend/Startup.cs +++ b/backend/Startup.cs @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, 2021 - 2023 team@ainiro.io. + * Copyright (c) Thomas Hansen, 2021 - 2023 thomas@ainiro.io. */ using Microsoft.AspNetCore.Builder; diff --git a/backend/files/etc/snippets/eurovision.hl b/backend/files/etc/snippets/eurovision.hl new file mode 100644 index 0000000000..2b16707926 --- /dev/null +++ b/backend/files/etc/snippets/eurovision.hl @@ -0,0 +1,24 @@ +signal:magic.http.duckduckgo-and-scrape + query:Who won Eurovision 2023 + max:int:5 + + +signal:magic.http.duckduckgo-search + query:Who won Eurovision 2023 + max:int:5 + +signal:magic.http.scrape-url + url:"https://www.cnn.com/2023/05/13/europe/eurovision-song-contest-2023-winner-intl/index.html" + +signal:magic.http.scrape-url + url:"https://eurovisionworld.com/eurovision/2023" + +signal:magic.http.scrape-url + url:"https://www.nytimes.com/2023/05/13/arts/music/eurovision-2023-final-sweden.html" + +signal:magic.http.scrape-url + url:"https://www.npr.org/2023/05/13/1176049673/loreen-of-sweden-wins-eurovision-song-contest" + +signal:magic.http.scrape-url + url:"https://www.nytimes.com/live/2023/05/13/arts/eurovision-final" + diff --git a/backend/files/etc/snippets/find-dead-images.hl b/backend/files/etc/snippets/find-dead-images.hl new file mode 100644 index 0000000000..80e9a20ec7 --- /dev/null +++ b/backend/files/etc/snippets/find-dead-images.hl @@ -0,0 +1,63 @@ + +/* + * Finds all images that are not referenced in any HTML, JS, CSS or + * Markdown file, and returns in [.result]. + */ +.not-used +.html +.images +io.file.list-recursively:/etc/www/ +for-each:x:-/* + strings.split:x:@.dp/# + .:. + switch:x:-/0/- + case:html + case:md + .html + set-value:x:@.html + io.file.load:x:@.dp/# + if + eq + get-value:x:@strings.split/0/- + .:md + .lambda + markdown2html:x:@.html + set-value:x:@.html + get-value:x:@markdown2html + if + exists:x:@markdown2html/*/image + .lambda + strings.concat + .:/etc/www + get-value:x:@markdown2html/*/image + unwrap:x:+/*/* + add:x:@.html/@.html + . + .:x:@strings.concat + html2lambda:x:@.html + for-each:x:@html2lambda/**/img/*/\@src + if + strings.starts-with:x:@.dp/# + .:/assets/ + .lambda + strings.concat + .:/etc/www + get-value:x:@.dp/# + unwrap:x:+/*/* + add:x:@.html/@.html + . + .:x:@strings.concat +add:x:@.images + io.file.list-recursively:/etc/www/assets/images/ +for-each:x:@.images/* + + if + not + exists:x:@.html/*/={@.dp/#} + .lambda + unwrap:x:+/*/* + add:x:@.not-used + . + .:x:@.dp/# +for-each:x:@.not-used/* + io.file.delete:x:@.dp/# \ No newline at end of file diff --git a/backend/files/misc/templates/angular/templates/main/src/app/pipes/date-since.pipe.ts b/backend/files/misc/templates/angular/templates/main/src/app/pipes/date-since.pipe.ts index d8595ff231..968802efdc 100644 --- a/backend/files/misc/templates/angular/templates/main/src/app/pipes/date-since.pipe.ts +++ b/backend/files/misc/templates/angular/templates/main/src/app/pipes/date-since.pipe.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, 2021 - 2023 team@ainiro.io. + * Copyright (c) Thomas Hansen, 2021 - 2023 thomas@ainiro.io. */ import { Pipe, PipeTransform } from '@angular/core'; diff --git a/backend/slots/Collect.cs b/backend/slots/Collect.cs index 12433076e6..05ae82e208 100644 --- a/backend/slots/Collect.cs +++ b/backend/slots/Collect.cs @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, 2021 - 2023 team@ainiro.io. + * Copyright (c) Thomas Hansen, 2021 - 2023 thomas@ainiro.io. */ using System; diff --git a/backend/slots/ConsoleLog.cs b/backend/slots/ConsoleLog.cs index dc3daf559a..6948e041b9 100644 --- a/backend/slots/ConsoleLog.cs +++ b/backend/slots/ConsoleLog.cs @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, 2021 - 2023 team@ainiro.io. + * Copyright (c) Thomas Hansen, 2021 - 2023 thomas@ainiro.io. */ using System; diff --git a/backend/slots/InitTimeZone.cs b/backend/slots/InitTimeZone.cs index ee8a1bb684..4b65211a81 100644 --- a/backend/slots/InitTimeZone.cs +++ b/backend/slots/InitTimeZone.cs @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, 2021 - 2023 team@ainiro.io. + * Copyright (c) Thomas Hansen, 2021 - 2023 thomas@ainiro.io. */ using magic.node; diff --git a/backend/slots/Version.cs b/backend/slots/Version.cs index c13b32fe83..d6ed186ac3 100644 --- a/backend/slots/Version.cs +++ b/backend/slots/Version.cs @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, 2021 - 2023 team@ainiro.io. + * Copyright (c) Thomas Hansen, 2021 - 2023 thomas@ainiro.io. */ using magic.node; diff --git a/backend/slots/VersionCompare.cs b/backend/slots/VersionCompare.cs index 5bc8a1b559..016ba3dd06 100644 --- a/backend/slots/VersionCompare.cs +++ b/backend/slots/VersionCompare.cs @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, 2021 - 2023 team@ainiro.io. + * Copyright (c) Thomas Hansen, 2021 - 2023 thomas@ainiro.io. */ using System.Linq; diff --git a/frontend/src/app/_general/classes/common-error-messages.ts b/frontend/src/app/_general/classes/common-error-messages.ts index 14b0bd49c4..4ac57cc5c5 100644 --- a/frontend/src/app/_general/classes/common-error-messages.ts +++ b/frontend/src/app/_general/classes/common-error-messages.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_general/classes/common-regex.ts b/frontend/src/app/_general/classes/common-regex.ts index c201b0da6d..cbba9acda1 100644 --- a/frontend/src/app/_general/classes/common-regex.ts +++ b/frontend/src/app/_general/classes/common-regex.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_general/classes/passwords-matching-validator.ts b/frontend/src/app/_general/classes/passwords-matching-validator.ts index 5a5a5d077f..ccf733c6b0 100644 --- a/frontend/src/app/_general/classes/passwords-matching-validator.ts +++ b/frontend/src/app/_general/classes/passwords-matching-validator.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { UntypedFormGroup } from '@angular/forms'; diff --git a/frontend/src/app/_general/components/assumptions/assumptions.component.scss b/frontend/src/app/_general/components/assumptions/assumptions.component.scss index 3d9aa65b23..100c5486d7 100644 --- a/frontend/src/app/_general/components/assumptions/assumptions.component.scss +++ b/frontend/src/app/_general/components/assumptions/assumptions.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ mat-icon { diff --git a/frontend/src/app/_general/components/assumptions/assumptions.component.ts b/frontend/src/app/_general/components/assumptions/assumptions.component.ts index 813f82e68d..d83075b8f9 100644 --- a/frontend/src/app/_general/components/assumptions/assumptions.component.ts +++ b/frontend/src/app/_general/components/assumptions/assumptions.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Input, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_general/components/backends-list/backends-list.component.scss b/frontend/src/app/_general/components/backends-list/backends-list.component.scss index 81cfe8beee..0c0eb1d6f5 100644 --- a/frontend/src/app/_general/components/backends-list/backends-list.component.scss +++ b/frontend/src/app/_general/components/backends-list/backends-list.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_general/components/backends-list/backends-list.component.ts b/frontend/src/app/_general/components/backends-list/backends-list.component.ts index 6f8ab628cd..f47cc54e36 100644 --- a/frontend/src/app/_general/components/backends-list/backends-list.component.ts +++ b/frontend/src/app/_general/components/backends-list/backends-list.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_general/components/components.module.ts b/frontend/src/app/_general/components/components.module.ts index adfbe45731..0118fc4307 100644 --- a/frontend/src/app/_general/components/components.module.ts +++ b/frontend/src/app/_general/components/components.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_general/components/confirmation-dialog/confirmation-dialog.component.scss b/frontend/src/app/_general/components/confirmation-dialog/confirmation-dialog.component.scss index e90f8ed2c2..2b851126cc 100644 --- a/frontend/src/app/_general/components/confirmation-dialog/confirmation-dialog.component.scss +++ b/frontend/src/app/_general/components/confirmation-dialog/confirmation-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ p { diff --git a/frontend/src/app/_general/components/confirmation-dialog/confirmation-dialog.component.ts b/frontend/src/app/_general/components/confirmation-dialog/confirmation-dialog.component.ts index a7699811b0..cc824d2e6d 100644 --- a/frontend/src/app/_general/components/confirmation-dialog/confirmation-dialog.component.ts +++ b/frontend/src/app/_general/components/confirmation-dialog/confirmation-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_general/components/create-assumption-test-dialog/create-assumption-test-dialog.component.scss b/frontend/src/app/_general/components/create-assumption-test-dialog/create-assumption-test-dialog.component.scss index e1cc4817e0..0e1abbdc9c 100644 --- a/frontend/src/app/_general/components/create-assumption-test-dialog/create-assumption-test-dialog.component.scss +++ b/frontend/src/app/_general/components/create-assumption-test-dialog/create-assumption-test-dialog.component.scss @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ ::ng-deep { diff --git a/frontend/src/app/_general/components/create-assumption-test-dialog/create-assumption-test-dialog.component.ts b/frontend/src/app/_general/components/create-assumption-test-dialog/create-assumption-test-dialog.component.ts index e00ad5b22a..7308ca8422 100644 --- a/frontend/src/app/_general/components/create-assumption-test-dialog/create-assumption-test-dialog.component.ts +++ b/frontend/src/app/_general/components/create-assumption-test-dialog/create-assumption-test-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/components/dialog/dialog.component.ts b/frontend/src/app/_general/components/dialog/dialog.component.ts index 8369f241e6..27ca4ad184 100644 --- a/frontend/src/app/_general/components/dialog/dialog.component.ts +++ b/frontend/src/app/_general/components/dialog/dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_general/components/execute-endpoint-dialog/execute-endpoint-dialog.component.scss b/frontend/src/app/_general/components/execute-endpoint-dialog/execute-endpoint-dialog.component.scss index 2d515fe652..2451fa9f7b 100644 --- a/frontend/src/app/_general/components/execute-endpoint-dialog/execute-endpoint-dialog.component.scss +++ b/frontend/src/app/_general/components/execute-endpoint-dialog/execute-endpoint-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ ::ng-deep .endpoint-result { diff --git a/frontend/src/app/_general/components/execute-endpoint-dialog/execute-endpoint-dialog.component.ts b/frontend/src/app/_general/components/execute-endpoint-dialog/execute-endpoint-dialog.component.ts index 65b04a5d82..4c41c4baff 100644 --- a/frontend/src/app/_general/components/execute-endpoint-dialog/execute-endpoint-dialog.component.ts +++ b/frontend/src/app/_general/components/execute-endpoint-dialog/execute-endpoint-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, Inject, OnInit, ViewChild } from '@angular/core'; diff --git a/frontend/src/app/_general/components/load-snippet-dialog/load-snippet-dialog.component.scss b/frontend/src/app/_general/components/load-snippet-dialog/load-snippet-dialog.component.scss index 37ad084ae3..1862d756de 100644 --- a/frontend/src/app/_general/components/load-snippet-dialog/load-snippet-dialog.component.scss +++ b/frontend/src/app/_general/components/load-snippet-dialog/load-snippet-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .mat-list-option { diff --git a/frontend/src/app/_general/components/load-snippet-dialog/load-snippet-dialog.component.ts b/frontend/src/app/_general/components/load-snippet-dialog/load-snippet-dialog.component.ts index ea7a237e32..ae238876a3 100644 --- a/frontend/src/app/_general/components/load-snippet-dialog/load-snippet-dialog.component.ts +++ b/frontend/src/app/_general/components/load-snippet-dialog/load-snippet-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/components/loading-skeleton/loading-skeleton.component.scss b/frontend/src/app/_general/components/loading-skeleton/loading-skeleton.component.scss index bdfb47903c..8a5b99ae7e 100644 --- a/frontend/src/app/_general/components/loading-skeleton/loading-skeleton.component.scss +++ b/frontend/src/app/_general/components/loading-skeleton/loading-skeleton.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .block { diff --git a/frontend/src/app/_general/components/loading-skeleton/loading-skeleton.component.ts b/frontend/src/app/_general/components/loading-skeleton/loading-skeleton.component.ts index cf769ce0c0..961f62f00c 100644 --- a/frontend/src/app/_general/components/loading-skeleton/loading-skeleton.component.ts +++ b/frontend/src/app/_general/components/loading-skeleton/loading-skeleton.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Input, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_general/components/log-item-details/log-item-details.component.scss b/frontend/src/app/_general/components/log-item-details/log-item-details.component.scss index 13d0669fd7..c731508eec 100644 --- a/frontend/src/app/_general/components/log-item-details/log-item-details.component.scss +++ b/frontend/src/app/_general/components/log-item-details/log-item-details.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .pre-formatted { diff --git a/frontend/src/app/_general/components/log-item-details/log-item-details.component.ts b/frontend/src/app/_general/components/log-item-details/log-item-details.component.ts index 84ec197d90..5664b8e68e 100644 --- a/frontend/src/app/_general/components/log-item-details/log-item-details.component.ts +++ b/frontend/src/app/_general/components/log-item-details/log-item-details.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_general/components/openai/openai-answer-dialog/openai-answer-dialog.component.scss b/frontend/src/app/_general/components/openai/openai-answer-dialog/openai-answer-dialog.component.scss index d7daa16854..7a8c7f9e4b 100644 --- a/frontend/src/app/_general/components/openai/openai-answer-dialog/openai-answer-dialog.component.scss +++ b/frontend/src/app/_general/components/openai/openai-answer-dialog/openai-answer-dialog.component.scss @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .code { diff --git a/frontend/src/app/_general/components/openai/openai-answer-dialog/openai-answer-dialog.component.ts b/frontend/src/app/_general/components/openai/openai-answer-dialog/openai-answer-dialog.component.ts index 09f7381d63..884e64c908 100644 --- a/frontend/src/app/_general/components/openai/openai-answer-dialog/openai-answer-dialog.component.ts +++ b/frontend/src/app/_general/components/openai/openai-answer-dialog/openai-answer-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Inject, Input, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_general/components/openai/openai-configuration-dialog/openai-configuration-dialog.component.scss b/frontend/src/app/_general/components/openai/openai-configuration-dialog/openai-configuration-dialog.component.scss index fb6ef1dbdd..c348825659 100644 --- a/frontend/src/app/_general/components/openai/openai-configuration-dialog/openai-configuration-dialog.component.scss +++ b/frontend/src/app/_general/components/openai/openai-configuration-dialog/openai-configuration-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ a { diff --git a/frontend/src/app/_general/components/openai/openai-configuration-dialog/openai-configuration-dialog.component.ts b/frontend/src/app/_general/components/openai/openai-configuration-dialog/openai-configuration-dialog.component.ts index 4adb368464..5af4eed488 100644 --- a/frontend/src/app/_general/components/openai/openai-configuration-dialog/openai-configuration-dialog.component.ts +++ b/frontend/src/app/_general/components/openai/openai-configuration-dialog/openai-configuration-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_general/components/openai/openai-prompt/openai-prompt.component.scss b/frontend/src/app/_general/components/openai/openai-prompt/openai-prompt.component.scss index 64de22e948..53b08ad9e8 100644 --- a/frontend/src/app/_general/components/openai/openai-prompt/openai-prompt.component.scss +++ b/frontend/src/app/_general/components/openai/openai-prompt/openai-prompt.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .prompt { diff --git a/frontend/src/app/_general/components/openai/openai-prompt/openai-prompt.component.ts b/frontend/src/app/_general/components/openai/openai-prompt/openai-prompt.component.ts index 0d5998d0de..a98002ccea 100644 --- a/frontend/src/app/_general/components/openai/openai-prompt/openai-prompt.component.ts +++ b/frontend/src/app/_general/components/openai/openai-prompt/openai-prompt.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; diff --git a/frontend/src/app/_general/components/privacy-modal/privacy-modal.component.ts b/frontend/src/app/_general/components/privacy-modal/privacy-modal.component.ts index c1f07bf080..c38bad475e 100644 --- a/frontend/src/app/_general/components/privacy-modal/privacy-modal.component.ts +++ b/frontend/src/app/_general/components/privacy-modal/privacy-modal.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_general/components/pwa-update-dialog/pwa-update-dialog.component.ts b/frontend/src/app/_general/components/pwa-update-dialog/pwa-update-dialog.component.ts index a00844f3f3..590b16110e 100644 --- a/frontend/src/app/_general/components/pwa-update-dialog/pwa-update-dialog.component.ts +++ b/frontend/src/app/_general/components/pwa-update-dialog/pwa-update-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_general/components/query-params/query-params.component.ts b/frontend/src/app/_general/components/query-params/query-params.component.ts index 0043946f39..c8de57c29b 100644 --- a/frontend/src/app/_general/components/query-params/query-params.component.ts +++ b/frontend/src/app/_general/components/query-params/query-params.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Input, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_general/components/searchbox/searchbox.component.ts b/frontend/src/app/_general/components/searchbox/searchbox.component.ts index 80807c6b79..9d77158937 100644 --- a/frontend/src/app/_general/components/searchbox/searchbox.component.ts +++ b/frontend/src/app/_general/components/searchbox/searchbox.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; diff --git a/frontend/src/app/_general/components/shortkeys/shortkeys.component.ts b/frontend/src/app/_general/components/shortkeys/shortkeys.component.ts index d24c9ccd02..1c74188099 100644 --- a/frontend/src/app/_general/components/shortkeys/shortkeys.component.ts +++ b/frontend/src/app/_general/components/shortkeys/shortkeys.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_general/components/snippet-name-dialog/snippet-name-dialog.component.ts b/frontend/src/app/_general/components/snippet-name-dialog/snippet-name-dialog.component.ts index 268a781357..3a6191ab45 100644 --- a/frontend/src/app/_general/components/snippet-name-dialog/snippet-name-dialog.component.ts +++ b/frontend/src/app/_general/components/snippet-name-dialog/snippet-name-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_general/components/terms-modal/terms-modal.component.ts b/frontend/src/app/_general/components/terms-modal/terms-modal.component.ts index ee2f7bbf34..40dfbab004 100644 --- a/frontend/src/app/_general/components/terms-modal/terms-modal.component.ts +++ b/frontend/src/app/_general/components/terms-modal/terms-modal.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_general/models/app-manifest.ts b/frontend/src/app/_general/models/app-manifest.ts index c2b7193879..85e2378121 100644 --- a/frontend/src/app/_general/models/app-manifest.ts +++ b/frontend/src/app/_general/models/app-manifest.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_general/models/arg-type.model.ts b/frontend/src/app/_general/models/arg-type.model.ts index 5eb46f927b..06d206b91d 100644 --- a/frontend/src/app/_general/models/arg-type.model.ts +++ b/frontend/src/app/_general/models/arg-type.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_general/models/column-ex.model.ts b/frontend/src/app/_general/models/column-ex.model.ts index 82766c38d5..4039fe3b67 100644 --- a/frontend/src/app/_general/models/column-ex.model.ts +++ b/frontend/src/app/_general/models/column-ex.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ForeignKey } from "src/app/models/foreign-key.model"; diff --git a/frontend/src/app/_general/models/crudify.model.ts b/frontend/src/app/_general/models/crudify.model.ts index e910d3056c..afe219c7e9 100644 --- a/frontend/src/app/_general/models/crudify.model.ts +++ b/frontend/src/app/_general/models/crudify.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ArgType } from "./arg-type.model"; diff --git a/frontend/src/app/_general/models/custom-sql.model.ts b/frontend/src/app/_general/models/custom-sql.model.ts index 69362e2e64..3239eae489 100644 --- a/frontend/src/app/_general/models/custom-sql.model.ts +++ b/frontend/src/app/_general/models/custom-sql.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_general/models/database.model.ts b/frontend/src/app/_general/models/database.model.ts index c7c0de5c31..71222a0ba1 100644 --- a/frontend/src/app/_general/models/database.model.ts +++ b/frontend/src/app/_general/models/database.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Application specific imports. diff --git a/frontend/src/app/_general/models/databases.model.ts b/frontend/src/app/_general/models/databases.model.ts index afe15261fe..f2aaec7c84 100644 --- a/frontend/src/app/_general/models/databases.model.ts +++ b/frontend/src/app/_general/models/databases.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Application specific imports. diff --git a/frontend/src/app/_general/models/default-database-type.model.ts b/frontend/src/app/_general/models/default-database-type.model.ts index 7082df3e3a..3ff0f16af5 100644 --- a/frontend/src/app/_general/models/default-database-type.model.ts +++ b/frontend/src/app/_general/models/default-database-type.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_general/models/endpoint.model.ts b/frontend/src/app/_general/models/endpoint.model.ts index 20115faf99..ab0b5dc1dd 100644 --- a/frontend/src/app/_general/models/endpoint.model.ts +++ b/frontend/src/app/_general/models/endpoint.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Application specific imports. diff --git a/frontend/src/app/_general/models/loc-result.model.ts b/frontend/src/app/_general/models/loc-result.model.ts index f2a9b545e2..8fabad6125 100644 --- a/frontend/src/app/_general/models/loc-result.model.ts +++ b/frontend/src/app/_general/models/loc-result.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Application specific imports diff --git a/frontend/src/app/_general/models/magic-response.model.ts b/frontend/src/app/_general/models/magic-response.model.ts index 202ec1a3fe..a60e86f948 100644 --- a/frontend/src/app/_general/models/magic-response.model.ts +++ b/frontend/src/app/_general/models/magic-response.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_general/models/prompt-response.model.ts b/frontend/src/app/_general/models/prompt-response.model.ts index e1646fb251..ad04f7d1a4 100644 --- a/frontend/src/app/_general/models/prompt-response.model.ts +++ b/frontend/src/app/_general/models/prompt-response.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_general/models/table-ex.model.ts b/frontend/src/app/_general/models/table-ex.model.ts index 194ea69a4a..6cf8d4eb4c 100644 --- a/frontend/src/app/_general/models/table-ex.model.ts +++ b/frontend/src/app/_general/models/table-ex.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Application specific imports. diff --git a/frontend/src/app/_general/models/verb.model.ts b/frontend/src/app/_general/models/verb.model.ts index 597f966ebe..d3d18944b0 100644 --- a/frontend/src/app/_general/models/verb.model.ts +++ b/frontend/src/app/_general/models/verb.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_general/pipes/date-since.pipe.ts b/frontend/src/app/_general/pipes/date-since.pipe.ts index 46642b9db1..256bc6b107 100644 --- a/frontend/src/app/_general/pipes/date-since.pipe.ts +++ b/frontend/src/app/_general/pipes/date-since.pipe.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Pipe, PipeTransform } from '@angular/core'; diff --git a/frontend/src/app/_general/pipes/date.pipe.ts b/frontend/src/app/_general/pipes/date.pipe.ts index d5271149cd..0865de8ee2 100644 --- a/frontend/src/app/_general/pipes/date.pipe.ts +++ b/frontend/src/app/_general/pipes/date.pipe.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Pipe, PipeTransform } from '@angular/core'; diff --git a/frontend/src/app/_general/pipes/marked.pipe.ts b/frontend/src/app/_general/pipes/marked.pipe.ts index cb98f8af3e..4a2af8afc7 100644 --- a/frontend/src/app/_general/pipes/marked.pipe.ts +++ b/frontend/src/app/_general/pipes/marked.pipe.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular imports. diff --git a/frontend/src/app/_general/pipes/sort-by.pipe.ts b/frontend/src/app/_general/pipes/sort-by.pipe.ts index 4ff777af13..f0020b1a60 100644 --- a/frontend/src/app/_general/pipes/sort-by.pipe.ts +++ b/frontend/src/app/_general/pipes/sort-by.pipe.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Pipe, PipeTransform } from '@angular/core'; diff --git a/frontend/src/app/_general/services/ai.service.ts b/frontend/src/app/_general/services/ai.service.ts index e67361a44d..b10ac5d347 100644 --- a/frontend/src/app/_general/services/ai.service.ts +++ b/frontend/src/app/_general/services/ai.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Injectable } from '@angular/core'; diff --git a/frontend/src/app/_general/services/assumption.service.ts b/frontend/src/app/_general/services/assumption.service.ts index 68a6af8813..1680ab7884 100644 --- a/frontend/src/app/_general/services/assumption.service.ts +++ b/frontend/src/app/_general/services/assumption.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/backend.service.ts b/frontend/src/app/_general/services/backend.service.ts index 77c56dd619..e309c59c2b 100644 --- a/frontend/src/app/_general/services/backend.service.ts +++ b/frontend/src/app/_general/services/backend.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/backendsstorage.service.ts b/frontend/src/app/_general/services/backendsstorage.service.ts index 91c514a411..7a484a0920 100644 --- a/frontend/src/app/_general/services/backendsstorage.service.ts +++ b/frontend/src/app/_general/services/backendsstorage.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/bazar.service.ts b/frontend/src/app/_general/services/bazar.service.ts index 04cb12e65a..646bc46750 100644 --- a/frontend/src/app/_general/services/bazar.service.ts +++ b/frontend/src/app/_general/services/bazar.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/cache.service.ts b/frontend/src/app/_general/services/cache.service.ts index 6816a1f5e0..3be762d0d0 100644 --- a/frontend/src/app/_general/services/cache.service.ts +++ b/frontend/src/app/_general/services/cache.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/codemirror-actions.service.ts b/frontend/src/app/_general/services/codemirror-actions.service.ts index 6d74eb4d28..cfb9c37297 100644 --- a/frontend/src/app/_general/services/codemirror-actions.service.ts +++ b/frontend/src/app/_general/services/codemirror-actions.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Injectable, NgZone } from '@angular/core'; diff --git a/frontend/src/app/_general/services/config.service.ts b/frontend/src/app/_general/services/config.service.ts index 9d06c57378..eb2753b57c 100644 --- a/frontend/src/app/_general/services/config.service.ts +++ b/frontend/src/app/_general/services/config.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/crudify.service.ts b/frontend/src/app/_general/services/crudify.service.ts index 38488bbe15..c1ae7b3cbe 100644 --- a/frontend/src/app/_general/services/crudify.service.ts +++ b/frontend/src/app/_general/services/crudify.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/diagnostics.service.ts b/frontend/src/app/_general/services/diagnostics.service.ts index b192a6ca95..af7c76f472 100644 --- a/frontend/src/app/_general/services/diagnostics.service.ts +++ b/frontend/src/app/_general/services/diagnostics.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/endpoint.service.ts b/frontend/src/app/_general/services/endpoint.service.ts index 0f5f1c3824..df48a4fec4 100644 --- a/frontend/src/app/_general/services/endpoint.service.ts +++ b/frontend/src/app/_general/services/endpoint.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/evaluator.service.ts b/frontend/src/app/_general/services/evaluator.service.ts index b43e59a008..50e845c3dd 100644 --- a/frontend/src/app/_general/services/evaluator.service.ts +++ b/frontend/src/app/_general/services/evaluator.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/file.service.ts b/frontend/src/app/_general/services/file.service.ts index 0db150a870..b305776f40 100644 --- a/frontend/src/app/_general/services/file.service.ts +++ b/frontend/src/app/_general/services/file.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/general.service.ts b/frontend/src/app/_general/services/general.service.ts index 8ca215164d..b8f1301b68 100644 --- a/frontend/src/app/_general/services/general.service.ts +++ b/frontend/src/app/_general/services/general.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Injectable } from '@angular/core'; diff --git a/frontend/src/app/_general/services/http.service.ts b/frontend/src/app/_general/services/http.service.ts index 5bf1b8767d..2fb8c556b0 100644 --- a/frontend/src/app/_general/services/http.service.ts +++ b/frontend/src/app/_general/services/http.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/log.service.ts b/frontend/src/app/_general/services/log.service.ts index a129855381..e30294d46d 100644 --- a/frontend/src/app/_general/services/log.service.ts +++ b/frontend/src/app/_general/services/log.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/machine-learning-training.service.ts b/frontend/src/app/_general/services/machine-learning-training.service.ts index bd39441274..875573fc30 100644 --- a/frontend/src/app/_general/services/machine-learning-training.service.ts +++ b/frontend/src/app/_general/services/machine-learning-training.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/message.service.ts b/frontend/src/app/_general/services/message.service.ts index 0fe15ce069..9fa45f0007 100644 --- a/frontend/src/app/_general/services/message.service.ts +++ b/frontend/src/app/_general/services/message.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Subject } from 'rxjs'; import { Injectable } from '@angular/core'; diff --git a/frontend/src/app/_general/services/openai.service.ts b/frontend/src/app/_general/services/openai.service.ts index c42f16e3d4..6fff0e4a59 100644 --- a/frontend/src/app/_general/services/openai.service.ts +++ b/frontend/src/app/_general/services/openai.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/query-arg.service.ts b/frontend/src/app/_general/services/query-arg.service.ts index e109dd8476..685010c407 100644 --- a/frontend/src/app/_general/services/query-arg.service.ts +++ b/frontend/src/app/_general/services/query-arg.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/sql.service.ts b/frontend/src/app/_general/services/sql.service.ts index cc76073b51..c7f42cd56a 100644 --- a/frontend/src/app/_general/services/sql.service.ts +++ b/frontend/src/app/_general/services/sql.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/theme.service.ts b/frontend/src/app/_general/services/theme.service.ts index 1e63b27b0a..317a688c00 100644 --- a/frontend/src/app/_general/services/theme.service.ts +++ b/frontend/src/app/_general/services/theme.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/transform-model.service.ts b/frontend/src/app/_general/services/transform-model.service.ts index a64ac012de..6ab788fae5 100644 --- a/frontend/src/app/_general/services/transform-model.service.ts +++ b/frontend/src/app/_general/services/transform-model.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/update-pwa.service.ts b/frontend/src/app/_general/services/update-pwa.service.ts index fcb8dfad4a..32c88b3c57 100644 --- a/frontend/src/app/_general/services/update-pwa.service.ts +++ b/frontend/src/app/_general/services/update-pwa.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/vocabulary.service.ts b/frontend/src/app/_general/services/vocabulary.service.ts index de7eb67100..5c7e155ad7 100644 --- a/frontend/src/app/_general/services/vocabulary.service.ts +++ b/frontend/src/app/_general/services/vocabulary.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_general/services/workflow.service.ts b/frontend/src/app/_general/services/workflow.service.ts index 9110331960..609688071e 100644 --- a/frontend/src/app/_general/services/workflow.service.ts +++ b/frontend/src/app/_general/services/workflow.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_layout/core/core.component.ts b/frontend/src/app/_layout/core/core.component.ts index a132b48814..62bb871988 100644 --- a/frontend/src/app/_layout/core/core.component.ts +++ b/frontend/src/app/_layout/core/core.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, HostListener, OnDestroy, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_layout/footer/footer.component.scss b/frontend/src/app/_layout/footer/footer.component.scss index 0889da3b22..c37190b06c 100644 --- a/frontend/src/app/_layout/footer/footer.component.scss +++ b/frontend/src/app/_layout/footer/footer.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_layout/footer/footer.component.ts b/frontend/src/app/_layout/footer/footer.component.ts index 12b56618d4..642d361514 100644 --- a/frontend/src/app/_layout/footer/footer.component.ts +++ b/frontend/src/app/_layout/footer/footer.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_layout/header/_model/nav-links.ts b/frontend/src/app/_layout/header/_model/nav-links.ts index 26e6719279..62f7dcdcea 100644 --- a/frontend/src/app/_layout/header/_model/nav-links.ts +++ b/frontend/src/app/_layout/header/_model/nav-links.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { SubMenu } from "./sub-menu"; diff --git a/frontend/src/app/_layout/header/_model/sub-menu.ts b/frontend/src/app/_layout/header/_model/sub-menu.ts index 7fccfe13c0..6bc8118239 100644 --- a/frontend/src/app/_layout/header/_model/sub-menu.ts +++ b/frontend/src/app/_layout/header/_model/sub-menu.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ export interface SubMenu { diff --git a/frontend/src/app/_layout/header/header.component.scss b/frontend/src/app/_layout/header/header.component.scss index f2b4e9141e..6a82130085 100644 --- a/frontend/src/app/_layout/header/header.component.scss +++ b/frontend/src/app/_layout/header/header.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_layout/header/header.component.ts b/frontend/src/app/_layout/header/header.component.ts index 0deb957488..c57acdacfb 100644 --- a/frontend/src/app/_layout/header/header.component.ts +++ b/frontend/src/app/_layout/header/header.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit, ViewChild } from '@angular/core'; diff --git a/frontend/src/app/_protected/models/auth/authenticate-response.model.ts b/frontend/src/app/_protected/models/auth/authenticate-response.model.ts index 619af9c0ae..62536a2327 100644 --- a/frontend/src/app/_protected/models/auth/authenticate-response.model.ts +++ b/frontend/src/app/_protected/models/auth/authenticate-response.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/auth/name-email.model.ts b/frontend/src/app/_protected/models/auth/name-email.model.ts index 728b1c0431..a9f1c711e5 100644 --- a/frontend/src/app/_protected/models/auth/name-email.model.ts +++ b/frontend/src/app/_protected/models/auth/name-email.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/common/backend.model.ts b/frontend/src/app/_protected/models/common/backend.model.ts index ef81560cbf..31c83cd541 100644 --- a/frontend/src/app/_protected/models/common/backend.model.ts +++ b/frontend/src/app/_protected/models/common/backend.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Application specific imports. diff --git a/frontend/src/app/_protected/models/common/cache-item.model.ts b/frontend/src/app/_protected/models/common/cache-item.model.ts index 48d79a361c..de5f163292 100644 --- a/frontend/src/app/_protected/models/common/cache-item.model.ts +++ b/frontend/src/app/_protected/models/common/cache-item.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/common/core-version.model.ts b/frontend/src/app/_protected/models/common/core-version.model.ts index 223d335e50..6330f0309c 100644 --- a/frontend/src/app/_protected/models/common/core-version.model.ts +++ b/frontend/src/app/_protected/models/common/core-version.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/common/count.model.ts b/frontend/src/app/_protected/models/common/count.model.ts index 959157c820..f67509e60a 100644 --- a/frontend/src/app/_protected/models/common/count.model.ts +++ b/frontend/src/app/_protected/models/common/count.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/common/endpoint.model.ts b/frontend/src/app/_protected/models/common/endpoint.model.ts index d71c95666d..5388cff486 100644 --- a/frontend/src/app/_protected/models/common/endpoint.model.ts +++ b/frontend/src/app/_protected/models/common/endpoint.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/common/macro-argument.model.ts b/frontend/src/app/_protected/models/common/macro-argument.model.ts index 2afbe3d452..c6921ad927 100644 --- a/frontend/src/app/_protected/models/common/macro-argument.model.ts +++ b/frontend/src/app/_protected/models/common/macro-argument.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/common/macro-definition.model.ts b/frontend/src/app/_protected/models/common/macro-definition.model.ts index 0b5c3797c9..7916a012e7 100644 --- a/frontend/src/app/_protected/models/common/macro-definition.model.ts +++ b/frontend/src/app/_protected/models/common/macro-definition.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { MacroArgument } from "./macro-argument.model"; diff --git a/frontend/src/app/_protected/models/common/message.model.ts b/frontend/src/app/_protected/models/common/message.model.ts index a22326d201..96d8969ef3 100644 --- a/frontend/src/app/_protected/models/common/message.model.ts +++ b/frontend/src/app/_protected/models/common/message.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/common/name-email.model.ts b/frontend/src/app/_protected/models/common/name-email.model.ts index 728b1c0431..a9f1c711e5 100644 --- a/frontend/src/app/_protected/models/common/name-email.model.ts +++ b/frontend/src/app/_protected/models/common/name-email.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/common/setup.model.ts b/frontend/src/app/_protected/models/common/setup.model.ts index c07e8c903e..f60a86b3cc 100644 --- a/frontend/src/app/_protected/models/common/setup.model.ts +++ b/frontend/src/app/_protected/models/common/setup.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ export interface SetupModel { diff --git a/frontend/src/app/_protected/models/common/status.model.ts b/frontend/src/app/_protected/models/common/status.model.ts index fa5932e14b..0302d9ce39 100644 --- a/frontend/src/app/_protected/models/common/status.model.ts +++ b/frontend/src/app/_protected/models/common/status.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/models/common/token.model.ts b/frontend/src/app/_protected/models/common/token.model.ts index 5484aa6846..7a7b657f30 100644 --- a/frontend/src/app/_protected/models/common/token.model.ts +++ b/frontend/src/app/_protected/models/common/token.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Buffer } from 'buffer'; diff --git a/frontend/src/app/_protected/pages/create/chatbot-wizard/_module/chatbot-wizard.module.ts b/frontend/src/app/_protected/pages/create/chatbot-wizard/_module/chatbot-wizard.module.ts index 89451d5dbe..0b135ab81a 100644 --- a/frontend/src/app/_protected/pages/create/chatbot-wizard/_module/chatbot-wizard.module.ts +++ b/frontend/src/app/_protected/pages/create/chatbot-wizard/_module/chatbot-wizard.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/chatbot-wizard/_module/chatbot-wizard.routing.module.ts b/frontend/src/app/_protected/pages/create/chatbot-wizard/_module/chatbot-wizard.routing.module.ts index 454969093e..8d9ff71f2a 100644 --- a/frontend/src/app/_protected/pages/create/chatbot-wizard/_module/chatbot-wizard.routing.module.ts +++ b/frontend/src/app/_protected/pages/create/chatbot-wizard/_module/chatbot-wizard.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/chatbot-wizard/chatbot-wizard.component.scss b/frontend/src/app/_protected/pages/create/chatbot-wizard/chatbot-wizard.component.scss index 5fbffdcb11..0caeb384d8 100644 --- a/frontend/src/app/_protected/pages/create/chatbot-wizard/chatbot-wizard.component.scss +++ b/frontend/src/app/_protected/pages/create/chatbot-wizard/chatbot-wizard.component.scss @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .messages { background-color: rgb(0,0,0); diff --git a/frontend/src/app/_protected/pages/create/chatbot-wizard/chatbot-wizard.component.ts b/frontend/src/app/_protected/pages/create/chatbot-wizard/chatbot-wizard.component.ts index ef6be97804..9797091aa3 100644 --- a/frontend/src/app/_protected/pages/create/chatbot-wizard/chatbot-wizard.component.ts +++ b/frontend/src/app/_protected/pages/create/chatbot-wizard/chatbot-wizard.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnDestroy, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/databases/_module/databases.module.ts b/frontend/src/app/_protected/pages/create/databases/_module/databases.module.ts index fb6cbeedcb..eb81decc23 100644 --- a/frontend/src/app/_protected/pages/create/databases/_module/databases.module.ts +++ b/frontend/src/app/_protected/pages/create/databases/_module/databases.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/databases/_module/databases.routing.module.ts b/frontend/src/app/_protected/pages/create/databases/_module/databases.routing.module.ts index 0098797ed9..fe386a6718 100644 --- a/frontend/src/app/_protected/pages/create/databases/_module/databases.routing.module.ts +++ b/frontend/src/app/_protected/pages/create/databases/_module/databases.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/databases/connect-databases/components/catalog-name/catalog-name.component.ts b/frontend/src/app/_protected/pages/create/databases/connect-databases/components/catalog-name/catalog-name.component.ts index 7f42e4c2c7..3f6ab69de5 100644 --- a/frontend/src/app/_protected/pages/create/databases/connect-databases/components/catalog-name/catalog-name.component.ts +++ b/frontend/src/app/_protected/pages/create/databases/connect-databases/components/catalog-name/catalog-name.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/databases/connect-databases/components/manage-catalogs/manage-catalogs.component.scss b/frontend/src/app/_protected/pages/create/databases/connect-databases/components/manage-catalogs/manage-catalogs.component.scss index 96c1f4910f..ed09c2ac35 100644 --- a/frontend/src/app/_protected/pages/create/databases/connect-databases/components/manage-catalogs/manage-catalogs.component.scss +++ b/frontend/src/app/_protected/pages/create/databases/connect-databases/components/manage-catalogs/manage-catalogs.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/create/databases/connect-databases/components/manage-catalogs/manage-catalogs.component.ts b/frontend/src/app/_protected/pages/create/databases/connect-databases/components/manage-catalogs/manage-catalogs.component.ts index c951b7acc8..63cccd5a1f 100644 --- a/frontend/src/app/_protected/pages/create/databases/connect-databases/components/manage-catalogs/manage-catalogs.component.ts +++ b/frontend/src/app/_protected/pages/create/databases/connect-databases/components/manage-catalogs/manage-catalogs.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/databases/connect-databases/connect-databases.component.scss b/frontend/src/app/_protected/pages/create/databases/connect-databases/connect-databases.component.scss index 33c1a7bc6d..cb4e399baf 100644 --- a/frontend/src/app/_protected/pages/create/databases/connect-databases/connect-databases.component.scss +++ b/frontend/src/app/_protected/pages/create/databases/connect-databases/connect-databases.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/create/databases/connect-databases/connect-databases.component.ts b/frontend/src/app/_protected/pages/create/databases/connect-databases/connect-databases.component.ts index a506988f86..5d54b3f7e1 100644 --- a/frontend/src/app/_protected/pages/create/databases/connect-databases/connect-databases.component.ts +++ b/frontend/src/app/_protected/pages/create/databases/connect-databases/connect-databases.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/databases/databases.component.ts b/frontend/src/app/_protected/pages/create/databases/databases.component.ts index 3c32e3bd52..7822338d95 100644 --- a/frontend/src/app/_protected/pages/create/databases/databases.component.ts +++ b/frontend/src/app/_protected/pages/create/databases/databases.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/databases/manage-databases/components/view-plugin-database/view-plugin-database.component.scss b/frontend/src/app/_protected/pages/create/databases/manage-databases/components/view-plugin-database/view-plugin-database.component.scss index 9627ce5601..09e4a6b72c 100644 --- a/frontend/src/app/_protected/pages/create/databases/manage-databases/components/view-plugin-database/view-plugin-database.component.scss +++ b/frontend/src/app/_protected/pages/create/databases/manage-databases/components/view-plugin-database/view-plugin-database.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .file-content ::ng-deep img { diff --git a/frontend/src/app/_protected/pages/create/databases/manage-databases/components/view-plugin-database/view-plugin-database.component.ts b/frontend/src/app/_protected/pages/create/databases/manage-databases/components/view-plugin-database/view-plugin-database.component.ts index e0f606324a..9495728fcf 100644 --- a/frontend/src/app/_protected/pages/create/databases/manage-databases/components/view-plugin-database/view-plugin-database.component.ts +++ b/frontend/src/app/_protected/pages/create/databases/manage-databases/components/view-plugin-database/view-plugin-database.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/databases/manage-databases/manage-databases.component.scss b/frontend/src/app/_protected/pages/create/databases/manage-databases/manage-databases.component.scss index e54c14a780..ec566d7064 100644 --- a/frontend/src/app/_protected/pages/create/databases/manage-databases/manage-databases.component.scss +++ b/frontend/src/app/_protected/pages/create/databases/manage-databases/manage-databases.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/create/databases/manage-databases/manage-databases.component.ts b/frontend/src/app/_protected/pages/create/databases/manage-databases/manage-databases.component.ts index 244d09b066..a68f099f75 100644 --- a/frontend/src/app/_protected/pages/create/databases/manage-databases/manage-databases.component.ts +++ b/frontend/src/app/_protected/pages/create/databases/manage-databases/manage-databases.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnDestroy, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/_module/endpoint.module.ts b/frontend/src/app/_protected/pages/create/endpoint-generator/_module/endpoint.module.ts index 8ec38f942c..38c037c0cf 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/_module/endpoint.module.ts +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/_module/endpoint.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/_module/endpoint.routing.module.ts b/frontend/src/app/_protected/pages/create/endpoint-generator/_module/endpoint.routing.module.ts index 0e1a064bbe..91a83d4482 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/_module/endpoint.routing.module.ts +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/_module/endpoint.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/auto-endpoint-generator.component.ts b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/auto-endpoint-generator.component.ts index f259ece120..580759a101 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/auto-endpoint-generator.component.ts +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/auto-endpoint-generator.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { formatNumber } from '@angular/common'; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/foreign-key-list/foreign-key-list.component.scss b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/foreign-key-list/foreign-key-list.component.scss index 948a072135..26257389ad 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/foreign-key-list/foreign-key-list.component.scss +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/foreign-key-list/foreign-key-list.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/foreign-key-list/foreign-key-list.component.ts b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/foreign-key-list/foreign-key-list.component.ts index fda5b1dfcb..c94938d371 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/foreign-key-list/foreign-key-list.component.ts +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/foreign-key-list/foreign-key-list.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { AfterViewInit, Component, EventEmitter, Input, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/single-table-config/single-table-config.component.scss b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/single-table-config/single-table-config.component.scss index a330784428..df4b800041 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/single-table-config/single-table-config.component.scss +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/single-table-config/single-table-config.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .table-btn { diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/single-table-config/single-table-config.component.ts b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/single-table-config/single-table-config.component.ts index 27aed99111..1376632572 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/single-table-config/single-table-config.component.ts +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/auto-endpoint-generator/components/single-table-config/single-table-config.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Input, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/endpoint-generator.component.scss b/frontend/src/app/_protected/pages/create/endpoint-generator/endpoint-generator.component.scss index f1256ebcd1..aeb4ff4e61 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/endpoint-generator.component.scss +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/endpoint-generator.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/endpoint-generator.component.ts b/frontend/src/app/_protected/pages/create/endpoint-generator/endpoint-generator.component.ts index 6769eb56d1..c6d3c61a43 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/endpoint-generator.component.ts +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/endpoint-generator.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/generator-base.ts b/frontend/src/app/_protected/pages/create/endpoint-generator/generator-base.ts index 0e3f3d9929..abaca0fa4e 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/generator-base.ts +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/generator-base.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ActivatedRoute } from "@angular/router"; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/sql-endpoint-generator/components/add-argument-dialog/add-argument-dialog.component.ts b/frontend/src/app/_protected/pages/create/endpoint-generator/sql-endpoint-generator/components/add-argument-dialog/add-argument-dialog.component.ts index 36240a6857..34f3cd24a4 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/sql-endpoint-generator/components/add-argument-dialog/add-argument-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/sql-endpoint-generator/components/add-argument-dialog/add-argument-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/endpoint-generator/sql-endpoint-generator/sql-endpoint-generator.component.ts b/frontend/src/app/_protected/pages/create/endpoint-generator/sql-endpoint-generator/sql-endpoint-generator.component.ts index 4eac6395fc..0cb18e9fed 100644 --- a/frontend/src/app/_protected/pages/create/endpoint-generator/sql-endpoint-generator/sql-endpoint-generator.component.ts +++ b/frontend/src/app/_protected/pages/create/endpoint-generator/sql-endpoint-generator/sql-endpoint-generator.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, Inject, LOCALE_ID, OnDestroy, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/frontend-generator/_module/frontend-generator.module.ts b/frontend/src/app/_protected/pages/create/frontend-generator/_module/frontend-generator.module.ts index 6853d4009f..83187cbbfc 100644 --- a/frontend/src/app/_protected/pages/create/frontend-generator/_module/frontend-generator.module.ts +++ b/frontend/src/app/_protected/pages/create/frontend-generator/_module/frontend-generator.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/frontend-generator/_module/frontend-generator.routing.module.ts b/frontend/src/app/_protected/pages/create/frontend-generator/_module/frontend-generator.routing.module.ts index e529f86278..f678ea25d1 100644 --- a/frontend/src/app/_protected/pages/create/frontend-generator/_module/frontend-generator.routing.module.ts +++ b/frontend/src/app/_protected/pages/create/frontend-generator/_module/frontend-generator.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/frontend-generator/auto-generate/auto-generate.component.scss b/frontend/src/app/_protected/pages/create/frontend-generator/auto-generate/auto-generate.component.scss index 7d34f89203..76c9ae33af 100644 --- a/frontend/src/app/_protected/pages/create/frontend-generator/auto-generate/auto-generate.component.scss +++ b/frontend/src/app/_protected/pages/create/frontend-generator/auto-generate/auto-generate.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/create/frontend-generator/auto-generate/auto-generate.component.ts b/frontend/src/app/_protected/pages/create/frontend-generator/auto-generate/auto-generate.component.ts index 76ac2561bb..84bd26678e 100644 --- a/frontend/src/app/_protected/pages/create/frontend-generator/auto-generate/auto-generate.component.ts +++ b/frontend/src/app/_protected/pages/create/frontend-generator/auto-generate/auto-generate.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/frontend-generator/frontend-generator.component.ts b/frontend/src/app/_protected/pages/create/frontend-generator/frontend-generator.component.ts index 0a776acf14..45260b996a 100644 --- a/frontend/src/app/_protected/pages/create/frontend-generator/frontend-generator.component.ts +++ b/frontend/src/app/_protected/pages/create/frontend-generator/frontend-generator.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/frontend-generator/upload-existing/upload-existing.component.scss b/frontend/src/app/_protected/pages/create/frontend-generator/upload-existing/upload-existing.component.scss index 21b09c1378..271ac25905 100644 --- a/frontend/src/app/_protected/pages/create/frontend-generator/upload-existing/upload-existing.component.scss +++ b/frontend/src/app/_protected/pages/create/frontend-generator/upload-existing/upload-existing.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/create/frontend-generator/upload-existing/upload-existing.component.ts b/frontend/src/app/_protected/pages/create/frontend-generator/upload-existing/upload-existing.component.ts index 79cb525cc1..590e6f5315 100644 --- a/frontend/src/app/_protected/pages/create/frontend-generator/upload-existing/upload-existing.component.ts +++ b/frontend/src/app/_protected/pages/create/frontend-generator/upload-existing/upload-existing.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-macro-dialog/execute-macro-dialog.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-macro-dialog/execute-macro-dialog.component.scss index c213044cf6..903483dd1b 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-macro-dialog/execute-macro-dialog.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-macro-dialog/execute-macro-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .description { diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-macro-dialog/execute-macro-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-macro-dialog/execute-macro-dialog.component.ts index 504754353d..313a2bcf80 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-macro-dialog/execute-macro-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-macro-dialog/execute-macro-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-result/execute-result-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-result/execute-result-dialog.component.ts index 4df9718a8e..4cef306adf 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-result/execute-result-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/execute-result/execute-result-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.scss index 33f381d78a..521c604f17 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .full-height { diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts index 78cbd3f187..c3df0e2e05 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-editor/ide-editor.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, OnChanges, OnDestroy, OnInit, Output, SimpleChanges } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.scss index 93859463e2..96ba9c2f64 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .custom-size ::ng-deep { diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.ts index 71a43655c3..b5bac0cdaa 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-searchbox/ide-searchbox.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss index 51ac2ecb80..ace740d3e8 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts index b6dafa4029..b9a7d4ad50 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/ide-tree.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { FlatTreeControl } from '@angular/cdk/tree'; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/models/flat-node.model.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/models/flat-node.model.ts index 8bb09e458c..c599135b3e 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/models/flat-node.model.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/models/flat-node.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { TreeNode } from "./tree-node.model"; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/models/tree-node.model.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/models/tree-node.model.ts index b013924153..b54b1f98c8 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/models/tree-node.model.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/ide-tree/models/tree-node.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/incompatible-file-dialog/incompatible-file-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/incompatible-file-dialog/incompatible-file-dialog.component.ts index e08604fdfa..1c68c69ec6 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/incompatible-file-dialog/incompatible-file-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/incompatible-file-dialog/incompatible-file-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/new-file-folder-dialog/new-file-folder-dialog.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/new-file-folder-dialog/new-file-folder-dialog.component.scss index 75140c35a6..a6ae7dd73d 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/new-file-folder-dialog/new-file-folder-dialog.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/new-file-folder-dialog/new-file-folder-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .margin-right { diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/new-file-folder-dialog/new-file-folder-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/new-file-folder-dialog/new-file-folder-dialog.component.ts index 6bf330ab8b..ba96d8ed27 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/new-file-folder-dialog/new-file-folder-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/new-file-folder-dialog/new-file-folder-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/preview-file-dialog/preview-file-dialog.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/preview-file-dialog/preview-file-dialog.component.scss index b6b54276d2..536f7b44bb 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/preview-file-dialog/preview-file-dialog.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/preview-file-dialog/preview-file-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ ::ng-deep .markdown-preview p { diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/preview-file-dialog/preview-file-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/preview-file-dialog/preview-file-dialog.component.ts index 9188c1986d..15784c823c 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/preview-file-dialog/preview-file-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/preview-file-dialog/preview-file-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/rename-file-dialog/rename-file-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/rename-file-dialog/rename-file-dialog.component.ts index a1f34d00f5..3ad81db67e 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/rename-file-dialog/rename-file-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/rename-file-dialog/rename-file-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/rename-folder-dialog/rename-folder-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/rename-folder-dialog/rename-folder-dialog.component.ts index 67a754926e..2023460ee2 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/rename-folder-dialog/rename-folder-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/rename-folder-dialog/rename-folder-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/select-macro-dialog/select-macro-dialog.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/components/select-macro-dialog/select-macro-dialog.component.scss index 29e533362f..6e347996e9 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/select-macro-dialog/select-macro-dialog.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/select-macro-dialog/select-macro-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .macros { diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/select-macro-dialog/select-macro-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/select-macro-dialog/select-macro-dialog.component.ts index b8e61ab5ab..84195b7689 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/select-macro-dialog/select-macro-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/select-macro-dialog/select-macro-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/components/unsaved-changes-dialog/unsaved-changes-dialog.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/components/unsaved-changes-dialog/unsaved-changes-dialog.component.ts index d454821689..ceba490c2c 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/components/unsaved-changes-dialog/unsaved-changes-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/components/unsaved-changes-dialog/unsaved-changes-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.scss b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.scss index 46aaba96f8..75368669b0 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.scss +++ b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.ts b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.ts index a451bc46ac..e03e89c59b 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/ide.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, ViewChild } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/models/file-node.model.ts b/frontend/src/app/_protected/pages/create/hyper-ide/models/file-node.model.ts index b1e963838a..950abda7af 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/models/file-node.model.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/models/file-node.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/models/macro-argument.model.ts b/frontend/src/app/_protected/pages/create/hyper-ide/models/macro-argument.model.ts index 2afbe3d452..c6921ad927 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/models/macro-argument.model.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/models/macro-argument.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/models/macro-definition.model.ts b/frontend/src/app/_protected/pages/create/hyper-ide/models/macro-definition.model.ts index 0b5c3797c9..7916a012e7 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/models/macro-definition.model.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/models/macro-definition.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { MacroArgument } from "./macro-argument.model"; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.module.ts b/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.module.ts index 9d7a46d608..6a96e98d9e 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.module.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.routing.module.ts b/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.routing.module.ts index a091de41f2..85172bb369 100644 --- a/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.routing.module.ts +++ b/frontend/src/app/_protected/pages/create/hyper-ide/module/ide.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/_module/sql-studio-routing.module.ts b/frontend/src/app/_protected/pages/create/sql-studio/_module/sql-studio-routing.module.ts index 87e561e9c8..e2ee5f9918 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/_module/sql-studio-routing.module.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/_module/sql-studio-routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/_module/sql-studio.module.ts b/frontend/src/app/_protected/pages/create/sql-studio/_module/sql-studio.module.ts index bf2a5cbf6e..b5395669ce 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/_module/sql-studio.module.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/_module/sql-studio.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { CommonModule } from '@angular/common'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/components/load-sql-snippet-dialog/load-sql-snippet-dialog.component.ts b/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/components/load-sql-snippet-dialog/load-sql-snippet-dialog.component.ts index 3a4075bd1e..465bd2d622 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/components/load-sql-snippet-dialog/load-sql-snippet-dialog.component.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/components/load-sql-snippet-dialog/load-sql-snippet-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/sql-view.component.scss b/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/sql-view.component.scss index 84f23f0f8f..135a734291 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/sql-view.component.scss +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/sql-view.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/sql-view.component.ts b/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/sql-view.component.ts index 723719b31e..3efc06449e 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/sql-view.component.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/sql-view/sql-view.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-field-or-key/add-field-or-key.component.scss b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-field-or-key/add-field-or-key.component.scss index 862ac425d6..2f1454355a 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-field-or-key/add-field-or-key.component.scss +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-field-or-key/add-field-or-key.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ ::ng-deep .new-field-dialog { diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-field-or-key/add-field-or-key.component.ts b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-field-or-key/add-field-or-key.component.ts index 6cec5b2207..6d7c2c73ea 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-field-or-key/add-field-or-key.component.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-field-or-key/add-field-or-key.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-link-table/add-link-table.component.ts b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-link-table/add-link-table.component.ts index 136116d286..755c97d447 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-link-table/add-link-table.component.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-link-table/add-link-table.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-table/add-table.component.ts b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-table/add-table.component.ts index 6e25791f66..e5512d2ba4 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-table/add-table.component.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/add-table/add-table.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/apply-migrate-script/apply-migrate-script.component.ts b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/apply-migrate-script/apply-migrate-script.component.ts index e555d05f38..1cf3f4a72b 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/apply-migrate-script/apply-migrate-script.component.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/apply-migrate-script/apply-migrate-script.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/export-ddl/export-ddl.component.scss b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/export-ddl/export-ddl.component.scss index 48d0871b48..7b8831e4a7 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/export-ddl/export-ddl.component.scss +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/export-ddl/export-ddl.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ ::ng-deep .codemirror-dialog { diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/export-ddl/export-ddl.component.ts b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/export-ddl/export-ddl.component.ts index 82991436be..461ac13484 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/export-ddl/export-ddl.component.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/components/export-ddl/export-ddl.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/tables-view.component.scss b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/tables-view.component.scss index 71b35824a1..506d3b8420 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/tables-view.component.scss +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/tables-view.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../../assets/styles/_variables/sizing.scss"; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/tables-view.component.ts b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/tables-view.component.ts index 4227b2f3c2..a79009b816 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/tables-view.component.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/components/tables-view/tables-view.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Input, OnInit, OnDestroy, EventEmitter, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/create/sql-studio/sql-studio.component.ts b/frontend/src/app/_protected/pages/create/sql-studio/sql-studio.component.ts index f1e28c1bbb..df3654a838 100644 --- a/frontend/src/app/_protected/pages/create/sql-studio/sql-studio.component.ts +++ b/frontend/src/app/_protected/pages/create/sql-studio/sql-studio.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/dashboard/_models/dashboard.model.ts b/frontend/src/app/_protected/pages/dashboard/_models/dashboard.model.ts index 5f052c629b..7fb84f0142 100644 --- a/frontend/src/app/_protected/pages/dashboard/_models/dashboard.model.ts +++ b/frontend/src/app/_protected/pages/dashboard/_models/dashboard.model.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/dashboard/_module/dashboard-routing.module.ts b/frontend/src/app/_protected/pages/dashboard/_module/dashboard-routing.module.ts index d498678088..2b2ff9a43d 100644 --- a/frontend/src/app/_protected/pages/dashboard/_module/dashboard-routing.module.ts +++ b/frontend/src/app/_protected/pages/dashboard/_module/dashboard-routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/dashboard/_module/dashboard.module.ts b/frontend/src/app/_protected/pages/dashboard/_module/dashboard.module.ts index 36297a6591..d8db4d9294 100644 --- a/frontend/src/app/_protected/pages/dashboard/_module/dashboard.module.ts +++ b/frontend/src/app/_protected/pages/dashboard/_module/dashboard.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { CommonModule } from '@angular/common'; diff --git a/frontend/src/app/_protected/pages/dashboard/components/chart/chart.component.scss b/frontend/src/app/_protected/pages/dashboard/components/chart/chart.component.scss index 398d54e083..3fb6b913b0 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/chart/chart.component.scss +++ b/frontend/src/app/_protected/pages/dashboard/components/chart/chart.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .chart-size { diff --git a/frontend/src/app/_protected/pages/dashboard/components/chart/chart.component.ts b/frontend/src/app/_protected/pages/dashboard/components/chart/chart.component.ts index 763153f0ae..5bfa0c2fdf 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/chart/chart.component.ts +++ b/frontend/src/app/_protected/pages/dashboard/components/chart/chart.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, Input, OnDestroy, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/dashboard/components/configure-theme/configure-theme-dialog.component.ts b/frontend/src/app/_protected/pages/dashboard/components/configure-theme/configure-theme-dialog.component.ts index 7c0f038fa9..5a2c3e49b7 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/configure-theme/configure-theme-dialog.component.ts +++ b/frontend/src/app/_protected/pages/dashboard/components/configure-theme/configure-theme-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/dashboard/components/last-log-items/last-log-items.component.scss b/frontend/src/app/_protected/pages/dashboard/components/last-log-items/last-log-items.component.scss index dc356ada01..a14a6bf260 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/last-log-items/last-log-items.component.scss +++ b/frontend/src/app/_protected/pages/dashboard/components/last-log-items/last-log-items.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/dashboard/components/last-log-items/last-log-items.component.ts b/frontend/src/app/_protected/pages/dashboard/components/last-log-items/last-log-items.component.ts index ac2dac97ff..917bf2cfcb 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/last-log-items/last-log-items.component.ts +++ b/frontend/src/app/_protected/pages/dashboard/components/last-log-items/last-log-items.component.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Input, OnChanges, OnInit, SimpleChanges } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/dashboard/components/main-chart/main-chart.component.scss b/frontend/src/app/_protected/pages/dashboard/components/main-chart/main-chart.component.scss index 670151af02..133412598e 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/main-chart/main-chart.component.scss +++ b/frontend/src/app/_protected/pages/dashboard/components/main-chart/main-chart.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .chart-size { diff --git a/frontend/src/app/_protected/pages/dashboard/components/main-chart/main-chart.component.ts b/frontend/src/app/_protected/pages/dashboard/components/main-chart/main-chart.component.ts index c1ab8ca9b2..6b26f3dbee 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/main-chart/main-chart.component.ts +++ b/frontend/src/app/_protected/pages/dashboard/components/main-chart/main-chart.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Input, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/dashboard/components/overview/components/overview-dialog/overview-dialog.component.ts b/frontend/src/app/_protected/pages/dashboard/components/overview/components/overview-dialog/overview-dialog.component.ts index 696254e39d..56f3f31364 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/overview/components/overview-dialog/overview-dialog.component.ts +++ b/frontend/src/app/_protected/pages/dashboard/components/overview/components/overview-dialog/overview-dialog.component.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/dashboard/components/overview/overview.component.scss b/frontend/src/app/_protected/pages/dashboard/components/overview/overview.component.scss index 428194da2a..e7cf813afe 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/overview/overview.component.scss +++ b/frontend/src/app/_protected/pages/dashboard/components/overview/overview.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/dashboard/components/overview/overview.component.ts b/frontend/src/app/_protected/pages/dashboard/components/overview/overview.component.ts index 4f0dc1eb91..93a3698b1b 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/overview/overview.component.ts +++ b/frontend/src/app/_protected/pages/dashboard/components/overview/overview.component.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Input } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/dashboard/components/splash/splash.component.scss b/frontend/src/app/_protected/pages/dashboard/components/splash/splash.component.scss index 70abf7666b..ffd34be923 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/splash/splash.component.scss +++ b/frontend/src/app/_protected/pages/dashboard/components/splash/splash.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .video-wrapper { diff --git a/frontend/src/app/_protected/pages/dashboard/components/splash/splash.component.ts b/frontend/src/app/_protected/pages/dashboard/components/splash/splash.component.ts index f3b5786720..bdc5234217 100644 --- a/frontend/src/app/_protected/pages/dashboard/components/splash/splash.component.ts +++ b/frontend/src/app/_protected/pages/dashboard/components/splash/splash.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/dashboard/dashboard.component.ts b/frontend/src/app/_protected/pages/dashboard/dashboard.component.ts index 1b6387a94d..b966a69fd6 100644 --- a/frontend/src/app/_protected/pages/dashboard/dashboard.component.ts +++ b/frontend/src/app/_protected/pages/dashboard/dashboard.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/endpoints/_models/argument.model.ts b/frontend/src/app/_protected/pages/manage/endpoints/_models/argument.model.ts index 26ef6b8eca..83eba460a1 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/_models/argument.model.ts +++ b/frontend/src/app/_protected/pages/manage/endpoints/_models/argument.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Lookup } from "./lookup.model"; diff --git a/frontend/src/app/_protected/pages/manage/endpoints/_models/lookup.model.ts b/frontend/src/app/_protected/pages/manage/endpoints/_models/lookup.model.ts index de53b54151..c524f9115a 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/_models/lookup.model.ts +++ b/frontend/src/app/_protected/pages/manage/endpoints/_models/lookup.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/manage/endpoints/_models/socket-user.model.ts b/frontend/src/app/_protected/pages/manage/endpoints/_models/socket-user.model.ts index 4816f3249d..473373381d 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/_models/socket-user.model.ts +++ b/frontend/src/app/_protected/pages/manage/endpoints/_models/socket-user.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/manage/endpoints/_module/endpoints.module.ts b/frontend/src/app/_protected/pages/manage/endpoints/_module/endpoints.module.ts index 8ec3dc6207..b54795d035 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/_module/endpoints.module.ts +++ b/frontend/src/app/_protected/pages/manage/endpoints/_module/endpoints.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/endpoints/_module/endpoints.routing.module.ts b/frontend/src/app/_protected/pages/manage/endpoints/_module/endpoints.routing.module.ts index 85b302d064..dfde30ea61 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/_module/endpoints.routing.module.ts +++ b/frontend/src/app/_protected/pages/manage/endpoints/_module/endpoints.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/endpoints/endpoints-list/endpoints-list.component.scss b/frontend/src/app/_protected/pages/manage/endpoints/endpoints-list/endpoints-list.component.scss index 7eced786ae..9885f38452 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/endpoints-list/endpoints-list.component.scss +++ b/frontend/src/app/_protected/pages/manage/endpoints/endpoints-list/endpoints-list.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/manage/endpoints/endpoints-list/endpoints-list.component.ts b/frontend/src/app/_protected/pages/manage/endpoints/endpoints-list/endpoints-list.component.ts index c3859977db..d0df79d7a2 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/endpoints-list/endpoints-list.component.ts +++ b/frontend/src/app/_protected/pages/manage/endpoints/endpoints-list/endpoints-list.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/endpoints/endpoints-result/endpoints-result.component.scss b/frontend/src/app/_protected/pages/manage/endpoints/endpoints-result/endpoints-result.component.scss index cbff304b4d..1af6d95075 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/endpoints-result/endpoints-result.component.scss +++ b/frontend/src/app/_protected/pages/manage/endpoints/endpoints-result/endpoints-result.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ ::ng-deep .endpoint-result { diff --git a/frontend/src/app/_protected/pages/manage/endpoints/endpoints-result/endpoints-result.component.ts b/frontend/src/app/_protected/pages/manage/endpoints/endpoints-result/endpoints-result.component.ts index 48d9f29d73..066eefee87 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/endpoints-result/endpoints-result.component.ts +++ b/frontend/src/app/_protected/pages/manage/endpoints/endpoints-result/endpoints-result.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/endpoints/endpoints.component.scss b/frontend/src/app/_protected/pages/manage/endpoints/endpoints.component.scss index 5fbbffc938..a6384f2e14 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/endpoints.component.scss +++ b/frontend/src/app/_protected/pages/manage/endpoints/endpoints.component.scss @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/manage/endpoints/endpoints.component.ts b/frontend/src/app/_protected/pages/manage/endpoints/endpoints.component.ts index 6fa7931839..3ff9b33f3f 100644 --- a/frontend/src/app/_protected/pages/manage/endpoints/endpoints.component.ts +++ b/frontend/src/app/_protected/pages/manage/endpoints/endpoints.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.module.ts b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.module.ts index 2a8f5759fc..300a404065 100644 --- a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.module.ts +++ b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.routing.module.ts b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.routing.module.ts index 748aa2a1c6..3f6a94a255 100644 --- a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.routing.module.ts +++ b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/_module/hyperlambda-playground.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/hyperlambda-playground.component.scss b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/hyperlambda-playground.component.scss index e766866d19..b0b6ebc3f8 100644 --- a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/hyperlambda-playground.component.scss +++ b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/hyperlambda-playground.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .playground ::ng-deep { diff --git a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/hyperlambda-playground.component.ts b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/hyperlambda-playground.component.ts index b0ab6f0e2a..ca58cef465 100644 --- a/frontend/src/app/_protected/pages/manage/hyperlambda-playground/hyperlambda-playground.component.ts +++ b/frontend/src/app/_protected/pages/manage/hyperlambda-playground/hyperlambda-playground.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnDestroy, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/_module/machine-learning.module.ts b/frontend/src/app/_protected/pages/manage/machine-learning/_module/machine-learning.module.ts index f0d9fa37fb..dd0e5e1025 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/_module/machine-learning.module.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/_module/machine-learning.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/_module/machine-learning.routing.module.ts b/frontend/src/app/_protected/pages/manage/machine-learning/_module/machine-learning.routing.module.ts index 40d946eef0..3a5ee015b9 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/_module/machine-learning.routing.module.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/_module/machine-learning.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-cache/machine-learning-edit-cache.component.scss b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-cache/machine-learning-edit-cache.component.scss index 6b4a7be646..673759e79c 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-cache/machine-learning-edit-cache.component.scss +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-cache/machine-learning-edit-cache.component.scss @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .markdown-preview { diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-cache/machine-learning-edit-cache.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-cache/machine-learning-edit-cache.component.ts index 9819fb0568..1e3c7ff1c8 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-cache/machine-learning-edit-cache.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-cache/machine-learning-edit-cache.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-model/machine-learning-edit-model.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-model/machine-learning-edit-model.component.ts index 2e495cd1b3..83389c587b 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-model/machine-learning-edit-model.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-model/machine-learning-edit-model.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-training-snippet/machine-learning-edit-training-snippet.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-training-snippet/machine-learning-edit-training-snippet.component.ts index af312c7538..156db1b4e2 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-training-snippet/machine-learning-edit-training-snippet.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-edit-training-snippet/machine-learning-edit-training-snippet.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-embed-ui/machine-learning-embed-ui.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-embed-ui/machine-learning-embed-ui.component.ts index d6f3d89045..052d5ac030 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-embed-ui/machine-learning-embed-ui.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-embed-ui/machine-learning-embed-ui.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-import/machine-learning-import.component.scss b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-import/machine-learning-import.component.scss index b0c7cf3fe7..81648c4bca 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-import/machine-learning-import.component.scss +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-import/machine-learning-import.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-import/machine-learning-import.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-import/machine-learning-import.component.ts index 46f692c315..c7871207b4 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-import/machine-learning-import.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-import/machine-learning-import.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-spice/machine-learning-spice.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-spice/machine-learning-spice.component.ts index 85c1ff387c..c701707cf0 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-spice/machine-learning-spice.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-spice/machine-learning-spice.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-test/machine-learning-test.component.scss b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-test/machine-learning-test.component.scss index 44dfc7200c..1f59c82409 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-test/machine-learning-test.component.scss +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-test/machine-learning-test.component.scss @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ ::ng-deep .mat-form-field { diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-test/machine-learning-test.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-test/machine-learning-test.component.ts index b80b9d375b..97bc8ee5d5 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-test/machine-learning-test.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-test/machine-learning-test.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-train/machine-learning-train.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-train/machine-learning-train.component.ts index 546ffabdb2..02b6c517c8 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-train/machine-learning-train.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/components/machine-learning-train/machine-learning-train.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-history/machine-learning-history.component.scss b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-history/machine-learning-history.component.scss index bef2df0dd2..5d76a03a55 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-history/machine-learning-history.component.scss +++ b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-history/machine-learning-history.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-history/machine-learning-history.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-history/machine-learning-history.component.ts index 19d8b2bfaa..dcc23c544a 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-history/machine-learning-history.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-history/machine-learning-history.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit, ViewChild } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-models/machine-learning-models.component.scss b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-models/machine-learning-models.component.scss index 0bf775bdba..2ebe2bb5d6 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-models/machine-learning-models.component.scss +++ b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-models/machine-learning-models.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-models/machine-learning-models.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-models/machine-learning-models.component.ts index 1f849f13c6..9ac1ceb165 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-models/machine-learning-models.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-models/machine-learning-models.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit, Output, EventEmitter, Input } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-training-data/machine-learning-training-data.component.scss b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-training-data/machine-learning-training-data.component.scss index 7e4b5db9fd..ae457f4570 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-training-data/machine-learning-training-data.component.scss +++ b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-training-data/machine-learning-training-data.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import "../../../../../../assets/styles/_variables/colors.scss"; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-training-data/machine-learning-training-data.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-training-data/machine-learning-training-data.component.ts index dd0d5e0cc1..f5a76e6074 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-training-data/machine-learning-training-data.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning-training-data/machine-learning-training-data.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning.component.ts b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning.component.ts index 9e48d92f8f..2792fe8c92 100644 --- a/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning.component.ts +++ b/frontend/src/app/_protected/pages/manage/machine-learning/machine-learning.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/plugins/_module/plugins.module.ts b/frontend/src/app/_protected/pages/manage/plugins/_module/plugins.module.ts index cedd697162..fbc3ba4304 100644 --- a/frontend/src/app/_protected/pages/manage/plugins/_module/plugins.module.ts +++ b/frontend/src/app/_protected/pages/manage/plugins/_module/plugins.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/plugins/_module/plugins.routing.module.ts b/frontend/src/app/_protected/pages/manage/plugins/_module/plugins.routing.module.ts index 2cb58dcb8e..804eecd591 100644 --- a/frontend/src/app/_protected/pages/manage/plugins/_module/plugins.routing.module.ts +++ b/frontend/src/app/_protected/pages/manage/plugins/_module/plugins.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/plugins/components/view-app/view-plugin.component.scss b/frontend/src/app/_protected/pages/manage/plugins/components/view-app/view-plugin.component.scss index 9627ce5601..09e4a6b72c 100644 --- a/frontend/src/app/_protected/pages/manage/plugins/components/view-app/view-plugin.component.scss +++ b/frontend/src/app/_protected/pages/manage/plugins/components/view-app/view-plugin.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .file-content ::ng-deep img { diff --git a/frontend/src/app/_protected/pages/manage/plugins/components/view-app/view-plugin.component.ts b/frontend/src/app/_protected/pages/manage/plugins/components/view-app/view-plugin.component.ts index 222e8328bb..b2c445f89e 100644 --- a/frontend/src/app/_protected/pages/manage/plugins/components/view-app/view-plugin.component.ts +++ b/frontend/src/app/_protected/pages/manage/plugins/components/view-app/view-plugin.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/plugins/plugins.component.scss b/frontend/src/app/_protected/pages/manage/plugins/plugins.component.scss index aeb9421f41..21f3c17ace 100644 --- a/frontend/src/app/_protected/pages/manage/plugins/plugins.component.scss +++ b/frontend/src/app/_protected/pages/manage/plugins/plugins.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/manage/plugins/plugins.component.ts b/frontend/src/app/_protected/pages/manage/plugins/plugins.component.ts index 3f140cc86f..d8f19e6ef9 100644 --- a/frontend/src/app/_protected/pages/manage/plugins/plugins.component.ts +++ b/frontend/src/app/_protected/pages/manage/plugins/plugins.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/sockets/_models/published-message.ts b/frontend/src/app/_protected/pages/manage/sockets/_models/published-message.ts index db64a7dcd7..6feb3c7a87 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/_models/published-message.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/_models/published-message.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/manage/sockets/_module/socket.module.ts b/frontend/src/app/_protected/pages/manage/sockets/_module/socket.module.ts index fb00863e35..ca2ce3cbbf 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/_module/socket.module.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/_module/socket.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/sockets/_module/socket.routing.module.ts b/frontend/src/app/_protected/pages/manage/sockets/_module/socket.routing.module.ts index 4df641bac0..748e0550d3 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/_module/socket.routing.module.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/_module/socket.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/sockets/_services/socket.service.ts b/frontend/src/app/_protected/pages/manage/sockets/_services/socket.service.ts index 816db53505..4232b68f7c 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/_services/socket.service.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/_services/socket.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/manage/sockets/components/publish-dialog/publish-dialog.component.ts b/frontend/src/app/_protected/pages/manage/sockets/components/publish-dialog/publish-dialog.component.ts index 516ca5772f..313be0ad84 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/components/publish-dialog/publish-dialog.component.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/components/publish-dialog/publish-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/sockets/components/socket-searchbox/socket-searchbox.component.ts b/frontend/src/app/_protected/pages/manage/sockets/components/socket-searchbox/socket-searchbox.component.ts index 8981786d72..458e60b20a 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/components/socket-searchbox/socket-searchbox.component.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/components/socket-searchbox/socket-searchbox.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/sockets/components/subscribe-dialog/subscribe-dialog.component.ts b/frontend/src/app/_protected/pages/manage/sockets/components/subscribe-dialog/subscribe-dialog.component.ts index b3ddf41dfa..00857fe136 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/components/subscribe-dialog/subscribe-dialog.component.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/components/subscribe-dialog/subscribe-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/sockets/socket-list/socket-list.component.ts b/frontend/src/app/_protected/pages/manage/sockets/socket-list/socket-list.component.ts index 558b3783f7..98e5098308 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/socket-list/socket-list.component.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/socket-list/socket-list.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/sockets/socket-result/socket-result.component.ts b/frontend/src/app/_protected/pages/manage/sockets/socket-result/socket-result.component.ts index 94bd7bb078..4de21e1016 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/socket-result/socket-result.component.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/socket-result/socket-result.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/sockets/sockets.component.scss b/frontend/src/app/_protected/pages/manage/sockets/sockets.component.scss index 85da3b4712..4e8116243c 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/sockets.component.scss +++ b/frontend/src/app/_protected/pages/manage/sockets/sockets.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/manage/sockets/sockets.component.ts b/frontend/src/app/_protected/pages/manage/sockets/sockets.component.ts index 4998e96f15..1a4922a5a5 100644 --- a/frontend/src/app/_protected/pages/manage/sockets/sockets.component.ts +++ b/frontend/src/app/_protected/pages/manage/sockets/sockets.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnDestroy, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/tasks/_models/schedule.model.ts b/frontend/src/app/_protected/pages/manage/tasks/_models/schedule.model.ts index 665239e5f3..b79503d377 100644 --- a/frontend/src/app/_protected/pages/manage/tasks/_models/schedule.model.ts +++ b/frontend/src/app/_protected/pages/manage/tasks/_models/schedule.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/manage/tasks/_models/task.model.ts b/frontend/src/app/_protected/pages/manage/tasks/_models/task.model.ts index e5b5e3d970..07d055fde6 100644 --- a/frontend/src/app/_protected/pages/manage/tasks/_models/task.model.ts +++ b/frontend/src/app/_protected/pages/manage/tasks/_models/task.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Schedule } from "./schedule.model"; diff --git a/frontend/src/app/_protected/pages/manage/tasks/_module/task.module.ts b/frontend/src/app/_protected/pages/manage/tasks/_module/task.module.ts index e0c4a5d79e..5017b68b9a 100644 --- a/frontend/src/app/_protected/pages/manage/tasks/_module/task.module.ts +++ b/frontend/src/app/_protected/pages/manage/tasks/_module/task.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/tasks/_module/task.routing.module.ts b/frontend/src/app/_protected/pages/manage/tasks/_module/task.routing.module.ts index e181b54b12..5b05575ed9 100644 --- a/frontend/src/app/_protected/pages/manage/tasks/_module/task.routing.module.ts +++ b/frontend/src/app/_protected/pages/manage/tasks/_module/task.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/tasks/_services/task.service.ts b/frontend/src/app/_protected/pages/manage/tasks/_services/task.service.ts index 7bb1154986..0aa7fdfea0 100644 --- a/frontend/src/app/_protected/pages/manage/tasks/_services/task.service.ts +++ b/frontend/src/app/_protected/pages/manage/tasks/_services/task.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/manage/tasks/components/manage-task/manage-task.component.ts b/frontend/src/app/_protected/pages/manage/tasks/components/manage-task/manage-task.component.ts index d490199634..2ffaba4133 100644 --- a/frontend/src/app/_protected/pages/manage/tasks/components/manage-task/manage-task.component.ts +++ b/frontend/src/app/_protected/pages/manage/tasks/components/manage-task/manage-task.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/tasks/components/schedule-task/schedule-task.component.ts b/frontend/src/app/_protected/pages/manage/tasks/components/schedule-task/schedule-task.component.ts index 69ce2e5aab..1113a7b629 100644 --- a/frontend/src/app/_protected/pages/manage/tasks/components/schedule-task/schedule-task.component.ts +++ b/frontend/src/app/_protected/pages/manage/tasks/components/schedule-task/schedule-task.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/tasks/tasks.component.scss b/frontend/src/app/_protected/pages/manage/tasks/tasks.component.scss index fe1a0d4a03..80ae527474 100644 --- a/frontend/src/app/_protected/pages/manage/tasks/tasks.component.scss +++ b/frontend/src/app/_protected/pages/manage/tasks/tasks.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .table-chips ::ng-deep { diff --git a/frontend/src/app/_protected/pages/manage/tasks/tasks.component.ts b/frontend/src/app/_protected/pages/manage/tasks/tasks.component.ts index 2c7931b75f..419e6311d6 100644 --- a/frontend/src/app/_protected/pages/manage/tasks/tasks.component.ts +++ b/frontend/src/app/_protected/pages/manage/tasks/tasks.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/_models/authenticate-response.model.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/_models/authenticate-response.model.ts index 619af9c0ae..62536a2327 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/_models/authenticate-response.model.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/_models/authenticate-response.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/_models/role.model.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/_models/role.model.ts index 7dc194a722..71073f2582 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/_models/role.model.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/_models/role.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/_models/user-roles.model.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/_models/user-roles.model.ts index f39f2aa29c..2507a2b061 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/_models/user-roles.model.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/_models/user-roles.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/_models/user.model.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/_models/user.model.ts index 127ff5e345..e57df6ea86 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/_models/user.model.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/_models/user.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/_module/users-roles.module.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/_module/users-roles.module.ts index 5af40f739d..9b03184e46 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/_module/users-roles.module.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/_module/users-roles.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/_module/users-roles.routing.module.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/_module/users-roles.routing.module.ts index 6b2fabf75e..ba71e34922 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/_module/users-roles.routing.module.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/_module/users-roles.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/_services/role.service.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/_services/role.service.ts index aa32f9c68a..864cd61d31 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/_services/role.service.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/_services/role.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/_services/user.service.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/_services/user.service.ts index 9f16786e40..71207f1098 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/_services/user.service.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/_services/user.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/components/add-extra-fields-dialog/add-extra-fields-dialog.component.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/components/add-extra-fields-dialog/add-extra-fields-dialog.component.ts index 86f6f60370..6e0f6cb6e2 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/components/add-extra-fields-dialog/add-extra-fields-dialog.component.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/components/add-extra-fields-dialog/add-extra-fields-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/components/change-password-dialog/change-password-dialog.component.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/components/change-password-dialog/change-password-dialog.component.ts index 8c383d3529..880fff71fb 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/components/change-password-dialog/change-password-dialog.component.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/components/change-password-dialog/change-password-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/components/edit-user-dialog/edit-user-dialog.component.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/components/edit-user-dialog/edit-user-dialog.component.ts index 127598a613..c9d5781b79 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/components/edit-user-dialog/edit-user-dialog.component.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/components/edit-user-dialog/edit-user-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/components/manage-role-dialog/manage-role-dialog.component.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/components/manage-role-dialog/manage-role-dialog.component.ts index 315f2c84f5..8fbf72f7db 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/components/manage-role-dialog/manage-role-dialog.component.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/components/manage-role-dialog/manage-role-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/components/new-user-dialog/new-user-dialog.component.scss b/frontend/src/app/_protected/pages/manage/user-and-roles/components/new-user-dialog/new-user-dialog.component.scss index f46783a775..72dbc55383 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/components/new-user-dialog/new-user-dialog.component.scss +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/components/new-user-dialog/new-user-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/components/new-user-dialog/new-user-dialog.component.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/components/new-user-dialog/new-user-dialog.component.ts index 83dd864ec7..b55a467910 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/components/new-user-dialog/new-user-dialog.component.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/components/new-user-dialog/new-user-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/components/shared-top-bar/shared-top-bar.component.scss b/frontend/src/app/_protected/pages/manage/user-and-roles/components/shared-top-bar/shared-top-bar.component.scss index 4b5cbbced9..4b5b57235d 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/components/shared-top-bar/shared-top-bar.component.scss +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/components/shared-top-bar/shared-top-bar.component.scss @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .searchbox { diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/components/shared-top-bar/shared-top-bar.component.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/components/shared-top-bar/shared-top-bar.component.ts index c612f97959..65f1998f8c 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/components/shared-top-bar/shared-top-bar.component.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/components/shared-top-bar/shared-top-bar.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/roles-list/roles-list.component.scss b/frontend/src/app/_protected/pages/manage/user-and-roles/roles-list/roles-list.component.scss index 190d7ee647..0b76a104df 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/roles-list/roles-list.component.scss +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/roles-list/roles-list.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ button.p-0 { diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/roles-list/roles-list.component.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/roles-list/roles-list.component.ts index 6cc1ec1fdd..a417906588 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/roles-list/roles-list.component.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/roles-list/roles-list.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, Input, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/user-roles.component.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/user-roles.component.ts index 0cdc1f4639..57ba56b8c2 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/user-roles.component.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/user-roles.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit, ViewChild } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/users-list/users-list.component.scss b/frontend/src/app/_protected/pages/manage/user-and-roles/users-list/users-list.component.scss index 9897113cca..6d9bac3d49 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/users-list/users-list.component.scss +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/users-list/users-list.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/manage/user-and-roles/users-list/users-list.component.ts b/frontend/src/app/_protected/pages/manage/user-and-roles/users-list/users-list.component.ts index 236cb7ff2a..b27aab987b 100644 --- a/frontend/src/app/_protected/pages/manage/user-and-roles/users-list/users-list.component.ts +++ b/frontend/src/app/_protected/pages/manage/user-and-roles/users-list/users-list.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { PlatformLocation } from '@angular/common'; diff --git a/frontend/src/app/_protected/pages/misc/configuration/_module/config.module.ts b/frontend/src/app/_protected/pages/misc/configuration/_module/config.module.ts index 075bee8420..2716caf489 100644 --- a/frontend/src/app/_protected/pages/misc/configuration/_module/config.module.ts +++ b/frontend/src/app/_protected/pages/misc/configuration/_module/config.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/configuration/_module/config.routing.module.ts b/frontend/src/app/_protected/pages/misc/configuration/_module/config.routing.module.ts index 42bb56c1e1..beb989e42e 100644 --- a/frontend/src/app/_protected/pages/misc/configuration/_module/config.routing.module.ts +++ b/frontend/src/app/_protected/pages/misc/configuration/_module/config.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/configuration/components/recaptcha-dialog/recaptcha-dialog.component.scss b/frontend/src/app/_protected/pages/misc/configuration/components/recaptcha-dialog/recaptcha-dialog.component.scss index fb6ef1dbdd..c348825659 100644 --- a/frontend/src/app/_protected/pages/misc/configuration/components/recaptcha-dialog/recaptcha-dialog.component.scss +++ b/frontend/src/app/_protected/pages/misc/configuration/components/recaptcha-dialog/recaptcha-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ a { diff --git a/frontend/src/app/_protected/pages/misc/configuration/components/recaptcha-dialog/recaptcha-dialog.component.ts b/frontend/src/app/_protected/pages/misc/configuration/components/recaptcha-dialog/recaptcha-dialog.component.ts index a9cb09a4bf..2a1590c459 100644 --- a/frontend/src/app/_protected/pages/misc/configuration/components/recaptcha-dialog/recaptcha-dialog.component.ts +++ b/frontend/src/app/_protected/pages/misc/configuration/components/recaptcha-dialog/recaptcha-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/configuration/components/smtp-dialog/smtp-dialog.component.ts b/frontend/src/app/_protected/pages/misc/configuration/components/smtp-dialog/smtp-dialog.component.ts index cd957ac3f0..8e793231b0 100644 --- a/frontend/src/app/_protected/pages/misc/configuration/components/smtp-dialog/smtp-dialog.component.ts +++ b/frontend/src/app/_protected/pages/misc/configuration/components/smtp-dialog/smtp-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/configuration/configuration.component.scss b/frontend/src/app/_protected/pages/misc/configuration/configuration.component.scss index 5d14ab9aaf..d9b4242eac 100644 --- a/frontend/src/app/_protected/pages/misc/configuration/configuration.component.scss +++ b/frontend/src/app/_protected/pages/misc/configuration/configuration.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .reset-mw { diff --git a/frontend/src/app/_protected/pages/misc/configuration/configuration.component.ts b/frontend/src/app/_protected/pages/misc/configuration/configuration.component.ts index 9df7b775e9..11b46a7720 100644 --- a/frontend/src/app/_protected/pages/misc/configuration/configuration.component.ts +++ b/frontend/src/app/_protected/pages/misc/configuration/configuration.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnDestroy, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/cryptography/_models/crypto-invocations.model.ts b/frontend/src/app/_protected/pages/misc/cryptography/_models/crypto-invocations.model.ts index 3b2be6cba7..c414590748 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/_models/crypto-invocations.model.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/_models/crypto-invocations.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/misc/cryptography/_models/key-pair.model.ts b/frontend/src/app/_protected/pages/misc/cryptography/_models/key-pair.model.ts index 3b0ca03b94..f31a577458 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/_models/key-pair.model.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/_models/key-pair.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/misc/cryptography/_models/public-key-full.model.ts b/frontend/src/app/_protected/pages/misc/cryptography/_models/public-key-full.model.ts index f43bf39733..50f9a85db4 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/_models/public-key-full.model.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/_models/public-key-full.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/misc/cryptography/_models/public-key.model.ts b/frontend/src/app/_protected/pages/misc/cryptography/_models/public-key.model.ts index 7167c0d6a9..97841adbbf 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/_models/public-key.model.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/_models/public-key.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/misc/cryptography/_module/cryptography.module.ts b/frontend/src/app/_protected/pages/misc/cryptography/_module/cryptography.module.ts index 578a1e3fcc..9ae577a41b 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/_module/cryptography.module.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/_module/cryptography.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/cryptography/_module/cryptography.routing.module.ts b/frontend/src/app/_protected/pages/misc/cryptography/_module/cryptography.routing.module.ts index 654c342117..b47275487c 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/_module/cryptography.routing.module.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/_module/cryptography.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/cryptography/_services/crypto.service.ts b/frontend/src/app/_protected/pages/misc/cryptography/_services/crypto.service.ts index 27deb6f495..8b0c24aa79 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/_services/crypto.service.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/_services/crypto.service.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/_protected/pages/misc/cryptography/components/new-server-key/new-server-key.component.ts b/frontend/src/app/_protected/pages/misc/cryptography/components/new-server-key/new-server-key.component.ts index 0f16e6b605..8948d8ca65 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/components/new-server-key/new-server-key.component.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/components/new-server-key/new-server-key.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/cryptography/components/public-key-details/public-key-details.component.scss b/frontend/src/app/_protected/pages/misc/cryptography/components/public-key-details/public-key-details.component.scss index c9cc0b28d9..7b5d8591e2 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/components/public-key-details/public-key-details.component.scss +++ b/frontend/src/app/_protected/pages/misc/cryptography/components/public-key-details/public-key-details.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/misc/cryptography/components/public-key-details/public-key-details.component.ts b/frontend/src/app/_protected/pages/misc/cryptography/components/public-key-details/public-key-details.component.ts index bc08a5cd9e..ed7c04d1ff 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/components/public-key-details/public-key-details.component.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/components/public-key-details/public-key-details.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/cryptography/cryptography-public-keys/cryptography-public-keys.component.scss b/frontend/src/app/_protected/pages/misc/cryptography/cryptography-public-keys/cryptography-public-keys.component.scss index 087deba624..69ab3578ef 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/cryptography-public-keys/cryptography-public-keys.component.scss +++ b/frontend/src/app/_protected/pages/misc/cryptography/cryptography-public-keys/cryptography-public-keys.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/misc/cryptography/cryptography-public-keys/cryptography-public-keys.component.ts b/frontend/src/app/_protected/pages/misc/cryptography/cryptography-public-keys/cryptography-public-keys.component.ts index d12b9fdafb..21d2dd96f6 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/cryptography-public-keys/cryptography-public-keys.component.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/cryptography-public-keys/cryptography-public-keys.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, EventEmitter, OnInit, Output } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/cryptography/cryptography-receipts/cryptography-receipts.component.ts b/frontend/src/app/_protected/pages/misc/cryptography/cryptography-receipts/cryptography-receipts.component.ts index e8ae27db5a..0eae882839 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/cryptography-receipts/cryptography-receipts.component.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/cryptography-receipts/cryptography-receipts.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Input, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/cryptography/cryptography.component.scss b/frontend/src/app/_protected/pages/misc/cryptography/cryptography.component.scss index 124356fc61..de8ade05df 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/cryptography.component.scss +++ b/frontend/src/app/_protected/pages/misc/cryptography/cryptography.component.scss @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .word-break { diff --git a/frontend/src/app/_protected/pages/misc/cryptography/cryptography.component.ts b/frontend/src/app/_protected/pages/misc/cryptography/cryptography.component.ts index 6322592e70..3c9ba88ef3 100644 --- a/frontend/src/app/_protected/pages/misc/cryptography/cryptography.component.ts +++ b/frontend/src/app/_protected/pages/misc/cryptography/cryptography.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit, ViewChild } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/health-check/_module/health-check.module.ts b/frontend/src/app/_protected/pages/misc/health-check/_module/health-check.module.ts index 8562b8dc50..3adc923505 100644 --- a/frontend/src/app/_protected/pages/misc/health-check/_module/health-check.module.ts +++ b/frontend/src/app/_protected/pages/misc/health-check/_module/health-check.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/health-check/_module/health-check.routing.module.ts b/frontend/src/app/_protected/pages/misc/health-check/_module/health-check.routing.module.ts index 7f68d67b88..fb0c87cc0f 100644 --- a/frontend/src/app/_protected/pages/misc/health-check/_module/health-check.routing.module.ts +++ b/frontend/src/app/_protected/pages/misc/health-check/_module/health-check.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/health-check/components/test-health-content-dialog/test-health-content-dialog.component.ts b/frontend/src/app/_protected/pages/misc/health-check/components/test-health-content-dialog/test-health-content-dialog.component.ts index 947c1eb12e..819eb9dbe7 100644 --- a/frontend/src/app/_protected/pages/misc/health-check/components/test-health-content-dialog/test-health-content-dialog.component.ts +++ b/frontend/src/app/_protected/pages/misc/health-check/components/test-health-content-dialog/test-health-content-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnDestroy, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/health-check/health-check.component.scss b/frontend/src/app/_protected/pages/misc/health-check/health-check.component.scss index 0b71196b7a..b17af396a2 100644 --- a/frontend/src/app/_protected/pages/misc/health-check/health-check.component.scss +++ b/frontend/src/app/_protected/pages/misc/health-check/health-check.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/misc/health-check/health-check.component.ts b/frontend/src/app/_protected/pages/misc/health-check/health-check.component.ts index 38b57d444f..6cd6bf037c 100644 --- a/frontend/src/app/_protected/pages/misc/health-check/health-check.component.ts +++ b/frontend/src/app/_protected/pages/misc/health-check/health-check.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { ChangeDetectorRef, Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/help-center/_module/help-center.module.ts b/frontend/src/app/_protected/pages/misc/help-center/_module/help-center.module.ts index e32e4810de..cdc5588a47 100644 --- a/frontend/src/app/_protected/pages/misc/help-center/_module/help-center.module.ts +++ b/frontend/src/app/_protected/pages/misc/help-center/_module/help-center.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/help-center/_module/help-center.routing.module.ts b/frontend/src/app/_protected/pages/misc/help-center/_module/help-center.routing.module.ts index 49dd324025..a9c79f0ecc 100644 --- a/frontend/src/app/_protected/pages/misc/help-center/_module/help-center.routing.module.ts +++ b/frontend/src/app/_protected/pages/misc/help-center/_module/help-center.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/help-center/help-center.component.ts b/frontend/src/app/_protected/pages/misc/help-center/help-center.component.ts index e039c02b78..467ed09118 100644 --- a/frontend/src/app/_protected/pages/misc/help-center/help-center.component.ts +++ b/frontend/src/app/_protected/pages/misc/help-center/help-center.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/log/_models/log-item.model.ts b/frontend/src/app/_protected/pages/misc/log/_models/log-item.model.ts index d1194b66f2..056b46ff28 100644 --- a/frontend/src/app/_protected/pages/misc/log/_models/log-item.model.ts +++ b/frontend/src/app/_protected/pages/misc/log/_models/log-item.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/_protected/pages/misc/log/_module/log.module.ts b/frontend/src/app/_protected/pages/misc/log/_module/log.module.ts index 2ed07f108a..3a012fa3fb 100644 --- a/frontend/src/app/_protected/pages/misc/log/_module/log.module.ts +++ b/frontend/src/app/_protected/pages/misc/log/_module/log.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/log/_module/log.routing.module.ts b/frontend/src/app/_protected/pages/misc/log/_module/log.routing.module.ts index 2e0e135db5..b7e70fe200 100644 --- a/frontend/src/app/_protected/pages/misc/log/_module/log.routing.module.ts +++ b/frontend/src/app/_protected/pages/misc/log/_module/log.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/misc/log/log.component.scss b/frontend/src/app/_protected/pages/misc/log/log.component.scss index e03d60f27d..9a2f3d197c 100644 --- a/frontend/src/app/_protected/pages/misc/log/log.component.scss +++ b/frontend/src/app/_protected/pages/misc/log/log.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/_protected/pages/misc/log/log.component.ts b/frontend/src/app/_protected/pages/misc/log/log.component.ts index 639a3c5bac..b77be0cc07 100644 --- a/frontend/src/app/_protected/pages/misc/log/log.component.ts +++ b/frontend/src/app/_protected/pages/misc/log/log.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/setup/_module/setup.module.ts b/frontend/src/app/_protected/pages/setup/_module/setup.module.ts index f4267b3175..8a8fc21762 100644 --- a/frontend/src/app/_protected/pages/setup/_module/setup.module.ts +++ b/frontend/src/app/_protected/pages/setup/_module/setup.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { CommonModule } from '@angular/common'; diff --git a/frontend/src/app/_protected/pages/setup/_module/setup.routing.module.ts b/frontend/src/app/_protected/pages/setup/_module/setup.routing.module.ts index f1e97fce0d..6c80019705 100644 --- a/frontend/src/app/_protected/pages/setup/_module/setup.routing.module.ts +++ b/frontend/src/app/_protected/pages/setup/_module/setup.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/setup/setup.component.ts b/frontend/src/app/_protected/pages/setup/setup.component.ts index 233b94dd5e..353ed3c322 100644 --- a/frontend/src/app/_protected/pages/setup/setup.component.ts +++ b/frontend/src/app/_protected/pages/setup/setup.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/user/generate-token-dialog/generate-token-dialog.component.scss b/frontend/src/app/_protected/pages/user/generate-token-dialog/generate-token-dialog.component.scss index 1b6bee244e..b14b3277ed 100644 --- a/frontend/src/app/_protected/pages/user/generate-token-dialog/generate-token-dialog.component.scss +++ b/frontend/src/app/_protected/pages/user/generate-token-dialog/generate-token-dialog.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .bg-light { diff --git a/frontend/src/app/_protected/pages/user/generate-token-dialog/generate-token-dialog.component.ts b/frontend/src/app/_protected/pages/user/generate-token-dialog/generate-token-dialog.component.ts index a823a1b037..cfb2fcd6a8 100644 --- a/frontend/src/app/_protected/pages/user/generate-token-dialog/generate-token-dialog.component.ts +++ b/frontend/src/app/_protected/pages/user/generate-token-dialog/generate-token-dialog.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, Inject, OnInit } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/user/profile/_module/profile.module.ts b/frontend/src/app/_protected/pages/user/profile/_module/profile.module.ts index 38b0c79bd4..7144dd5f52 100644 --- a/frontend/src/app/_protected/pages/user/profile/_module/profile.module.ts +++ b/frontend/src/app/_protected/pages/user/profile/_module/profile.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/user/profile/_module/profile.routing.module.ts b/frontend/src/app/_protected/pages/user/profile/_module/profile.routing.module.ts index 0c833f92ec..107e03c395 100644 --- a/frontend/src/app/_protected/pages/user/profile/_module/profile.routing.module.ts +++ b/frontend/src/app/_protected/pages/user/profile/_module/profile.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/_protected/pages/user/profile/profile.component.scss b/frontend/src/app/_protected/pages/user/profile/profile.component.scss index a09eade23c..c9899d3070 100644 --- a/frontend/src/app/_protected/pages/user/profile/profile.component.scss +++ b/frontend/src/app/_protected/pages/user/profile/profile.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .profile { diff --git a/frontend/src/app/_protected/pages/user/profile/profile.component.ts b/frontend/src/app/_protected/pages/user/profile/profile.component.ts index 9d0fd0fb2b..67b2b96e2a 100644 --- a/frontend/src/app/_protected/pages/user/profile/profile.component.ts +++ b/frontend/src/app/_protected/pages/user/profile/profile.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/access.guard.ts b/frontend/src/app/access.guard.ts index 8f162fd29c..9d674efccc 100644 --- a/frontend/src/app/access.guard.ts +++ b/frontend/src/app/access.guard.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index b318b8e040..85f0949848 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/app.component.scss b/frontend/src/app/app.component.scss index ea26741f08..b564077185 100644 --- a/frontend/src/app/app.component.scss +++ b/frontend/src/app/app.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ mat-progress-bar { diff --git a/frontend/src/app/app.component.ts b/frontend/src/app/app.component.ts index 1710e86322..86a5455a09 100644 --- a/frontend/src/app/app.component.ts +++ b/frontend/src/app/app.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { AfterContentChecked, ChangeDetectionStrategy, ChangeDetectorRef, Component } from '@angular/core'; diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 790692ecb5..a30623c2a1 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/codemirror/_module/cm.module.ts b/frontend/src/app/codemirror/_module/cm.module.ts index 8810752591..6bd7543fbd 100644 --- a/frontend/src/app/codemirror/_module/cm.module.ts +++ b/frontend/src/app/codemirror/_module/cm.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { CommonModule } from "@angular/common"; diff --git a/frontend/src/app/codemirror/codemirror-hyperlambda/codemirror-hyperlambda.component.ts b/frontend/src/app/codemirror/codemirror-hyperlambda/codemirror-hyperlambda.component.ts index eb51ae7eac..c169eb0454 100644 --- a/frontend/src/app/codemirror/codemirror-hyperlambda/codemirror-hyperlambda.component.ts +++ b/frontend/src/app/codemirror/codemirror-hyperlambda/codemirror-hyperlambda.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/codemirror/codemirror-sql/codemirror-sql.component.ts b/frontend/src/app/codemirror/codemirror-sql/codemirror-sql.component.ts index f05100a449..6dffcc2fdb 100644 --- a/frontend/src/app/codemirror/codemirror-sql/codemirror-sql.component.ts +++ b/frontend/src/app/codemirror/codemirror-sql/codemirror-sql.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/interceptors/auth.interceptor.ts b/frontend/src/app/interceptors/auth.interceptor.ts index f63da42964..4acfcf88b7 100644 --- a/frontend/src/app/interceptors/auth.interceptor.ts +++ b/frontend/src/app/interceptors/auth.interceptor.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular and system imports. diff --git a/frontend/src/app/interceptors/loader.interceptor.ts b/frontend/src/app/interceptors/loader.interceptor.ts index 5b9de74b5c..3578195ebb 100644 --- a/frontend/src/app/interceptors/loader.interceptor.ts +++ b/frontend/src/app/interceptors/loader.interceptor.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular imports. diff --git a/frontend/src/app/material.module.ts b/frontend/src/app/material.module.ts index 6b41834aaf..3c97dffaaa 100644 --- a/frontend/src/app/material.module.ts +++ b/frontend/src/app/material.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/models/affected.model.ts b/frontend/src/app/models/affected.model.ts index 189a75b8fc..dd11be4965 100644 --- a/frontend/src/app/models/affected.model.ts +++ b/frontend/src/app/models/affected.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/app-manifest.ts b/frontend/src/app/models/app-manifest.ts index c2b7193879..85e2378121 100644 --- a/frontend/src/app/models/app-manifest.ts +++ b/frontend/src/app/models/app-manifest.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/bazar-app.model.ts b/frontend/src/app/models/bazar-app.model.ts index d2645cb7a3..5dfd14b18d 100644 --- a/frontend/src/app/models/bazar-app.model.ts +++ b/frontend/src/app/models/bazar-app.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/column.model.ts b/frontend/src/app/models/column.model.ts index e1af655589..347e6d051a 100644 --- a/frontend/src/app/models/column.model.ts +++ b/frontend/src/app/models/column.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/count.model.ts b/frontend/src/app/models/count.model.ts index 959157c820..f67509e60a 100644 --- a/frontend/src/app/models/count.model.ts +++ b/frontend/src/app/models/count.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/dashboard.model.ts b/frontend/src/app/models/dashboard.model.ts index 5f052c629b..7fb84f0142 100644 --- a/frontend/src/app/models/dashboard.model.ts +++ b/frontend/src/app/models/dashboard.model.ts @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/foreign-key.model.ts b/frontend/src/app/models/foreign-key.model.ts index 07436da2ea..c1587d1dc7 100644 --- a/frontend/src/app/models/foreign-key.model.ts +++ b/frontend/src/app/models/foreign-key.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/message.model.ts b/frontend/src/app/models/message.model.ts index 612e372558..3e2c9a6cc2 100644 --- a/frontend/src/app/models/message.model.ts +++ b/frontend/src/app/models/message.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/purchase-status.model.ts b/frontend/src/app/models/purchase-status.model.ts index 0bb8311c27..8ed0aad7c4 100644 --- a/frontend/src/app/models/purchase-status.model.ts +++ b/frontend/src/app/models/purchase-status.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/status.model.ts b/frontend/src/app/models/status.model.ts index fa5932e14b..0302d9ce39 100644 --- a/frontend/src/app/models/status.model.ts +++ b/frontend/src/app/models/status.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/models/table.model.ts b/frontend/src/app/models/table.model.ts index d3374eef65..cee71b437f 100644 --- a/frontend/src/app/models/table.model.ts +++ b/frontend/src/app/models/table.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Application specific imports. diff --git a/frontend/src/app/models/template.model.ts b/frontend/src/app/models/template.model.ts index 6fad2657ae..40f4e91410 100644 --- a/frontend/src/app/models/template.model.ts +++ b/frontend/src/app/models/template.model.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/app/public/authentication/_module/auth.module.ts b/frontend/src/app/public/authentication/_module/auth.module.ts index 51c7e711d0..889465d6d8 100644 --- a/frontend/src/app/public/authentication/_module/auth.module.ts +++ b/frontend/src/app/public/authentication/_module/auth.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/public/authentication/_module/auth.routing.module.ts b/frontend/src/app/public/authentication/_module/auth.routing.module.ts index c3d9971420..c2be264676 100644 --- a/frontend/src/app/public/authentication/_module/auth.routing.module.ts +++ b/frontend/src/app/public/authentication/_module/auth.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/public/authentication/auth-base/auth-base.component.scss b/frontend/src/app/public/authentication/auth-base/auth-base.component.scss index 4788271d3d..d8b03d476f 100644 --- a/frontend/src/app/public/authentication/auth-base/auth-base.component.scss +++ b/frontend/src/app/public/authentication/auth-base/auth-base.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ @import '../../../../assets/styles/_variables/colors.scss'; diff --git a/frontend/src/app/public/authentication/auth-base/auth-base.component.ts b/frontend/src/app/public/authentication/auth-base/auth-base.component.ts index fbf6cb8c40..f5e0e24095 100644 --- a/frontend/src/app/public/authentication/auth-base/auth-base.component.ts +++ b/frontend/src/app/public/authentication/auth-base/auth-base.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/public/authentication/auto-auth/auto-auth.component.ts b/frontend/src/app/public/authentication/auto-auth/auto-auth.component.ts index d7c448af71..2a479c2f39 100644 --- a/frontend/src/app/public/authentication/auto-auth/auto-auth.component.ts +++ b/frontend/src/app/public/authentication/auto-auth/auto-auth.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/public/authentication/forgot-password/forgot-password.component.ts b/frontend/src/app/public/authentication/forgot-password/forgot-password.component.ts index 7ea47b5566..8b638e6528 100644 --- a/frontend/src/app/public/authentication/forgot-password/forgot-password.component.ts +++ b/frontend/src/app/public/authentication/forgot-password/forgot-password.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, ViewChild } from '@angular/core'; diff --git a/frontend/src/app/public/authentication/login/login.component.ts b/frontend/src/app/public/authentication/login/login.component.ts index cf246b4483..35f3d3f577 100644 --- a/frontend/src/app/public/authentication/login/login.component.ts +++ b/frontend/src/app/public/authentication/login/login.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component, OnInit } from '@angular/core'; diff --git a/frontend/src/app/public/not-found/lazy-loading/notfound.module.ts b/frontend/src/app/public/not-found/lazy-loading/notfound.module.ts index 42021b51fc..84813916b9 100644 --- a/frontend/src/app/public/not-found/lazy-loading/notfound.module.ts +++ b/frontend/src/app/public/not-found/lazy-loading/notfound.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/public/not-found/lazy-loading/notfound.routing.module.ts b/frontend/src/app/public/not-found/lazy-loading/notfound.routing.module.ts index f9efd5a3ef..31ab5487a6 100644 --- a/frontend/src/app/public/not-found/lazy-loading/notfound.routing.module.ts +++ b/frontend/src/app/public/not-found/lazy-loading/notfound.routing.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from '@angular/core'; diff --git a/frontend/src/app/public/not-found/not-found.component.scss b/frontend/src/app/public/not-found/not-found.component.scss index b0885a0b8a..cd15497b95 100644 --- a/frontend/src/app/public/not-found/not-found.component.scss +++ b/frontend/src/app/public/not-found/not-found.component.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ .not-found { diff --git a/frontend/src/app/public/not-found/not-found.component.ts b/frontend/src/app/public/not-found/not-found.component.ts index 37447be5fb..aafeefdc29 100644 --- a/frontend/src/app/public/not-found/not-found.component.ts +++ b/frontend/src/app/public/not-found/not-found.component.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { Component } from '@angular/core'; diff --git a/frontend/src/app/shared.module.ts b/frontend/src/app/shared.module.ts index bd0ee623dc..2e5fe52e0b 100644 --- a/frontend/src/app/shared.module.ts +++ b/frontend/src/app/shared.module.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ import { NgModule } from "@angular/core"; diff --git a/frontend/src/environments/environment.prod.ts b/frontend/src/environments/environment.prod.ts index 72dee90202..c8e551ce8b 100644 --- a/frontend/src/environments/environment.prod.ts +++ b/frontend/src/environments/environment.prod.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // This little trick makes pipeline transformations slightly simpler in Azure at least. diff --git a/frontend/src/environments/environment.ts b/frontend/src/environments/environment.ts index 045857b56f..8a00311166 100644 --- a/frontend/src/environments/environment.ts +++ b/frontend/src/environments/environment.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ export const environment = { production: false, diff --git a/frontend/src/main.ts b/frontend/src/main.ts index 07ac693084..f6a489e268 100644 --- a/frontend/src/main.ts +++ b/frontend/src/main.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ // Angular specific imports. diff --git a/frontend/src/polyfills.ts b/frontend/src/polyfills.ts index 126c746dc9..b485d0dd5d 100644 --- a/frontend/src/polyfills.ts +++ b/frontend/src/polyfills.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /** diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index 643faa6d29..51397da5d6 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -1,5 +1,5 @@ /* - * Copyright (c) Aista Ltd, and Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. + * Copyright (c) 2023 Thomas Hansen - For license inquiries you can contact thomas@ainiro.io. */ /* You can add global styles to this file, and also import other style files */ From 45c5ff31e516343c340f30ef914283c523ebb8aa Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Thu, 14 Dec 2023 12:03:33 +0200 Subject: [PATCH 73/75] Updating license --- LICENSE | 683 +++++++++++++++++++++++++++++++++++++++++++++++++++++- README.md | 15 +- 2 files changed, 672 insertions(+), 26 deletions(-) diff --git a/LICENSE b/LICENSE index b941e26398..e72bfddabc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,15 +1,674 @@ -Copyright 2020-2023 Thomas Hansen, thomas@ainiro.io + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. -The above copyright notice and this permission notice shall be included in all copies or substantial portions -of the Software. + Preamble -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED -TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF -CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. \ No newline at end of file diff --git a/README.md b/README.md index 88826b76ff..04551d27f4 100644 --- a/README.md +++ b/README.md @@ -37,20 +37,7 @@ In addition to its OpenAI and ChatGPT features, Magic is also a complete Low-Cod ## License -**TL;TR** - You can create closed source applications with Magic, but you can _not_ close Magic itself. - -The frontend dashboard is licensed under the terms of the GPL version 3, as published by the Free Software Foundation - -While the backend is licensed under the terms of the MIT license. What this implies, is that you can freely use Magic -as you see fit, also in your own proprietary and closed source applications - However, if you modify any of its plugins, -and or the dashboard frontend, you'll have to publish your changes to anyone requesting your changes. - -To sum up each license. - -* All NuGet packages are LGPL3 -* The `backend` folder is MIT -* The `frontend` folder is GPL3 - -See the enclosed LICENSE files within each folder, and/or plugin if in doubt. +This project, and all of its satellite project, is licensed under the terms of the GPL license version 3, as published by the Free Software Foundation. See LICENSE file for details. ## Copyright and maintenance From 6c7006fc2e114c1fbbccfcaf2f48b6c12553f9c5 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Thu, 14 Dec 2023 12:04:03 +0200 Subject: [PATCH 74/75] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 04551d27f4..983f2b3e0c 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,8 @@ In addition to its OpenAI and ChatGPT features, Magic is also a complete Low-Cod This project, and all of its satellite project, is licensed under the terms of the GPL license version 3, as published by the Free Software Foundation. See LICENSE file for details. +For licensing inquiries you can contact thomas@ainiro.io + ## Copyright and maintenance The projects is copyright of Thomas Hansen, Ltd 2021 - 2023, and professionally maintained by [AINIRO your friendly ChatGPT website chatbot vendor](https://ainiro.io). From d08aa310b979108aba6393cc58d406a6827c9f97 Mon Sep 17 00:00:00 2001 From: Thomas Hansen Date: Thu, 14 Dec 2023 14:48:33 +0200 Subject: [PATCH 75/75] b --- README.md | 4 +--- backend/backend.csproj | 4 ++-- backend/slots/Version.cs | 2 +- frontend/package-lock.json | 11 ----------- frontend/package.json | 1 - 5 files changed, 4 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 983f2b3e0c..afe534e299 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,7 @@ In addition to its OpenAI and ChatGPT features, Magic is also a complete Low-Cod ## License -This project, and all of its satellite project, is licensed under the terms of the GPL license version 3, as published by the Free Software Foundation. See LICENSE file for details. - -For licensing inquiries you can contact thomas@ainiro.io +This project, and all of its satellite project, is licensed under the terms of the GPL license version 3, as published by the Free Software Foundation unless an explicit and signed exception has been provided by Thomas Hansen its copyright owner. See LICENSE file for details. For licensing inquiries you can contact Thomas Hansen thomas@ainiro.io ## Copyright and maintenance diff --git a/backend/backend.csproj b/backend/backend.csproj index f25c45f5d8..55610f57a6 100644 --- a/backend/backend.csproj +++ b/backend/backend.csproj @@ -25,8 +25,8 @@ - - + + diff --git a/backend/slots/Version.cs b/backend/slots/Version.cs index d6ed186ac3..5fae8815a7 100644 --- a/backend/slots/Version.cs +++ b/backend/slots/Version.cs @@ -20,7 +20,7 @@ public class Version : ISlot /// Parameters passed from signaler public void Signal(ISignaler signaler, Node input) { - input.Value = "v16.11.26"; + input.Value = "v17.0.0"; } } } diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 08339440b7..f320336203 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -22,7 +22,6 @@ "@angular/service-worker": "^14.2.3", "@aspnet/signalr": "^1.0.27", "@ctrl/ngx-codemirror": "^5.1.1", - "@jsplumb/browser-ui": "^6.2.10", "angular-marked": "^0.0.14", "codemirror": "^5.65.7", "echarts": "^5.4.0", @@ -3074,11 +3073,6 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jsplumb/browser-ui": { - "version": "6.2.10", - "resolved": "https://registry.npmjs.org/@jsplumb/browser-ui/-/browser-ui-6.2.10.tgz", - "integrity": "sha512-trk++mK5q6hceJL79teemzcilJ+8DrZT/lMK0+B80AtHqZHr0YwMCf+so2JBb2Z/MDZ0fUEU9MbELY6OPhhs5g==" - }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", @@ -16101,11 +16095,6 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "@jsplumb/browser-ui": { - "version": "6.2.10", - "resolved": "https://registry.npmjs.org/@jsplumb/browser-ui/-/browser-ui-6.2.10.tgz", - "integrity": "sha512-trk++mK5q6hceJL79teemzcilJ+8DrZT/lMK0+B80AtHqZHr0YwMCf+so2JBb2Z/MDZ0fUEU9MbELY6OPhhs5g==" - }, "@leichtgewicht/ip-codec": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", diff --git a/frontend/package.json b/frontend/package.json index ba5e26355a..2a1076108f 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -25,7 +25,6 @@ "@angular/service-worker": "^14.2.3", "@aspnet/signalr": "^1.0.27", "@ctrl/ngx-codemirror": "^5.1.1", - "@jsplumb/browser-ui": "^6.2.10", "angular-marked": "^0.0.14", "codemirror": "^5.65.7", "echarts": "^5.4.0",