From: Maxim Mamontov <faust.madf@gmail.com>
Date: Mon, 20 Jun 2011 08:19:56 +0000 (+0300)
Subject: Replace snakeCase with SnakeCase in params of storage modules
X-Git-Tag: 2.408-alpha~93
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/f5a242d4251658214e5ce16358a09561a38d7614?hp=--cc

Replace snakeCase with SnakeCase in params of storage modules
---

f5a242d4251658214e5ce16358a09561a38d7614
diff --git a/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_firebird.conf b/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_firebird.conf
index 99b629ae..738d75cc 100644
--- a/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_firebird.conf
+++ b/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_firebird.conf
@@ -3,35 +3,35 @@
     # Parameter: required
     # Value: IP address or DNS name
     # Default: localhost
-    server = localhost
+    Server = localhost
 
     # Path to the database on the server or its alias
     # Parameter: required
     # Value: file path
     # Default: /var/stg/stargazer.fdb
-    database = /var/stg/stargazer.fdb
+    Database = /var/stg/stargazer.fdb
 
     # Database username
     # Parameter: required
     # Value: any, supported by database
     # Default: stg
-    user = stg
+    User = stg
 
     # Database password
     # Parameter: required
     # Value: any, supported by database
     # Default: 123456
-    password = 123456
+    Password = 123456
 
     # The transaction isolation level
     # Parameter: optional
     # Values: concurrency, dirtyread, readcommitted, consistency
     # Defalt: concurrency
-    isolationLevel = concurrency
+    IsolationLevel = concurrency
 
     # Responding to lock (optional, defaults to wait):
     # Parameter: optional
     # Values: wait, nowait
     # Defalt: wait
-    lockResolution = wait
-</StoreModule>
\ No newline at end of file
+    LockResolution = wait
+</StoreModule>
diff --git a/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_mysql.conf b/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_mysql.conf
index 4cd2c0de..a5cc4180 100644
--- a/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_mysql.conf
+++ b/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_mysql.conf
@@ -3,23 +3,23 @@
     # Parameter: required
     # Value: IP address or DNS name
     # Default: localhost
-    server = localhost
+    Server = localhost
 
     # Database name
     # Parameter: required
     # Value: any, supported by database
     # Default: stg
-    database = stg
+    Database = stg
 
     # Database username
     # Parameter: required
     # Value: any, supported by database
     # Default: stg
-    user = stg
+    User = stg
 
     # Database password
     # Parameter: required
     # Value: any, supported by database
     # Default: 123456
-    password = 123456
+    Password = 123456
 </StoreModule>
diff --git a/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_postgresql.conf b/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_postgresql.conf
index 5132c8fc..15326584 100644
--- a/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_postgresql.conf
+++ b/projects/stargazer/inst/freebsd/etc/stargazer/conf-available.d/store_postgresql.conf
@@ -3,29 +3,29 @@
     # Parameter: required
     # Value: IP address or DNS name
     # Default: localhost
-    server = localhost
+    Server = localhost
 
     # Database name
     # Parameter: required
     # Value: any, supported by database
     # Default: stargazer
-    database = stargazer
+    Database = stargazer
 
     # Database username
     # Parameter: mandatory
     # Value: any, supported by database
     # Default: stg
-    user = stg
+    User = stg
 
     # Database password
     # Parameter: required
     # Value: any, supported by database
     # Default: 123456
-    password = 123456
+    Password = 123456
 
     # Number of tries to reconnect
     # Parameter: optional
     # Value: positive integer
     # Default: 3
-    # retries = 3
+    # Retries = 3
 </StoreModule>
diff --git a/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_firebird.conf b/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_firebird.conf
index 99b629ae..738d75cc 100644
--- a/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_firebird.conf
+++ b/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_firebird.conf
@@ -3,35 +3,35 @@
     # Parameter: required
     # Value: IP address or DNS name
     # Default: localhost
-    server = localhost
+    Server = localhost
 
     # Path to the database on the server or its alias
     # Parameter: required
     # Value: file path
     # Default: /var/stg/stargazer.fdb
-    database = /var/stg/stargazer.fdb
+    Database = /var/stg/stargazer.fdb
 
     # Database username
     # Parameter: required
     # Value: any, supported by database
     # Default: stg
-    user = stg
+    User = stg
 
     # Database password
     # Parameter: required
     # Value: any, supported by database
     # Default: 123456
-    password = 123456
+    Password = 123456
 
     # The transaction isolation level
     # Parameter: optional
     # Values: concurrency, dirtyread, readcommitted, consistency
     # Defalt: concurrency
-    isolationLevel = concurrency
+    IsolationLevel = concurrency
 
     # Responding to lock (optional, defaults to wait):
     # Parameter: optional
     # Values: wait, nowait
     # Defalt: wait
-    lockResolution = wait
-</StoreModule>
\ No newline at end of file
+    LockResolution = wait
+</StoreModule>
diff --git a/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_mysql.conf b/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_mysql.conf
index 4cd2c0de..a5cc4180 100644
--- a/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_mysql.conf
+++ b/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_mysql.conf
@@ -3,23 +3,23 @@
     # Parameter: required
     # Value: IP address or DNS name
     # Default: localhost
-    server = localhost
+    Server = localhost
 
     # Database name
     # Parameter: required
     # Value: any, supported by database
     # Default: stg
-    database = stg
+    Database = stg
 
     # Database username
     # Parameter: required
     # Value: any, supported by database
     # Default: stg
-    user = stg
+    User = stg
 
     # Database password
     # Parameter: required
     # Value: any, supported by database
     # Default: 123456
-    password = 123456
+    Password = 123456
 </StoreModule>
diff --git a/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_postgresql.conf b/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_postgresql.conf
index 5132c8fc..15326584 100644
--- a/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_postgresql.conf
+++ b/projects/stargazer/inst/linux/etc/stargazer/conf-available.d/store_postgresql.conf
@@ -3,29 +3,29 @@
     # Parameter: required
     # Value: IP address or DNS name
     # Default: localhost
-    server = localhost
+    Server = localhost
 
     # Database name
     # Parameter: required
     # Value: any, supported by database
     # Default: stargazer
-    database = stargazer
+    Database = stargazer
 
     # Database username
     # Parameter: mandatory
     # Value: any, supported by database
     # Default: stg
-    user = stg
+    User = stg
 
     # Database password
     # Parameter: required
     # Value: any, supported by database
     # Default: 123456
-    password = 123456
+    Password = 123456
 
     # Number of tries to reconnect
     # Parameter: optional
     # Value: positive integer
     # Default: 3
-    # retries = 3
+    # Retries = 3
 </StoreModule>