changeset 5379:1949ece749ce

cleanup: fix whitespace in CONTRIBUTORS (and other forgotten files) too
author Mads Kiilerich <madski@unity3d.com>
date Tue, 11 Aug 2015 12:39:07 +0200
parents bdfba68cdfea
children a5a9ea76fa31
files CONTRIBUTORS LICENSE.md kallithea/lib/dbmigrate/migrate.cfg kallithea/lib/dbmigrate/migrate/versioning/templates/repository/default/migrate.cfg kallithea/lib/dbmigrate/migrate/versioning/templates/repository/pylons/migrate.cfg setup.cfg whitespacecleanup.sh
diffstat 7 files changed, 28 insertions(+), 27 deletions(-) [+]
line wrap: on
line diff
--- a/CONTRIBUTORS	Tue Aug 11 12:39:07 2015 +0200
+++ b/CONTRIBUTORS	Tue Aug 11 12:39:07 2015 +0200
@@ -9,8 +9,8 @@
     Dmitri Kuznetsov <>
     Jared Bunting <jared.bunting@peachjean.com>
     Steve Romanow <slestak989@gmail.com>
-    Augosto Hermann <augusto.herrmann@planejamento.gov.br>    
-    Ankit Solanki <ankit.solanki@gmail.com>    
+    Augosto Hermann <augusto.herrmann@planejamento.gov.br>
+    Ankit Solanki <ankit.solanki@gmail.com>
     Liad Shani <liadff@gmail.com>
     Les Peabody <lpeabody@gmail.com>
     Jonas Oberschweiber <jonas.oberschweiber@d-velop.de>
--- a/LICENSE.md	Tue Aug 11 12:39:07 2015 +0200
+++ b/LICENSE.md	Tue Aug 11 12:39:07 2015 +0200
@@ -13,7 +13,7 @@
 However, the definitive list of copyright holders for this project is kept in
 [the about page template](kallithea/templates/about.html) so that it is
 displayed appropriately when Kallithea is installed.  This is the most
-important place to update copyright notices. 
+important place to update copyright notices.
 
 Third-Party Code Incorporated in Kallithea
 ==========================================
--- a/kallithea/lib/dbmigrate/migrate.cfg	Tue Aug 11 12:39:07 2015 +0200
+++ b/kallithea/lib/dbmigrate/migrate.cfg	Tue Aug 11 12:39:07 2015 +0200
@@ -5,16 +5,16 @@
 
 # The name of the database table used to track the schema version.
 # This name shouldn't already be used by your project.
-# If this is changed once a database is under version control, you'll need to 
-# change the table name in each database too. 
+# If this is changed once a database is under version control, you'll need to
+# change the table name in each database too.
 version_table=db_migrate_version
 
-# When committing a change script, Migrate will attempt to generate the 
+# When committing a change script, Migrate will attempt to generate the
 # sql for all supported databases; normally, if one of them fails - probably
-# because you don't have that database installed - it is ignored and the 
-# commit continues, perhaps ending successfully. 
-# Databases in this list MUST compile successfully during a commit, or the 
-# entire commit will fail. List the databases your application will actually 
+# because you don't have that database installed - it is ignored and the
+# commit continues, perhaps ending successfully.
+# Databases in this list MUST compile successfully during a commit, or the
+# entire commit will fail. List the databases your application will actually
 # be using to ensure your updates to that database work properly.
 # This must be a list; example: ['postgres','sqlite']
 required_dbs=['sqlite']
--- a/kallithea/lib/dbmigrate/migrate/versioning/templates/repository/default/migrate.cfg	Tue Aug 11 12:39:07 2015 +0200
+++ b/kallithea/lib/dbmigrate/migrate/versioning/templates/repository/default/migrate.cfg	Tue Aug 11 12:39:07 2015 +0200
@@ -5,16 +5,16 @@
 
 # The name of the database table used to track the schema version.
 # This name shouldn't already be used by your project.
-# If this is changed once a database is under version control, you'll need to 
-# change the table name in each database too. 
+# If this is changed once a database is under version control, you'll need to
+# change the table name in each database too.
 version_table={{ locals().pop('version_table') }}
 
