Lines Matching defs:NL

46 #define NL APR_EOL_STR
197 "DB lock file, representing locks on the versioned filesystem." NL
198 "" NL
199 "All accessors -- both readers and writers -- of the repository's" NL
200 "Berkeley DB environment take out shared locks on this file, and" NL
201 "each accessor removes its lock when done. If and when the DB" NL
202 "recovery procedure is run, the recovery code takes out an" NL
203 "exclusive lock on this file, so we can be sure no one else is" NL
204 "using the DB during the recovery." NL
205 "" NL
206 "You should never have to edit or remove this file." NL;
209 "DB logs lock file, representing locks on the versioned filesystem logs." NL
210 "" NL
211 "All log manipulators of the repository's Berkeley DB environment" NL
212 "take out exclusive locks on this file to ensure that only one" NL
213 "accessor manipulates the logs at a time." NL
214 "" NL
215 "You should never have to edit or remove this file." NL;
218 "This file is not used by Subversion 1.3.x or later." NL
219 "However, its existence is required for compatibility with" NL
220 "Subversion 1.2.x or earlier." NL;
271 "# The hook program runs in an empty environment, unless the server is" NL \
272 "# explicitly configured otherwise. For example, a common problem is for" NL \
273 "# the PATH environment variable to not be set to its usual value, so" NL \
274 "# that subprograms fail to launch unless invoked via absolute path." NL \
275 "# If you're having unexpected problems with a hook program, the" NL \
276 "# culprit may be unusual (or missing) environment variables." NL
279 "# For more examples and pre-written hooks, see those in" NL \
280 "# the Subversion repository at" NL \
281 "# http://svn.apache.org/repos/asf/subversion/trunk/tools/hook-scripts/ and" NL \
282 "# http://svn.apache.org/repos/asf/subversion/trunk/contrib/hook-scripts/" NL
285 "# CAUTION:" NL \
286 "# For security reasons, you MUST always properly quote arguments when" NL \
287 "# you use them, as those arguments could contain whitespace or other" NL \
288 "# problematic characters. Additionally, you should delimit the list" NL \
289 "# of options with \"--\" before passing the arguments, so malicious" NL \
290 "# clients cannot bootleg unexpected options to the commands your" NL \
291 "# script aims to execute." NL \
292 "# For similar reasons, you should also add a trailing @ to URLs which" NL \
293 "# are passed to SVN commands accepting URLs with peg revisions." NL
305 "#!/bin/sh" NL
306 "" NL,
308 "#" NL
309 "# The default working directory for the invocation is undefined, so" NL
310 "# the program should set one explicitly if it cares." NL
311 "#" NL
312 "# On a Unix system, the normal procedure is to have '", script_name, "'" NL
313 "# invoke other programs to do the real work, though it may do the" NL
314 "# work itself too." NL
315 "#" NL
316 "# Note that '", script_name, "' must be executable by the user(s) who will" NL
317 "# invoke it (typically the user httpd runs as), and that user must" NL
318 "# have filesystem-level permission to access the repository." NL
319 "#" NL
320 "# On a Windows system, you should name the hook program" NL
321 "# '", script_name, ".bat' or '", script_name, ".exe'," NL
322 "# but the basic idea is the same." NL
323 "#" NL
325 "#" NL
327 "#" NL
328 "# Here is an example hook script, for a Unix /bin/sh interpreter." NL
330 "" NL
331 "" NL,
376 "# START-COMMIT HOOK" NL
377 "#" NL
378 "# The start-commit hook is invoked immediately after a Subversion txn is" NL
379 "# created and populated with initial revprops in the process of doing a" NL
380 "# commit. Subversion runs this hook by invoking a program (script, " NL
381 "# executable, binary, etc.) named '"SCRIPT_NAME"' (for which this file" NL
382 "# is a template) with the following ordered arguments:" NL
383 "#" NL
384 "# [1] REPOS-PATH (the path to this repository)" NL
385 "# [2] USER (the authenticated user attempting to commit)" NL
386 "# [3] CAPABILITIES (a colon-separated list of capabilities reported" NL
387 "# by the client; see note below)" NL
388 "# [4] TXN-NAME (the name of the commit txn just created)" NL
389 "#" NL
390 "# Note: The CAPABILITIES parameter is new in Subversion 1.5, and 1.5" NL
392 SVN_RA_CAPABILITY_MERGEINFO "\" capability." NL
393 "# If there are other capabilities, then the list is colon-separated," NL
395 "(the order is undefined)." NL
396 "#" NL
397 "# Note: The TXN-NAME parameter is new in Subversion 1.8. Prior to version" NL
398 "# 1.8, the start-commit hook was invoked before the commit txn was even" NL
399 "# created, so the ability to inspect the commit txn and its metadata from" NL
400 "# within the start-commit hook was not possible." NL
401 "# " NL
402 "# The list is self-reported by the client. Therefore, you should not" NL
403 "# make security assumptions based on the capabilities list, nor should" NL
404 "# you assume that clients reliably report every capability they have." NL
405 "#" NL
406 "# If the hook program exits with success, the commit continues; but" NL
407 "# if it exits with failure (non-zero), the commit is stopped before" NL
408 "# a Subversion txn is created, and STDERR is returned to the client." NL;
410 "REPOS=\"$1\"" NL
411 "USER=\"$2\"" NL
412 "" NL
413 "commit-allower.pl --repository \"$REPOS\" --user \"$USER\" || exit 1" NL
414 "special-auth-check.py --user \"$USER\" --auth-level 3 || exit 1" NL
415 "" NL
416 "# All checks passed, so allow the commit." NL
417 "exit 0" NL;
430 "# PRE-COMMIT HOOK" NL
431 "#" NL
432 "# The pre-commit hook is invoked before a Subversion txn is" NL
433 "# committed. Subversion runs this hook by invoking a program" NL
434 "# (script, executable, binary, etc.) named '"SCRIPT_NAME"' (for which" NL
435 "# this file is a template), with the following ordered arguments:" NL
436 "#" NL
437 "# [1] REPOS-PATH (the path to this repository)" NL
438 "# [2] TXN-NAME (the name of the txn about to be committed)" NL
439 "#" NL
440 "# [STDIN] LOCK-TOKENS ** the lock tokens are passed via STDIN." NL
441 "#" NL
442 "# If STDIN contains the line \"LOCK-TOKENS:\\n\" (the \"\\n\" denotes a" NL
443 "# single newline), the lines following it are the lock tokens for" NL
444 "# this commit. The end of the list is marked by a line containing" NL
445 "# only a newline character." NL
446 "#" NL
447 "# Each lock token line consists of a URI-escaped path, followed" NL
448 "# by the separator character '|', followed by the lock token string," NL
449 "# followed by a newline." NL
450 "#" NL
451 "# If the hook program exits with success, the txn is committed; but" NL
452 "# if it exits with failure (non-zero), the txn is aborted, no commit" NL
453 "# takes place, and STDERR is returned to the client. The hook" NL
454 "# program can use the 'svnlook' utility to help it examine the txn." NL
455 "#" NL
456 "# *** NOTE: THE HOOK PROGRAM MUST NOT MODIFY THE TXN, EXCEPT ***" NL
457 "# *** FOR REVISION PROPERTIES (like svn:log or svn:author). ***" NL
458 "#" NL
459 "# This is why we recommend using the read-only 'svnlook' utility." NL
460 "# In the future, Subversion may enforce the rule that pre-commit" NL
461 "# hooks should not modify the versioned data in txns, or else come" NL
462 "# up with a mechanism to make it safe to do so (by informing the" NL
463 "# committing client of the changes). However, right now neither" NL
464 "# mechanism is implemented, so hook writers just have to be careful." NL;
466 "REPOS=\"$1\"" NL
467 "TXN=\"$2\"" NL
468 "" NL
469 "# Make sure that the log message contains some text." NL
470 "SVNLOOK=" SVN_BINDIR "/svnlook" NL
471 "$SVNLOOK log -t \"$TXN\" \"$REPOS\" | \\" NL
472 " grep \"[a-zA-Z0-9]\" > /dev/null || exit 1" NL
473 "" NL
474 "# Check that the author of this commit has the rights to perform" NL
475 "# the commit on the files and directories being modified." NL
477 NL
478 "" NL
479 "# All checks passed, so allow the commit." NL
480 "exit 0" NL;
493 "# PRE-REVPROP-CHANGE HOOK" NL
494 "#" NL
495 "# The pre-revprop-change hook is invoked before a revision property" NL
496 "# is added, modified or deleted. Subversion runs this hook by invoking" NL
497 "# a program (script, executable, binary, etc.) named '"SCRIPT_NAME"'" NL
498 "# (for which this file is a template), with the following ordered" NL
499 "# arguments:" NL
500 "#" NL
501 "# [1] REPOS-PATH (the path to this repository)" NL
502 "# [2] REV (the revision being tweaked)" NL
503 "# [3] USER (the username of the person tweaking the property)" NL
504 "# [4] PROPNAME (the property being set on the revision)" NL
506 NL
507 "#" NL
508 "# [STDIN] PROPVAL ** the new property value is passed via STDIN." NL
509 "#" NL
510 "# If the hook program exits with success, the propchange happens; but" NL
511 "# if it exits with failure (non-zero), the propchange doesn't happen." NL
512 "# The hook program can use the 'svnlook' utility to examine the " NL
513 "# existing value of the revision property." NL
514 "#" NL
515 "# WARNING: unlike other hooks, this hook MUST exist for revision" NL
516 "# properties to be changed. If the hook does not exist, Subversion " NL
517 "# will behave as if the hook were present, but failed. The reason" NL
518 "# for this is that revision properties are UNVERSIONED, meaning that" NL
519 "# a successful propchange is destructive; the old value is gone" NL
520 "# forever. We recommend the hook back up the old value somewhere." NL;
522 "REPOS=\"$1\"" NL
523 "REV=\"$2\"" NL
524 "USER=\"$3\"" NL
525 "PROPNAME=\"$4\"" NL
526 "ACTION=\"$5\"" NL
527 "" NL
528 "if [ \"$ACTION\" = \"M\" -a \"$PROPNAME\" = \"svn:log\" ]; then exit 0; fi" NL
529 "" NL
530 "echo \"Changing revision properties other than svn:log is prohibited\" >&2" NL
531 "exit 1" NL;
544 "# PRE-LOCK HOOK" NL
545 "#" NL
546 "# The pre-lock hook is invoked before an exclusive lock is" NL
547 "# created. Subversion runs this hook by invoking a program " NL
548 "# (script, executable, binary, etc.) named '"SCRIPT_NAME"' (for which" NL
549 "# this file is a template), with the following ordered arguments:" NL
550 "#" NL
551 "# [1] REPOS-PATH (the path to this repository)" NL
552 "# [2] PATH (the path in the repository about to be locked)" NL
553 "# [3] USER (the user creating the lock)" NL
554 "# [4] COMMENT (the comment of the lock)" NL
555 "# [5] STEAL-LOCK (1 if the user is trying to steal the lock, else 0)" NL
556 "#" NL
557 "# If the hook program outputs anything on stdout, the output string will" NL
558 "# be used as the lock token for this lock operation. If you choose to use" NL
559 "# this feature, you must guarantee the tokens generated are unique across" NL
560 "# the repository each time." NL
561 "#" NL
562 "# If the hook program exits with success, the lock is created; but" NL
563 "# if it exits with failure (non-zero), the lock action is aborted" NL
564 "# and STDERR is returned to the client." NL;
566 "REPOS=\"$1\"" NL
567 "PATH=\"$2\"" NL
568 "USER=\"$3\"" NL
569 "COMMENT=\"$4\"" NL
570 "STEAL=\"$5\"" NL
571 "" NL
572 "# If a lock exists and is owned by a different person, don't allow it" NL
573 "# to be stolen (e.g., with 'svn lock --force ...')." NL
574 "" NL
575 "# (Maybe this script could send email to the lock owner?)" NL
576 "SVNLOOK=" SVN_BINDIR "/svnlook" NL
577 "GREP=/bin/grep" NL
578 "SED=/bin/sed" NL
579 "" NL
580 "LOCK_OWNER=`$SVNLOOK lock \"$REPOS\" \"$PATH\" | \\" NL
581 " $GREP '^Owner: ' | $SED 's/Owner: //'`" NL
582 "" NL
583 "# If we get no result from svnlook, there's no lock, allow the lock to" NL
584 "# happen:" NL
585 "if [ \"$LOCK_OWNER\" = \"\" ]; then" NL
586 " exit 0" NL
587 "fi" NL
588 "" NL
589 "# If the person locking matches the lock's owner, allow the lock to" NL
590 "# happen:" NL
591 "if [ \"$LOCK_OWNER\" = \"$USER\" ]; then" NL
592 " exit 0" NL
593 "fi" NL
594 "" NL
595 "# Otherwise, we've got an owner mismatch, so return failure:" NL
596 "echo \"Error: $PATH already locked by ${LOCK_OWNER}.\" 1>&2" NL
597 "exit 1" NL;
610 "# PRE-UNLOCK HOOK" NL
611 "#" NL
612 "# The pre-unlock hook is invoked before an exclusive lock is" NL
613 "# destroyed. Subversion runs this hook by invoking a program " NL
614 "# (script, executable, binary, etc.) named '"SCRIPT_NAME"' (for which" NL
615 "# this file is a template), with the following ordered arguments:" NL
616 "#" NL
617 "# [1] REPOS-PATH (the path to this repository)" NL
618 "# [2] PATH (the path in the repository about to be unlocked)" NL
619 "# [3] USER (the user destroying the lock)" NL
620 "# [4] TOKEN (the lock token to be destroyed)" NL
621 "# [5] BREAK-UNLOCK (1 if the user is breaking the lock, else 0)" NL
622 "#" NL
623 "# If the hook program exits with success, the lock is destroyed; but" NL
624 "# if it exits with failure (non-zero), the unlock action is aborted" NL
625 "# and STDERR is returned to the client." NL;
627 "REPOS=\"$1\"" NL
628 "PATH=\"$2\"" NL
629 "USER=\"$3\"" NL
630 "TOKEN=\"$4\"" NL
631 "BREAK=\"$5\"" NL
632 "" NL
633 "# If a lock is owned by a different person, don't allow it be broken." NL
634 "# (Maybe this script could send email to the lock owner?)" NL
635 "" NL
636 "SVNLOOK=" SVN_BINDIR "/svnlook" NL
637 "GREP=/bin/grep" NL
638 "SED=/bin/sed" NL
639 "" NL
640 "LOCK_OWNER=`$SVNLOOK lock \"$REPOS\" \"$PATH\" | \\" NL
641 " $GREP '^Owner: ' | $SED 's/Owner: //'`" NL
642 "" NL
643 "# If we get no result from svnlook, there's no lock, return success:" NL
644 "if [ \"$LOCK_OWNER\" = \"\" ]; then" NL
645 " exit 0" NL
646 "fi" NL
647 "" NL
648 "# If the person unlocking matches the lock's owner, return success:" NL
649 "if [ \"$LOCK_OWNER\" = \"$USER\" ]; then" NL
650 " exit 0" NL
651 "fi" NL
652 "" NL
653 "# Otherwise, we've got an owner mismatch, so return failure:" NL
654 "echo \"Error: $PATH locked by ${LOCK_OWNER}.\" 1>&2" NL
655 "exit 1" NL;
668 "# POST-COMMIT HOOK" NL
669 "#" NL
670 "# The post-commit hook is invoked after a commit. Subversion runs" NL
671 "# this hook by invoking a program (script, executable, binary, etc.)" NL
672 "# named '"SCRIPT_NAME"' (for which this file is a template) with the " NL
673 "# following ordered arguments:" NL
674 "#" NL
675 "# [1] REPOS-PATH (the path to this repository)" NL
676 "# [2] REV (the number of the revision just committed)" NL
677 "# [3] TXN-NAME (the name of the transaction that has become REV)" NL
678 "#" NL
679 "# Because the commit has already completed and cannot be undone," NL
680 "# the exit code of the hook program is ignored. The hook program" NL
681 "# can use the 'svnlook' utility to help it examine the" NL
682 "# newly-committed tree." NL;
684 "REPOS=\"$1\"" NL
685 "REV=\"$2\"" NL
686 "TXN_NAME=\"$3\"" NL
687 NL
688 "mailer.py commit \"$REPOS\" \"$REV\" /path/to/mailer.conf" NL;
701 "# POST-LOCK HOOK" NL
702 "#" NL
703 "# The post-lock hook is run after a path is locked. Subversion runs" NL
704 "# this hook by invoking a program (script, executable, binary, etc.)" NL
705 "# named '"SCRIPT_NAME"' (for which this file is a template) with the " NL
706 "# following ordered arguments:" NL
707 "#" NL
708 "# [1] REPOS-PATH (the path to this repository)" NL
709 "# [2] USER (the user who created the lock)" NL
710 "#" NL
711 "# The paths that were just locked are passed to the hook via STDIN." NL
712 "#" NL
713 "# Because the locks have already been created and cannot be undone," NL
714 "# the exit code of the hook program is ignored. The hook program" NL
715 "# can use the 'svnlook' utility to examine the paths in the repository" NL
716 "# but since the hook is invoked asynchronously the newly-created locks" NL
717 "# may no longer be present." NL;
719 "REPOS=\"$1\"" NL
720 "USER=\"$2\"" NL
721 "" NL
722 "# Send email to interested parties, let them know a lock was created:" NL
723 "mailer.py lock \"$REPOS\" \"$USER\" /path/to/mailer.conf" NL;
736 "# POST-UNLOCK HOOK" NL
737 "#" NL
738 "# The post-unlock hook runs after a path is unlocked. Subversion runs" NL
739 "# this hook by invoking a program (script, executable, binary, etc.)" NL
740 "# named '"SCRIPT_NAME"' (for which this file is a template) with the " NL
741 "# following ordered arguments:" NL
742 "#" NL
743 "# [1] REPOS-PATH (the path to this repository)" NL
744 "# [2] USER (the user who destroyed the lock)" NL
745 "#" NL
746 "# The paths that were just unlocked are passed to the hook via STDIN." NL
747 "#" NL
748 "# Because the lock has already been destroyed and cannot be undone," NL
749 "# the exit code of the hook program is ignored." NL;
751 "REPOS=\"$1\"" NL
752 "USER=\"$2\"" NL
753 "" NL
754 "# Send email to interested parties, let them know a lock was removed:" NL
755 "mailer.py unlock \"$REPOS\" \"$USER\" /path/to/mailer.conf" NL;
768 "# POST-REVPROP-CHANGE HOOK" NL
769 "#" NL
770 "# The post-revprop-change hook is invoked after a revision property" NL
771 "# has been added, modified or deleted. Subversion runs this hook by" NL
772 "# invoking a program (script, executable, binary, etc.) named" NL
773 "# '"SCRIPT_NAME"' (for which this file is a template), with the" NL
774 "# following ordered arguments:" NL
775 "#" NL
776 "# [1] REPOS-PATH (the path to this repository)" NL
777 "# [2] REV (the revision that was tweaked)" NL
778 "# [3] USER (the username of the person tweaking the property)" NL
779 "# [4] PROPNAME (the property that was changed)" NL
780 "# [5] ACTION (the property was 'A'dded, 'M'odified, or 'D'eleted)" NL
781 "#" NL
782 "# [STDIN] PROPVAL ** the old property value is passed via STDIN." NL
783 "#" NL
784 "# Because the propchange has already completed and cannot be undone," NL
785 "# the exit code of the hook program is ignored. The hook program" NL
786 "# can use the 'svnlook' utility to help it examine the" NL
787 "# new property value." NL;
789 "REPOS=\"$1\"" NL
790 "REV=\"$2\"" NL
791 "USER=\"$3\"" NL
792 "PROPNAME=\"$4\"" NL
793 "ACTION=\"$5\"" NL
794 "" NL
796 "\"$ACTION\" /path/to/mailer.conf" NL;
816 "### This file controls the configuration of the svnserve daemon, if you" NL
817 "### use it to allow access to this repository. (If you only allow" NL
818 "### access through http: and/or file: URLs, then this file is" NL
819 "### irrelevant.)" NL
820 "" NL
821 "### Visit http://subversion.apache.org/ for more information." NL
822 "" NL
823 "[general]" NL
824 "### The anon-access and auth-access options control access to the" NL
825 "### repository for unauthenticated (a.k.a. anonymous) users and" NL
826 "### authenticated users, respectively." NL
827 "### Valid values are \"write\", \"read\", and \"none\"." NL
828 "### Setting the value to \"none\" prohibits both reading and writing;" NL
829 "### \"read\" allows read-only access, and \"write\" allows complete " NL
830 "### read/write access to the repository." NL
831 "### The sample settings below are the defaults and specify that anonymous" NL
832 "### users have read-only access to the repository, while authenticated" NL
833 "### users have read and write access to the repository." NL
834 "# anon-access = read" NL
835 "# auth-access = write" NL
836 "### The password-db option controls the location of the password" NL
837 "### database file. Unless you specify a path starting with a /," NL
838 "### the file's location is relative to the directory containing" NL
839 "### this configuration file." NL
840 "### If SASL is enabled (see below), this file will NOT be used." NL
841 "### Uncomment the line below to use the default password file." NL
842 "# password-db = passwd" NL
843 "### The authz-db option controls the location of the authorization" NL
844 "### rules for path-based access control. Unless you specify a path" NL
845 "### starting with a /, the file's location is relative to the" NL
846 "### directory containing this file. The specified path may be a" NL
847 "### repository relative URL (^/) or an absolute file:// URL to a text" NL
848 "### file in a Subversion repository. If you don't specify an authz-db," NL
849 "### no path-based access control is done." NL
850 "### Uncomment the line below to use the default authorization file." NL
851 "# authz-db = " SVN_REPOS__CONF_AUTHZ NL
852 "### The groups-db option controls the location of the file with the" NL
853 "### group definitions and allows maintaining groups separately from the" NL
854 "### authorization rules. The groups-db file is of the same format as the" NL
855 "### authz-db file and should contain a single [groups] section with the" NL
856 "### group definitions. If the option is enabled, the authz-db file cannot" NL
857 "### contain a [groups] section. Unless you specify a path starting with" NL
858 "### a /, the file's location is relative to the directory containing this" NL
859 "### file. The specified path may be a repository relative URL (^/) or an" NL
860 "### absolute file:// URL to a text file in a Subversion repository." NL
861 "### This option is not being used by default." NL
862 "# groups-db = " SVN_REPOS__CONF_GROUPS NL
863 "### This option specifies the authentication realm of the repository." NL
864 "### If two repositories have the same authentication realm, they should" NL
865 "### have the same password database, and vice versa. The default realm" NL
866 "### is repository's uuid." NL
867 "# realm = My First Repository" NL
868 "### The force-username-case option causes svnserve to case-normalize" NL
869 "### usernames before comparing them against the authorization rules in the" NL
870 "### authz-db file configured above. Valid values are \"upper\" (to upper-" NL
871 "### case the usernames), \"lower\" (to lowercase the usernames), and" NL
872 "### \"none\" (to compare usernames as-is without case conversion, which" NL
873 "### is the default behavior)." NL
874 "# force-username-case = none" NL
875 "### The hooks-env options specifies a path to the hook script environment " NL
876 "### configuration file. This option overrides the per-repository default" NL
877 "### and can be used to configure the hook script environment for multiple " NL
878 "### repositories in a single file, if an absolute path is specified." NL
879 "### Unless you specify an absolute path, the file's location is relative" NL
880 "### to the directory containing this file." NL
881 "# hooks-env = " SVN_REPOS__CONF_HOOKS_ENV NL
882 "" NL
883 "[sasl]" NL
884 "### This option specifies whether you want to use the Cyrus SASL" NL
885 "### library for authentication. Default is false." NL
886 "### This section will be ignored if svnserve is not built with Cyrus" NL
887 "### SASL support; to check, run 'svnserve --version' and look for a line" NL
888 "### reading 'Cyrus SASL authentication is available.'" NL
889 "# use-sasl = true" NL
890 "### These options specify the desired strength of the security layer" NL
891 "### that you want SASL to provide. 0 means no encryption, 1 means" NL
892 "### integrity-checking only, values larger than 1 are correlated" NL
893 "### to the effective key length for encryption (e.g. 128 means 128-bit" NL
894 "### encryption). The values below are the defaults." NL
895 "# min-encryption = 0" NL
896 "# max-encryption = 256" NL;
905 "### This file is an example password file for svnserve." NL
906 "### Its format is similar to that of svnserve.conf. As shown in the" NL
907 "### example below it contains one section labelled [users]." NL
908 "### The name and password for each user follow, one account per line." NL
909 "" NL
910 "[users]" NL
911 "# harry = harryssecret" NL
912 "# sally = sallyssecret" NL;
923 "### This file is an example authorization file for svnserve." NL
924 "### Its format is identical to that of mod_authz_svn authorization" NL
925 "### files." NL
926 "### As shown below each section defines authorizations for the path and" NL
927 "### (optional) repository specified by the section name." NL
928 "### The authorizations follow. An authorization line can refer to:" NL
929 "### - a single user," NL
930 "### - a group of users defined in a special [groups] section," NL
931 "### - an alias defined in a special [aliases] section," NL
932 "### - all authenticated users, using the '$authenticated' token," NL
933 "### - only anonymous users, using the '$anonymous' token," NL
934 "### - anyone, using the '*' wildcard." NL
935 "###" NL
936 "### A match can be inverted by prefixing the rule with '~'. Rules can" NL
937 "### grant read ('r') access, read-write ('rw') access, or no access" NL
938 "### ('')." NL
939 "" NL
940 "[aliases]" NL
941 "# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average" NL
942 "" NL
943 "[groups]" NL
944 "# harry_and_sally = harry,sally" NL
945 "# harry_sally_and_joe = harry,sally,&joe" NL
946 "" NL
947 "# [/foo/bar]" NL
948 "# harry = rw" NL
949 "# &joe = r" NL
950 "# * =" NL
951 "" NL
952 "# [repository:/baz/fuz]" NL
953 "# @harry_and_sally = rw" NL
954 "# * = r" NL;
965 "### This file is an example hook script environment configuration file." NL
966 "### Hook scripts run in an empty environment by default." NL
967 "### As shown below each section defines environment variables for a" NL
968 "### particular hook script. The [default] section defines environment" NL
969 "### variables for all hook scripts, unless overridden by a hook-specific" NL
970 "### section." NL
971 "" NL
972 "### This example configures a UTF-8 locale for all hook scripts, so that " NL
973 "### special characters, such as umlauts, may be printed to stderr." NL
974 "### If UTF-8 is used with a mod_dav_svn server, the SVNUseUTF8 option must" NL
975 "### also be set to 'yes' in httpd.conf." NL
976 "### With svnserve, the LANG environment variable of the svnserve process" NL
977 "### must be set to the same value as given here." NL
978 "[default]" NL
979 "LANG = en_US.UTF-8" NL
980 "" NL
981 "### This sets the PATH environment variable for the pre-commit hook." NL
982 "[pre-commit]" NL
983 "PATH = /usr/local/bin:/usr/bin:/usr/sbin" NL;
1071 "This is a Subversion repository; use the 'svnadmin' and 'svnlook' " NL
1072 "tools to examine it. Do not add, delete, or modify files here " NL
1073 "unless you know how to avoid corrupting the repository." NL
1074 "" NL;
1076 "The directory \"" SVN_REPOS__DB_DIR "\" contains a Berkeley DB environment." NL
1077 "you may need to tweak the values in \"" SVN_REPOS__DB_DIR "/DB_CONFIG\" to match the" NL
1078 "requirements of your site." NL
1079 "" NL;
1081 "Visit http://subversion.apache.org/ for more information." NL;