svn commit: r1768156 - /subversion/trunk/COMMITTERS

2016-11-05 Thread ivan
Author: ivan Date: Sat Nov 5 07:34:21 2016 New Revision: 1768156 URL: http://svn.apache.org/viewvc?rev=1768156=rev Log: * COMMITTERS: Move myself to dormant section since I'm no longer member of Subversion PMC. Modified: subversion/trunk/COMMITTERS Modified: subversion/trunk/COMMITTERS

svn commit: r1765836 - in /subversion/trunk: build.conf subversion/libsvn_ra_serf/ra_serf.h subversion/libsvn_ra_serf/xml.c tools/server-side/mod_dontdothat/mod_dontdothat.c

2016-10-20 Thread ivan
Author: ivan Date: Thu Oct 20 15:38:46 2016 New Revision: 1765836 URL: http://svn.apache.org/viewvc?rev=1765836=rev Log: Use our svn_xml_parser_t wrapper around Expat XML parser in libsvn_ra_serf and mod_dontdothat. * build.conf (libsvn_ra_serf, mod_dontdothat): Remove dependency on xml

svn commit: r1765424 - /subversion/trunk/subversion/libsvn_subr/xml.c

2016-10-18 Thread ivan
Author: ivan Date: Tue Oct 18 12:14:34 2016 New Revision: 1765424 URL: http://svn.apache.org/viewvc?rev=1765424=rev Log: Use XML_StopParser with Expat >= 1.95.8 to abort XML parsing in the middle of parse buffer if svn_xml_signal_bailout() was called. (Mostly copied from subvers

svn commit: r1765398 - /subversion/trunk/subversion/tests/libsvn_subr/xml-test.c

2016-10-18 Thread ivan
Author: ivan Date: Tue Oct 18 08:11:58 2016 New Revision: 1765398 URL: http://svn.apache.org/viewvc?rev=1765398=rev Log: Extend XML parser tests to validate that callbacks are not invoked after svn_xml_signal_bailout() is called. * subversion/tests/libsvn_subr/xml-test.c (xml_callbacks_baton_t

svn commit: r1765286 - in /subversion/trunk/subversion: include/svn_xml.h libsvn_subr/xml.c tests/libsvn_subr/xml-test.c

2016-10-17 Thread ivan
Author: ivan Date: Mon Oct 17 13:49:05 2016 New Revision: 1765286 URL: http://svn.apache.org/viewvc?rev=1765286=rev Log: Implement standard lifetime semantics for svn_xml_parser_t: the object will be automatically freed on pool cleanup. But it still can be freed explicitly using

svn commit: r1765219 - /subversion/trunk/subversion/libsvn_subr/xml.c

2016-10-17 Thread ivan
Author: ivan Date: Mon Oct 17 08:07:30 2016 New Revision: 1765219 URL: http://svn.apache.org/viewvc?rev=1765219=rev Log: Fix potential error leak in svn_xml_parser_t wrapper for XML parser discovered by xml-test.exe#4 test added in r1765214. * subversion/libsvn_subr/xml.c (svn_xml_parse

svn commit: r1765216 - /subversion/trunk/subversion/tests/libsvn_subr/xml-test.c

2016-10-17 Thread ivan
Author: ivan Date: Mon Oct 17 07:57:59 2016 New Revision: 1765216 URL: http://svn.apache.org/viewvc?rev=1765216=rev Log: Follow-up to r1765214: Use APR_EGENERAL error code instead of SVN_ERR_ASSERTION_FAIL as test code, since test assertion macros have special handling of SVN_ERR_ASSERTION_FAIL

svn commit: r1765214 - in /subversion/trunk: build.conf subversion/tests/libsvn_subr/xml-test.c

2016-10-17 Thread ivan
Author: ivan Date: Mon Oct 17 07:10:36 2016 New Revision: 1765214 URL: http://svn.apache.org/viewvc?rev=1765214=rev Log: Add basic tests for svn_xml_parser_t API. * build.conf (xml-test): New. (__ALL_TESTS__): Add xml-test to dependency list. * subversion/tests/libsvn_subr/xml-test.c

svn commit: r1765213 - /subversion/trunk/build.conf

2016-10-17 Thread ivan
Author: ivan Date: Mon Oct 17 06:20:48 2016 New Revision: 1765213 URL: http://svn.apache.org/viewvc?rev=1765213=rev Log: Small correctness fix in build.conf: remove dependency on xml (libexpat) from serf, because serf doesn't use libexpat. Only libsvn_ra_serf does, but it has explicit dependency

svn commit: r1764919 - in /subversion/trunk: subversion/include/svn_client.h subversion/include/svn_wc.h subversion/libsvn_subr/cache-membuffer.c subversion/svn/svn.c subversion/svnmucc/svnmucc.c tool

2016-10-14 Thread ivan
Author: ivan Date: Fri Oct 14 14:36:39 2016 New Revision: 1764919 URL: http://svn.apache.org/viewvc?rev=1764919=rev Log: Improve C90 compatibility by removing trailing commas in enum lists as well as converting a variadic macro stub with an empty function. * subversion/include/svn_client.h

svn commit: r1764895 - in /subversion/trunk/subversion: include/svn_client.h libsvn_client/conflicts.c svn/conflict-callbacks.c

2016-10-14 Thread ivan
Author: ivan Date: Fri Oct 14 13:40:14 2016 New Revision: 1764895 URL: http://svn.apache.org/viewvc?rev=1764895=rev Log: Rename svn_client_conflict_option_describe() to svn_client_conflict_option_get_description(). * subversion/include/svn_client.h * subversion/libsvn_client/conflicts.c

svn commit: r1764892 - in /subversion/trunk/subversion: include/svn_client.h libsvn_client/conflicts.c svn/conflict-callbacks.c

2016-10-14 Thread ivan
Author: ivan Date: Fri Oct 14 13:37:03 2016 New Revision: 1764892 URL: http://svn.apache.org/viewvc?rev=1764892=rev Log: Simplify svn_client_conflict_option_describe() API to match svn_client_conflict_option_label(). * subversion/include/svn_client.h * subversion/libsvn_client/conflicts.c

svn commit: r1764883 - in /subversion/trunk/subversion: include/svn_client.h libsvn_client/conflicts.c svn/conflict-callbacks.c

2016-10-14 Thread ivan
Author: ivan Date: Fri Oct 14 12:47:52 2016 New Revision: 1764883 URL: http://svn.apache.org/viewvc?rev=1764883=rev Log: Move conflict resolution options' labels out of the client. * subversion/include/svn_client.h: (svn_client_conflict_option_get_label): New function. * subversion

svn commit: r1764699 - /subversion/branches/1.9.x/STATUS

2016-10-13 Thread ivan
Author: ivan Date: Thu Oct 13 14:38:45 2016 New Revision: 1764699 URL: http://svn.apache.org/viewvc?rev=1764699=rev Log: * STATUS: Use fixed revision instead of HEAD in '1.9.x-fsfs-pack-fixes' nomination, otherwise nomination may change silently without been tracked in STATUS file. Modified

svn commit: r1764696 - /subversion/branches/1.9.x/STATUS

2016-10-13 Thread ivan
Author: ivan Date: Thu Oct 13 14:26:18 2016 New Revision: 1764696 URL: http://svn.apache.org/viewvc?rev=1764696=rev Log: * STATUS: Remove my veto from '1.9.x-fsfs-pack-fixes' nomination since revision in question was removed from the nomination. Modified: subversion/branches/1.9.x/STATUS

svn commit: r1764536 - /subversion/branches/1.9.x/STATUS

2016-10-12 Thread ivan
Author: ivan Date: Wed Oct 12 20:13:24 2016 New Revision: 1764536 URL: http://svn.apache.org/viewvc?rev=1764536=rev Log: * STATUS: Veto r1759116 group. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion

svn propchange: r1764473 - svn:log

2016-10-12 Thread ivan
Author: ivan Revision: 1764473 Modified property: svn:log Modified: svn:log at Wed Oct 12 14:28:32 2016 -- --- svn:log (original) +++ svn:log Wed Oct 12 14:28:32 2016 @@ -6,6 +6,6 @@ Remove variables which are written

svn commit: r1764439 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-10-12 Thread ivan
Author: ivan Date: Wed Oct 12 11:15:53 2016 New Revision: 1764439 URL: http://svn.apache.org/viewvc?rev=1764439=rev Log: Follow-up to r1764423: tweak initial size of APR array for the text conflict options to match maximum number of entries to be added. * subversion/libsvn_client/conflicts.c

svn commit: r1764423 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-10-12 Thread ivan
Author: ivan Date: Wed Oct 12 09:47:10 2016 New Revision: 1764423 URL: http://svn.apache.org/viewvc?rev=1764423=rev Log: Refactor svn_client_conflict_text_get_resolution_options() and svn_client_conflict_prop_get_resolution_options(). * subversion/libsvn_client/conflicts.c

svn commit: r1764221 - /subversion/trunk/subversion/svn/conflict-callbacks.c

2016-10-11 Thread ivan
Author: ivan Date: Tue Oct 11 10:37:10 2016 New Revision: 1764221 URL: http://svn.apache.org/viewvc?rev=1764221=rev Log: Fix minor bug in property conflict interactive resolver. * subversion/svn/conflict-callbacks.c (merge_prop_conflict): Check THEIR_PROPVAL for NULL instead of checking

svn commit: r1764042 - /subversion/branches/1.9.x/STATUS

2016-10-10 Thread ivan
Author: ivan Date: Mon Oct 10 09:43:19 2016 New Revision: 1764042 URL: http://svn.apache.org/viewvc?rev=1764042=rev Log: * STATUS: Nominate r1764034. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches

svn commit: r1764041 - /subversion/branches/1.9.x/STATUS

2016-10-10 Thread ivan
Author: ivan Date: Mon Oct 10 09:40:30 2016 New Revision: 1764041 URL: http://svn.apache.org/viewvc?rev=1764041=rev Log: * STATUS: Vote for r1763934. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches

svn commit: r1764034 - /subversion/trunk/build/win32/svn.rc

2016-10-10 Thread ivan
Author: ivan Date: Mon Oct 10 09:26:23 2016 New Revision: 1764034 URL: http://svn.apache.org/viewvc?rev=1764034=rev Log: Use 'Apache Software Foundation' instead of 'http://subversion.apache.org' as CompanyName/Publisher for Windows executables. * build/win32/svn.rc (CompanyName): Change

svn commit: r1763152 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-10-03 Thread ivan
Author: ivan Date: Mon Oct 3 10:41:46 2016 New Revision: 1763152 URL: http://svn.apache.org/viewvc?rev=1763152=rev Log: Extract code that creates svn_client_conflict_option_t and adds it to array of options. * subversion/libsvn_client/conflicts.c (add_resolution_option): New

svn commit: r1763138 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-10-03 Thread ivan
Author: ivan Date: Mon Oct 3 09:22:46 2016 New Revision: 1763138 URL: http://svn.apache.org/viewvc?rev=1763138=rev Log: * subversion/libsvn_client/conflicts.c (svn_client_conflict_text_get_resolution_options, svn_client_conflict_prop_get_resolution_options): Set CONFLICT member to proper

