You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2013/03/19 15:25:48 UTC

svn commit: r1458307 - /subversion/trunk/subversion/include/svn_dav.h

Author: cmpilato
Date: Tue Mar 19 14:25:48 2013
New Revision: 1458307

URL: http://svn.apache.org/r1458307
Log:
* subversion/include/svn_dav.h
  More comment formatting tweaks.  Also, back-populate @since tags.

Modified:
    subversion/trunk/subversion/include/svn_dav.h

Modified: subversion/trunk/subversion/include/svn_dav.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_dav.h?rev=1458307&r1=1458306&r2=1458307&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_dav.h (original)
+++ subversion/trunk/subversion/include/svn_dav.h Tue Mar 19 14:25:48 2013
@@ -281,7 +281,8 @@ extern "C" {
  * @{ **/
 
 /** Presence of this in a DAV header in an OPTIONS request or response
- * indicates that the transmitter supports @c svn_depth_t. */
+ * indicates that the transmitter supports @c svn_depth_t.
+ */
 #define SVN_DAV_NS_DAV_SVN_DEPTH\
             SVN_DAV_PROP_NS_DAV "svn/depth"
 
@@ -292,33 +293,45 @@ extern "C" {
  * Note that this says nothing about whether the repository can handle
  * mergeinfo, only whether the server does.  For more information, see
  * mod_dav_svn/version.c:get_vsn_options().
+ *
+ * @since New in 1.5.
  */
 #define SVN_DAV_NS_DAV_SVN_MERGEINFO\
             SVN_DAV_PROP_NS_DAV "svn/mergeinfo"
 
 /** Presence of this in a DAV header in an OPTIONS response indicates
  * that the transmitter (in this case, the server) knows how to send
- * custom revprops in log responses. */
+ * custom revprops in log responses.
+ *
+ * @since New in 1.5.
+ */
 #define SVN_DAV_NS_DAV_SVN_LOG_REVPROPS\
             SVN_DAV_PROP_NS_DAV "svn/log-revprops"
 
 /** Presence of this in a DAV header in an OPTIONS response indicates
  * that the transmitter (in this case, the server) knows how to handle
- * a replay of a directory in the repository (not root). */
+ * a replay of a directory in the repository (not root).
+ *
+ * @since New in 1.5.
+ */
 #define SVN_DAV_NS_DAV_SVN_PARTIAL_REPLAY\
             SVN_DAV_PROP_NS_DAV "svn/partial-replay"
 
 /** Presence of this in a DAV header in an OPTIONS response indicates
  * that the transmitter (in this case, the server) knows how to enforce
  * old-value atomicity in PROPPATCH (for editing revprops).
- * @since New in 1.7 */
+ *
+ * @since New in 1.7.
+ */
 #define SVN_DAV_NS_DAV_SVN_ATOMIC_REVPROPS\
             SVN_DAV_PROP_NS_DAV "svn/atomic-revprops"
 
 /** Presence of this in a DAV header in an OPTIONS response indicates
  * that the transmitter (in this case, the server) knows how to get
  * inherited properties. 
- * @since New in 1.8. */
+ *
+ * @since New in 1.8.
+ */
 #define SVN_DAV_NS_DAV_SVN_INHERITED_PROPS\
             SVN_DAV_PROP_NS_DAV "svn/inherited-props"
 
@@ -326,28 +339,37 @@ extern "C" {
  * that the transmitter (in this case, the server) knows how to
  * properly handle ephemeral (that is, deleted-just-before-commit) FS
  * transaction properties.
- * @since New in 1.8. */
+ *
+ * @since New in 1.8.
+ */
 #define SVN_DAV_NS_DAV_SVN_EPHEMERAL_TXNPROPS\
             SVN_DAV_PROP_NS_DAV "svn/ephemeral-txnprops"
 
 /** Presence of this in a DAV header in an OPTIONS response indicates
  * that the transmitter (in this case, the server) supports serving
  * properties inline in update editor when 'send-all' is 'false'.
- * @since New in 1.8. */
+ *
+ * @since New in 1.8.
+ */
 #define SVN_DAV_NS_DAV_SVN_INLINE_PROPS\
             SVN_DAV_PROP_NS_DAV "svn/inline-props"
 
 /** Presence of this in a DAV header in an OPTIONS response indicates
  * that the transmitter (in this case, the server) knows how to handle
  * a replay of a revision resource.  Transmitters must be
- * HTTP-v2-enabled to support this feature.  */
+ * HTTP-v2-enabled to support this feature.
+ *
+ * @since New in 1.8.
+ */
 #define SVN_DAV_NS_DAV_SVN_REPLAY_REV_RESOURCE\
             SVN_DAV_PROP_NS_DAV "svn/replay-rev-resource"
 
 /** Presence of this in a DAV header in an OPTIONS response indicates
  * that the transmitter (in this case, the server) knows how to handle
  * a reversed fetch of file versions.
- * @since New in 1.8. */
+ *
+ * @since New in 1.8.
+ */
 #define SVN_DAV_NS_DAV_SVN_GET_FILE_REVS_REVERSE\
             SVN_DAV_PROP_NS_DAV "svn/get-file-revs-reverse"