Lines Matching defs:NL

50 #define NL APR_EOL_STR
780 "This directory holds run-time configuration information for Subversion" NL
781 "clients. The configuration files all share the same syntax, but you" NL
782 "should examine a particular file to learn what configuration" NL
783 "directives are valid for that file." NL
784 "" NL
785 "The syntax is standard INI format:" NL
786 "" NL
787 " - Empty lines, and lines starting with '#', are ignored." NL
788 " The first significant line in a file must be a section header." NL
789 "" NL
790 " - A section starts with a section header, which must start in" NL
791 " the first column:" NL
792 "" NL
793 " [section-name]" NL
794 "" NL
795 " - An option, which must always appear within a section, is a pair" NL
796 " (name, value). There are two valid forms for defining an" NL
797 " option, both of which must start in the first column:" NL
798 "" NL
799 " name: value" NL
800 " name = value" NL
801 "" NL
802 " Whitespace around the separator (:, =) is optional." NL
803 "" NL
804 " - Section and option names are case-insensitive, but case is" NL
805 " preserved." NL
806 "" NL
807 " - An option's value may be broken into several lines. The value" NL
808 " continuation lines must start with at least one whitespace." NL
809 " Trailing whitespace in the previous line, the newline character" NL
810 " and the leading whitespace in the continuation line is compressed" NL
811 " into a single space character." NL
812 "" NL
813 " - All leading and trailing whitespace around a value is trimmed," NL
814 " but the whitespace within a value is preserved, with the" NL
815 " exception of whitespace around line continuations, as" NL
816 " described above." NL
817 "" NL
818 " - When a value is a boolean, any of the following strings are" NL
819 " recognised as truth values (case does not matter):" NL
820 "" NL
821 " true false" NL
822 " yes no" NL
823 " on off" NL
824 " 1 0" NL
825 "" NL
826 " - When a value is a list, it is comma-separated. Again, the" NL
827 " whitespace around each element of the list is trimmed." NL
828 "" NL
829 " - Option values may be expanded within a value by enclosing the" NL
830 " option name in parentheses, preceded by a percent sign and" NL
831 " followed by an 's':" NL
832 "" NL
833 " %(name)s" NL
834 "" NL
835 " The expansion is performed recursively and on demand, during" NL
836 " svn_option_get. The name is first searched for in the same" NL
837 " section, then in the special [DEFAULT] section. If the name" NL
838 " is not found, the whole '%(name)s' placeholder is left" NL
839 " unchanged." NL
840 "" NL
841 " Any modifications to the configuration data invalidate all" NL
842 " previously expanded values, so that the next svn_option_get" NL
843 " will take the modifications into account." NL
844 "" NL
845 "The syntax of the configuration files is a subset of the one used by" NL
846 "Python's ConfigParser module; see" NL
847 "" NL
848 " http://www.python.org/doc/current/lib/module-ConfigParser.html" NL
849 "" NL
850 "Configuration data in the Windows registry" NL
851 "==========================================" NL
852 "" NL
853 "On Windows, configuration data may also be stored in the registry. The" NL
854 "functions svn_config_read and svn_config_merge will read from the" NL
855 "registry when passed file names of the form:" NL
856 "" NL
857 " REGISTRY:<hive>/path/to/config-key" NL
858 "" NL
859 "The REGISTRY: prefix must be in upper case. The <hive> part must be" NL
860 "one of:" NL
861 "" NL
862 " HKLM for HKEY_LOCAL_MACHINE" NL
863 " HKCU for HKEY_CURRENT_USER" NL
864 "" NL
865 "The values in config-key represent the options in the [DEFAULT] section."NL
866 "The keys below config-key represent other sections, and their values" NL
867 "represent the options. Only values of type REG_SZ whose name doesn't" NL
868 "start with a '#' will be used; other values, as well as the keys'" NL
869 "default values, will be ignored." NL
870 "" NL
871 "" NL
872 "File locations" NL
873 "==============" NL
874 "" NL
875 "Typically, Subversion uses two config directories, one for site-wide" NL
876 "configuration," NL
877 "" NL
878 " Unix:" NL
879 " /etc/subversion/servers" NL
880 " /etc/subversion/config" NL
881 " /etc/subversion/hairstyles" NL
882 " Windows:" NL
883 " %ALLUSERSPROFILE%\\Application Data\\Subversion\\servers" NL
884 " %ALLUSERSPROFILE%\\Application Data\\Subversion\\config" NL
885 " %ALLUSERSPROFILE%\\Application Data\\Subversion\\hairstyles" NL
886 " REGISTRY:HKLM\\Software\\Tigris.org\\Subversion\\Servers" NL
887 " REGISTRY:HKLM\\Software\\Tigris.org\\Subversion\\Config" NL
888 " REGISTRY:HKLM\\Software\\Tigris.org\\Subversion\\Hairstyles" NL
889 "" NL
890 "and one for per-user configuration:" NL
891 "" NL
892 " Unix:" NL
893 " ~/.subversion/servers" NL
894 " ~/.subversion/config" NL
895 " ~/.subversion/hairstyles" NL
896 " Windows:" NL
897 " %APPDATA%\\Subversion\\servers" NL
898 " %APPDATA%\\Subversion\\config" NL
899 " %APPDATA%\\Subversion\\hairstyles" NL
900 " REGISTRY:HKCU\\Software\\Tigris.org\\Subversion\\Servers" NL
901 " REGISTRY:HKCU\\Software\\Tigris.org\\Subversion\\Config" NL
902 " REGISTRY:HKCU\\Software\\Tigris.org\\Subversion\\Hairstyles" NL
903 "" NL;
938 "### This file specifies server-specific parameters," NL
939 "### including HTTP proxy information, HTTP timeout settings," NL
940 "### and authentication settings." NL
941 "###" NL
942 "### The currently defined server options are:" NL
943 "### http-proxy-host Proxy host for HTTP connection" NL
944 "### http-proxy-port Port number of proxy host service" NL
945 "### http-proxy-username Username for auth to proxy service"NL
946 "### http-proxy-password Password for auth to proxy service"NL
948 NL
950 NL
951 "### http-compression Whether to compress HTTP requests" NL
952 "### http-max-connections Maximum number of parallel server" NL
953 "### connections to use for any given" NL
954 "### HTTP operation." NL
955 "### http-chunked-requests Whether to use chunked transfer" NL
956 "### encoding for HTTP requests body." NL
957 "### neon-debug-mask Debug mask for Neon HTTP library" NL
959 NL
960 "### ssl-trust-default-ca Trust the system 'default' CAs" NL
962 NL
963 "### ssl-client-cert-password Client Key password, if needed." NL
964 "### ssl-pkcs11-provider Name of PKCS#11 provider to use." NL
966 NL
967 "### connections." NL
968 "### http-bulk-updates Whether to request bulk update" NL
969 "### responses or to fetch each file" NL
970 "### in an individual request. " NL
971 "### store-passwords Specifies whether passwords used" NL
972 "### to authenticate against a" NL
973 "### Subversion server may be cached" NL
974 "### to disk in any way." NL
976 "### store-plaintext-passwords Specifies whether passwords may" NL
977 "### be cached on disk unencrypted." NL
979 "### store-ssl-client-cert-pp Specifies whether passphrase used" NL
980 "### to authenticate against a client" NL
981 "### certificate may be cached to disk" NL
982 "### in any way" NL
984 "### store-ssl-client-cert-pp-plaintext" NL
985 "### Specifies whether client cert" NL
986 "### passphrases may be cached on disk" NL
987 "### unencrypted (i.e., as plaintext)." NL
989 "### store-auth-creds Specifies whether any auth info" NL
990 "### (passwords, server certs, etc.)" NL
991 "### may be cached to disk." NL
992 "### username Specifies the default username." NL
993 "###" NL
994 "### Set store-passwords to 'no' to avoid storing passwords on disk" NL
995 "### in any way, including in password stores. It defaults to" NL
996 "### 'yes', but Subversion will never save your password to disk in" NL
997 "### plaintext unless explicitly configured to do so." NL
998 "### Note that this option only prevents saving of *new* passwords;" NL
999 "### it doesn't invalidate existing passwords. (To do that, remove" NL
1000 "### the cache files by hand as described in the Subversion book.)" NL
1001 "###" NL
1003 "### Set store-plaintext-passwords to 'no' to avoid storing" NL
1004 "### passwords in unencrypted form in the auth/ area of your config" NL
1005 "### directory. Set it to 'yes' to allow Subversion to store" NL
1006 "### unencrypted passwords in the auth/ area. The default is" NL
1007 "### 'ask', which means that Subversion will ask you before" NL
1008 "### saving a password to disk in unencrypted form. Note that" NL
1009 "### this option has no effect if either 'store-passwords' or " NL
1010 "### 'store-auth-creds' is set to 'no'." NL
1011 "###" NL
1013 "### Set store-ssl-client-cert-pp to 'no' to avoid storing ssl" NL
1014 "### client certificate passphrases in the auth/ area of your" NL
1015 "### config directory. It defaults to 'yes', but Subversion will" NL
1016 "### never save your passphrase to disk in plaintext unless" NL
1017 "### explicitly configured to do so." NL
1018 "###" NL
1019 "### Note store-ssl-client-cert-pp only prevents the saving of *new*"NL
1020 "### passphrases; it doesn't invalidate existing passphrases. To do"NL
1021 "### that, remove the cache files by hand as described in the" NL
1022 "### Subversion book at http://svnbook.red-bean.com/nightly/en/\\" NL
1023 "### svn.serverconfig.netmodel.html\\" NL
1024 "### #svn.serverconfig.netmodel.credcache" NL
1025 "###" NL
1027 "### Set store-ssl-client-cert-pp-plaintext to 'no' to avoid storing"NL
1028 "### passphrases in unencrypted form in the auth/ area of your" NL
1029 "### config directory. Set it to 'yes' to allow Subversion to" NL
1030 "### store unencrypted passphrases in the auth/ area. The default" NL
1031 "### is 'ask', which means that Subversion will prompt before" NL
1032 "### saving a passphrase to disk in unencrypted form. Note that" NL
1033 "### this option has no effect if either 'store-auth-creds' or " NL
1034 "### 'store-ssl-client-cert-pp' is set to 'no'." NL
1035 "###" NL
1037 "### Set store-auth-creds to 'no' to avoid storing any Subversion" NL
1038 "### credentials in the auth/ area of your config directory." NL
1039 "### Note that this includes SSL server certificates." NL
1040 "### It defaults to 'yes'. Note that this option only prevents" NL
1041 "### saving of *new* credentials; it doesn't invalidate existing" NL
1042 "### caches. (To do that, remove the cache files by hand.)" NL
1043 "###" NL
1044 "### HTTP timeouts, if given, are specified in seconds. A timeout" NL
1045 "### of 0, i.e. zero, causes a builtin default to be used." NL
1046 "###" NL
1047 "### Most users will not need to explicitly set the http-library" NL
1048 "### option, but valid values for the option include:" NL
1049 "### 'serf': Serf-based module (Subversion 1.5 - present)" NL
1050 "### 'neon': Neon-based module (Subversion 1.0 - 1.7)" NL
1051 "### Availability of these modules may depend on your specific" NL
1052 "### Subversion distribution." NL
1053 "###" NL
1054 "### The commented-out examples below are intended only to" NL
1055 "### demonstrate how to use this file; any resemblance to actual" NL
1056 "### servers, living or dead, is entirely coincidental." NL
1057 "" NL
1058 "### In the 'groups' section, the URL of the repository you're" NL
1059 "### trying to access is matched against the patterns on the right." NL
1060 "### If a match is found, the server options are taken from the" NL
1061 "### section with the corresponding name on the left." NL
1062 "" NL
1063 "[groups]" NL
1064 "# group1 = *.collab.net" NL
1065 "# othergroup = repository.blarggitywhoomph.com" NL
1066 "# thirdgroup = *.example.com" NL
1067 "" NL
1068 "### Information for the first group:" NL
1069 "# [group1]" NL
1070 "# http-proxy-host = proxy1.some-domain-name.com" NL
1071 "# http-proxy-port = 80" NL
1072 "# http-proxy-username = blah" NL
1073 "# http-proxy-password = doubleblah" NL
1074 "# http-timeout = 60" NL
1075 "# neon-debug-mask = 130" NL
1077 "# store-plaintext-passwords = no" NL
1079 "# username = harry" NL
1080 "" NL
1081 "### Information for the second group:" NL
1082 "# [othergroup]" NL
1083 "# http-proxy-host = proxy2.some-domain-name.com" NL
1084 "# http-proxy-port = 9000" NL
1086 NL
1087 "" NL
1088 "### You can set default parameters in the 'global' section." NL
1089 "### These parameters apply if no corresponding parameter is set in" NL
1090 "### a specifically matched group as shown above. Thus, if you go" NL
1091 "### through the same proxy server to reach every site on the" NL
1092 "### Internet, you probably just want to put that server's" NL
1093 "### information in the 'global' section and not bother with" NL
1094 "### 'groups' or any other sections." NL
1095 "###" NL
1096 "### Most people might want to configure password caching" NL
1097 "### parameters here, but you can also configure them per server" NL
1098 "### group (per-group settings override global settings)." NL
1099 "###" NL
1100 "### If you go through a proxy for all but a few sites, you can" NL
1101 "### list those exceptions under 'http-proxy-exceptions'. This only"NL
1102 "### overrides defaults, not explicitly matched server names." NL
1103 "###" NL
1104 "### 'ssl-authority-files' is a semicolon-delimited list of files," NL
1105 "### each pointing to a PEM-encoded Certificate Authority (CA) " NL
1106 "### SSL certificate. See details above for overriding security " NL
1107 "### due to SSL." NL
1108 "[global]" NL
1109 "# http-proxy-exceptions = *.exception.com, www.internal-site.org" NL
1110 "# http-proxy-host = defaultproxy.whatever.com" NL
1111 "# http-proxy-port = 7000" NL
1112 "# http-proxy-username = defaultusername" NL
1113 "# http-proxy-password = defaultpassword" NL
1114 "# http-compression = no" NL
1115 "# No http-timeout, so just use the builtin default." NL
1116 "# No neon-debug-mask, so neon debugging is disabled." NL
1117 "# ssl-authority-files = /path/to/CAcert.pem;/path/to/CAcert2.pem" NL
1118 "#" NL
1119 "# Password / passphrase caching parameters:" NL
1120 "# store-passwords = no" NL
1121 "# store-ssl-client-cert-pp = no" NL
1123 "# store-plaintext-passwords = no" NL
1124 "# store-ssl-client-cert-pp-plaintext = no" NL
1161 "### This file configures various client-side behaviors." NL
1162 "###" NL
1163 "### The commented-out examples below are intended to demonstrate" NL
1164 "### how to use this file." NL
1165 "" NL
1166 "### Section for authentication and authorization customizations." NL
1167 "[auth]" NL
1168 "### Set password stores used by Subversion. They should be" NL
1169 "### delimited by spaces or commas. The order of values determines" NL
1170 "### the order in which password stores are used." NL
1171 "### Valid password stores:" NL
1172 "### gnome-keyring (Unix-like systems)" NL
1173 "### kwallet (Unix-like systems)" NL
1174 "### gpg-agent (Unix-like systems)" NL
1175 "### keychain (Mac OS X)" NL
1176 "### windows-cryptoapi (Windows)" NL
1178 "# password-stores = keychain" NL
1180 "# password-stores = windows-cryptoapi" NL
1182 "# password-stores = gpg-agent,gnome-keyring,kwallet" NL
1184 "### To disable all password stores, use an empty list:" NL
1185 "# password-stores =" NL
1187 "###" NL
1188 "### Set KWallet wallet used by Subversion. If empty or unset," NL
1189 "### then the default network wallet will be used." NL
1190 "# kwallet-wallet =" NL
1191 "###" NL
1192 "### Include PID (Process ID) in Subversion application name when" NL
1193 "### using KWallet. It defaults to 'no'." NL
1194 "# kwallet-svn-application-name-with-pid = yes" NL
1196 "###" NL
1197 "### Set ssl-client-cert-file-prompt to 'yes' to cause the client" NL
1198 "### to prompt for a path to a client cert file when the server" NL
1199 "### requests a client cert but no client cert file is found in the" NL
1200 "### expected place (see the 'ssl-client-cert-file' option in the" NL
1201 "### 'servers' configuration file). Defaults to 'no'." NL
1202 "# ssl-client-cert-file-prompt = no" NL
1203 "###" NL
1205 NL
1206 "### Both 'store-passwords' and 'store-auth-creds' can now be" NL
1207 "### specified in the 'servers' file in your config directory" NL
1208 "### and are documented there. Anything specified in this section " NL
1209 "### is overridden by settings specified in the 'servers' file." NL
1210 "# store-passwords = no" NL
1211 "# store-auth-creds = no" NL
1212 "" NL
1213 "### Section for configuring external helper applications." NL
1214 "[helpers]" NL
1215 "### Set editor-cmd to the command used to invoke your text editor." NL
1216 "### This will override the environment variables that Subversion" NL
1217 "### examines by default to find this information ($EDITOR, " NL
1218 "### et al)." NL
1219 "# editor-cmd = editor (vi, emacs, notepad, etc.)" NL
1220 "### Set diff-cmd to the absolute path of your 'diff' program." NL
1221 "### This will override the compile-time default, which is to use" NL
1222 "### Subversion's internal diff implementation." NL
1223 "# diff-cmd = diff_program (diff, gdiff, etc.)" NL
1224 "### Diff-extensions are arguments passed to an external diff" NL
1225 "### program or to Subversion's internal diff implementation." NL
1226 "### Set diff-extensions to override the default arguments ('-u')." NL
1227 "# diff-extensions = -u -p" NL
1228 "### Set diff3-cmd to the absolute path of your 'diff3' program." NL
1229 "### This will override the compile-time default, which is to use" NL
1230 "### Subversion's internal diff3 implementation." NL
1231 "# diff3-cmd = diff3_program (diff3, gdiff3, etc.)" NL
1232 "### Set diff3-has-program-arg to 'yes' if your 'diff3' program" NL
1233 "### accepts the '--diff-program' option." NL
1234 "# diff3-has-program-arg = [yes | no]" NL
1235 "### Set merge-tool-cmd to the command used to invoke your external" NL
1236 "### merging tool of choice. Subversion will pass 5 arguments to" NL
1237 "### the specified command: base theirs mine merged wcfile" NL
1238 "# merge-tool-cmd = merge_command" NL
1239 "" NL
1240 "### Section for configuring tunnel agents." NL
1241 "[tunnels]" NL
1242 "### Configure svn protocol tunnel schemes here. By default, only" NL
1243 "### the 'ssh' scheme is defined. You can define other schemes to" NL
1244 "### be used with 'svn+scheme://hostname/path' URLs. A scheme" NL
1245 "### definition is simply a command, optionally prefixed by an" NL
1246 "### environment variable name which can override the command if it" NL
1247 "### is defined. The command (or environment variable) may contain" NL
1248 "### arguments, using standard shell quoting for arguments with" NL
1249 "### spaces. The command will be invoked as:" NL
1250 "### <command> <hostname> svnserve -t" NL
1251 "### (If the URL includes a username, then the hostname will be" NL
1252 "### passed to the tunnel agent as <user>@<hostname>.) If the" NL
1253 "### built-in ssh scheme were not predefined, it could be defined" NL
1254 "### as:" NL
1255 "# ssh = $SVN_SSH ssh -q" NL
1256 "### If you wanted to define a new 'rsh' scheme, to be used with" NL
1257 "### 'svn+rsh:' URLs, you could do so as follows:" NL
1258 "# rsh = rsh" NL
1259 "### Or, if you wanted to specify a full path and arguments:" NL
1260 "# rsh = /path/to/rsh -l myusername" NL
1261 "### On Windows, if you are specifying a full path to a command," NL
1262 "### use a forward slash (/) or a paired backslash (\\\\) as the" NL
1263 "### path separator. A single backslash will be treated as an" NL
1264 "### escape for the following character." NL
1265 "" NL
1266 "### Section for configuring miscellaneous Subversion options." NL
1267 "[miscellany]" NL
1268 "### Set global-ignores to a set of whitespace-delimited globs" NL
1269 "### which Subversion will ignore in its 'status' output, and" NL
1270 "### while importing or adding files and directories." NL
1271 "### '*' matches leading dots, e.g. '*.rej' matches '.foo.rej'." NL
1272 "# global-ignores = " SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_1 NL
1273 "# " SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_2 NL
1274 "### Set log-encoding to the default encoding for log messages" NL
1275 "# log-encoding = latin1" NL
1276 "### Set use-commit-times to make checkout/update/switch/revert" NL
1277 "### put last-committed timestamps on every file touched." NL
1278 "# use-commit-times = yes" NL
1279 "### Set no-unlock to prevent 'svn commit' from automatically" NL
1280 "### releasing locks on files." NL
1281 "# no-unlock = yes" NL
1282 "### Set mime-types-file to a MIME type registry file, used to" NL
1283 "### provide hints to Subversion's MIME type auto-detection" NL
1284 "### algorithm." NL
1285 "# mime-types-file = /path/to/mime.types" NL
1286 "### Set preserved-conflict-file-exts to a whitespace-delimited" NL
1287 "### list of patterns matching file extensions which should be" NL
1288 "### preserved in generated conflict file names. By default," NL
1289 "### conflict files use custom extensions." NL
1290 "# preserved-conflict-file-exts = doc ppt xls od?" NL
1291 "### Set enable-auto-props to 'yes' to enable automatic properties" NL
1292 "### for 'svn add' and 'svn import', it defaults to 'no'." NL
1293 "### Automatic properties are defined in the section 'auto-props'." NL
1294 "# enable-auto-props = yes" NL
1296 "### Set enable-magic-file to 'no' to disable magic file detection" NL
1297 "### of the file type when automatically setting svn:mime-type. It" NL
1298 "### defaults to 'yes' if magic file support is possible." NL
1299 "# enable-magic-file = yes" NL
1301 "### Set interactive-conflicts to 'no' to disable interactive" NL
1302 "### conflict resolution prompting. It defaults to 'yes'." NL
1303 "# interactive-conflicts = no" NL
1304 "### Set memory-cache-size to define the size of the memory cache" NL
1305 "### used by the client when accessing a FSFS repository via" NL
1306 "### ra_local (the file:// scheme). The value represents the number" NL
1307 "### of MB used by the cache." NL
1308 "# memory-cache-size = 16" NL
1309 "### Set diff-ignore-content-type to 'yes' to cause 'svn diff' to" NL
1310 "### attempt to show differences of all modified files regardless" NL
1311 "### of their MIME content type. By default, Subversion will only" NL
1312 "### attempt to show differences for files believed to have human-" NL
1313 "### readable (non-binary) content. This option is especially" NL
1314 "### useful when Subversion is configured (via the 'diff-cmd'" NL
1315 "### option) to employ an external differencing tool which is able" NL
1316 "### to show meaningful differences for binary file formats. [New" NL
1317 "### in 1.9]" NL
1318 "# diff-ignore-content-type = no" NL
1319 "" NL
1320 "### Section for configuring automatic properties." NL
1321 "[auto-props]" NL
1322 "### The format of the entries is:" NL
1323 "### file-name-pattern = propname[=value][;propname[=value]...]" NL
1324 "### The file-name-pattern can contain wildcards (such as '*' and" NL
1325 "### '?'). All entries which match (case-insensitively) will be" NL
1326 "### applied to the file. Note that auto-props functionality" NL
1327 "### must be enabled, which is typically done by setting the" NL
1328 "### 'enable-auto-props' option." NL
1329 "# *.c = svn:eol-style=native" NL
1330 "# *.cpp = svn:eol-style=native" NL
1331 "# *.h = svn:keywords=Author Date Id Rev URL;svn:eol-style=native" NL
1332 "# *.dsp = svn:eol-style=CRLF" NL
1333 "# *.dsw = svn:eol-style=CRLF" NL
1334 "# *.sh = svn:eol-style=native;svn:executable" NL
1335 "# *.txt = svn:eol-style=native;svn:keywords=Author Date Id Rev URL;"NL
1336 "# *.png = svn:mime-type=image/png" NL
1337 "# *.jpg = svn:mime-type=image/jpeg" NL
1338 "# Makefile = svn:eol-style=native" NL
1339 "" NL
1340 "### Section for configuring working copies." NL
1341 "[working-copy]" NL
1342 "### Set to a list of the names of specific clients that should use" NL
1343 "### exclusive SQLite locking of working copies. This increases the"NL
1344 "### performance of the client but prevents concurrent access by" NL
1345 "### other clients. Third-party clients may also support this" NL
1346 "### option." NL
1347 "### Possible values:" NL
1348 "### svn (the command line client)" NL
1349 "# exclusive-locking-clients =" NL
1350 "### Set to true to enable exclusive SQLite locking of working" NL
1351 "### copies by all clients using the 1.8 APIs. Enabling this may" NL
1352 "### cause some clients to fail to work properly. This does not have"NL
1353 "### to be set for exclusive-locking-clients to work." NL
1354 "# exclusive-locking = false" NL
1355 "### Set the SQLite busy timeout in milliseconds: the maximum time" NL
1356 "### the client waits to get access to the SQLite database before" NL
1357 "### returning an error. The default is 10000, i.e. 10 seconds." NL
1358 "### Longer values may be useful when exclusive locking is enabled." NL
1359 "# busy-timeout = 10000" NL