Skip to content

Commit 591bd82

Browse files
committed
fix: adds missing license headers
1 parent fe45ae8 commit 591bd82

11 files changed

Lines changed: 222 additions & 1 deletion

plugin_code/models/Application.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
QgisShogunEditor
5+
A QGIS plugin
6+
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
7+
-------------------
8+
begin : 2025-09
9+
git sha : $Format:%H$
10+
copyright : (C) 2025 by terrestris
11+
email : info@terrestris.de
12+
***************************************************************************/
13+
14+
/***************************************************************************
15+
* *
16+
* This program is free software; you can redistribute it and/or modify *
17+
* it under the terms of the GNU General Public License as published by *
18+
* the Free Software Foundation; either version 2 of the License, or *
19+
* (at your option) any later version. *
20+
* *
21+
***************************************************************************/
22+
"""
123
from dataclasses import dataclass
224
from typing import Any, Dict, Optional
325

plugin_code/models/BaseEntity.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
QgisShogunEditor
5+
A QGIS plugin
6+
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
7+
-------------------
8+
begin : 2025-09
9+
git sha : $Format:%H$
10+
copyright : (C) 2025 by terrestris
11+
email : info@terrestris.de
12+
***************************************************************************/
13+
14+
/***************************************************************************
15+
* *
16+
* This program is free software; you can redistribute it and/or modify *
17+
* it under the terms of the GNU General Public License as published by *
18+
* the Free Software Foundation; either version 2 of the License, or *
19+
* (at your option) any later version. *
20+
* *
21+
***************************************************************************/
22+
"""
23+
124
from dataclasses import dataclass
225
from datetime import datetime
326
from enum import Enum

plugin_code/models/Layer.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
QgisShogunEditor
5+
A QGIS plugin
6+
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
7+
-------------------
8+
begin : 2025-09
9+
git sha : $Format:%H$
10+
copyright : (C) 2025 by terrestris
11+
email : info@terrestris.de
12+
***************************************************************************/
13+
14+
/***************************************************************************
15+
* *
16+
* This program is free software; you can redistribute it and/or modify *
17+
* it under the terms of the GNU General Public License as published by *
18+
* the Free Software Foundation; either version 2 of the License, or *
19+
* (at your option) any later version. *
20+
* *
21+
***************************************************************************/
22+
"""
123
from dataclasses import dataclass
224
from typing import Any, Dict, Optional
325

plugin_code/models/MutateApplication.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
QgisShogunEditor
5+
A QGIS plugin
6+
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
7+
-------------------
8+
begin : 2025-09
9+
git sha : $Format:%H$
10+
copyright : (C) 2025 by terrestris
11+
email : info@terrestris.de
12+
***************************************************************************/
13+
14+
/***************************************************************************
15+
* *
16+
* This program is free software; you can redistribute it and/or modify *
17+
* it under the terms of the GNU General Public License as published by *
18+
* the Free Software Foundation; either version 2 of the License, or *
19+
* (at your option) any later version. *
20+
* *
21+
***************************************************************************/
22+
"""
123
from dataclasses import dataclass
224
from typing import Any, Dict, Optional
325

plugin_code/models/MutateLayer.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
QgisShogunEditor
5+
A QGIS plugin
6+
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
7+
-------------------
8+
begin : 2025-09
9+
git sha : $Format:%H$
10+
copyright : (C) 2025 by terrestris
11+
email : info@terrestris.de
12+
***************************************************************************/
13+
14+
/***************************************************************************
15+
* *
16+
* This program is free software; you can redistribute it and/or modify *
17+
* it under the terms of the GNU General Public License as published by *
18+
* the Free Software Foundation; either version 2 of the License, or *
19+
* (at your option) any later version. *
20+
* *
21+
***************************************************************************/
22+
"""
123
from dataclasses import dataclass
224
from typing import Any, Dict, Optional
325

plugin_code/models/__init__.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
QgisShogunEditor
5+
A QGIS plugin
6+
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
7+
-------------------
8+
begin : 2025-09
9+
git sha : $Format:%H$
10+
copyright : (C) 2025 by terrestris
11+
email : info@terrestris.de
12+
***************************************************************************/
13+
14+
/***************************************************************************
15+
* *
16+
* This program is free software; you can redistribute it and/or modify *
17+
* it under the terms of the GNU General Public License as published by *
18+
* the Free Software Foundation; either version 2 of the License, or *
19+
* (at your option) any later version. *
20+
* *
21+
***************************************************************************/
22+
"""

plugin_code/qgis_shogun_editor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def run(self):
216216
"""Run method that performs all the real work"""
217217

218218
# Create the dialog with elements (after translation) and keep reference
219-
# Only create GUI ONCE in callback, so that it will only load when the plugin is started
219+
# Only create GUI ONCE in callback, so that it will only load when thie plugin is started
220220
if self.first_start:
221221
self.first_start = False
222222
self.dlg = QgisShogunEditorDialog()

plugin_code/service/Application.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
QgisShogunEditor
5+
A QGIS plugin
6+
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
7+
-------------------
8+
begin : 2025-09
9+
git sha : $Format:%H$
10+
copyright : (C) 2025 by terrestris
11+
email : info@terrestris.de
12+
***************************************************************************/
13+
14+
/***************************************************************************
15+
* *
16+
* This program is free software; you can redistribute it and/or modify *
17+
* it under the terms of the GNU General Public License as published by *
18+
* the Free Software Foundation; either version 2 of the License, or *
19+
* (at your option) any later version. *
20+
* *
21+
***************************************************************************/
22+
"""
123
from datetime import datetime
224
from typing import List, Optional
325

plugin_code/service/GraphQLClient.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
QgisShogunEditor
5+
A QGIS plugin
6+
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
7+
-------------------
8+
begin : 2025-09
9+
git sha : $Format:%H$
10+
copyright : (C) 2025 by terrestris
11+
email : info@terrestris.de
12+
***************************************************************************/
13+
14+
/***************************************************************************
15+
* *
16+
* This program is free software; you can redistribute it and/or modify *
17+
* it under the terms of the GNU General Public License as published by *
18+
* the Free Software Foundation; either version 2 of the License, or *
19+
* (at your option) any later version. *
20+
* *
21+
***************************************************************************/
22+
"""
123
import json
224
from typing import Any, Dict, Optional
325

plugin_code/service/LayerService.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
QgisShogunEditor
5+
A QGIS plugin
6+
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
7+
-------------------
8+
begin : 2025-09
9+
git sha : $Format:%H$
10+
copyright : (C) 2025 by terrestris
11+
email : info@terrestris.de
12+
***************************************************************************/
13+
14+
/***************************************************************************
15+
* *
16+
* This program is free software; you can redistribute it and/or modify *
17+
* it under the terms of the GNU General Public License as published by *
18+
* the Free Software Foundation; either version 2 of the License, or *
19+
* (at your option) any later version. *
20+
* *
21+
***************************************************************************/
22+
"""
123
from typing import List, Optional
224

325
from ..models.Layer import Layer

0 commit comments

Comments
 (0)