Re: svn:auto-props: property specified in a parent dir but not specified in a subdir

2016-10-19 Thread Martin Furter
On 2016-10-18 17:01 (-0400), Johan Corveleyn wrote: > On Tue, Oct 18, 2016 at 1:35 PM, Daniel Shahaf > wrote: > > Branko Čibej wrote on Tue, Oct 18, 2016 at 13:08:37 +0200: > >> It is. I don't think there's any way we can /not/ make it backwards > >> incompatible, given the current implement

Re: Changeset Signing

2015-06-11 Thread Martin Furter
On 06/12/15 07:55, Ruchir Arya wrote: Hi Brane, i didnt get you. How can the server admin modify the content if contents are signed? Let me give a scenario, suppose we implement Public Key Infrastructure in SVN, where each client generates its private key and public key and registers this public

Re: bug? svn.exe propset svn:executable "*" affects too may files on Windows

2015-06-11 Thread Martin Furter
On 06/11/15 18:56, Jože Fabčič wrote: Hi all, I compiled a library (boost) and found out that few files are missing the svn:executable property. I wanted to set the property and the command line client started to apply the property to all the files in the current directory: b:\boost\boost-1.44>

Re: ld: fatal: symbol referencing errors. No output written to .libs/svn [SVN V1.8.10]

2014-11-21 Thread Martin Furter
On 11/22/14 07:25, Mohsin wrote: Hi, I am getting following error while running make command for svn V1.8.10 on solaris OS . Kindly help ld: warning: global symbol '_END_' has non-global binding: (file /usr/local/lib/libiconv.so value=LOCL); ld: warning: global symbol '_START_' has n

Re: [PATCH]: Add --password-file and --password-envvar

2014-07-07 Thread Martin Furter
Again reply to the list too :) GUI's which change buttons etc. depending on whatever they like are bad... On 07/08/14 08:02, Martin Furter wrote: On 07/08/14 03:33, Ben Reser wrote: On 7/6/14 5:16 AM, Martin Furter wrote: Attached is a log message and a patch which adds the new op

Re: [PATCH]: Add --password-file and --password-envvar

2014-07-06 Thread Martin Furter
Resending my reply to the list too... On 07/06/14 20:39, Martin Furter wrote: On 07/06/14 20:09, Bert Huijben wrote: I'm not sure if the envvar option is really any safer than the argument option, if the command line is really read from the environment block on these platforms. As s

[PATCH]: Add --password-file and --password-envvar

2014-07-06 Thread Martin Furter
Attached is a log message and a patch which adds the new options '--password-file' and '--password-envvar'. It also adds Julians warning to the '--password' help text. I haven't found out yet how the test suite checks the '--password' option. So I tested it just by hand :) Also I added a che

Re: The --password and clumsy users issue

2014-07-03 Thread Martin Furter
On 07/04/14 04:47, Gabriela Gibson wrote: This is a summary of Ben's reply: Ben Reser wrote on Thu, Jul 03, 2014 at 12:54:58 -0700: > 1) Remove the option. > 2) Redact the password in the argv after starting up and finding the > bits to redact. 3) Allow the password to be supplied over std

Re: [PATCH] fix for programmer error in path split text logic

2013-12-09 Thread Martin Furter
Wrong button :/ Forwarding to the list too... Original Message Subject: Re: [PATCH] fix for programmer error in path split text logic Date: Mon, 09 Dec 2013 21:30:54 +0530 From: Martin Furter To: Philip Martin On 12/09/13 17:13, Philip Martin wrote: Martin Furter writes

Re: [PATCH] fix for programmer error in path split text logic

2013-12-09 Thread Martin Furter
On 12/09/13 15:27, Philip Martin wrote: Martin Furter writes: Wouldn't last_dot[1] be more readable than (*(last_dot + 1) ? Probably. I approve a patch if you want to commit. A quick grep shows 21 of those constructs in the following files: ./subversion/libsvn_subr/path.c ./subve

Re: [PATCH] fix for programmer error in path split text logic

2013-12-06 Thread Martin Furter
On 12/06/13 15:31, Philip Martin wrote: "Bert Huijben" writes: -Original Message- From: Eric Lubin [mailto:e...@lubin.us] Sent: donderdag 5 december 2013 21:17 To: dev@subversion.apache.org Subject: [PATCH] fix for programmer error in path split text logic [[[ * subversion/libsvn_s

Re: reposurgeon now writes Subversion repositories

2012-11-29 Thread Martin Furter
On 11/30/12 00:55, Eric S. Raymond wrote: Ben Reser: The only thing that's really lacking here is a good way to pass along extra property values in an easy to configure way per server/repository so that you can use a client defined value to put it in svn:author. I don't really see adding suppor

Re: svn commit: r1050061 - in /subversion/trunk/subversion: include/svn_io.h libsvn_subr/deprecated.c libsvn_subr/io.c

2010-12-21 Thread Martin Furter
On Sat, 18 Dec 2010, Hyrum K. Wright wrote: On Thu, Dec 16, 2010 at 11:18 AM, wrote: Author: cmpilato Date: Thu Dec 16 17:18:43 2010 New Revision: 1050061 URL: http://svn.apache.org/viewvc?rev=1050061&view=rev Log: Rev the svn_io_start_cmd() API, adding pipe support. Modified: subversion/

Re: [PATCH]: transform_libtool_scripts.py

2010-12-16 Thread Martin Furter
On Wed, 15 Dec 2010, Philip Martin wrote: Martin Furter writes: Doing some more testing I found another out that non-existing libraries have to be removed from LD_PRELOAD. Does this interact with --enable-runtime-module-search? That's the switch that causes Subversion to load

Re: Subversion issue 2791

2010-12-15 Thread Martin Furter
Here's the latest patch. I ran the commit tests and svnlook tests and they passed. There seem to not be any other tests for hooks. - Martin [[[ Use svn_io_start_cmd2 in run_hook_cmd. * subversion/libsvn_repos/hooks.c (run_hook_cmd): Use svn_io_start_cmd2. ]]]Index: subversion/libsvn_repos

Re: [PATCH]: transform_libtool_scripts.py

2010-12-15 Thread Martin Furter
Doing some more testing I found another out that non-existing libraries have to be removed from LD_PRELOAD. So here's a new patch. - Martin On Wed, 15 Dec 2010, Martin Furter wrote: Here is version 2 of the patch. On Tue, 14 Dec 2010, Philip Martin wrote: Martin Furter writes:

Re: [PATCH]: transform_libtool_scripts.py

2010-12-15 Thread Martin Furter
Here is version 2 of the patch. On Tue, 14 Dec 2010, Philip Martin wrote: Martin Furter writes: The generated script then has to be included into the tarball. I believe to remember that there's a script which creates the tarball. Can anyone give me a pointer where I can find it?

Re: [PATCH]: transform_libtool_scripts.py

2010-12-14 Thread Martin Furter
On Tue, 14 Dec 2010, Stefan Sperling wrote: On Tue, Dec 14, 2010 at 06:12:54AM -0600, Peter Samuelson wrote: [Martin Furter] Configure has set SHELL=/bin/bash in Makefile. So this would solve one of the problems of that script. r1049057. The other problem is that it does not read

Re: [PATCH]: transform_libtool_scripts.py

2010-12-14 Thread Martin Furter
On Tue, 14 Dec 2010, Peter Samuelson wrote: [Martin Furter] I again fell over transform_libtool_scripts.sh on solaris. Would this patch help on Solaris? I believe autoconf goes to some effort to find a reasonable shell, in /usr/xpg4 or whatever. [[[ * Makefile.in (transform-libtool

Re: [PATCH]: transform_libtool_scripts.py

2010-12-14 Thread Martin Furter
On Tue, 14 Dec 2010, Stefan Sperling wrote: On Tue, Dec 14, 2010 at 11:09:34AM +0100, Martin Furter wrote: Replace a disgusting shell script by nice python code. transform_libtool_scripts.py is more portable and also reads build.conf. While python is required to create buidscripts for a

[PATCH]: transform_libtool_scripts.py

2010-12-14 Thread Martin Furter
Hello I again fell over transform_libtool_scripts.sh on solaris. Here's a version in python which reads all the needed information from build.conf instead of searching the filesystem. I ran "make check" but it stopped at authz_tests: [[[ ... Running tests in authz_tests.py [36/87][SKIPPED] Py

Re: Subversion issue 2791

2010-12-10 Thread Martin Furter
On Thu, 9 Dec 2010, C. Michael Pilato wrote: Hey, Martin. Do you have the time and willingness to update one of your patches for issue #2791? See the last comments in http://subversion.tigris.org/issues/show_bug.cgi?id=2791 for details. Here's an updated patch for run_hook_cmd, but complet

Re: Disable diff-cmd

2010-08-24 Thread Martin Furter
On Tue, 24 Aug 2010, anatoly techtonik wrote: Hello, Is there any way to disable "diff-cmd" setting for just one run of "svn diff"? I need it for code review upload script, which fails when users have configured graphical diff. Is there any way to force svn use internal diff implemantation? I

FSFS vs BDB

2010-08-13 Thread Martin Furter
We're in the process of updating our subversion servers. Since we're still using BDB on the production servers I took the opportunity to compare it with FSFS. First the setup: Machine: Sun Fire V210 OS: Solaris 9 FS: UFS Subversion: 1.6.12 Apache httpd: 2.2.16 APR

Re: Re: dangerous implementation of rep-sharing cache for fsfs

2010-06-25 Thread Martin Furter
On Fri, 25 Jun 2010, Mark Phippard wrote: On Fri, Jun 25, 2010 at 8:45 AM, wrote: 4. you under estimate the error done by misusing math. methods.   As I already said in my first e-mail. SHA-1 is developed   to detected random and willful data manipulation.   It's a cryptographic hash, so t

Re: svn aix subversion-1.5.4 issue

2010-05-28 Thread Martin Furter
Hello Pedro It wasn't able to find the library (or AIX seems to call them modules) libsvn_client-1.so . It probably expects them to be in /opt/subversion-1.5.4/lib . The following command shows the libraries svn uses and where it found them, I guess it shows that it can't find all libsvn_*

Re: Changes in SQL backend design

2010-04-15 Thread Martin Furter
On Tue, 6 Apr 2010, [ISO-8859-2] Jan Horák wrote: Hi, I've made some changes in SQL backend desing, updated design is at: http://www.stud.fit.vutbr.cz/~xhorak50/diplomathesis/files/100405_mysql_design_v2.png If you add a field "repository_name" to the transactions table it would be possible

Re: [PATCH]: Update lots of links

2010-02-22 Thread Martin Furter
On Mon, 22 Feb 2010, C. Michael Pilato wrote: Martin Furter wrote: Hello In r910216 I committed a few link fixes in faq.html assuming it matches the "obvious fix rule". The following commandline finds lots of old links in trunk/: svn st -v . | awk '/^[^?]/{print substr($0,

Re: [PATCH]: add section links

2010-02-11 Thread Martin Furter
On Thu, 11 Feb 2010, C. Michael Pilato wrote: Julian Foad wrote: Martin Furter wrote: New patch and the script are attached, and http://svn-test.borg.ch/ has the updated version too. Looks lovely to me. Any objection? Mike? It rawks. Commit away. Committed in r909145 and r909157

Re: [PATCH]: add section links (was: new website & IRC bot)

2010-02-09 Thread Martin Furter
On Tue, 9 Feb 2010, Julian Foad wrote: On Tue, 2010-02-09, Martin Furter wrote: I've created a copy and applied that patch-template: http://svn-test.borg.ch/ Mmm, nice :) Here's an attempt at a patch... Thanks! Please tell me you did that with a script, not by hand. You mig

new website & IRC bot

2010-02-08 Thread Martin Furter
Hello The new website is nice, I really like it. I hoped these 'tooltips' disappear after the move, but they didn't... They're so awfully distracting that they actually remove information instead of adding. Can't we move those 'title' attributes from the div tags to the heading tags (or jus

Re: JavaHL package name? (was: Discussion: graduating Subversion)

2010-01-26 Thread Martin Furter
On Mon, 25 Jan 2010, Justin Erenkrantz wrote: My take is deprecate the old package names (org.tigris.*), add the new package name (org.apache.subversion.*), and remove the deprecated names whenever we go to 2.0. I'm moderately ambivalent on whether this happens for 1.7 or if can wait for 1.8.

Re: [PATCH] find -mindepth/-maxdepth is not portable

2009-11-22 Thread Martin Furter
On Mon, 23 Nov 2009, Arfrever Frehtes Taifersar Arahesis wrote: 2009-11-23 02:46:14 Martin Furter napisa??(a): [[[ The options -mindepth and -maxdepth of find are not portable. Since there aren't any other python files in subversion/tests/ except those at depth 2 and 3 just drop

[PATCH] find -mindepth/-maxdepth is not portable

2009-11-22 Thread Martin Furter
[[[ The options -mindepth and -maxdepth of find are not portable. Since there aren't any other python files in subversion/tests/ except those at depth 2 and 3 just drop those options. * Makefile.in (fast-clean): Remove -mindepth and -maxdepth from find command. ]]] [[[ Index: Makefile.in ==

Re: [PATCH] Fix transform_libtool_scripts.sh

2009-11-22 Thread Martin Furter
On Sun, 22 Nov 2009, Rainer Jung wrote: On 22.11.2009 18:18, Arfrever Frehtes Taifersar Arahesis wrote: 2009-11-22 18:06:40 Martin Furter napisał(a): On Sun, 22 Nov 2009, Arfrever Frehtes Taifersar Arahesis wrote: 2009-11-22 06:39:05 Martin Furter napisał(a): On Sun, 22 Nov 2009

Re: [PATCH] Fix transform_libtool_scripts.sh

2009-11-22 Thread Martin Furter
On Sun, 22 Nov 2009, Arfrever Frehtes Taifersar Arahesis wrote: 2009-11-22 06:39:05 Martin Furter napisa??(a): On Sun, 22 Nov 2009, Arfrever Frehtes Taifersar Arahesis wrote: 2009-11-22 03:43:44 Martin Furter napisa(a): Little bugfix... Thanks, Martin [[[ Change the shebang line

Re: [PATCH] Fix transform_libtool_scripts.sh

2009-11-21 Thread Martin Furter
On Sun, 22 Nov 2009, Arfrever Frehtes Taifersar Arahesis wrote: 2009-11-22 03:43:44 Martin Furter napisa??(a): Little bugfix... Thanks, Martin [[[ Change the shebang line from /bin/sh to /bin/bash because the script contains bashims which do not work with /bin/sh on various UNICES

[PATCH] Fix transform_libtool_scripts.sh

2009-11-21 Thread Martin Furter
Little bugfix... Thanks, Martin [[[ Change the shebang line from /bin/sh to /bin/bash because the script contains bashims which do not work with /bin/sh on various UNICES. * build/transform_libtool_scripts.sh: Change shebang line. ]]] [[[ Index: build/transform_libtool_scripts.sh =

Re: [RFC] checkout --view name URL

2009-11-21 Thread Martin Furter
On Fri, 20 Nov 2009, Stefan Sperling wrote: On Fri, Nov 20, 2009 at 05:36:13AM +0100, Martin Furter wrote: Since it's easy to merge views (just add all subdirs of the requested views and for duplicates let the greater depth win) we could add support for multiple views in one WC. I

Re: [RFC] checkout --view name URL

2009-11-19 Thread Martin Furter
On Thu, 19 Nov 2009, Stefan Sperling wrote: On Thu, Nov 19, 2009 at 05:35:42PM +0100, Martin Furter wrote: But I thought I'd take the easy route like I did in the python script: Do a checkout first, then do all the updates needed (it could ofcourse be integrated into the protocols but t

Re: [RFC] checkout --view name URL

2009-11-19 Thread Martin Furter
On Thu, 19 Nov 2009, C. Michael Pilato wrote: Martin Furter wrote: http://svn.apache.org/viewvc/subversion/trunk/tools/client-side/svn-viewspec.py?view=markup No, I didn't know that script, it's nice. The only problem I see with that script is that it is a script. If it were

Re: [RFC] checkout --view name URL

2009-11-19 Thread Martin Furter
feature. On Thu, 19 Nov 2009, Stefan Sperling wrote: On Thu, Nov 19, 2009 at 03:54:58AM +0100, Martin Furter wrote: Hello I've written a little design document to specify 'views'. Attached is also a 'proof-of-concept' python script which should behave pretty much the

[RFC] checkout --view name URL

2009-11-18 Thread Martin Furter
Hello I've written a little design document to specify 'views'. Attached is also a 'proof-of-concept' python script which should behave pretty much the same as svn checkout does, except that it supports views (it's not very well tested since I'm stuck with svn 1.4 on linux and had to debug it