Re: Branching 1.7.x by Dec-31

2010-11-07 Thread Stefan Sperling
On Sat, Nov 06, 2010 at 09:11:24PM -0500, Hyrum K. Wright wrote: As some of you know, on Thursday night we had a Subversion meetup in conjunction with ApacheCon. The meetup wasn't too well attended (a separate mail on that will be forthcoming), but Greg and I did have some discussions about

Re: [Patch] Make svn_tristate_t compatible with svn_boolean_t

2010-11-07 Thread Stefan Fuhrmann
On 04.11.2010 13:47, Hyrum K. Wright wrote: On Thu, Nov 4, 2010 at 6:51 AM, Julian Foadjulian.f...@wandisco.com wrote: On Thu, 2010-11-04, Stefan Fuhrmann wrote: Hi there, after stumbling twice over this issue, I ran grep and found that the current usage of svn_tristate_t does not depend on

Re: svn commit: r1032276 - /subversion/trunk/COMMITTERS

2010-11-07 Thread Stefan Sperling
On Sun, Nov 07, 2010 at 01:40:09PM -, stef...@apache.org wrote: Author: stefan2 Date: Sun Nov 7 13:40:08 2010 New Revision: 1032276 URL: http://svn.apache.org/viewvc?rev=1032276view=rev Log: Stefan2 is now has full commit access. * COMMITTERS: move me to blanket access Woot!

Trouble building trunk: Undefined references to svn_repos_load_fs3() and svn_repos_get_fs_build_parser3()

2010-11-07 Thread Daniel Trebbien
I am having trouble building trunk. The make process always fails when linking libsvn_repos-1: cd subversion/libsvn_repos /usr/share/apr-1.0/build/libtool --tag=CC --silent --mode=link gcc -Wno-system-headers -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings

Re: Trouble building trunk: Undefined references to svn_repos_load_fs3() and svn_repos_get_fs_build_parser3()

2010-11-07 Thread Stefan Sperling
On Sun, Nov 07, 2010 at 07:56:51AM -0800, Daniel Trebbien wrote: I am having trouble building trunk. The make process always fails when linking libsvn_repos-1: Looks like the linker or libtool is picking up conflicting versions of the same library. Try deinstalling your system subversion

Re: Trouble building trunk: Undefined references to svn_repos_load_fs3() and svn_repos_get_fs_build_parser3()

2010-11-07 Thread Daniel Trebbien
On Sun, Nov 7, 2010 at 8:01 AM, Stefan Sperling s...@elego.de wrote: On Sun, Nov 07, 2010 at 07:56:51AM -0800, Daniel Trebbien wrote: I am having trouble building trunk. The make process always fails when linking libsvn_repos-1: Looks like the linker or libtool is picking up conflicting

[PATCH] error leak on performance branch

2010-11-07 Thread Stefan Sperling
[[[ * subversion/libsvn_fs_util/caching.c (svn_fs__get_global_membuffer_cache): Fix a possible error leak. ]]] Index: subversion/libsvn_fs_util/caching.c === --- subversion/libsvn_fs_util/caching.c (revision 1032308) +++

Re: Canonicalize path/URL inside svn_opt__split_arg_at_peg_revision

2010-11-07 Thread Noorul Islam K M
Noorul Islam K M noo...@collab.net writes: Noorul Islam K M noo...@collab.net writes: Log [[[ Since svn_opt__split_arg_at_peg_revision() is called from two major wrappers svn_opt__args_to_target_array() and svn_opt_parse_path(), move canonicalize code into

Re: Trouble building trunk: Undefined references to svn_repos_load_fs3() and svn_repos_get_fs_build_parser3()

2010-11-07 Thread Daniel Trebbien
Weird. It seems that `subversion/libsvn_repos/load-fs-vtable.c` was the only C file in `subversion/libsvn_repos` that wasn't being compiled. So, I modified the CC line that compiled `subversion/libsvn_repos/log.c` to instead compile `subversion/libsvn_repos/load-fs-vtable.c` and manually added

Re: Trouble building trunk: Undefined references to svn_repos_load_fs3() and svn_repos_get_fs_build_parser3()

2010-11-07 Thread Daniel Trebbien
On Sun, Nov 7, 2010 at 12:04 PM, Daniel Trebbien dtrebb...@gmail.com wrote: Weird. It seems that `subversion/libsvn_repos/load-fs-vtable.c` was the only C file in `subversion/libsvn_repos` that wasn't being compiled. So, I modified the CC line that compiled `subversion/libsvn_repos/log.c` to

Re: [PATCH] extend svn_subst_translate_string() to record whether re-encoding and/or line ending translation were performed (v. 3)

2010-11-07 Thread Daniel Trebbien
Hi Daniel, Thank you for your feedback. I have attached a new patch and log message that addresses the points that you have mentioned. If we can provide the information cheaply, I see no reason not to let the APIs provide it.  As some of these APIs are already revved for 1.7, we might as

Re: Trouble building trunk: Undefined references to svn_repos_load_fs3() and svn_repos_get_fs_build_parser3()

2010-11-07 Thread noorul Islam. Kamal Malmiyoda
On Nov 7, 2010, at 9:27 PM, Daniel Trebbien dtrebb...@gmail.com wrote: I am having trouble building trunk. The make process always fails when linking libsvn_repos-1: cd subversion/libsvn_repos /usr/share/apr-1.0/build/libtool --tag=CC --silent --mode=link gcc -Wno-system-headers

Two different types of actions, svn_repos_node_t's action field and svn_node_action

2010-11-07 Thread Blair Zajac
It looks like before 1.7 we never used svn_node_action in a public API. In 1.7, it is used in svn_repos_notify_t. Does the node_action field ever equal svn_node_action_change through svn_repos_notify_t's use? I'm asking because we have another type of action in svn_repos_node_t that only has

[PATCH] New test for issue 3609

2010-11-07 Thread Noorul Islam K M
[[[ New test for issue 3609 * subversion/tests/cmdline/info_tests.py (info_url_special_characters, test_list): New test Patch by: Noorul Islam K M noorul{_AT_}collab.net ]]] Thanks and Regards Noorul Index: ../subversion/tests/cmdline/info_tests.py

[PATCH] Fix for issue 3609 - cat command

2010-11-07 Thread Noorul Islam K M
Followup to r1030010 Log [[[ Canonicalize paths before passing them to svn_client_cat2. * subversion/svn/cat-cmd.c (svn_cl__cat): Canonicalize url or dirent before passing over to API. * subversion/tests/cmdline/cat_tests.py (cat_url_special_characters, test_list): New test Patch by:

Fix for issue 3609 - ls command

2010-11-07 Thread Noorul Islam K M
Followup to r1030010 Log [[[ Canonicalize paths before passing them to svn_client_list2. * subversion/svn/list-cmd.c (svn_cl__list): Canonicalize url or dirent before passing over to API. * subversion/tests/cmdline/basic_tests.py (ls_url_special_characters, test_list): New test Patch