qcobjects-sdk 2.5.105 → 2.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/.github/workflows/npmpublish.yml +6 -4
  2. package/.gitmodules +4 -0
  3. package/CHANGELOG.md +15 -0
  4. package/LICENSE.txt +21 -0
  5. package/README.md +7 -1
  6. package/VERSION +1 -1
  7. package/build/index.js +3 -12
  8. package/build/ts/org.qcobjects.cloud.auth.session.data.js +3 -12
  9. package/build/ts/org.qcobjects.cloud.auth.session.usertoken.js +3 -12
  10. package/build/ts/org.qcobjects.components.grid.js +3 -12
  11. package/build/ts/org.qcobjects.components.js +3 -12
  12. package/build/ts/org.qcobjects.components.list.js +3 -12
  13. package/build/ts/org.qcobjects.components.notifications.js +3 -12
  14. package/build/ts/org.qcobjects.components.slider.js +3 -12
  15. package/build/ts/org.qcobjects.components.splashscreen.js +3 -12
  16. package/build/ts/org.qcobjects.controllers.form.js +4 -13
  17. package/build/ts/org.qcobjects.controllers.grid.js +3 -12
  18. package/build/ts/org.qcobjects.controllers.js +3 -12
  19. package/build/ts/org.qcobjects.controllers.list.js +3 -12
  20. package/build/ts/org.qcobjects.controllers.slider.js +3 -12
  21. package/build/ts/org.qcobjects.controllers.swagger.js +3 -12
  22. package/build/ts/org.qcobjects.effects.extended.js +3 -12
  23. package/build/ts/org.qcobjects.effects.js +3 -12
  24. package/build/ts/org.qcobjects.i18n_messages.js +3 -12
  25. package/build/ts/org.qcobjects.modal.controllers.js +3 -12
  26. package/build/ts/org.qcobjects.modal.effects.js +3 -12
  27. package/build/ts/org.qcobjects.models.js +3 -12
  28. package/build/ts/org.qcobjects.tools.canvas.js +3 -12
  29. package/build/ts/org.qcobjects.tools.js +3 -12
  30. package/build/ts/org.qcobjects.tools.layouts.js +3 -12
  31. package/build/ts/org.qcobjects.views.js +3 -12
  32. package/build-esbuild.js +1 -3
  33. package/docs/CNAME +1 -0
  34. package/package.json +6 -6
  35. package/public/browser/index.js +28 -6946
  36. package/public/browser/index.js.map +4 -4
  37. package/public/cjs/index.cjs +28 -6946
  38. package/public/cjs/index.cjs.map +4 -4
  39. package/public/esm/index.mjs +290 -7225
  40. package/public/esm/index.mjs.map +4 -4
  41. package/public/types/index.d.ts +3 -12
  42. package/src/css/basic-layout.css +4 -16
  43. package/src/index.ts +3 -12
  44. package/src/ts/org.qcobjects.cloud.auth.session.data.ts +3 -12
  45. package/src/ts/org.qcobjects.cloud.auth.session.usertoken.ts +3 -12
  46. package/src/ts/org.qcobjects.components.grid.ts +3 -12
  47. package/src/ts/org.qcobjects.components.list.ts +3 -12
  48. package/src/ts/org.qcobjects.components.notifications.ts +3 -12
  49. package/src/ts/org.qcobjects.components.slider.ts +3 -12
  50. package/src/ts/org.qcobjects.components.splashscreen.ts +3 -12
  51. package/src/ts/org.qcobjects.components.ts +3 -12
  52. package/src/ts/org.qcobjects.controllers.form.ts +4 -13
  53. package/src/ts/org.qcobjects.controllers.grid.ts +6 -15
  54. package/src/ts/org.qcobjects.controllers.list.ts +4 -13
  55. package/src/ts/org.qcobjects.controllers.slider.ts +4 -13
  56. package/src/ts/org.qcobjects.controllers.swagger.ts +3 -12
  57. package/src/ts/org.qcobjects.controllers.ts +3 -12
  58. package/src/ts/org.qcobjects.effects.extended.ts +3 -12
  59. package/src/ts/org.qcobjects.effects.ts +3 -12
  60. package/src/ts/org.qcobjects.i18n_messages.ts +3 -12
  61. package/src/ts/org.qcobjects.modal.controllers.ts +3 -12
  62. package/src/ts/org.qcobjects.modal.effects.ts +3 -12
  63. package/src/ts/org.qcobjects.models.ts +3 -12
  64. package/src/ts/org.qcobjects.tools.canvas.ts +3 -12
  65. package/src/ts/org.qcobjects.tools.layouts.ts +3 -12
  66. package/src/ts/org.qcobjects.tools.ts +3 -12
  67. package/src/ts/org.qcobjects.views.ts +3 -12
@@ -9,14 +9,15 @@ jobs:
9
9
  build:
10
10
  runs-on: ubuntu-latest
11
11
  steps:
12
- - uses: actions/checkout@v4
12
+ - uses: actions/checkout@v6
13
13
  with:
14
14
  token: ${{ secrets.GITHUB_TOKEN }}
15
15
  ref: ${{ github.ref }}
16
- - uses: actions/setup-node@v4
16
+ - uses: actions/setup-node@v6
17
17
  with:
18
18
  node-version: 22
19
19
  - run: npm i --legacy-peer-deps
20
+ - run: npm run build
20
21
  - run: npm test
21
22
 
22
23
  publish-npm:
@@ -26,16 +27,17 @@ jobs:
26
27
  contents: read
27
28
  id-token: write
28
29
  steps:
29
- - uses: actions/checkout@v4
30
+ - uses: actions/checkout@v6
30
31
  with:
31
32
  token: ${{ secrets.GITHUB_TOKEN }}
32
33
  ref: ${{ github.ref }}
33
- - uses: actions/setup-node@v4
34
+ - uses: actions/setup-node@v6
34
35
  with:
35
36
  node-version: 22
36
37
  - name: Upgrade npm for OIDC support (requires >=11.5.1)
37
38
  run: npm install -g npm@latest
38
39
  - run: npm i --legacy-peer-deps
40
+ - run: npm run build
39
41
  - name: Publish to npm
40
42
  run: |
41
43
  if [[ "${{ github.ref }}" == *-beta ]]; then
package/.gitmodules ADDED
@@ -0,0 +1,4 @@
1
+ [submodule "v2.4"]
2
+ path = v2.4
3
+ url = https://github.com/QuickCorp/QCObjects-SDK.git
4
+ branch = v2.4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  This is an automatic Changelog history of versions generated using the command: **qcobjects v-changelog > CHANGELOG.md**
4
4
 
5
+ ## v2.6.2
6
+
7
+ - fix: repository.url QuickCorp -> QCObjects/qcobjects-sdk (Sigstore provenance E422)
8
+
9
+ ## v2.6.1
10
+
11
+ - fix: externalize qcobjects in the bundle (stop inlining stale core; no more node:process in dist)
12
+ - fix: devDependencies/peerDependencies qcobjects range -> >=2.5.142
13
+ - fix: bugs.url QuickCorp -> QCObjects (Sigstore provenance E422 guard)
14
+
15
+ ## v2.6.0
16
+
17
+ - License migration LGPLv3 → MIT (LICENSE.txt, package.json, source headers)
18
+ - See product-specs 09-license and 15-unified-vision-v3 (Phase 1)
19
+
5
20
  ## v0 -> v0.0
6
21
 
7
22
  - DataGridController exec runComponentHelpers when done for subcomponents
package/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2015 Jean Machuca,<correojean@gmail.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,4 +1,9 @@
1
- ![logo](https://qcobjects.dev/qcobjects_01.png)
1
+ > **Official repository.** This is the maintained QCObjects SDK
2
+ > (MIT license). Normative specifications live in
3
+ > [QCObjects/product-specs](https://github.com/QCObjects/product-specs)
4
+ > ([docs](https://qcobjects.github.io/product-specs/)).
5
+ >
6
+ > ![logo](https://qcobjects.dev/qcobjects_01.png)
2
7
  [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FQuickCorp%2FQCObjects-SDK.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2FQuickCorp%2FQCObjects-SDK?ref=badge_shield)
3
8
 
4
9
  QCObjects SDK
@@ -16,6 +21,7 @@ If you like this code please [DONATE ](https://www.paypal.com/cgi-bin/webscr?cmd
16
21
 
17
22
  [QCObjects SDK](https://sdk.qcobjects.dev) is a set of Controllers, Views and Components that are elementary and useful to assist developers to build applications under MVC patterns using [QCObjects](https://qcobjects.dev).
18
23
 
24
+ Checkout the [QCObjects SDK 2.4 beta version](https://sdk.qcobjects.dev/v2.4/)
19
25
 
20
26
  If you like more code samples feel free to write your questions to info@quickcorp.cl
21
27
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.5.105
1
+ 2.6.2
package/build/index.js CHANGED
@@ -1,23 +1,14 @@
1
1
  "use strict";
2
2
  /* eslint-disable @typescript-eslint/no-empty-function */
3
3
  /**
4
- * QCObjects SDK 2.5
4
+ * QCObjects Framework SDK
5
5
  * ________________
6
6
  *
7
7
  * Author: Jean Machuca <correojean@gmail.com>
8
8
  *
9
9
  * Cross Browser Javascript Framework for MVC Patterns
10
- * QuickCorp/QCObjects is licensed under the
11
- * GNU Lesser General Public License v3.0
12
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
13
- *
14
- * Permissions of this copyleft license are conditioned on making available
15
- * complete source code of licensed works and modifications under the same
16
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
17
- * Contributors provide an express grant of patent rights. However, a larger
18
- * work using the licensed work through interfaces provided by the licensed
19
- * work may be distributed under different terms and without source code for
20
- * the larger work.
10
+ * QCObjects is licensed under the MIT License
11
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
21
12
  *
22
13
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
23
14
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5.0
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -84,7 +75,7 @@ class FormController extends qcobjects_1.Controller {
84
75
  data: this.component.data
85
76
  }), false).then(() => {
86
77
  // This will show the service response as a plain text
87
- console.log("DONE SERVICE COMPONENT");
78
+ qcobjects_1.logger.info("DONE SERVICE COMPONENT");
88
79
  location.href = this.formSettings.nextRouting;
89
80
  }, (failedResponse) => {
90
81
  qcobjects_1.logger.debug(failedResponse);
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *
@@ -1,21 +1,12 @@
1
1
  /**
2
- * QCObjects SDK 2.5
2
+ * QCObjects Framework SDK
3
3
  * ________________
4
4
  *
5
5
  * Author: Jean Machuca <correojean@gmail.com>
6
6
  *
7
7
  * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
8
+ * QCObjects is licensed under the MIT License
9
+ * [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
19
10
  *
20
11
  * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
12
  *