Re: [PATCH] Fix failing ci caused in r40202

2010-02-08 Thread Julian Foad
On Fri, 2010-02-05, Kannan wrote: > Follow-up r901797. Canonicalization of BASE URL doesn't reflect for > elements having parent info, till now. > > * subversion/libsvn_ra_neon/props.c > (end_element): Canonicalize the BASE URL for elements having parent >info. > > Patch by: Kannan R > Sug

Re: [PATCH] Fix failing ci caused in r40202-upgrade to new func

2010-02-08 Thread Julian Foad
On Fri, 2009-12-18, Kannan wrote: > This patch upgrades ..add_component() to ..add_component2() which > depends on the previous uncommitted patch [1] to canonicalize the URLs. > > [[[ > Log: > Resolve some deprecation warnings. > > * subversion/libsvn_ra_neon/commit.c > (get_version_url, create

Re: [RFC] Tree conflict resolver spec.

2010-02-08 Thread Daniel Näslund
On Fri, Jan 22, 2010 at 01:43:51PM +0100, Stefan Sperling wrote: > On Fri, Jan 22, 2010 at 12:12:26PM +0100, Daniel Näslund wrote: > > Local add, incoming add > > - > > THEIRS: Put new BASE file/dir in WORKING. > > MINE: Keep current WORKING file/dir. > > In the MINE case

Re: [RFC] MTime functional specifications (v2.0)

2010-02-08 Thread Peter Samuelson
[Philipp Marek] > No, "text" means "data" here, as opposed to "ctime" for "inode time". > In the WC library there was the data often named "text", that's where > it comes from. > > (I'd hope that this name doesn't hurt ... and nowadays it's used in > at least 3 programs [svntar, fsvs, and svn+bra

Re: [RFC] v2 Tree conflict resolver spec.

2010-02-08 Thread Daniel Näslund
On Sun, Feb 07, 2010 at 12:23:12AM +, Julian Foad wrote: > Can you post an updated RFC that incorporates the responses to my and > Stefan's comments so far? Here it is. I've only merged some of the comments from you and Stefan. The merge part is still rather sketchy. [[[ Design spec for tree

Re: [RFC] MTime functional specifications (v2.0)

2010-02-08 Thread Julian Foad
Ed, thanks for this. Here are lots of comments and questions. If you could update the doc wherever it makes sense, think about the hard parts and come up with proposals for them, and ask any questions wherever it's not clear, that would be great. On Fri, 2010-02-05, Ed wrote: > +OUTLINE OF A > + >

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-use connection for svn:externals

2010-02-08 Thread Phillip Hellewell
Hi, I'm not sure if this is related to issue 1448 or not (it's kinda like the opposite of 1448 actually), but I use externals extensively and doing an update is slow. It appears to be creating a new connection for each external even though it's the same repository on the same server. Each connec

Re: new website & IRC bot

2010-02-08 Thread Mark Phippard
On Mon, Feb 8, 2010 at 10:52 AM, Martin Furter wrote: > 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

Re: svn commit: r907414 - /subversion/trunk/subversion/libsvn_wc/questions.c

2010-02-08 Thread Greg Stein
On Sun, Feb 7, 2010 at 06:50, wrote: >... > +++ subversion/trunk/subversion/libsvn_wc/questions.c Sun Feb  7 11:50:50 2010 > @@ -367,12 +367,15 @@ >       return SVN_NO_ERROR; >     } > > +  SVN_ERR(err); > + >   /* Check all bytes, and verify checksum if requested. */ > -  SVN_ERR(compare_and_ve

RE: svn commit: r907414 - /subversion/trunk/subversion/libsvn_wc/questions.c

2010-02-08 Thread Bert Huijben
The called function does an explicit disown so i assumed that behavior was by design. Bert - Oorspronkelijk bericht - Van: Greg Stein Verzonden: maandag 8 februari 2010 20:58 Aan: dev@subversion.apache.org Onderwerp: Re: svn commit: r907414 - /subversion/trunk/subversion/libsvn_wc/qu

Re: svn commit: r907414 - /subversion/trunk/subversion/libsvn_wc/questions.c

2010-02-08 Thread Greg Stein
Sounds silly. I'd suggest removing that, and doc'ing and explicit closure. *Any* function that reads a stream to EOF should just close the darned stream. (I adjusted some svn_io.h functions to do this) ... it just doesn't make sense to leave the stream open since you can't really do anything with a

Re: new website & IRC bot

2010-02-08 Thread Zeus Carver
>On Mon, Feb 8, 2010 at 10:52 AM, Martin Furter wrote: >> 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

Re: new website & IRC bot

2010-02-08 Thread Daniel Shahaf
Martin Furter wrote on Mon, 8 Feb 2010 at 16:52 +0100: > bugs.html and tools_contrib.html seem to have disappeared. > > For bugs.html it points to the following URL, though it's not as good as the > old one (it should point out that we often need to know the OS, the version > of svn, the access me

Re: new website & IRC bot

2010-02-08 Thread Daniel Shahaf
Daniel Shahaf wrote on Mon, 8 Feb 2010 at 23:24 +0200: > Martin Furter wrote on Mon, 8 Feb 2010 at 16:52 +0100: > > bugs.html and tools_contrib.html seem to have disappeared. > > > > For bugs.html it points to the following URL, though it's not as good as the > > old one (it should point out that

Re: new website & IRC bot

2010-02-08 Thread C. Michael Pilato
Daniel Shahaf wrote: > Daniel Shahaf wrote on Mon, 8 Feb 2010 at 23:24 +0200: >> Martin Furter wrote on Mon, 8 Feb 2010 at 16:52 +0100: >>> bugs.html and tools_contrib.html seem to have disappeared. >>> >>> For bugs.html it points to the following URL, though it's not as good as the >>> old one (it

Re: svn commit: r907414 - /subversion/trunk/subversion/libsvn_wc/questions.c

2010-02-08 Thread Stefan Sperling
On Mon, Feb 08, 2010 at 02:58:31PM -0500, Greg Stein wrote: > Invariably, a stream on a file will not be used > once it hits EOF Unless it implements mark/seek or reset. See the patch code. Stefan

Re: svn commit: r907414 - /subversion/trunk/subversion/libsvn_wc/questions.c

2010-02-08 Thread Greg Stein
On Mon, Feb 8, 2010 at 18:06, Stefan Sperling wrote: > On Mon, Feb 08, 2010 at 02:58:31PM -0500, Greg Stein wrote: >> Invariably, a stream on a file will not be used >> once it hits EOF > > Unless it implements mark/seek or reset. See the patch code. Well aware of that. Read the reset of the thre

Re: svn commit: r907414 - /subversion/trunk/subversion/libsvn_wc/questions.c

2010-02-08 Thread Stefan Sperling
On Mon, Feb 08, 2010 at 06:10:32PM -0500, Greg Stein wrote: > On Mon, Feb 8, 2010 at 18:06, Stefan Sperling wrote: > > On Mon, Feb 08, 2010 at 02:58:31PM -0500, Greg Stein wrote: > >> Invariably, a stream on a file will not be used > >> once it hits EOF > > > > Unless it implements mark/seek or re

Re: new website & IRC bot

2010-02-08 Thread Peter Samuelson
[Mark Phippard] > I am curious why you find them distracting. Are you using a browser > setting that makes them prominent? I never even see them unless I > hover my mouse for a while. You don't find it distracting when you move your mouse onto some whitespace out of the way of the text you're r

adding to sparse mixed-rev WCs... and then creating tree conflict info.

2010-02-08 Thread Neels J Hofmeyr
Hi, here's an investigation on our recent discussion on #svn-dev, about providing the user with the u...@revision "at which source-left did not exist" to report a tree conflict with a locally added node. Talking about: [[[ $ svn info parent/added_node Name: added_node ... Tree conflict: local add

Re: [Issue 3579] New - reschedule hudson jobs to execute every 1hr

2010-02-08 Thread Bhuvaneswaran A
On Mon, 2010-02-08 at 20:35 -0800, Blair Zajac wrote: > Hyrum K. Wright wrote: > > On Feb 8, 2010, at 10:29 PM, Bhuvaneswaran A wrote: > > > >> --- Additional comments from bhu...@tigris.org Mon Feb 8 20:29:46 > >> -0800 2010 --- > >> Right now, the Hudson jobs are executed every 30minut

Re: [Issue 3579] New - reschedule hudson jobs to execute every 1hr

2010-02-08 Thread Blair Zajac
Bhuvaneswaran A wrote: On Mon, 2010-02-08 at 20:35 -0800, Blair Zajac wrote: Hyrum K. Wright wrote: On Feb 8, 2010, at 10:29 PM, Bhuvaneswaran A wrote: --- Additional comments from bhu...@tigris.org Mon Feb 8 20:29:46 -0800 2010 --- Right now, the Hudson jobs are executed every 30mi

Re: [Issue 3579] New - reschedule hudson jobs to execute every 1hr

2010-02-08 Thread Hyrum K. Wright
On Feb 8, 2010, at 11:06 PM, Blair Zajac wrote: > Bhuvaneswaran A wrote: >> On Mon, 2010-02-08 at 20:35 -0800, Blair Zajac wrote: >>> Hyrum K. Wright wrote: On Feb 8, 2010, at 10:29 PM, Bhuvaneswaran A wrote: > --- Additional comments from bhu...@tigris.org Mon Feb 8 20:29:46

website getting subversion windows binaries

2010-02-08 Thread Lorenz
Hi all, 'getting subversion' still lists the 'tigris.org' windows binaries that were provided by D.J. Heap. But they are stuck at 1.6.6 and as D.J. stated in http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2423180 he won't build them any longer. Shouldn't their be at le