[GRASS-SVN] r48624 - grass/branches/develbranch_6/imagery/i.group

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Oct 5 03:46:45 EDT 2011


Author: martinl
Date: 2011-10-05 00:46:45 -0700 (Wed, 05 Oct 2011)
New Revision: 48624

Modified:
   grass/branches/develbranch_6/imagery/i.group/main.c
Log:
i.group: more guisections
	 (merge r48623 from trunk)


Modified: grass/branches/develbranch_6/imagery/i.group/main.c
===================================================================
--- grass/branches/develbranch_6/imagery/i.group/main.c	2011-10-05 07:45:09 UTC (rev 48623)
+++ grass/branches/develbranch_6/imagery/i.group/main.c	2011-10-05 07:46:45 UTC (rev 48624)
@@ -11,7 +11,7 @@
  *               Hamish Bowman <hamish_b yahoo.com>
  * PURPOSE:      collect raster map layers into an imagery group by assigning 
  *               them to user-named subgroups or other groups
- * COPYRIGHT:    (C) 2001-2007 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2001-2007, 2011 by the GRASS Development Team
  *
  *               This program is free software under the GNU General Public
  *               License (>=v2). Read the file COPYING that comes with GRASS
@@ -51,7 +51,7 @@
     module = G_define_module();
     module->keywords = _("imagery, map management");
     module->description =
-	_("Creates, edits, and lists groups and subgroups of imagery files.");
+	_("Creates, edits, and lists groups and subgroups of imagery data.");
 
     /* Get Args */
     grp = G_define_standard_option(G_OPT_I_GROUP);
@@ -66,11 +66,13 @@
     rast = G_define_standard_option(G_OPT_R_INPUTS);
     rast->required = NO;	/* -l flag */
     rast->description = _("Name of raster map(s) to include in group");
+    rast->guisection = _("Maps");
 
     r = G_define_flag();
     r->key = 'r';
     r->description = _("Remove selected files from specified group");
-
+    r->guisection = _("Maps");
+    
     l = G_define_flag();
     l->key = 'l';
     l->description = _("List files from specified (sub)group (fancy)");



More information about the grass-commit mailing list