svn commit: r1760132 - /subversion/trunk/subversion/tests/libsvn_wc/wc-test.c

2016-09-10 Thread ivan
Author: ivan Date: Sat Sep 10 08:06:44 2016 New Revision: 1760132 URL: http://svn.apache.org/viewvc?rev=1760132=rev Log: Add basic tests for svn_wc__internal_file_modified_p() function. * subversion/tests/libsvn_wc/wc-test.c (test_internal_file_modified): New. (test_funcs): Add

svn commit: r1759779 - /subversion/branches/1.9.x/STATUS

2016-09-08 Thread ivan
Author: ivan Date: Thu Sep 8 11:16:32 2016 New Revision: 1759779 URL: http://svn.apache.org/viewvc?rev=1759779=rev Log: * STATUS: Vote for r1759686. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches

svn commit: r1759242 - /subversion/trunk/subversion/libsvn_subr/string.c

2016-09-05 Thread ivan
Author: ivan Date: Mon Sep 5 12:09:06 2016 New Revision: 1759242 URL: http://svn.apache.org/viewvc?rev=1759242=rev Log: Follow-up to r1759177: Add explicit cast to silence compiler warning. * subversion/libsvn_subr/string.c (svn_stringbuf_set): Cast str->data to void ** in c

svn commit: r1759233 - /subversion/trunk/subversion/libsvn_wc/questions.c

2016-09-05 Thread ivan
Author: ivan Date: Mon Sep 5 11:32:54 2016 New Revision: 1759233 URL: http://svn.apache.org/viewvc?rev=1759233=rev Log: Use SHA-1 checksum to find whether files are actually modified in working copy if timestamps don't match. Before this change we were doing this: 1. Compare file timestamps

svn commit: r1759177 - in /subversion/trunk/subversion: libsvn_subr/string.c tests/libsvn_subr/string-test.c

2016-09-04 Thread ivan
Author: ivan Date: Sun Sep 4 12:31:30 2016 New Revision: 1759177 URL: http://svn.apache.org/viewvc?rev=1759177=rev Log: Save few cycles in svn_stringbuf_set(). * subversion/libsvn_subr/string.c (svn_stringbuf_set): Do not use svn_stringbuf_ensure() because it will preserve existing

svn commit: r1759173 - /subversion/trunk/subversion/tests/libsvn_subr/string-test.c

2016-09-04 Thread ivan
Author: ivan Date: Sun Sep 4 11:56:17 2016 New Revision: 1759173 URL: http://svn.apache.org/viewvc?rev=1759173=rev Log: Follow-up to r1612823: Rename test_string_skip_prefix() to test_cstring_skip_prefix() since it tests svn_cstring_skip_prefix(). * subversion/tests/libsvn_subr/string-test.c

svn commit: r1759161 - /subversion/trunk/subversion/libsvn_wc/wc_db_pristine.c

2016-09-04 Thread ivan
Author: ivan Date: Sun Sep 4 09:32:14 2016 New Revision: 1759161 URL: http://svn.apache.org/viewvc?rev=1759161=rev Log: Remove invalid assertion from svn_wc__db_pristine_read(): docstring explicitly specifies that CONTENTS can be NULL. Implementation is already handles situation when CONTENTS

svn commit: r1759135 - /subversion/trunk/subversion/libsvn_fs_fs/transaction.c

2016-09-03 Thread ivan
Author: ivan Date: Sat Sep 3 21:38:45 2016 New Revision: 1759135 URL: http://svn.apache.org/viewvc?rev=1759135=rev Log: FSFS: Open transaction's proto revision in write-only mode. Read/write mode was enabled in r1535686 to support upgrading transactions addressing mode. But it was simplified

svn commit: r1758945 - /subversion/branches/1.9.x/STATUS

2016-09-02 Thread ivan
Author: ivan Date: Fri Sep 2 12:28:43 2016 New Revision: 1758945 URL: http://svn.apache.org/viewvc?rev=1758945=rev Log: * STATUS: Vote and approve r1758781. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion

svn commit: r1758420 - /subversion/branches/1.9.x/STATUS

2016-08-30 Thread ivan
Author: ivan Date: Tue Aug 30 16:24:59 2016 New Revision: 1758420 URL: http://svn.apache.org/viewvc?rev=1758420=rev Log: * STATUS: Vote for r1758224 group. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion

svn commit: r1758365 - /subversion/branches/1.9.x/STATUS

2016-08-30 Thread ivan
Author: ivan Date: Tue Aug 30 11:21:23 2016 New Revision: 1758365 URL: http://svn.apache.org/viewvc?rev=1758365=rev Log: * STATUS: Vote for r1758269. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches

svn commit: r1758183 [1/2] - in /subversion/trunk/subversion: include/svn_client.h libsvn_client/conflicts.c svn/conflict-callbacks.c tests/libsvn_client/conflicts-test.c

2016-08-29 Thread ivan
Author: ivan Date: Mon Aug 29 08:05:28 2016 New Revision: 1758183 URL: http://svn.apache.org/viewvc?rev=1758183=rev Log: Remove pointer to svn_client_ctx_t from svn_client_conflict_t. While storing a pointer to svn_client_ctx_t may be useful for simple cases, it makes using the new API more

svn commit: r1758183 [2/2] - in /subversion/trunk/subversion: include/svn_client.h libsvn_client/conflicts.c svn/conflict-callbacks.c tests/libsvn_client/conflicts-test.c

2016-08-29 Thread ivan
Modified: subversion/trunk/subversion/tests/libsvn_client/conflicts-test.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_client/conflicts-test.c?rev=1758183=1758182=1758183=diff == ---

