[GRASS-SVN] r52601 - in grass/trunk: gui/wxpython/core gui/wxpython/dbmgr gui/wxpython/gui_core gui/wxpython/mapdisp gui/wxpython/nviz gui/wxpython/psmap gui/wxpython/vdigit include lib/db/dbmi_base lib/display lib/gis lib/imagery lib/ogsf lib/proj lib/python lib/python/temporal lib/raster lib/segment lib/sites lib/vector/Vlib
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Aug 8 23:51:26 PDT 2012
Author: wenzeslaus
Date: 2012-08-08 23:51:25 -0700 (Wed, 08 Aug 2012)
New Revision: 52601
Modified:
grass/trunk/gui/wxpython/core/gcmd.py
grass/trunk/gui/wxpython/core/render.py
grass/trunk/gui/wxpython/core/settings.py
grass/trunk/gui/wxpython/dbmgr/manager.py
grass/trunk/gui/wxpython/gui_core/gselect.py
grass/trunk/gui/wxpython/mapdisp/mapwindow.py
grass/trunk/gui/wxpython/nviz/mapwindow.py
grass/trunk/gui/wxpython/psmap/menudata.py
grass/trunk/gui/wxpython/vdigit/wxdigit.py
grass/trunk/gui/wxpython/vdigit/wxdisplay.py
grass/trunk/include/ogsf.h
grass/trunk/lib/db/dbmi_base/xdrprocedure.c
grass/trunk/lib/display/r_raster.c
grass/trunk/lib/display/raster.c
grass/trunk/lib/display/setup.c
grass/trunk/lib/gis/alloc.c
grass/trunk/lib/gis/color_rules.c
grass/trunk/lib/gis/list.c
grass/trunk/lib/gis/location.c
grass/trunk/lib/gis/make_loc.c
grass/trunk/lib/gis/make_mapset.c
grass/trunk/lib/gis/parser.c
grass/trunk/lib/gis/rd_cellhd.c
grass/trunk/lib/imagery/iclass.c
grass/trunk/lib/imagery/iclass_perimeter.c
grass/trunk/lib/imagery/iclass_statistics.c
grass/trunk/lib/ogsf/GS2.c
grass/trunk/lib/ogsf/gs_query.c
grass/trunk/lib/ogsf/gvl_file.c
grass/trunk/lib/proj/local_proto.h
grass/trunk/lib/python/task.py
grass/trunk/lib/python/temporal/base.py
grass/trunk/lib/raster/color_look.c
grass/trunk/lib/raster/init.c
grass/trunk/lib/raster/null_val.c
grass/trunk/lib/raster/quant_rw.c
grass/trunk/lib/raster/window_map.c
grass/trunk/lib/segment/close.c
grass/trunk/lib/segment/format.c
grass/trunk/lib/segment/get.c
grass/trunk/lib/segment/get_row.c
grass/trunk/lib/segment/open.c
grass/trunk/lib/segment/put.c
grass/trunk/lib/segment/put_row.c
grass/trunk/lib/segment/release.c
grass/trunk/lib/segment/seek.c
grass/trunk/lib/segment/setup.c
grass/trunk/lib/sites/sites.c
grass/trunk/lib/vector/Vlib/dbcolumns.c
grass/trunk/lib/vector/Vlib/header_finfo.c
grass/trunk/lib/vector/Vlib/level_two.c
Log:
dox: fixing several doxygen warnings (wrong file names, typos, lt gt chars)
Modified: grass/trunk/gui/wxpython/core/gcmd.py
===================================================================
--- grass/trunk/gui/wxpython/core/gcmd.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/core/gcmd.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -103,7 +103,7 @@
@param message error message
@param parent centre window on parent if given
@param caption window caption (if not given "Error")
- @showTraceback True to show also Python traceback
+ @param showTraceback True to show also Python traceback
"""
if not caption:
caption = _('Error')
Modified: grass/trunk/gui/wxpython/core/render.py
===================================================================
--- grass/trunk/gui/wxpython/core/render.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/core/render.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1191,7 +1191,7 @@
@param l_render render an image (if True)
@return new layer on success
- @retutn None on failure
+ @return None on failure
"""
Debug.msg (2, "Map.AddOverlay(): cmd=%s, render=%d" % (command, l_render))
overlay = Overlay(id = id, type = type, cmd = command,
@@ -1254,7 +1254,7 @@
@return list of overlays (list=True)
@return overlay (list=False)
- @retur None (list=False) if no overlay or more overlays found
+ @return None (list=False) if no overlay or more overlays found
"""
ovl = []
for overlay in self.overlays:
Modified: grass/trunk/gui/wxpython/core/settings.py
===================================================================
--- grass/trunk/gui/wxpython/core/settings.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/core/settings.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1118,7 +1118,7 @@
def Reset(self, key = None):
"""!Reset to default settings
- @key key in settings dict (None for all keys)
+ @param key key in settings dict (None for all keys)
"""
if not key:
self.userSettings = copy.deepcopy(self.defaultSettings)
Modified: grass/trunk/gui/wxpython/dbmgr/manager.py
===================================================================
--- grass/trunk/gui/wxpython/dbmgr/manager.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/dbmgr/manager.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -532,7 +532,7 @@
"""!GRASS Attribute Table Manager window
@param parent parent window
- @parem id window id
+ @param id window id
@param title window title or None for default title
@param vetorName name of vector map
@param item item from Layer Tree
Modified: grass/trunk/gui/wxpython/gui_core/gselect.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/gselect.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/gui_core/gselect.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -126,7 +126,7 @@
select vector maps. Control allows to filter vector maps. If you
don't need this feature use Select class instead
- @ftype filter vector maps based on feature type
+ @param ftype filter vector maps based on feature type
"""
Select.__init__(self, parent = parent, id = wx.ID_ANY,
type = 'vector', **kwargs)
Modified: grass/trunk/gui/wxpython/mapdisp/mapwindow.py
===================================================================
--- grass/trunk/gui/wxpython/mapdisp/mapwindow.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/mapdisp/mapwindow.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -918,7 +918,7 @@
@param rotation rotate symbol
@param text draw also text (text, font, color, rotation)
@param textAlign alignment (default 'lower-right')
- @textOffset offset for text (from center point)
+ @param textOffset offset for text (from center point)
"""
Debug.msg(4, "BufferedWindow.DrawCross(): pdc=%s, coords=%s, size=%d" % \
(pdc, coords, size))
Modified: grass/trunk/gui/wxpython/nviz/mapwindow.py
===================================================================
--- grass/trunk/gui/wxpython/nviz/mapwindow.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/nviz/mapwindow.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -253,7 +253,7 @@
def ComputeFlyValues(self, mx, my):
"""!Compute parameters for fly-through navigation
- @params mx,my results from ComputeMxMy method
+ @param mx,my results from ComputeMxMy method
"""
self.fly['value'] = [0, 0, 0]
Modified: grass/trunk/gui/wxpython/psmap/menudata.py
===================================================================
--- grass/trunk/gui/wxpython/psmap/menudata.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/psmap/menudata.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -23,7 +23,7 @@
def __init__(self, path = None):
"""!Menu for Cartographic Composer (psmap.py)
- @path path to XML to be read (None for menudata_psmap.xml)
+ @param path path to XML to be read (None for menudata_psmap.xml)
"""
if not path:
path = os.path.join(globalvar.ETCWXDIR, 'xml', 'menudata_psmap.xml')
Modified: grass/trunk/gui/wxpython/vdigit/wxdigit.py
===================================================================
--- grass/trunk/gui/wxpython/vdigit/wxdigit.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/vdigit/wxdigit.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -128,7 +128,7 @@
def __init__(self, mapwindow):
"""!Base class for vector digitizer (ctypes interface)
- @parem mapwindow reference for map window (BufferedWindow)
+ @param mapwindow reference for map window (BufferedWindow)
"""
self.poMapInfo = None # pointer to Map_info
self.mapWindow = mapwindow
Modified: grass/trunk/gui/wxpython/vdigit/wxdisplay.py
===================================================================
--- grass/trunk/gui/wxpython/vdigit/wxdisplay.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/gui/wxpython/vdigit/wxdisplay.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -918,7 +918,7 @@
@todo map units
- @alpha color value for aplha channel
+ @param alpha color value for aplha channel
"""
color = dict()
for key in self.settings.keys():
Modified: grass/trunk/include/ogsf.h
===================================================================
--- grass/trunk/include/ogsf.h 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/include/ogsf.h 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,5 +1,5 @@
/*!
- \file include/ogsf.c
+ \file include/ogsf.h
\brief OGSF header file (structures)
Modified: grass/trunk/lib/db/dbmi_base/xdrprocedure.c
===================================================================
--- grass/trunk/lib/db/dbmi_base/xdrprocedure.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/db/dbmi_base/xdrprocedure.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -47,7 +47,7 @@
\param n
\return DB_OK ok
- \returnDB_EOF eof from client
+ \return DB_EOF eof from client
*/
int db__recv_procnum(int *n)
{
Modified: grass/trunk/lib/display/r_raster.c
===================================================================
--- grass/trunk/lib/display/r_raster.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/display/r_raster.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -176,7 +176,7 @@
\brief Append command to the cmd file
Cmd file is created by d.mon by defining GRASS variable
- MONITOR_<name>_CMDFILE, where <name> is name of the monitor.
+ \c MONITOR_<name>_CMDFILE, where \c \<name\> is name of the monitor.
Command string is usually generated by G_recreate_command(), NULL is
used to clean up list of commands (see d.erase command).
Modified: grass/trunk/lib/display/raster.c
===================================================================
--- grass/trunk/lib/display/raster.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/display/raster.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,5 +1,5 @@
/*!
- \file lib/driver/raster.c
+ \file lib/display/raster.c
\brief Display Driver - draw raster data
Modified: grass/trunk/lib/display/setup.c
===================================================================
--- grass/trunk/lib/display/setup.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/display/setup.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,5 +1,5 @@
/*!
- \file lib/driver/setup.c
+ \file lib/display/setup.c
\brief Display Driver - setup
Modified: grass/trunk/lib/gis/alloc.c
===================================================================
--- grass/trunk/lib/gis/alloc.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/gis/alloc.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,5 +1,5 @@
/*!
- * \file fis/alloc.c
+ * \file lib/gis/alloc.c
*
* \brief GIS Library - Memory allocation routines.
*
Modified: grass/trunk/lib/gis/color_rules.c
===================================================================
--- grass/trunk/lib/gis/color_rules.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/gis/color_rules.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,5 +1,5 @@
/*!
- \file lib/gis/color_tables.c
+ \file lib/gis/color_rules.c
\brief GIS Library - Color tables management subroutines
Modified: grass/trunk/lib/gis/list.c
===================================================================
--- grass/trunk/lib/gis/list.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/gis/list.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -36,7 +36,7 @@
lister (char *name char *mapset, char* buf)
\endcode
- Given file <em>name</em>, and </em>mapset</em>, lister() should
+ Given file <em>name</em>, and <em>mapset</em>, lister() should
copy a string into 'buf' when called with name == "", should set
buf to general title for mapset list.
Modified: grass/trunk/lib/gis/location.c
===================================================================
--- grass/trunk/lib/gis/location.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/gis/location.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -28,7 +28,6 @@
* should be used by modules that need to display the current location
* to the user. See Locations for an explanation of locations.
*
- * \param
* \return char* tolocation name
*/
@@ -46,7 +45,6 @@
* directory, this routine will return a string which looks like
* <i>/home/user/grassdata/spearfish</i>.
*
- * \param
* \return char *
*/
@@ -67,7 +65,6 @@
/*!
* \brief Get current location path
*
- * \param
* \return char* to location path
*/
char *G__location_path(void)
Modified: grass/trunk/lib/gis/make_loc.c
===================================================================
--- grass/trunk/lib/gis/make_loc.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/gis/make_loc.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -86,26 +86,26 @@
* This function creates a new location in the current database,
* initializes the projection, default window and current window.
*
- * \param char * location_name
+ * \param location_name
* The name of the new location. Should not include
* the full path, the location will be created within
* the current database.
- * \param struct Cell_head *wind
+ * \param wind
* Contains the default window setting for the
* new location. All fields should be set in this
* structure, and care should be taken to ensure that
* the proj/zone fields match the definition in the
* proj_info parameter (see G_set_cellhd_from_projinfo()).
*
- * \param struct Key_Value *proj_info
+ * \param proj_info
* Projection definition suitable to write to the
* PROJ_INFO file, or NULL for PROJECTION_XY.
*
- * \param struct Key_Value *proj_units
+ * \param proj_units
* Projection units suitable to write to the PROJ_UNITS
* file, or NULL.
*
- * \param FILE *report_file
+ * \param report_file
* File to which creation information should be written
* (can be stdout). Currently not used.
*
Modified: grass/trunk/lib/gis/make_mapset.c
===================================================================
--- grass/trunk/lib/gis/make_mapset.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/gis/make_mapset.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -86,13 +86,13 @@
* This function creates a new mapset in the current location,
* initializes default window and current window.
*
- * \param char * gisdbase_name
+ * \param gisdbase_name
* The full path of GISDBASE to create mapset in.
* If NULL then current GISDBASE is used.
- * \param char * location_name
+ * \param location_name
* The name location to create mapset in.
* If NULL then current location is used.
- * \param char * mapset_name
+ * \param mapset_name
* The name of the new mapset. Should not include
* the full path, the mapset will be created within
* the current database and location.
Modified: grass/trunk/lib/gis/parser.c
===================================================================
--- grass/trunk/lib/gis/parser.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/gis/parser.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -761,7 +761,7 @@
}
/*!
- \Get overwrite value
+ \brief Get overwrite value
\return 1 overwrite enabled
\return 0 overwrite disabled
Modified: grass/trunk/lib/gis/rd_cellhd.c
===================================================================
--- grass/trunk/lib/gis/rd_cellhd.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/gis/rd_cellhd.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -46,7 +46,7 @@
#define TEST(x) (flags&(1<<x))
/*!
- \bried Read cell header (for internal use only)
+ \brief Read cell header (for internal use only)
\param fp file descriptor
\param[out] cellhd pointer to Cell_head structure
Modified: grass/trunk/lib/imagery/iclass.c
===================================================================
--- grass/trunk/lib/imagery/iclass.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/imagery/iclass.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -39,7 +39,7 @@
\param statistics pointer to bands statistics
\param refer pointer to band files structure
- \param vector_map name of vector map with training areas
+ \param map_info vector map with training areas
\param layer_name vector layer
\param group name of imagery group
\param raster_name name of temporary raster map (to be created)
Modified: grass/trunk/lib/imagery/iclass_perimeter.c
===================================================================
--- grass/trunk/lib/imagery/iclass_perimeter.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/imagery/iclass_perimeter.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -40,7 +40,7 @@
/*!
\brief Creates perimeters from vector areas of given category.
- \param vector_map name of vector map
+ \param Map vector map
\param layer_name layer name (within vector map)
\param category vector category (cat column value)
\param[out] perimeters list of perimeters
Modified: grass/trunk/lib/imagery/iclass_statistics.c
===================================================================
--- grass/trunk/lib/imagery/iclass_statistics.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/imagery/iclass_statistics.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -104,7 +104,6 @@
Frees all allocated arrays in statistics structure.
\param statistics pointer to statistics structure
- \param nbands number of band files
*/
void I_iclass_free_statistics(IClass_statistics * statistics)
{
@@ -185,7 +184,7 @@
/*!
\brief Calculate statistics for one training area.
- \param statistics[out] pointer to statistics structure
+ \param[out] statistics pointer to statistics structure
\param perimeter area perimeter
\param band_buffer buffer to read band rows into
\param band_fd band files descriptors
Modified: grass/trunk/lib/ogsf/GS2.c
===================================================================
--- grass/trunk/lib/ogsf/GS2.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/ogsf/GS2.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -713,8 +713,7 @@
\param id surface id
\param x1,y1,x2,y2 line nodes
- \param lasp ?
- \paran n ?
+
\return number of points used
*/
int GS_draw_nline_onsurf(int id, float x1, float y1, float x2, float y2,
@@ -2876,7 +2875,7 @@
10ths of degrees off twelve o'clock
- \params t tenths of degrees clockwise from 12:00.
+ \param t tenths of degrees clockwise from 12:00.
*/
void GS_set_twist(int t)
{
Modified: grass/trunk/lib/ogsf/gs_query.c
===================================================================
--- grass/trunk/lib/ogsf/gs_query.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/ogsf/gs_query.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -37,7 +37,7 @@
/*!
- \biref Crude method of intersecting line of sight with closest part of surface.
+ \brief Crude method of intersecting line of sight with closest part of surface.
Uses los vector to determine the point of first intersection
which is returned in point. Returns 0 if los doesn't intersect.
@@ -175,7 +175,7 @@
}
/*!
- \biref Crude method of intersecting line of sight with closest part of surface.
+ \brief Crude method of intersecting line of sight with closest part of surface.
This version uses the shadow of the los projected down to
the surface to generate a line_on_surf, then follows each
Modified: grass/trunk/lib/ogsf/gvl_file.c
===================================================================
--- grass/trunk/lib/ogsf/gvl_file.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/ogsf/gvl_file.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -131,7 +131,7 @@
\brief Find file with name and type in geovol_file array an return handle
\param name file name
- \para begin
+ \param begin
\param data id
\param -1 not found
@@ -680,7 +680,7 @@
\param vf pointer to geovol_file struct
\param x,y,z real point
- \oaram[out] value data value
+ \param[out] value data value
\return -1 on failure
\return 1 on success
Modified: grass/trunk/lib/proj/local_proto.h
===================================================================
--- grass/trunk/lib/proj/local_proto.h 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/proj/local_proto.h 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- \file lib/proj/local_proto.hlocal_proto.h
+ \file lib/proj/local_proto.h
\brief GProj library
Modified: grass/trunk/lib/python/task.py
===================================================================
--- grass/trunk/lib/python/task.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/python/task.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -198,7 +198,7 @@
@param ignoreErrors True to return whatever has been built so
far, even though it would not be a correct command for GRASS
@param ignoreRequired True to ignore required flags, otherwise
- '<required>' is shown
+ '@<required@>' is shown
@param ignoreDefault True to ignore parameters with default values
"""
cmd = [self.name]
Modified: grass/trunk/lib/python/temporal/base.py
===================================================================
--- grass/trunk/lib/python/temporal/base.py 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/python/temporal/base.py 2012-08-09 06:51:25 UTC (rev 52601)
@@ -37,9 +37,9 @@
"""!Convert the internal dictionary into a string of semicolon separated SQL statements
The keys are the column names and the values are the row entries
- @type must be SELECT. INSERT, UPDATE
- @table The name of the table to select, insert or update
- @where The optional where statement
+ @param type must be SELECT. INSERT, UPDATE
+ @param table The name of the table to select, insert or update
+ @param where The optional where statement
@return the sql string
"""
Modified: grass/trunk/lib/raster/color_look.c
===================================================================
--- grass/trunk/lib/raster/color_look.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/raster/color_look.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,5 +1,5 @@
/*!
- * \file raster/color_lookup.c
+ * \file lib/raster/color_look.c
*
* \brief Raster Library - Lookup array of colors
*
Modified: grass/trunk/lib/raster/init.c
===================================================================
--- grass/trunk/lib/raster/init.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/raster/init.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file rasterinit.c
+ * \file lib/raster/init.c
*
* \brief Raster Library - Handles program initialization.
*
Modified: grass/trunk/lib/raster/null_val.c
===================================================================
--- grass/trunk/lib/raster/null_val.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/raster/null_val.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,5 +1,5 @@
/*!
- * \file raster/null_value.c
+ * \file lib/raster/null_val.c
*
* \brief Raster Library - NULL value management
*
Modified: grass/trunk/lib/raster/quant_rw.c
===================================================================
--- grass/trunk/lib/raster/quant_rw.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/raster/quant_rw.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -66,7 +66,7 @@
* in <tt>f_range</tt> producing the integer range
* [<em>cmin,cmax</em>].
*
- * Make a rule for map <name> that maps floating range (d_min, d_max)
+ * Make a rule for map \<name\> that maps floating range (d_min, d_max)
* into integer range (min, max)
* This function is useful when the quant rule doesn't depend of the
* range of produced float data, for example the slope map whould
@@ -107,7 +107,7 @@
* 90] even if the range of slopes is not 0-90. The aspect map would be
* quantized from [0.0, 360.0] to [0, 360].
*
- * Make a rule for map <name> that maps floating range (d_min, d_max)
+ * Make a rule for map \<name\> that maps floating range (d_min, d_max)
* into integer range (min, max)
* This function is useful when the quant rule doesn't depend of the
* range of produced float data, for example the slope map whould
Modified: grass/trunk/lib/raster/window_map.c
===================================================================
--- grass/trunk/lib/raster/window_map.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/raster/window_map.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,5 +1,5 @@
/*!
- * \file window_map.c
+ * \file lib/raster/window_map.c
*
* \brief Raster Library - Window mapping functions.
*
Modified: grass/trunk/lib/segment/close.c
===================================================================
--- grass/trunk/lib/segment/close.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/close.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,5 +1,5 @@
/**
- * \file close.c
+ * \file lib/segment/close.c
*
* \brief Segment closing routine.
*
Modified: grass/trunk/lib/segment/format.c
===================================================================
--- grass/trunk/lib/segment/format.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/format.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file format.c
+ * \file lib/segment/format.c
*
* \brief Segment formatting routines.
*
Modified: grass/trunk/lib/segment/get.c
===================================================================
--- grass/trunk/lib/segment/get.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/get.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file get.c
+ * \file lib/segment/get.c
*
* \brief Get segment routines.
*
Modified: grass/trunk/lib/segment/get_row.c
===================================================================
--- grass/trunk/lib/segment/get_row.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/get_row.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file get_row.c
+ * \file lib/segment/get_row.c
*
* \brief Segment row retrieval routines.
*
Modified: grass/trunk/lib/segment/open.c
===================================================================
--- grass/trunk/lib/segment/open.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/open.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file open.c
+ * \file lib/segment/open.c
*
* \brief Segment creation routine.
*
Modified: grass/trunk/lib/segment/put.c
===================================================================
--- grass/trunk/lib/segment/put.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/put.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file put.c
+ * \file lib/segment/put.c
*
* \brief Segment write routines.
*
Modified: grass/trunk/lib/segment/put_row.c
===================================================================
--- grass/trunk/lib/segment/put_row.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/put_row.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file put_row.c
+ * \file lib/segment/put_row.c
*
* \brief Write segment row routines.
*
Modified: grass/trunk/lib/segment/release.c
===================================================================
--- grass/trunk/lib/segment/release.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/release.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file release.c
+ * \file lib/segment/release.c
*
* \brief Segment release routines.
*
Modified: grass/trunk/lib/segment/seek.c
===================================================================
--- grass/trunk/lib/segment/seek.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/seek.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file seek.c
+ * \file lib/segment/seek.c
*
* \brief Segment seek routines.
*
Modified: grass/trunk/lib/segment/setup.c
===================================================================
--- grass/trunk/lib/segment/setup.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/segment/setup.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -1,6 +1,6 @@
/**
- * \file setup.c
+ * \file lib/segment/setup.c
*
* \brief Segment setup routines.
*
Modified: grass/trunk/lib/sites/sites.c
===================================================================
--- grass/trunk/lib/sites/sites.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/sites/sites.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -4,9 +4,9 @@
These functions and definitions support the site format for 5.0
(format proposed by Dave Gerdes):
- <pre>
+ \verbatim
easting|northing|[z|[d4|]...][#category_int] [ [@attr_text OR %flt] ... ]
- </pre>
+ \endverbatim
to allow multidimensions (everything preceding the last '|') and any
number of text or numeric attribute fields.
Modified: grass/trunk/lib/vector/Vlib/dbcolumns.c
===================================================================
--- grass/trunk/lib/vector/Vlib/dbcolumns.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/vector/Vlib/dbcolumns.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -151,7 +151,7 @@
\param field layer number
\return list of column(s) types on success
- \retutn NULL on error
+ \return NULL on error
*/
const char *Vect_get_column_names_types(const struct Map_info *Map, int field)
{
Modified: grass/trunk/lib/vector/Vlib/header_finfo.c
===================================================================
--- grass/trunk/lib/vector/Vlib/header_finfo.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/vector/Vlib/header_finfo.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -58,7 +58,7 @@
Returns:
- layer name for OGR format (GV_FORMAT_OGR and GV_FORMAT_OGR_DIRECT)
- - table name for PostGIS format (GV_FORMAT_POSTGIS) including schema (<schema>.<table>)
+ - table name for PostGIS format (GV_FORMAT_POSTGIS) including schema (\<schema\>.\<table\>)
Note: allocated string should be freed by G_free()
Modified: grass/trunk/lib/vector/Vlib/level_two.c
===================================================================
--- grass/trunk/lib/vector/Vlib/level_two.c 2012-08-08 15:41:05 UTC (rev 52600)
+++ grass/trunk/lib/vector/Vlib/level_two.c 2012-08-09 06:51:25 UTC (rev 52601)
@@ -40,7 +40,7 @@
\brief Get number of primitives in vector map
\param map pointer to Map_info struct
- \patam type feature type
+ \param type feature type
\return number of primitives
*/
More information about the grass-commit
mailing list