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

« back to all changes in this revision

Viewing changes to subversion/bindings/javahl/native/SVNRepos.h

  • Committer: Package Import Robot
  • Author(s): James McCoy, Peter Samuelson, James McCoy
  • Date: 2014-01-12 19:48:33 UTC
  • mfrom: (0.2.10)
  • Revision ID: package-import@ubuntu.com-20140112194833-w3axfwksn296jn5x
Tags: 1.8.5-1
[ Peter Samuelson ]
* New upstream release.  (Closes: #725787) Rediff patches:
  - Remove apr-abi1 (applied upstream), rename apr-abi2 to apr-abi
  - Remove loosen-sqlite-version-check (shouldn't be needed)
  - Remove java-osgi-metadata (applied upstream)
  - svnmucc prompts for a changelog if none is provided. (Closes: #507430)
  - Remove fix-bdb-version-detection, upstream uses "apu-config --dbm-libs"
  - Remove ruby-test-wc (applied upstream)
  - Fix “svn diff -r N file” when file has svn:mime-type set.
    (Closes: #734163)
  - Support specifying an encoding for mod_dav_svn's environment in which
    hooks are run.  (Closes: #601544)
  - Fix ordering of “svnadmin dump” paths with certain APR versions.
    (Closes: #687291)
  - Provide a better error message when authentication fails with an
    svn+ssh:// URL.  (Closes: #273874)
  - Updated Polish translations.  (Closes: #690815)

[ James McCoy ]
* Remove all traces of libneon, replaced by libserf.
* patches/sqlite_3.8.x_workaround: Upstream fix for wc-queries-test test
  failurse.
* Run configure with --with-apache-libexecdir, which allows removing part of
  patches/rpath.
* Re-enable auth-test as upstream has fixed the problem of picking up
  libraries from the environment rather than the build tree.
  (Closes: #654172)
* Point LD_LIBRARY_PATH at the built auth libraries when running the svn
  command during the build.  (Closes: #678224)
* Add a NEWS entry describing how to configure mod_dav_svn to understand
  UTF-8.  (Closes: #566148)
* Remove ancient transitional package, libsvn-ruby.
* Enable compatibility with Sqlite3 versions back to Wheezy.
* Enable hardening flags.  (Closes: #734918)
* patches/build-fixes: Enable verbose build logs.
* Build against the default ruby version.  (Closes: #722393)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include "InputStream.h"
36
36
#include "MessageReceiver.h"
37
37
#include "ReposNotifyCallback.h"
 
38
#include "ReposFreezeAction.h"
38
39
#include "StringArray.h"
39
40
#include "File.h"
40
41
 
51
52
                  bool usePostRevPropChangeHook);
52
53
  void rmtxns(File &path, StringArray &transactions);
53
54
  jlong recover(File &path, ReposNotifyCallback *notifyCallback);
 
55
  void freeze(jobjectArray jpaths, ReposFreezeAction* action);
54
56
  void lstxns(File &path, MessageReceiver &messageReceiver);
55
 
  void load(File &path, InputStream &dataIn, bool ignoreUUID, bool forceUUID,
 
57
  void load(File &path, InputStream &dataIn,
 
58
            Revision &revsionStart, Revision &revisionEnd,
 
59
            bool ignoreUUID, bool forceUUID,
56
60
            bool usePreCommitHook, bool usePostCommitHook,
57
61
            const char *relativePath, ReposNotifyCallback *notifyCallback);
58
62
  void listUnusedDBLogs(File &path,
59
63
                        MessageReceiver &messageReceiver);
60
64
  void listDBLogs(File &path, MessageReceiver &messageReceiver);
61
 
  void hotcopy(File &path, File &targetPath, bool cleanLogs);
 
65
  void hotcopy(File &path, File &targetPath, bool cleanLogs, bool incremental);
62
66
  void dump(File &path, OutputStream &dataOut, Revision &revsionStart,
63
67
            Revision &RevisionEnd, bool incremental, bool useDeltas,
64
68
            ReposNotifyCallback *notifyCallback);
69
73
  void pack(File &path, ReposNotifyCallback *callback);
70
74
  SVNRepos();
71
75
  virtual ~SVNRepos();
72
 
  void dispose();
 
76
  void dispose(jobject jthis);
73
77
  static SVNRepos *getCppObject(jobject jthis);
74
78
 
75
79
  static svn_error_t *checkCancel(void *cancelBaton);