Skip to content
Snippets Groups Projects
Commit fd3816eb authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Task #0: Merged latest svn-config changes into the LOFAR svn-config file.

parent 387ffcbc
No related branches found
No related tags found
No related merge requests found
...@@ -11,9 +11,10 @@ ...@@ -11,9 +11,10 @@
### Valid password stores: ### Valid password stores:
### gnome-keyring (Unix-like systems) ### gnome-keyring (Unix-like systems)
### kwallet (Unix-like systems) ### kwallet (Unix-like systems)
### gpg-agent (Unix-like systems)
### keychain (Mac OS X) ### keychain (Mac OS X)
### windows-cryptoapi (Windows) ### windows-cryptoapi (Windows)
password-stores = gnome-keyring,kwallet,keychain,windows-cryptoapi password-stores = gnome-keyring,kwallet,gpg-agent,keychain,windows-cryptoapi
### To disable all password stores, use an empty list: ### To disable all password stores, use an empty list:
# password-stores = # password-stores =
### ###
...@@ -25,6 +26,13 @@ password-stores = gnome-keyring,kwallet,keychain,windows-cryptoapi ...@@ -25,6 +26,13 @@ password-stores = gnome-keyring,kwallet,keychain,windows-cryptoapi
### using KWallet. It defaults to 'no'. ### using KWallet. It defaults to 'no'.
# kwallet-svn-application-name-with-pid = yes # kwallet-svn-application-name-with-pid = yes
### ###
### Set ssl-client-cert-file-prompt to 'yes' to cause the client
### to prompt for a path to a client cert file when the server
### requests a client cert but no client cert file is found in the
### expected place (see the 'ssl-client-cert-file' option in the
### 'servers' configuration file). Defaults to 'no'.
# ssl-client-cert-file-prompt = no
###
### The rest of the [auth] section in this file has been deprecated. ### The rest of the [auth] section in this file has been deprecated.
### Both 'store-passwords' and 'store-auth-creds' can now be ### Both 'store-passwords' and 'store-auth-creds' can now be
### specified in the 'servers' file in your config directory ### specified in the 'servers' file in your config directory
...@@ -86,14 +94,14 @@ password-stores = gnome-keyring,kwallet,keychain,windows-cryptoapi ...@@ -86,14 +94,14 @@ password-stores = gnome-keyring,kwallet,keychain,windows-cryptoapi
### path separator. A single backslash will be treated as an ### path separator. A single backslash will be treated as an
### escape for the following character. ### escape for the following character.
### Section for configuring miscelleneous Subversion options. ### Section for configuring miscellaneous Subversion options.
[miscellany] [miscellany]
### Set global-ignores to a set of whitespace-delimited globs ### Set global-ignores to a set of whitespace-delimited globs
### which Subversion will ignore in its 'status' output, and ### which Subversion will ignore in its 'status' output, and
### while importing or adding files and directories. ### while importing or adding files and directories.
### '*' matches leading dots, e.g. '*.rej' matches '.foo.rej'. ### '*' matches leading dots, e.g. '*.rej' matches '.foo.rej'.
# global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo # global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo __pycache__
# *.rej *~ #*# .#* .*.swp .DS_Store # *.rej *~ #*# .#* .*.swp .DS_Store [Tt]humbs.db
### Set log-encoding to the default encoding for log messages ### Set log-encoding to the default encoding for log messages
# log-encoding = latin1 # log-encoding = latin1
### Set use-commit-times to make checkout/update/switch/revert ### Set use-commit-times to make checkout/update/switch/revert
...@@ -123,6 +131,16 @@ enable-auto-props = yes ...@@ -123,6 +131,16 @@ enable-auto-props = yes
### ra_local (the file:// scheme). The value represents the number ### ra_local (the file:// scheme). The value represents the number
### of MB used by the cache. ### of MB used by the cache.
# memory-cache-size = 16 # memory-cache-size = 16
### Set diff-ignore-content-type to 'yes' to cause 'svn diff' to
### attempt to show differences of all modified files regardless
### of their MIME content type. By default, Subversion will only
### attempt to show differences for files believed to have human-
### readable (non-binary) content. This option is especially
### useful when Subversion is configured (via the 'diff-cmd'
### option) to employ an external differencing tool which is able
### to show meaningful differences for binary file formats. [New
### in 1.9]
# diff-ignore-content-type = no
### Section for configuring automatic properties. ### Section for configuring automatic properties.
[auto-props] [auto-props]
...@@ -208,3 +226,24 @@ README = svn:eol-style=native ...@@ -208,3 +226,24 @@ README = svn:eol-style=native
Doxyfile = svn:eol-style=native Doxyfile = svn:eol-style=native
Makefile = svn:eol-style=native;svn:keywords=Author Date Id Revision Makefile = svn:eol-style=native;svn:keywords=Author Date Id Revision
makefile = svn:eol-style=native;svn:keywords=Author Date Id Revision makefile = svn:eol-style=native;svn:keywords=Author Date Id Revision
### Section for configuring working copies.
[working-copy]
### Set to a list of the names of specific clients that should use
### exclusive SQLite locking of working copies. This increases the
### performance of the client but prevents concurrent access by
### other clients. Third-party clients may also support this
### option.
### Possible values:
### svn (the command line client)
# exclusive-locking-clients =
### Set to true to enable exclusive SQLite locking of working
### copies by all clients using the 1.8 APIs. Enabling this may
### cause some clients to fail to work properly. This does not have
### to be set for exclusive-locking-clients to work.
# exclusive-locking = false
### Set the SQLite busy timeout in milliseconds: the maximum time
### the client waits to get access to the SQLite database before
### returning an error. The default is 10000, i.e. 10 seconds.
### Longer values may be useful when exclusive locking is enabled.
# busy-timeout = 10000
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment