Skip to content

Commit

Permalink
docs: remove trunk from paths (#4931)
Browse files Browse the repository at this point in the history
We don't have `trunk` anymore since we departed from SVN.
  • Loading branch information
pesekon2 committed Jan 16, 2025
1 parent f1f5dfa commit 21cb521
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion doc/README
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Database

streams attributes screenshot

DIR="../trunk-commands/doc/"
DIR="../doc/"
for FILE in *.png; do convert $FILE -resize 200x200 $DIR/`basename -s .png $FILE`.jpg; done;


Expand Down
4 changes: 2 additions & 2 deletions doc/gui/wxpython/example/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
from example.dialogs import ExampleMapDialog

# It is possible to call grass library functions (in C) directly via ctypes
# however this is less stable. Example is available in trunk/doc/python/, ctypes
# are used in nviz, vdigit, iclass gui modules.
# however this is less stable. Example is available in doc/examples/python/,
# ctypes are used in nviz, vdigit, iclass gui modules.

# from ctypes import *
# try:
Expand Down
2 changes: 1 addition & 1 deletion doc/gui/wxpython/example/toolbars.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self, parent, toolSwitcher):
def _toolbarData(self):
"""!Returns toolbar data (name, icon, handler)"""
# BaseIcons are a set of often used icons. It is possible
# to reuse icons in ./trunk/gui/icons/grass or add new ones there.
# to reuse icons in gui/icons/grass or add new ones there.
icons = BaseIcons
return self._getToolbarData(
(
Expand Down
4 changes: 2 additions & 2 deletions gui/wxpython/animation/toolbars.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, parent):
def _toolbarData(self):
"""Returns toolbar data (name, icon, handler)"""
# BaseIcons are a set of often used icons. It is possible
# to reuse icons in ./trunk/gui/icons/grass or add new ones there.
# to reuse icons in gui/icons/grass or add new ones there.
icons = ganimIcons
return self._getToolbarData(
(
Expand Down Expand Up @@ -120,7 +120,7 @@ def __init__(self, parent):
def _toolbarData(self):
"""Returns toolbar data (name, icon, handler)"""
# BaseIcons are a set of often used icons. It is possible
# to reuse icons in ./trunk/gui/icons/grass or add new ones there.
# to reuse icons in gui/icons/grass or add new ones there.
icons = ganimIcons
return self._getToolbarData(
(
Expand Down
2 changes: 1 addition & 1 deletion gui/wxpython/datacatalog/toolbars.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def __init__(self, parent):
def _toolbarData(self):
"""Returns toolbar data (name, icon, handler)"""
# BaseIcons are a set of often used icons. It is possible
# to reuse icons in ./trunk/gui/icons/grass or add new ones there.
# to reuse icons in gui/icons/grass or add new ones there.
return self._getToolbarData(
(
(
Expand Down
2 changes: 1 addition & 1 deletion gui/wxpython/mapswipe/toolbars.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __init__(self, parent, toolSwitcher):
def _toolbarData(self):
"""Returns toolbar data (name, icon, handler)"""
# BaseIcons are a set of often used icons. It is possible
# to reuse icons in ./trunk/gui/icons/grass or add new ones there.
# to reuse icons in gui/icons/grass or add new ones there.
icons = BaseIcons
return self._getToolbarData(
(
Expand Down

0 comments on commit 21cb521

Please sign in to comment.