Przeglądaj źródła

g.gui.rlisetup - fix module's description
update manual, link other g.gui modules


git-svn-id: https://svn.osgeo.org/grass/grass/trunk@54201 15284696-431f-4ddb-bdfa-cd5b030d7da7

Martin Landa 12 lat temu
rodzic
commit
74ca37e147

+ 13 - 6
gui/wxpython/rlisetup/g.gui.rlisetup.html

@@ -1,10 +1,10 @@
-<!-- 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>
 
@@ -14,9 +14,16 @@ which allows the user to create a configuration file for r.li modules.
 </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>

+ 6 - 8
gui/wxpython/rlisetup/g.gui.rlisetup.py

@@ -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 @@ sys.path.append(os.path.join(os.environ['GISBASE'], "etc", "gui", "wxpython"))
 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)