svn commit: r1757881 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-26 Thread ivan
Author: ivan Date: Fri Aug 26 15:20:03 2016 New Revision: 1757881 URL: http://svn.apache.org/viewvc?rev=1757881=rev Log: * subversion/libsvn_client/conflicts.c (resolve_merge_incoming_added_file_text_merge): Pass NULL as FILE argument to svn_io_open_unique_file3() to close empty file

svn commit: r1757878 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-26 Thread ivan
Author: ivan Date: Fri Aug 26 15:15:32 2016 New Revision: 1757878 URL: http://svn.apache.org/viewvc?rev=1757878=rev Log: Simplify code by using svn_stream_open_unique() instead of svn_io_open_unique_file3() + svn_stream_from_aprfile2(). * subversion/libsvn_client/conflicts.c

svn commit: r1757857 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-26 Thread ivan
Author: ivan Date: Fri Aug 26 14:10:30 2016 New Revision: 1757857 URL: http://svn.apache.org/viewvc?rev=1757857=rev Log: Do not perform svn_io_file_flush() on already closed file in conflict resolution code. The code could be simplified using svn_stream_open_unique(), but I'm going to do

svn commit: r1757841 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-26 Thread ivan
Author: ivan Date: Fri Aug 26 13:14:42 2016 New Revision: 1757841 URL: http://svn.apache.org/viewvc?rev=1757841=rev Log: * subversion/libsvn_client/conflicts.c (merge_incoming_added_file_replace): Do not use CTX->CANCEL_BATON as CANCEL_FUNC in call to svn_stream_copy3(). Modif

svn commit: r1757819 - /subversion/branches/1.9.x/STATUS

2016-08-26 Thread ivan
Author: ivan Date: Fri Aug 26 11:08:12 2016 New Revision: 1757819 URL: http://svn.apache.org/viewvc?rev=1757819=rev Log: * STATUS: Vote and approve r1757529 group. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc

svn commit: r1757763 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-25 Thread ivan
Author: ivan Date: Thu Aug 25 22:17:54 2016 New Revision: 1757763 URL: http://svn.apache.org/viewvc?rev=1757763=rev Log: Avoid flushing changes to disk when resolving tree conflict: we do not use flush to disk for working copy operations. * subversion/libsvn_client/conflicts.c

svn commit: r1757762 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-25 Thread ivan
Author: ivan Date: Thu Aug 25 22:12:51 2016 New Revision: 1757762 URL: http://svn.apache.org/viewvc?rev=1757762=rev Log: Get rid of unnecessary operation in tree conflict resolution. * subversion/libsvn_client/conflicts.c (resolve_update_incoming_added_file_replace): Do not remove file before

svn commit: r1757761 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-25 Thread ivan
Author: ivan Date: Thu Aug 25 22:08:19 2016 New Revision: 1757761 URL: http://svn.apache.org/viewvc?rev=1757761=rev Log: Simplify tree conflict resolution code a bit. * subversion/libsvn_client/conflicts.c (resolve_update_incoming_added_file_replace): Pass NULL as FILE

svn commit: r1757760 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-25 Thread ivan
Author: ivan Date: Thu Aug 25 21:58:53 2016 New Revision: 1757760 URL: http://svn.apache.org/viewvc?rev=1757760=rev Log: * subversion/libsvn_client/conflicts.c (verify_local_state_for_incoming_add_upon_update): Check for ERR && ERR->APR_ERR in single if statement. Modified:

svn commit: r1757757 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-25 Thread ivan
Author: ivan Date: Thu Aug 25 21:46:19 2016 New Revision: 1757757 URL: http://svn.apache.org/viewvc?rev=1757757=rev Log: * subversion/libsvn_client/conflicts.c (resolve_postpone): Fix indentation. Modified: subversion/trunk/subversion/libsvn_client/conflicts.c Modified: subversion/trunk

svn commit: r1757756 - /subversion/trunk/subversion/libsvn_client/conflicts.c

2016-08-25 Thread ivan
Author: ivan Date: Thu Aug 25 21:45:22 2016 New Revision: 1757756 URL: http://svn.apache.org/viewvc?rev=1757756=rev Log: Use SVN_ERR_CEASE_INVOCATION error code instead of SVN_ERR_CANCELLED to to abort fetching log when gathering additional details of tree conflict. * subversion/libsvn_client

svn commit: r1757610 - /subversion/branches/1.9.x/STATUS

2016-08-25 Thread ivan
Author: ivan Date: Thu Aug 25 06:53:07 2016 New Revision: 1757610 URL: http://svn.apache.org/viewvc?rev=1757610=rev Log: * STATUS: Nominate r1756266 for backport. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc

svn commit: r1756651 - in /subversion/trunk/subversion: include/svn_io.h libsvn_fs/fs-loader.c libsvn_subr/io.c libsvn_subr/stream.c tests/libsvn_fs/fs-test.c tests/libsvn_subr/stream-test.c

2016-08-17 Thread ivan
Author: ivan Date: Wed Aug 17 16:37:14 2016 New Revision: 1756651 URL: http://svn.apache.org/viewvc?rev=1756651=rev Log: Follow-up to r1755486: Rename svn_stream_checksum() to svn_stream_contents_checksum(). Suggested by: danielsh * subversion/include/svn_io.h * subversion/libsvn_subr/stream.c

svn commit: r1756647 - /subversion/trunk/subversion/include/svn_io.h

