Re: How to find who commits the build and revision number?

2010-06-23 Thread David Weintraub
On each and every Hudson build webpage is the Subversion repository revision number. You can use that and "svn log" to see who did the commit that triggered that build. On Wed, Jun 23, 2010 at 12:55 AM, Kevin Wu wrote: > Hi folks, > > I am using Hudson + Subversion to automate the build process.

RedirectMatch Question

2010-06-23 Thread Williams, James P2 (N-USA)
I don't know the details but have seen Apache config files that included something like these lines. # workaround for authz and SVNListParentPath issue RedirectMatch ^(/svn)$ $1/ Here's an example. http://directory.fedoraproject.org/wiki/Howto:Subversion_Apache_LDAP I think this just

Re: svn installation on redhat

2010-06-23 Thread Ryan Schmidt
Hi Dany, On Jun 23, 2010, at 16:42, Dany Gil Gomes wrote: > We got a redhat server and want to install svn No problem, you should be able to find a version of Subversion that's precompiled for RedHat. Check the downloads page. http://subversion.apache.org/packages.html#redhat And the Book sh

svn installation on redhat

2010-06-23 Thread Dany Gil Gomes
Hello, We got a redhat server and want to install svn on an existing directory ove= r svn-ssh and eclipse plugin. Can somebody give me an tutorial how to insta= ll it or give me some help. Thanks in advance for your help. Best regards, Dany

Re: detect externals in script

2010-06-23 Thread BRM
Alternatively: 1. Run `svn status | grep ^X` to get all the entries in the working copy that are svn:externals. 2. Ignore them as you traverse across the paths. While reading the svn:externals directly is also a good idea, you'd have to do that for every directory you enter into, since they are

Re: detect externals in script

2010-06-23 Thread Christian Unger
doesn't `svn pget svn:externals` suffice? you probably want to look at subversion's bindings - depending on the scripting language you're using On 23.06.2010, at 20:56, Paul Dugas wrote: > I'm looking for a way for a script operating on a working directory to > identify directories that were

Re: detect externals in script

2010-06-23 Thread Tino Schwarze
On Wed, Jun 23, 2010 at 02:56:16PM -0400, Paul Dugas wrote: > I'm looking for a way for a script operating on a working directory to > identify directories that were pulled in via an svn:external. The > script is in the top-level folder of the project and is used to > maintain the common file head

detect externals in script

2010-06-23 Thread Paul Dugas
I'm looking for a way for a script operating on a working directory to identify directories that were pulled in via an svn:external. The script is in the top-level folder of the project and is used to maintain the common file headers for the project and I'd like it to not recurse down into externa

Re: Double update of versioned file externals corrupting file timestamps

2010-06-23 Thread Daniel Shahaf
Yes, thanks for asking, please link to the thread from the issue. Thanks, Daniel Franz Sirl wrote on Wed, 23 Jun 2010 at 10:52 -: > Hi, > > anyone care to comment on this? Is this report OK to enter into the issue > database? > > Franz > > > Am 2010-06-14 10:55, schrieb Franz Sirl: > >

Re: Generating a dump file using a powershell script

2010-06-23 Thread Daniel Shahaf
Geoff Worboys wrote on Wed, 23 Jun 2010 at 08:33 -: > Well certainly it takes care of the line feeds if you create > the property svn:eol-style=native at some point after > committing the original file. A dump after that commit shows > the entire file repeated with the new eols ... > > But I'

Re: diff to repository

2010-06-23 Thread Andreas Tepe
Am 23.06.2010 11:24, schrieb Andy Levy: > On Wed, Jun 23, 2010 at 11:05, Andreas Tepe wrote: >> Am 21.06.2010 18:44, schrieb Andreas Tepe: >>> Am 21.06.2010 16:45, schrieb Rob van Oostrum: On Mon, Jun 21, 2010 at 4:34 PM, Andreas Tepe >>> > wrote:

Re: diff to repository

2010-06-23 Thread Andreas Tepe
Am 23.06.2010 11:22, schrieb Les Mikesell: > On 6/23/2010 10:05 AM, Andreas Tepe wrote: >> >>> Thanks for your answer! >>> No, this doesn't work for me. It tells me >>> svn: Target lists to diff may not contain both working copy paths and >>> URLs >>> if I use >>> svn diff PATH URL >>> >>> >>> >> >

Re: diff to repository

2010-06-23 Thread Andy Levy
On Wed, Jun 23, 2010 at 11:05, Andreas Tepe wrote: > Am 21.06.2010 18:44, schrieb Andreas Tepe: >> Am 21.06.2010 16:45, schrieb Rob van Oostrum: >>> On Mon, Jun 21, 2010 at 4:34 PM, Andreas Tepe >>> >> > wrote: >>> >>>     Hello Michael, >>> >>>     yes, I d

Re: diff to repository

2010-06-23 Thread Les Mikesell
On 6/23/2010 10:05 AM, Andreas Tepe wrote: Thanks for your answer! No, this doesn't work for me. It tells me svn: Target lists to diff may not contain both working copy paths and URLs if I use svn diff PATH URL Hello again! does still nobody have an idea about this? Actually, I thought th

Re: diff to repository

2010-06-23 Thread Andreas Tepe
Am 21.06.2010 18:44, schrieb Andreas Tepe: > Am 21.06.2010 16:45, schrieb Rob van Oostrum: >> On Mon, Jun 21, 2010 at 4:34 PM, Andreas Tepe >> > > wrote: >> >> Hello Michael, >> >> yes, I did, but could not find a solution in there. >> >> Cheers,

Re: Double update of versioned file externals corrupting file timestamps

2010-06-23 Thread Franz Sirl
Hi, anyone care to comment on this? Is this report OK to enter into the issue database? Franz Am 2010-06-14 10:55, schrieb Franz Sirl: Hi, we stumbled over an annoying issue with subversion 1.6.11. If we update a WC with versioned file externals, files where the version is not equal to the

Re: how to avoid post-commit hook being executed when branches are modified

2010-06-23 Thread Kevin Wu
Thanks Ryan~ On Wed, Jun 23, 2010 at 2:41 PM, Ryan Schmidt < subversion-20...@ryandesign.com> wrote: > > On Jun 23, 2010, at 01:30, Kevin Wu wrote: > > > I wrote my post-commit hook for the trunk. But whenever something is > committed to one branch, the hook is triggered. How to let post-commit h