From 2816220943136547178872f9fcdbb8dbf71e59bf Mon Sep 17 00:00:00 2001 From: Jonathan Putney Date: Sun, 10 Nov 2019 16:01:03 -0500 Subject: [PATCH] Removing copyrights --- src/AICC.js | 5 ----- src/BaseAPI.js | 6 ------ src/Scorm12API.js | 8 ++------ src/Scorm2004API.js | 17 +++++++---------- src/cmi/aicc_cmi.js | 5 ----- src/cmi/common.js | 5 ----- src/cmi/scorm12_cmi.js | 5 ----- src/cmi/scorm2004_cmi.js | 9 ++------- src/constants.js | 7 ------- src/utilities.js | 5 ----- 10 files changed, 11 insertions(+), 61 deletions(-) diff --git a/src/AICC.js b/src/AICC.js index 594dac6..8b78602 100644 --- a/src/AICC.js +++ b/src/AICC.js @@ -1,8 +1,3 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - // @flow import Scorm12API from './Scorm12API'; import { diff --git a/src/BaseAPI.js b/src/BaseAPI.js index e05e5a2..04b6498 100644 --- a/src/BaseAPI.js +++ b/src/BaseAPI.js @@ -1,11 +1,5 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - // @flow import {CMIArray} from "./cmi/common"; -import {base_error_codes} from "./constants"; const api_constants = { SCORM_TRUE: "true", diff --git a/src/Scorm12API.js b/src/Scorm12API.js index 035267f..c0ec961 100644 --- a/src/Scorm12API.js +++ b/src/Scorm12API.js @@ -1,14 +1,10 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - // @flow import BaseAPI from './BaseAPI'; import { CMI, CMIInteractionsCorrectResponsesObject, - CMIInteractionsObject, CMIInteractionsObjectivesObject, + CMIInteractionsObject, + CMIInteractionsObjectivesObject, CMIObjectivesObject } from "./cmi/scorm12_cmi"; import * as Utilities from './utilities'; diff --git a/src/Scorm2004API.js b/src/Scorm2004API.js index 146d689..a0068bb 100644 --- a/src/Scorm2004API.js +++ b/src/Scorm2004API.js @@ -1,20 +1,17 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - // @flow import BaseAPI from './BaseAPI'; import { - CMI, ADL, - CMIObjectivesObject, - CMIInteractionsObject, + CMI, CMICommentsFromLearnerObject, - CMICommentsFromLMSObject, CMIInteractionsCorrectResponsesObject, CMIInteractionsObjectivesObject + CMICommentsFromLMSObject, + CMIInteractionsCorrectResponsesObject, + CMIInteractionsObject, + CMIInteractionsObjectivesObject, + CMIObjectivesObject } from './cmi/scorm2004_cmi'; import * as Utilities from "./utilities"; -import {scorm2004_constants, correct_responses, scorm2004_error_codes} from "./constants"; +import {correct_responses, scorm2004_constants, scorm2004_error_codes} from "./constants"; import {scorm2004_regex} from "./regex"; const constants = scorm2004_constants; diff --git a/src/cmi/aicc_cmi.js b/src/cmi/aicc_cmi.js index 5c1606a..1026c8e 100644 --- a/src/cmi/aicc_cmi.js +++ b/src/cmi/aicc_cmi.js @@ -1,8 +1,3 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - import * as Scorm12CMI from './scorm12_cmi'; import {BaseCMI, CMIArray, CMIScore} from "./common"; import {aicc_constants} from "../constants"; diff --git a/src/cmi/common.js b/src/cmi/common.js index 4ab4bc7..07c1e3e 100644 --- a/src/cmi/common.js +++ b/src/cmi/common.js @@ -1,8 +1,3 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - import {scorm12_constants, scorm12_error_codes} from "../constants"; export class BaseCMI { diff --git a/src/cmi/scorm12_cmi.js b/src/cmi/scorm12_cmi.js index a1bd0ec..72934be 100644 --- a/src/cmi/scorm12_cmi.js +++ b/src/cmi/scorm12_cmi.js @@ -1,8 +1,3 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - import {BaseCMI, CMIArray, CMIScore} from './common'; import {scorm12_constants, scorm12_error_codes} from "../constants"; import {scorm12_regex} from "../regex"; diff --git a/src/cmi/scorm2004_cmi.js b/src/cmi/scorm2004_cmi.js index cba1408..2f0e123 100644 --- a/src/cmi/scorm2004_cmi.js +++ b/src/cmi/scorm2004_cmi.js @@ -1,10 +1,5 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - -import {BaseCMI, CMIScore, CMIArray} from './common'; -import {scorm2004_constants, learner_responses} from "../constants"; +import {BaseCMI, CMIArray, CMIScore} from './common'; +import {learner_responses, scorm2004_constants} from "../constants"; import {scorm2004_regex} from "../regex"; const constants = scorm2004_constants; diff --git a/src/constants.js b/src/constants.js index 5cce24f..1482f86 100644 --- a/src/constants.js +++ b/src/constants.js @@ -1,11 +1,4 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - // @flow - - import {scorm2004_regex} from "./regex"; export const base_error_codes = { diff --git a/src/utilities.js b/src/utilities.js index 7183817..27f6883 100644 --- a/src/utilities.js +++ b/src/utilities.js @@ -1,8 +1,3 @@ -/* - * Copyright (C) Noverant, Inc - All Rights Reserved Unauthorized copying of this file, via any - * medium is strictly prohibited Proprietary and confidential - */ - // @flow export const SECONDS_PER_SECOND = 1; export const SECONDS_PER_MINUTE = 60;