You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2015/05/20 11:14:41 UTC

svn commit: r1680495 - /subversion/trunk/subversion/svn/svn.c

Author: stsp
Date: Wed May 20 09:14:41 2015
New Revision: 1680495

URL: http://svn.apache.org/r1680495
Log:
Follow-up to r1678494:

* subversion/svn/svn.c
  (svn_cl__cmd_table): Extend documentation of svn:auto-props.
   Now contains all basic information neccessary for using this property
   without consulting additional documentation. Based on text from svnbook.

Modified:
    subversion/trunk/subversion/svn/svn.c

Modified: subversion/trunk/subversion/svn/svn.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/svn.c?rev=1680495&r1=1680494&r2=1680495&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/svn.c (original)
+++ subversion/trunk/subversion/svn/svn.c Wed May 20 09:14:41 2015
@@ -1445,8 +1445,13 @@ const svn_opt_subcommand_desc2_t svn_cl_
      "  directory:\n"
      "    svn:ignore         - A list of file glob patterns to ignore, one per line.\n"
      "    svn:global-ignores - Like svn:ignore, but inheritable.\n"
-     "    svn:auto-props     - A list of file glob patterns and properties to set\n"
-     "       when adding such files; like [auto-props] in the client configuration.\n"
+     "    svn:auto-props     - Automatically set properties on files when they are\n"
+     "      added or imported. Contains key-value pairs, one per line, in the format:\n"
+     "        PATTERN = PROPNAME=VALUE[;PROPNAME=VALUE ...]\n"
+     "      Example (where a literal ';' is escaped by adding another ';'):\n"
+     "        *.html = svn:eol-style=native;svn:mime-type=text/html;; charset=UTF8\n"
+     "      This property is inherited to all children of the directory it is set on.\n"
+     "      See also [auto-props] in the client configuration file.\n"
      "    svn:externals      - A list of module specifiers, one per line, in the\n"
      "      following format similar to the syntax of 'svn checkout':\n"
      "        [-r REV] URL[@PEG] LOCALPATH\n"