-# When committing a change script, Migrate will attempt to generate the 
+# When committing a change script, Migrate will attempt to generate the
 # sql for all supported databases; normally, if one of them fails - probably
-# because you don't have that database installed - it is ignored and the 
-# commit continues, perhaps ending successfully. 
-# Databases in this list MUST compile successfully during a commit, or the 
-# entire commit will fail. List the databases your application will actually 
+# because you don't have that database installed - it is ignored and the
+# commit continues, perhaps ending successfully.
+# Databases in this list MUST compile successfully during a commit, or the
+# entire commit will fail. List the databases your application will actually
 # be using to ensure your updates to that database work properly.
 # This must be a list; example: ['postgres','sqlite']
 required_dbs={{ locals().pop('required_dbs') }}
@@ -22,4 +22,4 @@
 # When creating new change scripts, Migrate will stamp the new script with
 # a version number. By default this is latest_version + 1. You can set this
 # to 'true' to tell Migrate to use the UTC timestamp instead.
-use_timestamp_numbering='false'
\ No newline at end of file
+use_timestamp_numbering='false'
--- a/kallithea/lib/dbmigrate/migrate/versioning/templates/repository/pylons/migrate.cfg	Tue Aug 11 12:39:07 2015 +0200
+++ b/kallithea/lib/dbmigrate/migrate/versioning/templates/repository/pylons/migrate.cfg	Tue Aug 11 12:39:07 2015 +0200
@@ -5,16 +5,16 @@
 
 # The name of the database table used to track the schema version.
 # This name shouldn't already be used by your project.
-# If this is changed once a database is under version control, you'll need to 
-# change the table name in each database too. 
+# If this is changed once a database is under version control, you'll need to
+# change the table name in each database too.
 version_table={{ locals().pop('version_table') }}
 
-# When committing a change script, Migrate will attempt to generate the 
+# When committing a change script, Migrate will attempt to generate the
 # sql for all supported databases; normally, if one of them fails - probably
-# because you don't have that database installed - it is ignored and the 
-# commit continues, perhaps ending successfully. 
-# Databases in this list MUST compile successfully during a commit, or the 
-# entire commit will fail. List the databases your application will actually 
+# because you don't have that database installed - it is ignored and the
+# commit continues, perhaps ending successfully.
+# Databases in this list MUST compile successfully during a commit, or the
+# entire commit will fail. List the databases your application will actually
 # be using to ensure your updates to that database work properly.
 # This must be a list; example: ['postgres','sqlite']
 required_dbs={{ locals().pop('required_dbs') }}
--- a/setup.cfg	Tue Aug 11 12:39:07 2015 +0200
+++ b/setup.cfg	Tue Aug 11 12:39:07 2015 +0200
@@ -1,5 +1,5 @@
 [egg_info]
-tag_build = 
+tag_build =
 tag_svn_revision = 0
 tag_date = 0
 
--- a/whitespacecleanup.sh	Tue Aug 11 12:39:07 2015 +0200
+++ b/whitespacecleanup.sh	Tue Aug 11 12:39:07 2015 +0200
@@ -2,7 +2,8 @@
 
 # Enforce some consistency in whitespace - just to avoid spurious whitespaces changes
 
-files=`hg loc '*.py' '*.html' '*.css' '*.rst' '*.txt' '*.js' | egrep -v '/lockfiles.py|LICENSE-MERGELY.html|/codemirror/|/fontello/|(graph|mergely|native.history|select2/select2|yui.flot|yui.2.9)\.js$'`
+files=`hg loc '*.py' '*.html' '*.css' '*.rst' '*.txt' '*.js' '*.ini' '*.cfg' CONTRIBUTORS LICENSE.md| egrep -v '/lockfiles.py|LICENSE-MERGELY.html|/codemirror/|/fontello/|(graph|mergely|native.history|select2/select2|yui.flot|yui.2.9)\.js$'`
+
 sed -i -e "s,`printf '\t'`,    ,g" $files
 sed -i -e "s,  *$,,g" $files
 # ensure one trailing newline - remove empty last line and make last line include trailing newline: