Skip to content

Commit edd2b58

Browse files
author
jef
committed
add missing svn:keywords
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13187 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 7d0a797 commit edd2b58

26 files changed

+33
-27
lines changed

doc/CODING.t2t

+7-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ example:
158158
```
159159

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

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

171+
You also need to set
172+
173+
svn propset svn:keywords "Id"
174+
175+
for the new files.
176+
171177
== Variable Names ==
172178
Variable names begin with a lower case letter and are formed using mixed case.
173179
```

src/app/ogr/qgsnewogrconnection.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* (at your option) any later version. *
1515
* *
1616
***************************************************************************/
17-
/* $Id: $ */
17+
/* $Id$ */
1818
#include <iostream>
1919

2020
#include <QSettings>

src/app/qgstilescalewidget.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* (at your option) any later version. *
1515
* *
1616
***************************************************************************/
17-
/* $Id: $ */
17+
/* $Id$ */
1818

1919
#include "qgstilescalewidget.h"
2020
#include "qgsmapcanvas.h"

src/app/qgstilescalewidget.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* (at your option) any later version. *
1515
* *
1616
***************************************************************************/
17-
/* $Id: $ */
17+
/* $Id$ */
1818

1919
#ifndef QGSTILESCALEWIDGET_H
2020
#define QGSTILESCALEWIDGET_H

src/core/qgsprojectfiletransform.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* (at your option) any later version. *
1515
* *
1616
***************************************************************************/
17-
/* $Id: $ */
17+
/* $Id$ */
1818

1919

2020
#include "qgsprojectfiletransform.h"

src/core/qgsprojectfiletransform.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* perform upgrades to a more recent version
2323
*/
2424

25-
/* $Id: $ */
25+
/* $Id$ */
2626

2727
#ifndef QGSPROJECTFILETRANSFORM_H
2828
#define QGSPROJECTFILETRANSFORM_H

src/plugins/dxf2shp_converter/dxf2shpconverter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include <QToolBar>
3636

3737
static const char *const sIdent =
38-
"$Id: plugin.cpp 6935 2007-05-07 14:29:51Z wonder $";
38+
"$Id$";
3939
static const QString sName = QObject::tr( "Dxf2Shp Converter" );
4040
static const QString sDescription = QObject::tr( "Converts from dxf to shp file format" );
4141
static const QString sPluginVersion = QObject::tr( "Version 0.1" );

src/plugins/evis/databaseconnection/evisdatabaseconnection.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#include "evisdatabaseconnection.h"
2929

3030
#include <QStringList>

src/plugins/evis/databaseconnection/evisdatabaseconnection.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#ifndef EVISDATABASECONNECTION_H
2929
#define EVISDATABASECONNECTION_H
3030

src/plugins/evis/databaseconnection/evisdatabaseconnectiongui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#include "evisdatabaseconnectiongui.h"
2929

3030
#include "qgscontexthelp.h"

src/plugins/evis/databaseconnection/evisdatabaseconnectiongui.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#ifndef eVisDatabaseConnectionGUI_H
2929
#define eVisDatabaseConnectionGUI_H
3030

src/plugins/evis/databaseconnection/evisdatabaselayerfieldselectiongui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#include "evisdatabaselayerfieldselectiongui.h"
2929

3030
/**

src/plugins/evis/databaseconnection/evisdatabaselayerfieldselectiongui.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#ifndef eVisDatabaseLayerFieldSelectionGui_H
2929
#define eVisDatabaseLayerFieldSelectionGui_H
3030

src/plugins/evis/databaseconnection/evisquerydefinition.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#include "evisquerydefinition.h"
2929

3030
/**

src/plugins/evis/databaseconnection/evisquerydefinition.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#ifndef EVISQUERYDEFINITION_H
2929
#define EVISQUERYDEFINITION_H
3030

src/plugins/evis/eventbrowser/evisconfiguration.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#include <QSettings>
2929

3030
#include "evisconfiguration.h"

src/plugins/evis/eventbrowser/evisconfiguration.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#ifndef eVisConfiguration_H
2929
#define eVisConfiguration_H
3030

src/plugins/evis/eventbrowser/evisgenericeventbrowsergui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#include "evisgenericeventbrowsergui.h"
2929

3030
#include "qgsapplication.h"

src/plugins/evis/eventbrowser/evisgenericeventbrowsergui.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#ifndef eVisGenericEventBrowserGui_H
2929
#define eVisGenericEventBrowserGui_H
3030

src/plugins/evis/eventbrowser/evisimagedisplaywidget.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#include "evisimagedisplaywidget.h"
2929

3030
#include "qgsapplication.h"

src/plugins/evis/eventbrowser/evisimagedisplaywidget.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#ifndef EVISIMAGEDISPLAYWIDGET_H
2929
#define EVISIMAGEDISPLAYWIDGET_H
3030

src/plugins/evis/evis.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* ( at your option ) any later version. *
4646
* *
4747
***************************************************************************/
48-
/* $Id: $ */
48+
/* $Id$ */
4949
#include "evis.h"
5050

5151
//
@@ -80,7 +80,7 @@
8080
#define QGISEXTERN extern "C"
8181
#endif
8282

83-
static const char * const sIdent = "$Id: $";
83+
static const char * const sIdent = "$Id$";
8484
static const QString sName = QObject::tr( "eVis" );
8585
static const QString sDescription = QObject::tr( "An event visualization tool - view images associated with vector features" );
8686
static const QString sPluginVersion = QObject::tr( "Version 1.1.0" );

src/plugins/evis/evis.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* DON'T: separate variable names using underscores: my_variable_name ( NO! )
6464
*
6565
* **************************************************************************/
66-
/* $Id: $ */
66+
/* $Id$ */
6767
#ifndef eVis_H
6868
#define eVis_H
6969

src/plugins/evis/idtool/eviseventidtool.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#include "eviseventidtool.h"
2929

3030
#include "qgscursors.h"

src/plugins/evis/idtool/eviseventidtool.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
** National Oceanic and Atmospheric Administration or the Department of Commerce.
2525
**
2626
**/
27-
/* $Id: $ */
27+
/* $Id$ */
2828
#ifndef EVISEVENTIDTOOL_H
2929
#define EVISEVENTIDTOOL_H
3030

src/plugins/oracle_raster/qgsoracle_plugin.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "qgsoracle_plugin.h"
1818
#include "qgsselectgeoraster_ui.h"
1919

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

0 commit comments

Comments
 (0)