[GRASS-SVN] r54201 - grass/trunk/gui/wxpython/rlisetup
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Dec 5 05:35:11 PST 2012
Author: martinl
Date: 2012-12-05 05:35:10 -0800 (Wed, 05 Dec 2012)
New Revision: 54201
Modified:
grass/trunk/gui/wxpython/rlisetup/g.gui.rlisetup.html
grass/trunk/gui/wxpython/rlisetup/g.gui.rlisetup.py
Log:
g.gui.rlisetup - fix module's description
update manual, link other g.gui modules
Modified: grass/trunk/gui/wxpython/rlisetup/g.gui.rlisetup.html
===================================================================
--- grass/trunk/gui/wxpython/rlisetup/g.gui.rlisetup.html 2012-12-05 13:27:44 UTC (rev 54200)
+++ grass/trunk/gui/wxpython/rlisetup/g.gui.rlisetup.html 2012-12-05 13:35:10 UTC (rev 54201)
@@ -1,11 +1,11 @@
-<!-- meta page description: wxGUI Map Swipe -->
+<!-- meta page description: wxGUI RLi Setup -->
<!-- meta page index: wxGUI -->
<h2>DESCRIPTION</h2>
-The <b>RLi Setup</b> is a <em><a href="wxGUI.html">wxGUI</a></em> component
-which allows the user to create a configuration file for r.li modules.
+The <b>RLi Setup</b> is a <em><a href="wxGUI.html">wxGUI</a></em>
+component which allows the user to create a configuration file
+for <em>r.li</em> modules.
-
<h2>SEE ALSO</h2>
<em>
@@ -14,9 +14,16 @@
</em>
<p>
-See also the user <a href="http://grass.osgeo.org/wiki/WxGUI_Map_Swipe">wiki</a> page.
+<em>
+ <a href="g.gui.html">g.gui</a>,
+ <a href="g.gui.animation.html">g.gui.animation</a>,
+ <a href="g.gui.gmodeler.html">g.gui.gmodeler</a>,
+ <a href="g.gui.mapswipe.html">g.gui.mapswipe</a>
+</em>
<h2>AUTHOR</h2>
-Converted to Python by Luca Delucchi,
+Luca Delucchi
+
+<p>
<i>$Date: 2012-03-07 13:21:57 +0100 (Wed, 07 Mar 2012) $</i>
Modified: grass/trunk/gui/wxpython/rlisetup/g.gui.rlisetup.py
===================================================================
--- grass/trunk/gui/wxpython/rlisetup/g.gui.rlisetup.py 2012-12-05 13:27:44 UTC (rev 54200)
+++ grass/trunk/gui/wxpython/rlisetup/g.gui.rlisetup.py 2012-12-05 13:35:10 UTC (rev 54201)
@@ -1,10 +1,10 @@
#!/usr/bin/env python
############################################################################
#
-# MODULE: RLi Setup
+# MODULE: g.gui.rlisetup
# AUTHOR(S): Luca Delucchi <lucadeluge gmail.com>
# PURPOSE: RLi Setup to create configuration file for r.li modules
-# COPYRIGHT: (C) 2012 by Luca, Delucchi, and the GRASS Development Team
+# COPYRIGHT: (C) 2012 by Luca Delucchi, and the GRASS Development Team
#
# This program is free software; you can 1redistribute it and/or
# modify it under the terms of the GNU General Public License as
@@ -19,19 +19,18 @@
############################################################################
#%module
-#% description: Allows to interactively create, edit and manage models.
+#% description: Configuration tool for r.li modules.
#% keywords: general
#% keywords: gui
-#% keywords: graphical modeler
-#% keywords: workflow
+#% keywords: raster
+#% keywords: landscape structure analysis
#%end
import os
import sys
-
-import wx
import gettext
+import wx
import grass.script as grass
sys.path.append(os.path.join(os.environ['GISBASE'], "etc", "gui", "wxpython"))
@@ -39,7 +38,6 @@
from core.giface import StandaloneGrassInterface
from rlisetup.frame import RLiSetupFrame
-
def main():
import gettext
gettext.install('grasswxpy', os.path.join(os.getenv("GISBASE"), 'locale'), unicode = True)
More information about the grass-commit
mailing list