Skip to content

Commit 7cac8b9

Browse files
authored
Merge pull request #571 from RabotaRu/license-norm
License normalization
2 parents c788617 + 2f535ee commit 7cac8b9

File tree

164 files changed

+4613
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+4613
-94
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,4 @@
198198
distributed under the License is distributed on an "AS IS" BASIS,
199199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200200
See the License for the specific language governing permissions and
201-
limitations under the License.
201+
limitations under the License.

NOTICE

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
=========================================================================
2+
== NOTICE file for use with the Apache License, Version 2.0 ==
3+
=========================================================================
4+
5+
DocHub
6+
7+
Copyright (C) 2021 owner Roman Piontik R.Piontik@mail.ru
8+
9+
Licensed under the Apache License, Version 2.0 (the "License");
10+
you may not use this product except in compliance with the License.
11+
You may obtain a copy of the License at
12+
13+
http://www.apache.org/licenses/LICENSE-2.0
14+
15+
In any derivative products, you must retain the information of
16+
owner of the original code and provide clear attribution to the project
17+
18+
https://dochub.info
19+
20+
The use of this product or its derivatives for any purpose cannot be a secret.
21+
22+
Unless required by applicable law or agreed to in writing, software
23+
distributed under the License is distributed on an "AS IS" BASIS,
24+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25+
See the License for the specific language governing permissions and
26+
limitations under the License.

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,17 @@ gantt
5959
POC mutators :done, 2023-07-01, 150d
6060
section Q4 2023
6161
Framework SEAF :done, 2023-10-01, 92d
62-
Time Machine :active, 2023-11-01, 250d
63-
Public metamodel repository :active, 2023-10-01, 200d
62+
Public metamodel repository :done, 2023-10-01, 200d
6463
section Q2 2024
65-
MVP mutators :active, 2024-01-01, 200d
66-
Process Disigner tool :2024-06-01, 90d
67-
Architectire Commutiny tool :2024-06-01, 90d
64+
MVP mutators :done, 2024-01-01, 200d
65+
Process Disigner tool :done, 2024-06-01, 120d
66+
Architectire Commutiny tool :2024-06-01, 200d
67+
section Q3 2024
68+
AaaC Community Architect Framework (CEAF) :active, 2024-06-17, 200d
69+
WEB DocHub IDE :active, 2024-09-14, 120d
70+
Digital Modeler :active, 2024-09-14, 120d
71+
section Q4 2024
72+
Time Machine :active, 2024-11-01, 90d
6873
6974
click plugins href "https://dochub.info/docs/dochub.plugins.intro"
7075
click smartants href "https://dochub.info/docs/dochub.smartants"

distrib/vscode/dochub-0.1.0.vsix

-13.6 MB
Binary file not shown.

distrib/vscode/dochub-0.1.1.vsix

-14.3 MB
Binary file not shown.

distrib/vscode/dochub-0.1.2.vsix

-14.4 MB
Binary file not shown.

distrib/vscode/dochub-0.1.3.vsix

-14.5 MB
Binary file not shown.

src/backend/controllers/core.mjs

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
/*
2+
Copyright (C) 2021 owner Roman Piontik R.Piontik@mail.ru
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
In any derivative products, you must retain the information of
11+
owner of the original code and provide clear attribution to the project
12+
13+
https://dochub.info
14+
15+
The use of this product or its derivatives for any purpose cannot be a secret.
16+
17+
Unless required by applicable law or agreed to in writing, software
18+
distributed under the License is distributed on an "AS IS" BASIS,
19+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20+
See the License for the specific language governing permissions and
21+
limitations under the License.
22+
23+
Maintainers:
24+
R.Piontik <R.Piontik@mail.ru>
25+
26+
Contributors:
27+
R.Piontik <R.Piontik@mail.ru>
28+
Nikolay Temnyakov <temnjakovn@gmail.com>
29+
clay.zenx <clayzenx@gmail.com>
30+
*/
31+
132
import datasets from '../helpers/datasets.mjs';
233
import storeManager from '../storage/manager.mjs';
334
import cache from '../storage/cache.mjs';

src/backend/controllers/entity.mjs

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
1-
// Модуль реализующий доступ к презентациям сущностей как API
1+
/*
2+
Copyright (C) 2021 owner Roman Piontik R.Piontik@mail.ru
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
In any derivative products, you must retain the information of
11+
owner of the original code and provide clear attribution to the project
12+
13+
https://dochub.info
14+
15+
The use of this product or its derivatives for any purpose cannot be a secret.
16+
17+
Unless required by applicable law or agreed to in writing, software
18+
distributed under the License is distributed on an "AS IS" BASIS,
19+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20+
See the License for the specific language governing permissions and
21+
limitations under the License.
22+
23+
Maintainers:
24+
R.Piontik <R.Piontik@mail.ru>
25+
26+
Contributors:
27+
R.Piontik <R.Piontik@mail.ru>
28+
*/
29+
30+
// Модуль реализующий доступ к презентациям сущностей как API
231
// Формат доступа /entities/[Идентификатор сущности]/presentations/[Идентификатор презентации]?[параметры]
332

433
import cache from '../storage/cache.mjs';

src/backend/controllers/helpers.mjs

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
/*
2+
Copyright (C) 2021 owner Roman Piontik R.Piontik@mail.ru
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
In any derivative products, you must retain the information of
11+
owner of the original code and provide clear attribution to the project
12+
13+
https://dochub.info
14+
15+
The use of this product or its derivatives for any purpose cannot be a secret.
16+
17+
Unless required by applicable law or agreed to in writing, software
18+
distributed under the License is distributed on an "AS IS" BASIS,
19+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20+
See the License for the specific language governing permissions and
21+
limitations under the License.
22+
23+
Maintainers:
24+
R.Piontik <R.Piontik@mail.ru>
25+
26+
Contributors:
27+
R.Piontik <R.Piontik@mail.ru>
28+
*/
129
export default {
230
// Проверяет доступность сервиса
331
isServiceReady: function(app, res) {

0 commit comments

Comments
 (0)