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

« back to all changes in this revision

Viewing changes to subversion/bindings/swig/proxy/svn_client_h.swg

  • 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:
1
1
/* Proxy classes for svn_client.h
2
 
 * DO NOT EDIT -- AUTOMATICALLY GENERATED */
 
2
 * DO NOT EDIT -- AUTOMATICALLY GENERATED
 
3
 * BY build/generator/swig/header_wrappers.py */
3
4
 
4
5
/* No default constructors for opaque structs */
5
6
#ifdef SWIGPYTHON
8
9
/* Callback typemaps */
9
10
#ifdef SWIGPYTHON
10
11
%apply CALLABLE_CALLBACK {
 
12
  svn_proplist_receiver2_t,
11
13
  svn_proplist_receiver_t,
12
14
  svn_client_get_commit_log3_t,
13
15
  svn_client_get_commit_log2_t,
16
18
  svn_client_blame_receiver2_t,
17
19
  svn_client_blame_receiver_t,
18
20
  svn_client_diff_summarize_func_t,
 
21
  svn_client_import_filter_func_t,
19
22
  svn_client_status_func_t,
 
23
  svn_client_list_func2_t,
20
24
  svn_client_list_func_t,
21
25
  svn_info_receiver_t,
22
26
  svn_client_info_receiver2_t,
23
27
  svn_client_patch_func_t
24
28
};
25
29
%apply CALLABLE_CALLBACK * {
 
30
  svn_proplist_receiver2_t *,
26
31
  svn_proplist_receiver_t *,
27
32
  svn_client_get_commit_log3_t *,
28
33
  svn_client_get_commit_log2_t *,
31
36
  svn_client_blame_receiver2_t *,
32
37
  svn_client_blame_receiver_t *,
33
38
  svn_client_diff_summarize_func_t *,
 
39
  svn_client_import_filter_func_t *,
34
40
  svn_client_status_func_t *,
 
41
  svn_client_list_func2_t *,
35
42
  svn_client_list_func_t *,
36
43
  svn_info_receiver_t *,
37
44
  svn_client_info_receiver2_t *,
54
61
  void *conflict_baton,
55
62
  void *conflict_baton2,
56
63
  void *commit_baton,
 
64
  void *filter_baton,
57
65
  void *backwards_compatibility_baton,
58
66
  void *status_baton,
59
67
  void *receiver_baton,
87
95
/* Callbacks */
88
96
 
89
97
%inline %{
 
98
static svn_error_t * svn_proplist_invoke_receiver2(
 
99
  svn_proplist_receiver2_t _obj, void *baton, const char *path, apr_hash_t *prop_hash, apr_array_header_t *inherited_props, apr_pool_t *scratch_pool) {
 
100
  return _obj(baton, path, prop_hash, inherited_props, scratch_pool);
 
101
}
 
102
 
90
103
static svn_error_t * svn_proplist_invoke_receiver(
91
104
  svn_proplist_receiver_t _obj, void *baton, const char *path, apr_hash_t *prop_hash, apr_pool_t *pool) {
92
105
  return _obj(baton, path, prop_hash, pool);
127
140
  return _obj(diff, baton, pool);
128
141
}
129
142
 
 
143
static svn_error_t * svn_client_invoke_import_filter_func(
 
144
  svn_client_import_filter_func_t _obj, void *baton, svn_boolean_t *filtered, const char *local_abspath, const svn_io_dirent2_t *dirent, apr_pool_t *scratch_pool) {
 
145
  return _obj(baton, filtered, local_abspath, dirent, scratch_pool);
 
146
}
 
147
 
130
148
static svn_error_t * svn_client_invoke_status_func(
131
149
  svn_client_status_func_t _obj, void *baton, const char *path, const svn_client_status_t *status, apr_pool_t *scratch_pool) {
132
150
  return _obj(baton, path, status, scratch_pool);
133
151
}
134
152
 
 
153
static svn_error_t * svn_client_invoke_list_func2(
 
154
  svn_client_list_func2_t _obj, void *baton, const char *path, const svn_dirent_t *dirent, const svn_lock_t *lock, const char *abs_path, const char *external_parent_url, const char *external_target, apr_pool_t *scratch_pool) {
 
155
  return _obj(baton, path, dirent, lock, abs_path, external_parent_url, external_target, scratch_pool);
 
156
}
 
157
 
135
158
static svn_error_t * svn_client_invoke_list_func(
136
159
  svn_client_list_func_t _obj, void *baton, const char *path, const svn_dirent_t *dirent, const svn_lock_t *lock, const char *abs_path, apr_pool_t *pool) {
137
160
  return _obj(baton, path, dirent, lock, abs_path, pool);
155
178
%}
156
179
 
157
180
#ifdef SWIGPYTHON
 
181
%funcptr_proxy(svn_proplist_receiver2_t, svn_proplist_invoke_receiver2);
158
182
%funcptr_proxy(svn_proplist_receiver_t, svn_proplist_invoke_receiver);
159
183
%funcptr_proxy(svn_client_get_commit_log3_t, svn_client_invoke_get_commit_log3);
160
184
%funcptr_proxy(svn_client_get_commit_log2_t, svn_client_invoke_get_commit_log2);
163
187
%funcptr_proxy(svn_client_blame_receiver2_t, svn_client_invoke_blame_receiver2);
164
188
%funcptr_proxy(svn_client_blame_receiver_t, svn_client_invoke_blame_receiver);
165
189
%funcptr_proxy(svn_client_diff_summarize_func_t, svn_client_invoke_diff_summarize_func);
 
190
%funcptr_proxy(svn_client_import_filter_func_t, svn_client_invoke_import_filter_func);
166
191
%funcptr_proxy(svn_client_status_func_t, svn_client_invoke_status_func);
 
192
%funcptr_proxy(svn_client_list_func2_t, svn_client_invoke_list_func2);
167
193
%funcptr_proxy(svn_client_list_func_t, svn_client_invoke_list_func);
168
194
%funcptr_proxy(svn_info_receiver_t, svn_info_invoke_receiver);
169
195
%funcptr_proxy(svn_client_info_receiver2_t, svn_client_invoke_info_receiver2);