Author: julianfoad
Date: Thu Dec 7 14:04:52 2017
New Revision: 1817372
URL: http://svn.apache.org/viewvc?rev=1817372&view=rev
Log:
On the 'shelve-checkpoint' branch: Add "@warning EXPERIMENTAL" to
Doxygen doc strings.
Modified:
subversion/branches/shelve-checkpoint/subversion/include/svn_client.h
Modified: subversion/branches/shelve-checkpoint/subversion/include/svn_client.h
URL:
http://svn.apache.org/viewvc/subversion/branches/shelve-checkpoint/subversion/include/svn_client.h?rev=1817372&r1=1817371&r2=1817372&view=diff
==============================================================================
--- subversion/branches/shelve-checkpoint/subversion/include/svn_client.h
(original)
+++ subversion/branches/shelve-checkpoint/subversion/include/svn_client.h Thu
Dec 7 14:04:52 2017
@@ -6724,6 +6724,7 @@ svn_client_cat(svn_stream_t *out,
/** A shelf.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
typedef struct svn_client_shelf_t
{
@@ -6742,6 +6743,7 @@ typedef struct svn_client_shelf_t
/** Open an existing shelf or create a new shelf.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6754,6 +6756,7 @@ svn_client_shelf_open(svn_client_shelf_t
/** Close @a shelf.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6763,6 +6766,7 @@ svn_client_shelf_close(svn_client_shelf_
/** Delete a shelf, by name.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6779,6 +6783,7 @@ svn_client_shelf_delete(const char *name
* create a new version of @a shelf.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6791,6 +6796,7 @@ svn_client_shelf_save_new_version(svn_cl
/** Apply version @a version of @a shelf to the WC.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6802,6 +6808,7 @@ svn_client_shelf_apply(svn_client_shelf_
/** Reverse-apply the current version of @a shelf to the WC.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6813,6 +6820,7 @@ svn_client_shelf_unapply(svn_client_shel
/** Set the current version of @a shelf. Delete all newer versions.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6824,6 +6832,7 @@ svn_client_shelf_set_current_version(svn
* of @a shelf.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6835,6 +6844,7 @@ svn_client_shelf_get_files(apr_array_hea
/** Information about one version.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
typedef struct svn_client_shelf_version_info_t
{
@@ -6845,6 +6855,7 @@ typedef struct svn_client_shelf_version_
/** Set @a *info to the files affected by the current version of @a shelf.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6860,6 +6871,7 @@ svn_client_shelf_version_get_info(svn_cl
* same except when a path is moved or copied.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6873,6 +6885,7 @@ svn_client_shelf_get_paths(apr_hash_t **
* the client context.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6883,6 +6896,7 @@ svn_client_shelf_set_log_message(svn_cli
/** Information about a shelf.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
typedef struct svn_client_shelf_info_t
{
@@ -6895,6 +6909,7 @@ typedef struct svn_client_shelf_info_t
* @a local_abspath is any path in the WC and is used to find the WC root.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *
@@ -6904,7 +6919,7 @@ svn_client_shelves_list(apr_hash_t **she
apr_pool_t *result_pool,
apr_pool_t *scratch_pool);
-/* Set @a *any_shelved to indicate if there are any shelved changes in this WC.
+/** Set @a *any_shelved to indicate if there are any shelved changes in this
WC.
*
* This shall provide the answer fast, regardless of how many changes
* are stored, unlike svn_client_shelves_list().
@@ -6915,6 +6930,7 @@ svn_client_shelves_list(apr_hash_t **she
* @a local_abspath is any path in the WC and is used to find the WC root.
*
* @since New in 1.X.
+ * @warning EXPERIMENTAL.
*/
SVN_EXPERIMENTAL
svn_error_t *