[GRASS-SVN] r41554 - grass/branches/develbranch_6/gui/wxpython/xml
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Mar 26 06:34:46 EDT 2010
Author: martinl
Date: 2010-03-26 06:34:27 -0400 (Fri, 26 Mar 2010)
New Revision: 41554
Modified:
grass/branches/develbranch_6/gui/wxpython/xml/menudata.xml
Log:
menudata updated (db.* & v.db.*)
Modified: grass/branches/develbranch_6/gui/wxpython/xml/menudata.xml
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/xml/menudata.xml 2010-03-26 10:32:13 UTC (rev 41553)
+++ grass/branches/develbranch_6/gui/wxpython/xml/menudata.xml 2010-03-26 10:34:27 UTC (rev 41554)
@@ -364,8 +364,8 @@
</menuitem>
<menuitem>
<label>PNG export</label>
- <help>Export GRASS raster as non-georeferenced PNG image format.</help>
- <keywords>raster</keywords>
+ <help>Export GRASS raster as non-georeferenced PNG image.</help>
+ <keywords>raster,png</keywords>
<handler>self.OnMenuCmd</handler>
<command>r.out.png</command>
</menuitem>
@@ -2083,7 +2083,7 @@
</menuitem>
<menuitem>
<label>Display shortest route (requires XTerm)</label>
- <help>Finds shortest path for selected starting and ending node.</help>
+ <help>Find shortest path for selected starting and ending node</help>
<keywords>display,networking</keywords>
<handler>self.OnXTerm</handler>
<command>d.path.sh</command>
@@ -2673,32 +2673,32 @@
<label>Database information</label>
<items>
<menuitem>
- <label>Describe table</label>
- <help>Describes a table in detail.</help>
+ <label>List drivers</label>
+ <help>List all database drivers.</help>
<keywords>database,attribute table</keywords>
<handler>self.OnMenuCmd</handler>
- <command>db.describe</command>
+ <command>db.drivers</command>
</menuitem>
<menuitem>
- <label>List columns</label>
- <help>List all columns for a given table.</help>
+ <label>List tables</label>
+ <help>Lists all tables for a given database.</help>
<keywords>database,attribute table</keywords>
<handler>self.OnMenuCmd</handler>
- <command>db.columns</command>
+ <command>db.tables</command>
</menuitem>
<menuitem>
- <label>List drivers</label>
- <help>List all database drivers.</help>
+ <label>Describe table</label>
+ <help>Describes a table in detail.</help>
<keywords>database,attribute table</keywords>
<handler>self.OnMenuCmd</handler>
- <command>db.drivers</command>
+ <command>db.describe</command>
</menuitem>
<menuitem>
- <label>List tables</label>
- <help>Lists all tables for a given database.</help>
+ <label>List columns</label>
+ <help>List all columns for a given table.</help>
<keywords>database,attribute table</keywords>
<handler>self.OnMenuCmd</handler>
- <command>db.tables</command>
+ <command>db.columns</command>
</menuitem>
</items>
</menu>
@@ -2709,63 +2709,34 @@
<menuitem>
<label>Connect</label>
<help>Prints/sets general DB connection for current mapset and exits.</help>
- <keywords>database,attribute table</keywords>
+ <keywords>database,attribute table,connection settings</keywords>
<handler>self.OnMenuCmd</handler>
<command>db.connect</command>
</menuitem>
<menuitem>
<label>Login</label>
<help>Sets user/password for driver/database.</help>
- <keywords>database,SQL</keywords>
+ <keywords>database,connection</keywords>
<handler>self.OnMenuCmd</handler>
<command>db.login</command>
</menuitem>
<separator />
<menuitem>
+ <label>Drop table</label>
+ <help>Removes a table from database.</help>
+ <keywords>database,SQL</keywords>
+ <handler>self.OnMenuCmd</handler>
+ <command>db.droptable</command>
+ </menuitem>
+ <menuitem>
<label>Copy table</label>
<help>Copy a table.</help>
<keywords>database,attribute table,SQL</keywords>
<handler>self.OnMenuCmd</handler>
<command>db.copy</command>
</menuitem>
- <menuitem>
- <label>New table</label>
- <help>Creates and connects a new attribute table to a given layer of an existing vector map.</help>
- <keywords>vector,database,attribute table</keywords>
- <handler>self.OnMenuCmd</handler>
- <command>v.db.addtable</command>
- </menuitem>
- <menuitem>
- <label>Remove table</label>
- <help>Drops an attribute table.</help>
- <keywords>database,attribute table</keywords>
- <handler>self.OnMenuCmd</handler>
- <command>db.droptable</command>
- </menuitem>
<separator />
<menuitem>
- <label>Add columns</label>
- <help>Adds one or more columns to the attribute table connected to a given vector map.</help>
- <keywords>vector,database,attribute table</keywords>
- <handler>self.OnMenuCmd</handler>
- <command>v.db.addcol</command>
- </menuitem>
- <menuitem>
- <label>Change values</label>
- <help>Allows to update a column in the attribute table connected to a vector map.</help>
- <keywords>vector,database,attribute table</keywords>
- <handler>self.OnMenuCmd</handler>
- <command>v.db.update</command>
- </menuitem>
- <menuitem>
- <label>Rename column</label>
- <help>Renames a column in the attribute table connected to a given vector map.</help>
- <keywords>vector,database,attribute table</keywords>
- <handler>self.OnMenuCmd</handler>
- <command>v.db.renamecol</command>
- </menuitem>
- <separator />
- <menuitem>
<label>Test</label>
<help>Test database driver, database must exist and set by db.connect.</help>
<keywords>database,attribute table</keywords>
@@ -2805,7 +2776,59 @@
<label>Vector database connections</label>
<items>
<menuitem>
- <label>Reconnect vector to database</label>
+ <label>New table</label>
+ <help>Creates and connects a new attribute table to a given layer of an existing vector map.</help>
+ <keywords>vector,database,attribute table</keywords>
+ <handler>self.OnMenuCmd</handler>
+ <command>v.db.addtable</command>
+ </menuitem>
+ <menuitem>
+ <label>Remove table</label>
+ <help>Removes existing attribute table of a vector map.</help>
+ <keywords>vector,database,attribute table</keywords>
+ <handler>self.OnMenuCmd</handler>
+ <command>v.db.droptable</command>
+ </menuitem>
+ <menuitem>
+ <label>Join table</label>
+ <help>Allows to join a table to a vector map table.</help>
+ <keywords>vector,database,attribute table</keywords>
+ <handler>self.OnMenuCmd</handler>
+ <command>v.db.join</command>
+ </menuitem>
+ <separator />
+ <menuitem>
+ <label>Add columns</label>
+ <help>Adds one or more columns to the attribute table connected to a given vector map.</help>
+ <keywords>vector,database,attribute table</keywords>
+ <handler>self.OnMenuCmd</handler>
+ <command>v.db.addcol</command>
+ </menuitem>
+ <menuitem>
+ <label>Drop column</label>
+ <help>Drops a column from the attribute table connected to a given vector map.</help>
+ <keywords>vector,database,attribute table</keywords>
+ <handler>self.OnMenuCmd</handler>
+ <command>v.db.dropcol</command>
+ </menuitem>
+ <menuitem>
+ <label>Rename column</label>
+ <help>Renames a column in the attribute table connected to a given vector map.</help>
+ <keywords>vector,database,attribute table</keywords>
+ <handler>self.OnMenuCmd</handler>
+ <command>v.db.renamecol</command>
+ </menuitem>
+ <separator />
+ <menuitem>
+ <label>Change values</label>
+ <help>Allows to update a column in the attribute table connected to a vector map.</help>
+ <keywords>vector,database,attribute table</keywords>
+ <handler>self.OnMenuCmd</handler>
+ <command>v.db.update</command>
+ </menuitem>
+ <separator />
+ <menuitem>
+ <label>Reconnect vectors to database</label>
<help>Reconnects vectors to a new database.</help>
<keywords>vector,database,attribute table</keywords>
<handler>self.OnMenuCmd</handler>
More information about the grass-commit
mailing list