Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove trunk from paths #4932

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion doc/examples/gui/wxpython/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
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/examples/python/,
# however this is less stable. Example is available in doc/examples/python/,
# ctypes are used in nviz, vdigit, iclass gui modules.

# from ctypes import *
Expand Down
2 changes: 1 addition & 1 deletion doc/examples/gui/wxpython/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
Loading