Skip to content

Commit

Permalink
refactor: rename dir geograndest to datagrandest
Browse files Browse the repository at this point in the history
  • Loading branch information
bchartier committed Oct 28, 2022
1 parent 7cddba4 commit 204cd60
Show file tree
Hide file tree
Showing 25 changed files with 20 additions and 20 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
)
from qgis.PyQt.QtGui import QPixmap

from geograndest.utils.plugin_globals import PluginGlobals
from datagrandest.utils.plugin_globals import PluginGlobals


class AboutBox(QDialog):
Expand Down
2 changes: 1 addition & 1 deletion geograndest/gui/dock.py → datagrandest/gui/dock.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
)
from qgis.utils import iface

from geograndest.gui.tree_widget import TreeWidget
from datagrandest.gui.tree_widget import TreeWidget


class DockWidget(QDockWidget):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
from qgis.core import *
from qgis.gui import *

from geograndest.utils.plugin_globals import PluginGlobals
from geograndest.nodes.tree_node_factory import TreeNodeFactory
from geograndest.nodes.tree_node_factory import download_tree_config_file
from datagrandest.utils.plugin_globals import PluginGlobals
from datagrandest.nodes.tree_node_factory import TreeNodeFactory
from datagrandest.nodes.tree_node_factory import download_tree_config_file


class ParamBox(QDialog):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from qgis.PyQt.QtWidgets import QTreeWidgetItem, QMenu
from qgis.PyQt.QtCore import Qt

from geograndest.utils.plugin_globals import PluginGlobals
from datagrandest.utils.plugin_globals import PluginGlobals


def expand_item_and_subitems(item):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
)
from qgis.utils import iface

from geograndest.gui.tree_items import TreeWidgetItem
from geograndest.utils.plugin_globals import PluginGlobals
from datagrandest.gui.tree_items import TreeWidgetItem
from datagrandest.utils.plugin_globals import PluginGlobals


class TreeWidget(QTreeWidget):
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions geograndest/nodes/nodes.py → datagrandest/nodes/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import os

from geograndest.utils.plugin_globals import PluginGlobals
from geograndest.utils.plugin_icons import PluginIcons
from datagrandest.utils.plugin_globals import PluginGlobals
from datagrandest.utils.plugin_icons import PluginIcons


class FavoritesTreeNode:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from qgis.PyQt.QtCore import QUrl


from geograndest.utils.plugin_globals import PluginGlobals
from datagrandest.utils.plugin_globals import PluginGlobals
from .nodes import (
WmsLayerTreeNode,
WmsStyleLayerTreeNode,
Expand Down
12 changes: 6 additions & 6 deletions geograndest/plugin.py → datagrandest/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

import os.path

from geograndest.utils.plugin_globals import PluginGlobals
from geograndest.gui.dock import DockWidget
from geograndest.gui.about_box import AboutBox
from geograndest.gui.param_box import ParamBox
from geograndest.nodes.tree_node_factory import TreeNodeFactory
from geograndest.nodes.tree_node_factory import download_tree_config_file
from datagrandest.utils.plugin_globals import PluginGlobals
from datagrandest.gui.dock import DockWidget
from datagrandest.gui.about_box import AboutBox
from datagrandest.gui.param_box import ParamBox
from datagrandest.nodes.tree_node_factory import TreeNodeFactory
from datagrandest.nodes.tree_node_factory import download_tree_config_file


class SimpleAccessPlugin:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

import os
from geograndest.utils.singleton import Singleton
from datagrandest.utils.singleton import Singleton
from qgis.PyQt.QtCore import QSettings


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from qgis.core import QgsApplication
import os

from geograndest.utils.plugin_globals import PluginGlobals
from geograndest.utils.singleton import Singleton
from datagrandest.utils.plugin_globals import PluginGlobals
from datagrandest.utils.singleton import Singleton


@Singleton
Expand Down
File renamed without changes.

0 comments on commit 204cd60

Please sign in to comment.