[GRASS-SVN] r46052 - in grass/branches/releasebranch_6_4: db/base db/db.login raster/r.in.arc raster/r.in.gridatb raster/r.in.mat raster/r.out.arc raster/r.out.gridatb raster/r.out.mpeg raster/r.out.png raster/r.out.pov raster/r.out.ppm3 raster/r.out.vtk vector/v.mkgrid vector/v.out.vtk vector/v.patch vector/v.surf.rst vector/v.vol.rst

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Apr 20 05:10:41 EDT 2011


Author: neteler
Date: 2011-04-20 02:10:41 -0700 (Wed, 20 Apr 2011)
New Revision: 46052

Modified:
   grass/branches/releasebranch_6_4/db/base/connect.c
   grass/branches/releasebranch_6_4/db/db.login/main.c
   grass/branches/releasebranch_6_4/raster/r.in.arc/main.c
   grass/branches/releasebranch_6_4/raster/r.in.gridatb/main.c
   grass/branches/releasebranch_6_4/raster/r.in.mat/main.c
   grass/branches/releasebranch_6_4/raster/r.out.arc/main.c
   grass/branches/releasebranch_6_4/raster/r.out.gridatb/main.c
   grass/branches/releasebranch_6_4/raster/r.out.mpeg/main.c
   grass/branches/releasebranch_6_4/raster/r.out.png/r.out.png.c
   grass/branches/releasebranch_6_4/raster/r.out.pov/main.c
   grass/branches/releasebranch_6_4/raster/r.out.ppm3/main.c
   grass/branches/releasebranch_6_4/raster/r.out.vtk/main.c
   grass/branches/releasebranch_6_4/vector/v.mkgrid/main.c
   grass/branches/releasebranch_6_4/vector/v.out.vtk/main.c
   grass/branches/releasebranch_6_4/vector/v.patch/main.c
   grass/branches/releasebranch_6_4/vector/v.surf.rst/main.c
   grass/branches/releasebranch_6_4/vector/v.vol.rst/main.c
Log:
some keyword cleanup

Modified: grass/branches/releasebranch_6_4/db/base/connect.c
===================================================================
--- grass/branches/releasebranch_6_4/db/base/connect.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/db/base/connect.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -42,7 +42,7 @@
 
     /* Set description */
     module = G_define_module();
-    module->keywords = _("database, attribute table");
+    module->keywords = _("database, attribute table, connection settings");
     module->description =
 	_("Prints/sets general DB connection for current mapset and exits.");
 

Modified: grass/branches/releasebranch_6_4/db/db.login/main.c
===================================================================
--- grass/branches/releasebranch_6_4/db/db.login/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/db/db.login/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -40,7 +40,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("database, SQL");
+    module->keywords = _("database, connection settings");
     module->description = _("Sets user/password for driver/database.");
 
     driver = G_define_standard_option(G_OPT_DRIVER);

Modified: grass/branches/releasebranch_6_4/raster/r.in.arc/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.in.arc/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.in.arc/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -56,7 +56,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, import");
     module->description =
 	_("Converts an ESRI ARC/INFO ascii raster file (GRID) "
 	  "into a (binary) raster map layer.");

Modified: grass/branches/releasebranch_6_4/raster/r.in.gridatb/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.in.gridatb/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.in.gridatb/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -38,7 +38,7 @@
 
     /* Set description */
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, import");
     module->description =
 	_("Imports GRIDATB.FOR map file (TOPMODEL) into GRASS raster map");
 

Modified: grass/branches/releasebranch_6_4/raster/r.in.mat/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.in.mat/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.in.mat/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -89,7 +89,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, import");
     module->description =
 	_("Imports a binary MAT-File(v4) to a GRASS raster.");
 

Modified: grass/branches/releasebranch_6_4/raster/r.out.arc/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.out.arc/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.out.arc/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -57,7 +57,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, export");
     module->description =
 	_("Converts a raster map layer into an ESRI ARCGRID file.");
 

Modified: grass/branches/releasebranch_6_4/raster/r.out.gridatb/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.out.gridatb/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.out.gridatb/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -41,7 +41,7 @@
 
     /* Set description */
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, export");
     module->description =
 	_("Exports GRASS raster map to GRIDATB.FOR map file (TOPMODEL)");
 

Modified: grass/branches/releasebranch_6_4/raster/r.out.mpeg/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.out.mpeg/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.out.mpeg/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -381,7 +381,7 @@
     int i, j, k, numi, wildnum;
 
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, export");
     module->description = _("Raster File Series to MPEG Conversion Program.");
 
     *numviews = *numframes = 0;

Modified: grass/branches/releasebranch_6_4/raster/r.out.png/r.out.png.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.out.png/r.out.png.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.out.png/r.out.png.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -107,7 +107,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster, png");
+    module->keywords = _("raster, export, png");
     module->description =
 	_("Export GRASS raster as non-georeferenced PNG image.");
 

Modified: grass/branches/releasebranch_6_4/raster/r.out.pov/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.out.pov/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.out.pov/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -118,7 +118,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, export");
     module->description =
 	_("Converts a raster map layer into a height-field file for POVRAY.");
 

Modified: grass/branches/releasebranch_6_4/raster/r.out.ppm3/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.out.ppm3/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.out.ppm3/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -54,7 +54,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, export");
     module->description =
 	_("Converts 3 GRASS raster layers (R,G,B) to a PPM image file "
 	  "at the pixel resolution of the CURRENTLY DEFINED REGION.");

Modified: grass/branches/releasebranch_6_4/raster/r.out.vtk/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.out.vtk/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/raster/r.out.vtk/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -145,7 +145,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, export");
     module->description = _("Converts raster maps into the VTK-Ascii format");
 
     /* Get parameters from user */

Modified: grass/branches/releasebranch_6_4/vector/v.mkgrid/main.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.mkgrid/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/vector/v.mkgrid/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -60,7 +60,7 @@
 
     /* Set description */
     module = G_define_module();
-    module->keywords = _("vector");
+    module->keywords = _("vector, geometry");
     module->description =
 	_("Creates a GRASS vector map of a user-defined grid.");
 

Modified: grass/branches/releasebranch_6_4/vector/v.out.vtk/main.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.out.vtk/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/vector/v.out.vtk/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -43,7 +43,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("vector");
+    module->keywords = _("vector, export");
     module->description =
 	_("Converts a GRASS binary vector map to VTK ASCII output.");
 

Modified: grass/branches/releasebranch_6_4/vector/v.patch/main.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.patch/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/vector/v.patch/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -65,7 +65,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("vector");
+    module->keywords = _("vector, geometry");
     module->description = _("Create a new vector map layer "
 			    "by combining other vector map layers.");
 

Modified: grass/branches/releasebranch_6_4/vector/v.surf.rst/main.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.surf.rst/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/vector/v.surf.rst/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -161,7 +161,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("vector");
+    module->keywords = _("vector, interpolation");
     module->description =
 	_("Spatial approximation and topographic analysis from given "
 	  "point or isoline data in vector format to floating point "

Modified: grass/branches/releasebranch_6_4/vector/v.vol.rst/main.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.vol.rst/main.c	2011-04-20 09:09:41 UTC (rev 46051)
+++ grass/branches/releasebranch_6_4/vector/v.vol.rst/main.c	2011-04-20 09:10:41 UTC (rev 46052)
@@ -199,7 +199,7 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("vector");
+    module->keywords = _("vector, interpolation");
     module->description =
 	_("Interpolates point data to a G3D grid volume using "
 	  "regularized spline with tension (RST) algorithm.");



More information about the grass-commit mailing list