2016-08-17 Thread ivan
Author: ivan Date: Wed Aug 17 16:07:47 2016 New Revision: 1756647 URL: http://svn.apache.org/viewvc?rev=1756647=rev Log: Follow-up to r1755486: Improve docstring. Suggested by: danielsh * subversion/include/svn_io.h (svn_stream_checksum): Improve docstring. Modified: subversion/trunk

svn commit: r1756377 - /subversion/trunk/subversion/libsvn_fs_fs/transaction.c

2016-08-15 Thread ivan
Author: ivan Date: Mon Aug 15 13:06:53 2016 New Revision: 1756377 URL: http://svn.apache.org/viewvc?rev=1756377=rev Log: FSFS: Do not spend time calculating FNV checksum when committing to repository that uses physical addressing. * subversion/libsvn_fs_fs/transaction.c (store_l2p_index_entry

svn commit: r1756364 - in /subversion/trunk/subversion: libsvn_fs_fs/cached_data.c libsvn_wc/wc_db_pristine.c

2016-08-15 Thread ivan
Author: ivan Date: Mon Aug 15 09:22:02 2016 New Revision: 1756364 URL: http://svn.apache.org/viewvc?rev=1756364=rev Log: Use apr_off_t_toa() instead of apr_psprintf("%" APR_OFF_T_FMT). * subversion/libsvn_fs_fs/cached_data.c * subversion/libsvn_wc/wc_db_pristine.c

svn commit: r1756266 - /subversion/trunk/subversion/libsvn_fs_fs/transaction.c

2016-08-13 Thread ivan
Author: ivan Date: Sat Aug 13 13:18:57 2016 New Revision: 1756266 URL: http://svn.apache.org/viewvc?rev=1756266=rev Log: FSFS: Write the sha1->rep mapping in transaction *after* we successfully written node revision to disk. Otherwise may get orphaned sha1->rep mapping entry if an error

svn commit: r1756265 - /subversion/trunk/subversion/libsvn_fs_fs/revprops.c

2016-08-13 Thread ivan
Author: ivan Date: Sat Aug 13 13:13:54 2016 New Revision: 1756265 URL: http://svn.apache.org/viewvc?rev=1756265=rev Log: * subversion/libsvn_fs_fs/revprops.c (repack_file_open): Use normal const char * instead of svn_string_t. Modified: subversion/trunk/subversion/libsvn_fs_fs/revprops.c

svn commit: r1756264 - /subversion/trunk/subversion/libsvn_fs_fs/revprops.c

2016-08-13 Thread ivan
Author: ivan Date: Sat Aug 13 13:06:48 2016 New Revision: 1756264 URL: http://svn.apache.org/viewvc?rev=1756264=rev Log: * subversion/libsvn_fs_fs/revprops.c (serialize_revprops_header): Use svn_stream_puts() instead of svn_stream_printf(). Modified: subversion/trunk/subversion

svn commit: r1756258 - /subversion/trunk/subversion/libsvn_fs_fs/transaction.c

2016-08-13 Thread ivan
Author: ivan Date: Sat Aug 13 12:50:16 2016 New Revision: 1756258 URL: http://svn.apache.org/viewvc?rev=1756258=rev Log: * subversion/libsvn_fs_fs/transaction.c (store_p2l_index_entry): Mark ENTRY argument as const. Modified: subversion/trunk/subversion/libsvn_fs_fs/transaction.c Modified

svn commit: r1756193 - in /subversion/trunk/subversion/libsvn_subr: io.c sysinfo.c

2016-08-12 Thread ivan
Author: ivan Date: Fri Aug 12 16:55:55 2016 New Revision: 1756193 URL: http://svn.apache.org/viewvc?rev=1756193=rev Log: Use Unicode Windows API. * subversion/libsvn_subr/io.c (win_init_dynamic_imports): Use GetModuleHandleW instead of GetModuleHandleA. * subversion/libsvn_subr/sysinfo.c

svn commit: r1755997 - /subversion/trunk/subversion/libsvn_subr/io.c

2016-08-11 Thread ivan
Author: ivan Date: Thu Aug 11 14:41:29 2016 New Revision: 1755997 URL: http://svn.apache.org/viewvc?rev=1755997=rev Log: Remove redundant check. * subversion/libsvn_subr/io.c (svn_io_remove_file2): Remove check for !apr_err, because we have the same check few lines below. Modified

svn commit: r1755991 - /subversion/trunk/subversion/libsvn_subr/cmdline.c

2016-08-11 Thread ivan
Author: ivan Date: Thu Aug 11 14:14:14 2016 New Revision: 1755991 URL: http://svn.apache.org/viewvc?rev=1755991=rev Log: Avoid code duplication by using existing function. * subversion/libsvn_subr/cmdline.c (svn_cmdline__be_interactive): Use svn_cmdline__stdin_is_a_terminal(). Modified

svn commit: r1755982 - in /subversion/trunk/subversion/libsvn_subr: win32_crashrpt.c win32_crashrpt_dll.h

2016-08-11 Thread ivan
Author: ivan Date: Thu Aug 11 13:40:47 2016 New Revision: 1755982 URL: http://svn.apache.org/viewvc?rev=1755982=rev Log: Use IsDebuggerPresent() Windows API directly instead of LoadLibrary()/GetProcAddress(). IsDebuggerPresent is available since Windows NT 4.0 because it's defined

svn commit: r1755983 - /subversion/trunk/subversion/libsvn_subr/win32_crashrpt.c

2016-08-11 Thread ivan
Author: ivan Date: Thu Aug 11 13:43:32 2016 New Revision: 1755983 URL: http://svn.apache.org/viewvc?rev=1755983=rev Log: Correctly check result from LoadLibrary() call: LoadLibrary() returns NULL if it cannot load specified module. * subversion/libsvn_subr/win32_crashrpt.c (load_dbghelp_dll

