~ubuntu-branches/debian/sid/subversion/sid

« back to all changes in this revision

Viewing changes to subversion/include/svn_client.h

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2014-02-20 20:38:10 UTC
  • mfrom: (0.2.11)
  • Revision ID: package-import@ubuntu.com-20140220203810-w61omsda8fs70pta
Tags: 1.8.8-1
* New upstream release.  Refresh patches.
  - Remove backported patches sqlite_3.8.x_workaround & swig-pl_build_fix
  - Fix integer overflows with 32-bit svnserv, which could cause an infinite
    loop (Closes: #738840) or inaccurate statistics (Closes: #738841)
  - Work around SQLite not honoring umask when creating rep-cache.db.
    (Closes: #735446)
  - Includes security fix:
    + CVE-2014-0032: mod_dav_svn crash when handling certain requests with
      SVNListParentPath on  (Closes: #737815)
* Add a subversion-dbg package.  (Closes: #508147)
* Bump libdb5.1-dev → libdb5.3-dev  (Closes: #738650)

Show diffs side-by-side

added added

removed removed

Lines of Context:
439
439
#define SVN_CLIENT_COMMIT_ITEM_TEXT_MODS   0x04
440
440
#define SVN_CLIENT_COMMIT_ITEM_PROP_MODS   0x08
441
441
#define SVN_CLIENT_COMMIT_ITEM_IS_COPY     0x10
442
 
/** @since New in 1.2. */
 
442
/** One of the flags for a commit item.  The node has a lock token that
 
443
 * should be released after a successful commit and, if the node is also
 
444
 * modified, transferred to the server as part of the commit process.
 
445
 *
 
446
 * @since New in 1.2. */
443
447
#define SVN_CLIENT_COMMIT_ITEM_LOCK_TOKEN  0x20
444
 
/** @since New in 1.8. */
 
448
/** One of the flags for a commit item.  The node is the 'moved here'
 
449
 * side of a local move.  This is used to check and enforce that the
 
450
 * other side of the move is also included in the commit.
 
451
 *
 
452
 * @since New in 1.8. */
445
453
#define SVN_CLIENT_COMMIT_ITEM_MOVED_HERE  0x40
446
454
/** @} */
447
455
 
6449
6457
                           apr_pool_t *result_pool,
6450
6458
                           apr_pool_t *scratch_pool);
6451
6459
 
6452
 
/** Similar to svn_client_open_ra_session(), but with @ wri_abspath
 
6460
/** Similar to svn_client_open_ra_session2(), but with @ wri_abspath
6453
6461
 * always passed as NULL, and with the same pool used as both @a
6454
6462
 * result_pool and @a scratch_pool.
6455
6463
 *