Skip to content
Permalink
Browse files
add missing svn:keywords
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13187 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Mar 28, 2010
1 parent 7d0a797 commit edd2b58
Show file tree
Hide file tree
Showing 26 changed files with 33 additions and 27 deletions.
@@ -158,7 +158,7 @@ example:
```

=== SVN Keyword ===
Each source file should contain the $Id$ keyword. This will be expanded by CVS
Each source file should contain the $Id$ keyword. This will be expanded by SVN
to contain useful information about the file, revision, last committer, and
date/time of last checkin.

@@ -168,6 +168,12 @@ top of each source file:
/* $Id$ */
```

You also need to set

svn propset svn:keywords "Id"

for the new files.

== Variable Names ==
Variable names begin with a lower case letter and are formed using mixed case.
```
@@ -14,7 +14,7 @@
* (at your option) any later version. *
* *
***************************************************************************/
/* $Id: $ */
/* $Id$ */
#include <iostream>

#include <QSettings>
@@ -14,7 +14,7 @@
* (at your option) any later version. *
* *
***************************************************************************/
/* $Id: $ */
/* $Id$ */

#include "qgstilescalewidget.h"
#include "qgsmapcanvas.h"
@@ -14,7 +14,7 @@
* (at your option) any later version. *
* *
***************************************************************************/
/* $Id: $ */
/* $Id$ */

#ifndef QGSTILESCALEWIDGET_H
#define QGSTILESCALEWIDGET_H
@@ -14,7 +14,7 @@
* (at your option) any later version. *
* *
***************************************************************************/
/* $Id: $ */
/* $Id$ */


#include "qgsprojectfiletransform.h"
@@ -22,7 +22,7 @@
* perform upgrades to a more recent version
*/

/* $Id: $ */
/* $Id$ */

#ifndef QGSPROJECTFILETRANSFORM_H
#define QGSPROJECTFILETRANSFORM_H
@@ -35,7 +35,7 @@
#include <QToolBar>

static const char *const sIdent =
"$Id: plugin.cpp 6935 2007-05-07 14:29:51Z wonder $";
"$Id$";
static const QString sName = QObject::tr( "Dxf2Shp Converter" );
static const QString sDescription = QObject::tr( "Converts from dxf to shp file format" );
static const QString sPluginVersion = QObject::tr( "Version 0.1" );
@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#include "evisdatabaseconnection.h"

#include <QStringList>
@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#ifndef EVISDATABASECONNECTION_H
#define EVISDATABASECONNECTION_H

@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#include "evisdatabaseconnectiongui.h"

#include "qgscontexthelp.h"
@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#ifndef eVisDatabaseConnectionGUI_H
#define eVisDatabaseConnectionGUI_H

@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#include "evisdatabaselayerfieldselectiongui.h"

/**
@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#ifndef eVisDatabaseLayerFieldSelectionGui_H
#define eVisDatabaseLayerFieldSelectionGui_H

@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#include "evisquerydefinition.h"

/**
@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#ifndef EVISQUERYDEFINITION_H
#define EVISQUERYDEFINITION_H

@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#include <QSettings>

#include "evisconfiguration.h"
@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#ifndef eVisConfiguration_H
#define eVisConfiguration_H

@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#include "evisgenericeventbrowsergui.h"

#include "qgsapplication.h"
@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#ifndef eVisGenericEventBrowserGui_H
#define eVisGenericEventBrowserGui_H

@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#include "evisimagedisplaywidget.h"

#include "qgsapplication.h"
@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#ifndef EVISIMAGEDISPLAYWIDGET_H
#define EVISIMAGEDISPLAYWIDGET_H

@@ -45,7 +45,7 @@
* ( at your option ) any later version. *
* *
***************************************************************************/
/* $Id: $ */
/* $Id$ */
#include "evis.h"

//
@@ -80,7 +80,7 @@
#define QGISEXTERN extern "C"
#endif

static const char * const sIdent = "$Id: $";
static const char * const sIdent = "$Id$";
static const QString sName = QObject::tr( "eVis" );
static const QString sDescription = QObject::tr( "An event visualization tool - view images associated with vector features" );
static const QString sPluginVersion = QObject::tr( "Version 1.1.0" );
@@ -63,7 +63,7 @@
* DON'T: separate variable names using underscores: my_variable_name ( NO! )
*
* **************************************************************************/
/* $Id: $ */
/* $Id$ */
#ifndef eVis_H
#define eVis_H

@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#include "eviseventidtool.h"

#include "qgscursors.h"
@@ -24,7 +24,7 @@
** National Oceanic and Atmospheric Administration or the Department of Commerce.
**
**/
/* $Id: $ */
/* $Id$ */
#ifndef EVISEVENTIDTOOL_H
#define EVISEVENTIDTOOL_H

@@ -17,7 +17,7 @@
#include "qgsoracle_plugin.h"
#include "qgsselectgeoraster_ui.h"

static const char * const sIdent = "$Id: oracleplugin.cpp $";
static const char * const sIdent = "$Id$";
static const QString sName = QObject::tr( "Oracle Spatial GeoRaster" );
static const QString sDescription = QObject::tr( "Access Oracle Spatial GeoRaster" );
static const QString sPluginVersion = QObject::tr( "Version 0.1" );

0 comments on commit edd2b58

Please sign in to comment.