svn commit: r1755486 - in /subversion/trunk/subversion: include/svn_io.h libsvn_fs/fs-loader.c libsvn_repos/config_pool.c libsvn_subr/io.c libsvn_subr/stream.c tests/libsvn_fs/fs-test.c tests/libsvn_s

2016-08-08 Thread ivan
Author: ivan Date: Mon Aug 8 10:32:29 2016 New Revision: 1755486 URL: http://svn.apache.org/viewvc?rev=1755486=rev Log: Introduce svn_stream_checksum() function to calculate checksum of specified stream contents. Use new API where it makes sense. * subversion/include/svn_io.h

svn commit: r1755120 - /subversion/branches/1.9.x/STATUS

2016-08-03 Thread ivan
Author: ivan Date: Wed Aug 3 22:10:30 2016 New Revision: 1755120 URL: http://svn.apache.org/viewvc?rev=1755120=rev Log: * STATUS: Add r1700130 to r1745515 group and for them. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org

svn commit: r1755119 - /subversion/branches/1.9.x/STATUS

2016-08-03 Thread ivan
Author: ivan Date: Wed Aug 3 21:56:54 2016 New Revision: 1755119 URL: http://svn.apache.org/viewvc?rev=1755119=rev Log: * STATUS: Nominate r1715777 for backport. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc

svn commit: r1755071 - /subversion/trunk/subversion/libsvn_wc/wc_db_pristine.c

2016-08-03 Thread ivan
Author: ivan Date: Wed Aug 3 11:43:43 2016 New Revision: 1755071 URL: http://svn.apache.org/viewvc?rev=1755071=rev Log: Fix diagnostic error message for files larger than sizeof(long int). * subversion/libsvn_wc/wc_db_pristine.c (pristine_install_txn): Use APR_OFF_T_FMT to format file size

svn commit: r1750772 - /subversion/site/publish/packages.html

2016-06-30 Thread ivan
Author: ivan Date: Thu Jun 30 11:15:23 2016 New Revision: 1750772 URL: http://svn.apache.org/viewvc?rev=1750772=rev Log: Follow-up to r1750770. * publish/packages.html: Remove UTF-8 BOM signature. Modified: subversion/site/publish/packages.html Modified: subversion/site/publish

svn commit: r1750770 - /subversion/site/publish/packages.html

2016-06-30 Thread ivan
Author: ivan Date: Thu Jun 30 11:10:32 2016 New Revision: 1750770 URL: http://svn.apache.org/viewvc?rev=1750770=rev Log: * publish/packages.html: Use https:// for links to HTTPS-only sites. Modified: subversion/site/publish/packages.html Modified: subversion/site/publish/packages.html URL

svn commit: r1749887 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

2016-06-23 Thread ivan
Author: ivan Date: Thu Jun 23 13:19:33 2016 New Revision: 1749887 URL: http://svn.apache.org/viewvc?rev=1749887=rev Log: Raise a malfunction instead of segfaulting due to a null pointer dereference with a corrupted wc.db Found by: TortoiseSVN dump * subversion/libsvn_wc/wc_db.c

svn commit: r1749883 - /subversion/trunk/subversion/libsvn_subr/cmdline.c

2016-06-23 Thread ivan
Author: ivan Date: Thu Jun 23 13:13:01 2016 New Revision: 1749883 URL: http://svn.apache.org/viewvc?rev=1749883=rev Log: Small refactoring. * subversion/libsvn_subr/cmdline.c (most_similar): Initialize MAX_SIMILAR to NULL at the beginning and return it directly instead of checking

svn commit: r1745192 - /subversion/trunk/subversion/tests/libsvn_subr/io-test.c

2016-05-23 Thread ivan
Author: ivan Date: Mon May 23 13:12:50 2016 New Revision: 1745192 URL: http://svn.apache.org/viewvc?rev=1745192=rev Log: Follow-up to r1745173: Fix test expectation. * subversion/tests/libsvn_subr/io-test.c (test_open_uniquely_named): Expect APR_STATUS_IS_ENOENT() instead

svn commit: r1745173 - /subversion/trunk/subversion/tests/libsvn_subr/io-test.c

2016-05-23 Thread ivan
Author: ivan Date: Mon May 23 12:25:20 2016 New Revision: 1745173 URL: http://svn.apache.org/viewvc?rev=1745173=rev Log: Add tests for svn_io_open_uniquely_named(). * subversion/tests/libsvn_subr/io-test.c (test_open_uniquely_named): New test for svn_io_open_uniquely_named(). (test_funcs

svn commit: r1743999 - /subversion/trunk/subversion/tests/cmdline/lock_tests.py

2016-05-16 Thread ivan
Author: ivan Date: Mon May 16 09:35:39 2016 New Revision: 1743999 URL: http://svn.apache.org/viewvc?rev=1743999=rev Log: * subversion/tests/cmdline/lock_tests.py (replace_dir_with_lots_of_locked_files): Update issue tracker number, since replacement case tracked as separate issue now

svn commit: r1743388 - /subversion/branches/1.9.x/STATUS

2016-05-11 Thread ivan
Author: ivan Date: Wed May 11 15:15:05 2016 New Revision: 1743388 URL: http://svn.apache.org/viewvc?rev=1743388=rev Log: * STATUS: Vote for rep-cache.db "database is locked" errors fixes. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS

svn commit: r1743372 - /subversion/trunk/subversion/libsvn_subr/win32_crashrpt.c

2016-05-11 Thread ivan
Author: ivan Date: Wed May 11 14:08:26 2016 New Revision: 1743372 URL: http://svn.apache.org/viewvc?rev=1743372=rev Log: Minor code cleanup. * subversion/libsvn_subr/win32_crashrpt.c (dbghelp_dll): Mark as static. Modified: subversion/trunk/subversion/libsvn_subr/win32_crashrpt.c

svn commit: r1743345 - /subversion/branches/1.9.x/STATUS

2016-05-11 Thread ivan
Author: ivan Date: Wed May 11 12:26:47 2016 New Revision: 1743345 URL: http://svn.apache.org/viewvc?rev=1743345=rev Log: * STATUS: Vote and approve r1720015. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion

svn commit: r13408 - /dev/subversion/subversion-1.8.16.zip.asc

2016-04-25 Thread ivan
Author: ivan Date: Mon Apr 25 12:18:21 2016 New Revision: 13408 Log: * subversion-1.8.16.zip.asc: Add my signature for 1.8.16 (Windows). Modified: dev/subversion/subversion-1.8.16.zip.asc Modified: dev/subversion/subversion-1.8.16.zip.asc

svn commit: r13400 - /dev/subversion/subversion-1.9.4.zip.asc

2016-04-25 Thread ivan
Author: ivan Date: Mon Apr 25 07:21:07 2016 New Revision: 13400 Log: * subversion-1.9.4.zip.asc: Add my signature for 1.9.4 Modified: dev/subversion/subversion-1.9.4.zip.asc Modified: dev/subversion/subversion-1.9.4.zip.asc

svn commit: r1739331 - /subversion/branches/1.9.x/STATUS

2016-04-15 Thread ivan
Author: ivan Date: Fri Apr 15 16:47:38 2016 New Revision: 1739331 URL: http://svn.apache.org/viewvc?rev=1739331=rev Log: * STATUS: Add r1716808 to r1717874 group and vote for it. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http

svn commit: r1739293 - /subversion/branches/1.9.x/STATUS

2016-04-15 Thread ivan
Author: ivan Date: Fri Apr 15 12:13:16 2016 New Revision: 1739293 URL: http://svn.apache.org/viewvc?rev=1739293=rev Log: * STATUS: Veto r1717874 group nomination. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc

svn commit: r1739292 - /subversion/branches/1.9.x/STATUS

2016-04-15 Thread ivan
Author: ivan Date: Fri Apr 15 12:06:55 2016 New Revision: 1739292 URL: http://svn.apache.org/viewvc?rev=1739292=rev Log: * STATUS: Add r1737122, r1739278 and r1739280 to r1663500 nomination. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http

svn commit: r1739280 - /subversion/trunk/subversion/libsvn_ra_serf/commit.c

2016-04-15 Thread ivan
Author: ivan Date: Fri Apr 15 11:01:08 2016 New Revision: 1739280 URL: http://svn.apache.org/viewvc?rev=1739280=rev Log: Follow-up to r1663500: Use NO_FAIL_ON_HTTP_FAILURE_STATUS flag in svn_ra_serf__handler_t to handle HTTP request status codes codes explicitly to retry DELETE requests instead

svn commit: r1739278 - /subversion/trunk/subversion/libsvn_ra_serf/commit.c

2016-04-15 Thread ivan
Author: ivan Date: Fri Apr 15 10:50:22 2016 New Revision: 1739278 URL: http://svn.apache.org/viewvc?rev=1739278=rev Log: Follow-up to r1663500: Do not reuse svn_ra_serf__handler_t instance to retry DELETE request. There is no problem in current svn_ra_serf__handler_t implementation, but it may

svn commit: r1738735 - /subversion/branches/1.9.x/STATUS

2016-04-12 Thread ivan
Author: ivan Date: Tue Apr 12 08:50:09 2016 New Revision: 1738735 URL: http://svn.apache.org/viewvc?rev=1738735=rev Log: * STATUS: Vote and approve r1704292 group. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc

svn commit: r1738659 - /subversion/trunk/subversion/libsvn_subr/win32_crashrpt.c

2016-04-11 Thread ivan
Author: ivan Date: Mon Apr 11 22:48:29 2016 New Revision: 1738659 URL: http://svn.apache.org/viewvc?rev=1738659=rev Log: Fix buffer overflow in the Win32 crash report handling. * subversion/libsvn_subr/win32_crashrpt.c (format_basic_type): Rename to ... (write_basic_type): ... here

svn commit: r1738566 - /subversion/branches/1.9.x/STATUS

2016-04-11 Thread ivan
Author: ivan Date: Mon Apr 11 10:43:48 2016 New Revision: 1738566 URL: http://svn.apache.org/viewvc?rev=1738566=rev Log: * STATUS: Vote for r1738259. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches

svn commit: r1738294 - /subversion/trunk/subversion/libsvn_client/diff_local.c

2016-04-08 Thread ivan
Author: ivan Date: Fri Apr 8 19:58:36 2016 New Revision: 1738294 URL: http://svn.apache.org/viewvc?rev=1738294=rev Log: * subversion/libsvn_client/diff_local.c (svn_client__arbitrary_nodes_diff): Remove duplicate condition. Found by: Coverity <https://scan.coverity.com> (CID: 1

svn commit: r1737122 - /subversion/trunk/subversion/tests/cmdline/lock_tests.py

2016-03-30 Thread ivan
Author: ivan Date: Wed Mar 30 15:09:08 2016 New Revision: 1737122 URL: http://svn.apache.org/viewvc?rev=1737122=rev Log: Split test for issue 4557 to be able test fixed part of the issue. * subversion/tests/cmdline/lock_tests.py (delete_dir_with_lots_of_locked_files): Do not test replacing

svn commit: r1736889 - /subversion/branches/1.9.x/STATUS

2016-03-28 Thread ivan
Author: ivan Date: Mon Mar 28 13:51:09 2016 New Revision: 1736889 URL: http://svn.apache.org/viewvc?rev=1736889=rev Log: * STATUS: Vote for r1735826. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches

svn commit: r1736883 - /subversion/branches/1.9.x/STATUS

2016-03-28 Thread ivan
Author: ivan Date: Mon Mar 28 12:51:44 2016 New Revision: 1736883 URL: http://svn.apache.org/viewvc?rev=1736883=rev Log: * STATUS: Vote for r1736432. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches

svn commit: r1723856 - /subversion/branches/fs-node-api/subversion/libsvn_fs/node_compat.h

2016-01-09 Thread ivan
Author: ivan Date: Sat Jan 9 13:42:44 2016 New Revision: 1723856 URL: http://svn.apache.org/viewvc?rev=1723856=rev Log: On 'fs-node-api' branch: Style fix. * subversion/libsvn_fs/node_compat.h (): Include "svn_fs.h" instead of . Modified: subversion/branches/fs-node-api/

svn commit: r1723857 - in /subversion/branches/fs-node-api/subversion: libsvn_fs/fs-loader.c libsvn_fs/fs-loader.h libsvn_fs_base/tree.c libsvn_fs_fs/tree.c libsvn_fs_x/tree.c

2016-01-09 Thread ivan
Author: ivan Date: Sat Jan 9 13:53:21 2016 New Revision: 1723857 URL: http://svn.apache.org/viewvc?rev=1723857=rev Log: On 'fs-node-api' branch: Add svn_fs_root_t vtable member to open FS node. Fallback to FS node shims only if it NULL. * subversion/libsvn_fs/fs-loader.h (root_vtable_t): Add

svn commit: r1723887 - in /subversion/branches/fs-node-api: ./ subversion/libsvn_repos/delta.c subversion/libsvn_repos/reporter.c subversion/libsvn_repos/repos.h subversion/tests/libsvn_ra/ra-test.c

2016-01-09 Thread ivan
Author: ivan Date: Sat Jan 9 22:24:46 2016 New Revision: 1723887 URL: http://svn.apache.org/viewvc?rev=1723887=rev Log: On 'fs-node-api' branch: Sync with trunk up to r1723886. Modified: subversion/branches/fs-node-api/ (props changed) subversion/branches/fs-node-api/subversion

svn commit: r1723886 - in /subversion/trunk/subversion/libsvn_repos: delta.c reporter.c repos.h

2016-01-09 Thread ivan
Author: ivan Date: Sat Jan 9 22:23:56 2016 New Revision: 1723886 URL: http://svn.apache.org/viewvc?rev=1723886=rev Log: Inline private function used in one place and just calls existing FS API function. * subversion/libsvn_repos/delta.c * subversion/libsvn_repos/repos.h

svn commit: r1723882 - /subversion/trunk/subversion/tests/libsvn_ra/ra-test.c

2016-01-09 Thread ivan
Author: ivan Date: Sat Jan 9 21:50:33 2016 New Revision: 1723882 URL: http://svn.apache.org/viewvc?rev=1723882=rev Log: Follow-up to r1723865: Relax check in newly added test to copy with known problem in ra_serf. * subversion/tests/libsvn_ra/ra-test.c (get_dir_test): Do not check DIRENT

svn commit: r1723883 - /subversion/trunk/subversion/libsvn_repos/reporter.c

2016-01-09 Thread ivan
Author: ivan Date: Sat Jan 9 21:55:22 2016 New Revision: 1723883 URL: http://svn.apache.org/viewvc?rev=1723883=rev Log: * subversion/libsvn_repos/reporter.c (delta_files): Tighten scope of local variable. No functional changes. Modified: subversion/trunk/subversion/libsvn_repos/reporter.c

svn commit: r1723862 - in /subversion/branches/fs-node-api/subversion/libsvn_fs_fs: node.c node.h tree.c

2016-01-09 Thread ivan
Author: ivan Date: Sat Jan 9 16:23:58 2016 New Revision: 1723862 URL: http://svn.apache.org/viewvc?rev=1723862=rev Log: On 'fs-node-api' branch: Provide native, but naive, implementation of FS node API for FSFS. * subversion/libsvn_fs_fs/node.c (fs_node_data_t, fs_node_kind, fs_node_has_props

svn commit: r1723865 - in /subversion/trunk/subversion: libsvn_ra_local/ra_plugin.c svnserve/serve.c tests/libsvn_ra/ra-test.c

2016-01-09 Thread ivan
Author: ivan Date: Sat Jan 9 17:42:38 2016 New Revision: 1723865 URL: http://svn.apache.org/viewvc?rev=1723865=rev Log: Fix bug when svn_ra_get_dir2() will fail if invoked with SVN_DIRENT_SIZE, but without SVN_DIRENT_KIND. There is no user visible bug, since Subversion command line client always

svn commit: r1723867 - in /subversion/branches/fs-node-api: ./ subversion/libsvn_ra_local/ra_plugin.c subversion/svnserve/serve.c subversion/tests/libsvn_ra/ra-test.c

2016-01-09 Thread ivan
Author: ivan Date: Sat Jan 9 17:44:30 2016 New Revision: 1723867 URL: http://svn.apache.org/viewvc?rev=1723867=rev Log: On 'fs-node-api' branch: Sync with trunk up to r1723866. Modified: subversion/branches/fs-node-api/ (props changed) subversion/branches/fs-node-api/subversion

  1   2   3   4   5   6   7   8   9   10   >