Re: Note from Vibin Bruno to your Facebook Page Subversion.

2020-09-22 Thread Chris Carman
Kindly stop spamming this list.

Re: Path-Based Authorization behaves differently with SVNParentPath vs. SVNPath

2020-04-04 Thread Chris Dailey
fact that I ever got it to behave without doing it this way was more of a fluke than anything. Thanks for any help and feedback, Cheers, Chris On Mon, Mar 30, 2020 at 5:27 PM Chris Dailey wrote: > Hello all, > > I'm attempting to move a set of repositories over to using SVNPar

Path-Based Authorization behaves differently with SVNParentPath vs. SVNPath

2020-03-30 Thread Chris Dailey
using subversion 1.9.7. As that was the latest available from my distro's repo, I had to build 1.13.0 myself, and the behavior is the same across the versions. I haven't yet tried on the 1.14.x branch, as I don't see any notes about behavior such as this. Thanks everyone. Cheers, Chris

Re: svndumpfilter and svnsync?

2018-10-30 Thread Chris
d not the destination, so I had to go into the repo to check the revision it crashed on to find the copy destination and add it to my filter list. Would have been nice if the error message could list both the source and the destination. /Chris On We

Re: svndumpfilter and svnsync?

2018-10-10 Thread Chris
Big thanks for the help, it is greatly appreciated! Some comments and further questions inline below. >> >> On Oct 10, 2018, at 02:04, Chris wrote: >> >>> I've trawled through bad commits of data files in our repo and added > such paths to a filter file that I

Re: svndumpfilter and svnsync?

2018-10-10 Thread Chris
vnsync (or >svnrdump, to create >a dumpfile from a remote server) to interact with a 1.8 server / repository. Can I even do this with "svnadmin load"; I thought that would use an FSFS version 8 while 1.8 should have 6? I got that impression from my "research", but I&#

Re: svndumpfilter and svnsync?

2018-10-04 Thread Chris
analysis on old revisions is that 90-95% of the data consists of beginners doing accidental commits of things that should not have been allowed to commit BR, Chris On Thu, 10/4/18, Johan Corveleyn wrote: Subject: Re: svndumpfilter and svnsync? To

svndumpfilter and svnsync?

2018-10-04 Thread Chris
ays "The only commits and revision property modifications that ever occur on that mirror repository should be those performed by the svnsync tool". Does that also include this kind of cleanup operation where I remove paths that don't exist on HEAD? If I should't use svnsync for this, what should I do instead? TIA, Chris

Re: Erroneous "diff --summarize" output?

2018-09-11 Thread Chris
Hi Johan, I'll file a bug report then! BR, Chris On Wed, 9/5/18, Johan Corveleyn wrote: Subject: Re: Erroneous "diff --summarize" output? To: "Chris" Cc: "Subversion" Date: Wednesday, September 5, 2018,

Re: svn diff - revert - patch does not restore wc state

2018-09-11 Thread Chris
ometext \ No newline at end of file +sometext That is, when I shelved, it seems to have added (or at least not reverted) a newline at the end of the file. Not a big problem, but shelve should probably not act this way. BR, Chris

Re: Tree conflict resolution considered harmful

2018-08-29 Thread Chris
ome theories on what to test. By the way, if I remember correctly, --quiet works to stop the resolver, but --non-interactive did not. /Chris On Wed, 8/29/18, Stefan Sperling wrote: Subject: Re: Tree conflict resolution considered harmful To: "

Erroneous "diff --summarize" output?

2018-08-08 Thread Chris
this a bug or am I misunderstanding how summarize is supposed to work? BR, Chris#!/bin/sh ## ## ## ## This is a template for writing Subversion bug

Re: Surprising behavior with 1.10 tree conflict resolver

2018-04-25 Thread Chris
t give access to the company-internal repo to test the actual problem. TIA, Chris ---- On Wed, 4/25/18, Chris wrote: Subject: Re: Surprising behavior with 1.10 tree conflict resolver To: "Chris" , "Stefan Sperling" Cc: users@subve

Re: Surprising behavior with 1.10 tree conflict resolver

2018-04-25 Thread Chris
ure to repeat it in a simple script). /Chris On Wed, 4/25/18, Stefan Sperling wrote: Subject: Re: Surprising behavior with 1.10 tree conflict resolver To: "Chris" Cc: users@subversion.apache.org Date: Wednesday, April 25, 2018, 1:37 P

Surprising behavior with 1.10 tree conflict resolver

2018-04-25 Thread Chris
oint which was my first guess at what was happening. If you think this is working as it should and it is just our horrible server deployment, I guess we'll have to avoid upgrading our clients to 1.10 which would be sad considering how good the text conflict resolver looks. (*) Believe me, I've tried getting corporate IT to fix the deployment, but that's a brick wall I'm not going to succeed in punching through BR, Chris

Re: Inconsistent merge on subdirectory behavior?

2018-04-16 Thread Chris
Hi, I created an issue in Jira: https://issues.apache.org/jira/browse/SVN-4737 and added a reference back to this thread in that one. I'm wasn't sure how to set some of the fields, but hopefully sufficient to track down the issue in the futur

Re: Inconsistent merge on subdirectory behavior?

2018-04-15 Thread Chris
I think is incorrect and did a status+echo and then the same from a subdirectory with a second status+echo. If you instead wanted me to make a bug report on the tracker, let me know. /Chris On Fri, 4/13/18, Johan Corveleyn wrote: Subject: Re: In

Inconsistent merge on subdirectory behavior?

2018-04-11 Thread Chris
as my WCTARGET? I find it confusing and it was mostly luck that I stumbled on the right solution. "svn help merge" does not seem to indicate that these two use cases should be any different, but I may misread it. Btw, this was done with "svn, version 1.9.5 (r1770682)" TIA, Chris

Re: auto-props syntax in file vs. property

2018-02-22 Thread Chris
isn't correct since I need to prune the second ; before it calls propset. Need to try another fix then (unless someone has fixed that in the repo already) /Chris On Thu, 2/22/18, Branko Čibej wrote: Subject: Re: auto-props syntax in file vs. pr

Re: auto-props syntax in file vs. property

2018-02-22 Thread Chris
getting really confused here. I seems very error-prone that manual propset can't use the strings from the config file or auto-props wihtout getting a different result. Which version is the correct one, or do both actually do the job? BR Chris ---

Re: auto-props syntax in file vs. property

2018-01-10 Thread Chris
ect is the root cause of the issue, although I haven't verified it yet. I guess I need to figure out some python basics and see if I can ugly-hack that to work for double semicolons. /Chris On Tue, 1/9/18, Daniel Shahaf wrote: Subj

Re: auto-props syntax in file vs. property

2018-01-09 Thread Chris
r than svn itself. A quick look in that file shows this line: for prop in props.split(';'): Which I suspect is the root cause of the issue, although I haven't verified it yet. I guess I need to figure out some python basics and see if I can ugly-hack that to

auto-props syntax in file vs. property

2018-01-09 Thread Chris
ow how to use it :) At least for a transition period, I will need to keep the config-file in order to run svn_apply_autoprops on files coming in from branches created added before we added svn:auto-props (and have wrong props) so I need both working and I'm unsure of what the right way for doing this is. TIA, Chris

Re: Exclude file types from SVN diffs?

2017-11-06 Thread Chris
Hi Brane, thanks for the reply. I'm ok with seeing the diff header as long as I don't have to see the content. I'll just change the mime-type of these files. /Chris On Mon, 11/6/17, Branko Čibej wrote: Subject: Re: Exclude file

Exclude file types from SVN diffs?

2017-11-06 Thread Chris
erties "--exclude-files-with-properties myasciifileproperty" so I can force a property "myasciifileproperty" on all these files BR, Chris

Re: Query about warnings: mod_dav_svn: nested Location '/repos/reponame' hinders access to '' in SVNPath Location '/repos/reponame'

2017-10-05 Thread Chris Rodgers
Hi Daniel, You were right about the double Include of the subversion.conf file. Thank you! Best wishes, Chris.

Query about warnings: mod_dav_svn: nested Location '/repos/reponame' hinders access to '' in SVNPath Location '/repos/reponame'

2017-10-05 Thread Chris Rodgers
web root folder) and I see the repository listing at https://hostname/repos/reponame/ Using TortoiseSVN's repository browser FAILS with this setup with an XML error like the command line. svn ls, Chrome, and TortoiseSVN's repository browser can access folders within the repository OK, e.g. svn ls 'https://hostname/repos/reponame/dir1' or svn ls 'https://hostname/repos/reponame/dir1/' are both fine. Best wishes, Chris.

Re: A couple thousand mp3 files (this is not spam I swear )

2016-08-12 Thread Chris Carman
On Fri, Aug 12, 2016 at 8:56 PM, Adam Jensen wrote: > Here's the situation: I have ~1500 mp3 files (not pirated music), and > the collection is growing. The sizes range from ~100kB to ~300MB. The > content of these files will never change. The directory structure will > change, files will be move

SVN hangs/locking issue?

2016-06-02 Thread Chris Mirabito
repository we are trying to access. Any help would be greatly appreciated, and if more information is needed, we'll be happy to provide it. Thanks in advance! - Chris Mirabito and Pat Haley svnadmin verify output: execve("/usr/bin/svnadmin", [...], [

Svn will not remember passphrase for client certificate.

2016-04-12 Thread Chris Capon
Subversion v1.9.3, Apache2 v2.4.18 Our subversion server uses SSL with client certificates. When performing any action against the repository using the svn client, a prompt appears asking for the password to the client certificate. (Note: this is not the user id / password combination). Expecte

Re: Unexpected HTTP status 400 'Bad request'.

2015-12-11 Thread Chris Capon
On 2015-12-08 11:16, Stefan Sperling wrote: please try raising HTTPD's LogLevel to "Debug" or higher. See http://httpd.apache.org/docs/2.4/mod/core.html#loglevel Perhaps that will shed more light on the problem. Hi All. I appreciate the time you guys are taking to help me. Thank you. Here i

Re: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Chris Capon
On 2015-12-08 09:09, Bert Huijben wrote: Are you using some kind of (caching) proxy server when you connect to the server? You are focusing your search to a disk problem (probably caused by hints on this list), while you are trying to determine what causes a 'bad HTTP request' error. Bad reques

Re: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Chris Capon
Hi Bert. The only log I know of is under /var/log/apache2/subversion.log, and when I issue a checkout, I get only two lines in it: [08/Dec/2015:09:24:53 -500] myself get-inherited-props /dev/trunk r3066 [08/Dec/2015:09:24:53 -500] myself checkout-or-export /dev/trunk r3066 If the error were

Re: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Chris Capon
I Added both these lines to the section of the Apache2 configuration file. When I do an svn checkout locally, I get the same error occurring. On 2015-12-08 06:09, Yves Martin wrote: Hello, In my Apache2 configuration, I have added "LimitRequestBody 0" and "LimitXMLRequestBody 0" to avoid

Re: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Chris Capon
p.s. The server is around 8 years old and has been maintained and regularly updated, pinned to the Testing release of Debian. On 2015-12-08 05:06, Yves Martin wrote: I guess your repository has been created long ago with a previous version of Subversion.

Re: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Chris Capon
On 2015-12-08 05:06, Yves Martin wrote: Hello​ Is your repository served read-write by other services like svnserve or eventually through SSH in addition to Apache HTTPS access ? I'm sorry. I don't understand what this asks. Permissions are controlled by a .apache_auth and .apache_htpasswd

Re: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Chris Capon
re of a clue about what is going wrong. Eric. On Mon, Dec 7, 2015 at 10:13 PM, Chris Capon <mailto:ttab...@gmail.com>> wrote:

Re: Unexpected HTTP status 400 'Bad request'.

2015-12-07 Thread Chris Capon
On 2015-12-07 20:48, David Chapman wrote: Have you verified that the repository on the server is not corrupt? Perhaps the disk has a bad sector on the drive, and only that repository is affected. Or maybe the hard drive itself is failing, and the other repositories have simply been "lucky" s

Unexpected HTTP status 400 'Bad request'.

2015-12-07 Thread Chris Capon
Hi. We are running a Subversion server using Apache2 2.4.17-3, modDAV, and Subversion 1.9.2-3+b1 (the latest Testing release) under Debian GNU/Linux. We use HTTPS for security along with client certificates. This server has been running for many years with the same configuration. A week or

Re: svn:mergeinfo is acting strange

2015-06-26 Thread Chris
Hi, I tried the tool that Stefan Hett recommended and did get rid of a all mergeinfo from some of the most annoying files, so hopefully it improves the situation for future merges. Thanks for the hint. /Chris

svn:mergeinfo is acting strange

2015-06-25 Thread Chris
hat every time we do "svn update" after a merge, we get 100+ lines of updates even if just one file has been modified (especially annoying in tools like subclipse). TIA, Chris

checkout ends with error

2014-08-03 Thread Chris Carman
lineJS/ ! L TimelineJS L TimelineJS/branches L TimelineJS/tags L TimelineJS/trunk I'm running on Mac OS 10.8.5: svn --version svn, version 1.8.8 (r1568071) compiled Feb 26 2014, 04:11:25 on x86_64-apple-darwin12.5.0 Thanks, Chris

svn_client_infox

2014-03-16 Thread Steenwyk, Chris
ted. For a temporary workaround I changed my code to check that lock and lock->owner are defined. Thanks! Chris THE INFORMATION CONTAINED IN THIS E-MAIL MESSAGE AND ANY ATTACHMENTS SENT FROM GENTEX CORPORATION IS GENTEX CONFIDENTIAL INFORMATION INTENDED ONLY FOR THE PERSONAL USE OF

HTTP status 400 'Bad Request' when using SVN 1.8, OK using 1.7

2014-02-27 Thread Chris Barrow
ng.com in any responses since I am not subscribed to the list. thanks, Chris svn1.8.5.bad.pcapng Description: Binary data svn1.7.9.good.pcapng Description: Binary data

Silently corrupted WC?

2014-02-25 Thread Chris
the extreme bad luck to have a collision on such a checksum? It is of course ok that things fail when we run out of disk, but I get scared if svn doesn't detect that the WC is broken. The above happened with a 1.7.3 client. Due to corporate IT, I can't run any more recent version at the moment. BR, Chris

Re: Looking into using Subversion

2013-11-18 Thread Chris Shelton
been using it for automated deployment of code changes to a test web server for a few years now with generally reliable results. chris On Mon, Nov 18, 2013 at 8:08 AM, wrote: > > Thank for your response Nico. We what to debug from our development server. > Not sure if > there mayb

RE: mod_dav_svn: nested Location warning

2013-10-24 Thread Chris Rodgers
Good question.. Yes I have! And I can see the change because https://server/repos/ now gives a 404 which it didn't originally. C -- Sent from my Android phone with K-9 Mail. Please excuse my brevity.

Re: mod_dav_svn: nested Location warning

2013-10-24 Thread Chris Rodgers
And I still get the warnings! Is there something wrong with my config or should I simply ignore the warnings...? Best wishes, Chris

Re: mod_dav_svn: nested Location warning

2013-10-22 Thread Chris Rodgers
warning is still being generated even without the Alias directive. Do you have any further ideas for what I can try / if this matters? Chris.

Re: mod_dav_svn: nested Location warning

2013-10-22 Thread Chris Rodgers
...but what should be there? If you want a list of repositories then I would suggest investigating the `SVNParentPath` directive. 1/ If you comment out the alias directive, does you svn work ok? 2/ what are you trying to serve via the `/repos` URL? ~ Mark C Hi Mark, 1) Yes, SVN does then wo

Re: mod_dav_svn: nested Location warning

2013-10-22 Thread Chris Rodgers
Hi Mark, Thanks for getting back to me. I added this to avoid a 404 error for https://myserver/repos/ The /srv/svn/html folder is completely empty. C. On 22/10/2013 15:00, Cooke, Mark wrote: -Original Message- From: Chris Rodgers [mailto:christopher.rodg...@cardiov.ox.ac.uk] Sent

mod_dav_svn: nested Location warning

2013-10-22 Thread Chris Rodgers
Authorization Realm" AuthUserFile /srv/svn/user_access/thereponame_passwd Require valid-user # What have I done wrong? Thanks, Chris.

Re: Have an old SVN 1.1 DB corruption issue and need some help

2013-08-16 Thread Chris Shelton
Dana, This page of the subversion book sounds like it might be helpful in your situation: http://subversion.apache.org/faq.html#wedged-repos I am sure that switching to a FSFS repository data store with your new system is advisable. chris On Fri, Aug 16, 2013 at 1:37 PM, Dana Epp wrote: >

Re: backlogging with subversion?

2013-04-29 Thread Chris Shelton
Trac must be installed on to the same machine that serves your subversion repository. That should simplify your decision a bit. chris On Mon, Apr 29, 2013 at 12:00 PM, Ryan Tarrant wrote: > Thanks! I'm starting to get the Trac setup on my windows client, but would > it make more s

Merge Error

2013-01-10 Thread Chris Meyer
I get the following error when trying to use the merge tool, when choosing 'Merge a range of revisions', enter the url to merge from, then push 'Show log' or even if I push next and then 'Test Merge', I get the same error. For some reason it keeps telling me that my local temp folder is not a worki

Re: svnadmin

2012-09-07 Thread Chris Shelton
is impossible to create a repository remotely. Read the book on repository creation: http://svnbook.red-bean.com/nightly/en/svn.reposadmin.create.html svnadmin is a server side utility to create a repository within the local filesystem. chris

Backwards compatible clients?

2012-08-29 Thread Chris Evans
Are you of you guys aware of any SVN clients for Windows that will support 1.7 and 1.6 working copies? I need to update a load of clients to 1.7, but have some shared working copies and it would be useful to use the same client to access both working copy formats. Thanks *bypass*

Preventing check-ins from a subdirectory in the working copy

2012-08-16 Thread Chris J Smith
trunk/folder The motivation for this is that our project builds as an entirety only and it stops people messing up the mergeinfo and integration environment. Best Regards, Chris Smith (apologies for the following signature - unfortunately I cannot remove it) -- Best Tech/ Software Provide

Interesting mergeinfo corruption bug

2012-08-14 Thread Chris J Smith
re either on my understanding or at this end but it's shown up on several people's workstations now. Does anyone know why this occurs or can anyone help us? Best Regards, Chris Smith [cid:imageb49554.png@03f105ab.20a84782] Best Tech/ Software Provider- PA Awards 3 years runnin

Re: commit with exit code 255

2012-06-19 Thread Chris Stäbler
> > Are you sure you've set the ownership *and* permissions *and* SELinux > security context correctly for /var/www/svn *and* all of its contents > recursively? > > > Hey even after I owned the whole svn folder by apache again and gave every user read,write and execute rights it was not working. Wh

AW: commit with exit code 255

2012-06-18 Thread Chris Stäbler
Sun, Jun 17, 2012 at 4:18 PM, Ryan Schmidt wrote: On Jun 17, 2012, at 15:11, Ryan Schmidt wrote: > Chris, I get the same result as you, if I forget to mark the pre-commit hook script as executable. So try "chmod 755 /path/to/repo/hooks/pre-commit", then try again. Oops, I trimmed the

Re: commit with exit code 255

2012-06-18 Thread Chris Stäbler
2012/6/17 Nico Kadel-Garcia > On Sun, Jun 17, 2012 at 4:18 PM, Ryan Schmidt < > subversion-20...@ryandesign.com> wrote: > >> >> On Jun 17, 2012, at 15:11, Ryan Schmidt wrote: >> >> > Chris, I get the same result as you, if I forget to mark the pre-c

commit with exit code 255

2012-06-17 Thread Chris Stäbler
Hello together, a few days ago I set up a subversionserver. Now I wanted to check every commit for some conventions. I tried it with an pre-commit hook but always get the following error when I try to commit something: Some of selected resources were not committed. svn: E165001

RE: Commit size

2012-06-12 Thread Chris Evans
> -Original Message- > From: Andy Levy [mailto:andy.l...@gmail.com] > Sent: 12 June 2012 11:31 > To: Vladimir Shun'kov > Cc: users@subversion.apache.org > Subject: Re: Commit size > > On Tue, Jun 12, 2012 at 5:21 AM, Vladimir Shun'kov > wrote: > > Hello, > > > > Could you please help me w

Re: Info about SVN

2012-04-17 Thread Chris Albertson
tice the book with the turtles on it on the left side of the above linked page. Read that. Which to select of the various free systems depends several things, the size of thyou projects, if they are all in one building or distributed and what your users already know. -- Chris Albertson Redondo Beach, California

Re: details for product

2012-03-02 Thread Chris Albertson
e to have a "demo" for free software. Simply download and use the actual product. Chris Albertson Redondo Beach, California

svn ls i.c.m svn:externals

2012-02-25 Thread Chris Blokland
nt of view it would be nice to have the externals shown in listing command but with some special flag (X?) so it is clear that you are looking at an external resource. Thanks for reading. Regards, Chris.

RE: Restricting access to old revisions of a project?

2012-02-04 Thread Chris Evans
? > -Original Message- > From: Nico Kadel-Garcia [mailto:nka...@gmail.com] > Sent: 03 February 2012 18:05 > To: Ryan Schmidt > Cc: Chris Evans; users@subversion.apache.org > Subject: Re: Restricting access to old revisions of a project? > > On Fri, Feb 3, 2012 at 12

Restricting access to old revisions of a project?

2012-02-03 Thread Chris Evans
config to deny access if the http request contains the revision, but I'm not sure what modules or config would allow this. Any help would be greatly appreciated. Thanks Chris *bypass*

Re: Request for thoughts on working copy enhancement request

2011-12-21 Thread Chris Shelton
Is there already a way to do this? Thoughts? > > > This sounds like a good case to use changelists. See: http://svnbook.red-bean.com/nightly/en/svn.advanced.changelists.html for details. chris

Error updating working copy to 1.7

2011-10-18 Thread Chris Gundersen
ext\subversion\subversion\libsvn_wc\entries.c' line 1935: assertion failed (svn_checksum_match(entry_md5_checksum, found_md5_checksum)) --- OK --- I'm running Windows 7 SP1 (Version 6.1, Build 7601) 64-bit. -- Chris Gundersen Fou

Re: File access control

2011-09-30 Thread Chris Albertson
Part of what you ask your dev to do is create an "install bundle" on most UNIX-likemacnines this is a .tar file. in Windows it's an installer. on Mac it's a disk image .dmg file Then you move those to the end user -- Chris Albertson Redondo Beach, California

Re: Use of svnserve and Dropbox

2011-09-22 Thread Chris Albertson
My first impression is that of course this will not work. But let's be more positive. What would work? 1) Use your SVN server to maintain versions and history and then checkout a working directory to the dropbox. You can even have multiple working directories in the dropbox. 2. put your SVN s

Re: Use of svnserve and Dropbox

2011-09-22 Thread Chris Albertson
> in Dropbox? Is there an issue with possible collisions if two or more > people attempt to commit their changes at the same time? > > What if we skip the svnserve route and merely use the file:// > protocol? Is this any safer? > > -- > David Weintraub > qazw...@gmail.com > -- Chris Albertson Redondo Beach, California

Re: SVN

2011-09-22 Thread Chris Albertson
-- > Regards, > Sukumar Gorai > Jr. Software Developer > Bluehorse Software > email-sukumar.go...@bluehorse.in > Mob-+91-8296015120 >        +91-9647555891 > -- Chris Albertson Redondo Beach, California

403 forbidden when copying path with no permissions

2011-08-25 Thread Chris Evans
I'm having issues doing an svn copy on the trunk of my project because I don't have read permissions to a directory further down the tree. My example authz: [test:/] myuser=rw [test:/proj1/trunk/dir1/dir1.2] myuser= The /proj1/trunk/dir1/dir1.2 was deleted a couple of revisions ago, so th

RE: copying subdirectories in subversion 1.7

2011-07-25 Thread Feldhacker, Chris
>  I wonder if people will expect a script named "detach" to copy or do they > think it will move? More like "extract" or "promote" -- promoting a child folder to become a full-fledged, independent working copy... "liberate"? Kinda like that... :-) -Message Disclaimer- This e-mail

Re: Can I prevent a file from being modified?

2011-07-17 Thread Chris Albertson
ack them out if you know the change was made. An MD5 checksum is a good way to detect changes -- Chris Albertson Redondo Beach, California

Re: Taking mirror Backup of SVN Repos through 3rd Party Software

2011-06-29 Thread Chris Albertson
On Wed, Jun 29, 2011 at 9:17 AM, Waseem Bokhari wrote: > Hi Guys! > > DISCLAIMER: This e-mail and any file transmitted with it are confidential... If the email is confidential why did you post it to a public forum? If it is not confidential why did you include the above statement?

Re: access denied errors Windows 7

2011-06-27 Thread Chris Albertson
, Ken G. Brown wrote: > Hi, new here, > I'm trying to get TortoiseSVN 1.6.16, Build 21511 - 32 Bit , 2011/06/01 > 19:00:35, and Subversion 1.6.17 working on fully updated Windows 7 running > under VMware Fusion Version 3.1.3 (416484) on my Mac. -- Chris Albertson Redondo Beach, California

Re: Problem with mod_dav_svn and svn_repos__post_commit_error_str

2011-06-16 Thread Chris Wolstenholme
Thanks. That was the problem. A version of svn installed with the os. Removing the older version fixed it. Thanks for your help. Chris On 16/06/2011 00:11, Daniel Shahaf wrote: Do you have a pre-1.6.17 libsvn_repos on the system? (That symbol is defined by libsvn_repos, and I suspect it&#

Problem with mod_dav_svn and svn_repos__post_commit_error_str

2011-06-15 Thread Chris Wolstenholme
elated to this one, and so any help would be appreciated. Thanks in advance, Chris

RE: svnsync path not found

2011-05-24 Thread Chris Evans
> -Original Message- > From: Daniel Shahaf [mailto:d...@daniel.shahaf.name] > Sent: 23 May 2011 18:37 > > issue #3641 (to be fixed in 1.6.17) perhaps? It looks like this issue is related to moved and copied files. The file in questions hasn't been, just modified and committed. -

svnsync path not found

2011-05-23 Thread Chris Evans
server fails with: svnlook: No such transaction Running the syncsync again errors with a different transaction number. Any ideas what could be causing this. I'm using svn version 1.6.16 on VisualSVN Server 2.1.7 Thanks Chris *bypass*

Subversion Setup Question

2011-05-09 Thread Chris McGrath
Greetings all! My team has recently grown from just me to three of us and I am in the process of implementing subversion as our version control system. I am having a little trouble wrapping my head around what will become the workflow. Our current setup is: 1 development server that we work of

RE: How to control changes to path-based auth file?

2011-05-09 Thread Feldhacker, Chris
In a nutshell: http://www.svn-access-manager.org/ Basically, store all your settings in a database and generate the config files; just use a simple web front-end to edit the database and control/log changes that way. The svn access manager provides a good starting point, modify and tweak as n

deny/allow access to projects based on IP address?

2011-05-03 Thread Chris Evans
e hit with multiple directives and especially during a bit checkout. Order Deny,Allow Deny from all Allow from 1.1.1.1 For reference I'm using VisualSVN Sever. Thanks Chris *bypass*

Re: Logging repository accesses other than commits

2011-04-01 Thread Chris Shelton
gging for details. chris

RE: Out of memory issue with svn merging

2011-03-14 Thread Chris Evans
Without a 32bit executable being large address aware it's not going to be able to use more than around 2GB of virtual address space. Ideally you'd use a 64bit client on a 64bit OS. If that's not possible then you can maybe squeeze a bit more out of a 32bit client by forcing it to use up to 3GB.

svndumpfilter2 or svndumpfilter3 on Windows

2011-03-11 Thread Chris Evans
great or an alternative solution. Thanks Guys Chris *bypass*

RE: Understanding merging

2011-03-08 Thread Feldhacker, Chris
-Original Message- From: Steve Cohen [mailto:stevec...@comcast.net] Sent: Tuesday, March 08, 2011 12:20 PM To: users@subversion.apache.org Subject: Understanding merging > I work with a very senior colleague who has never always resisted version > control and would much rather do witho

dumping part of a repository with moved files

2011-03-08 Thread Chris Evans
of this? Will I need to dump the old location too? Or even each file individually and hack the dump file to never be in the old project? Thanks Chris *bypass*

Re: MySQL changes into svn

2011-02-28 Thread Chris Albertson
dump content to an ASCII file. Then you save the files the same way you'd save any other files. You __do__ have to do the dumps inside a transaction so to maintain consistency. -- = Chris Albertson Redondo Beach, California

RE: Subversion Apache2.2 LDAPS authentication failed

2011-02-28 Thread Feldhacker, Chris
-Original Message- From: 金健康 [mailto:jinjiankang1...@gmail.com] Sent: Friday, February 25, 2011 12:53 AM To: users@subversion.apache.org Subject: Subversion Apache2.2 LDAPS authentication failed Hi, OS: Redhat Linux Subversion: 1.5.0 Apache: 2.2.17 OpenLDAP: 2.3.27 httpd.conf: ... LDAPS

Re: svn update or rsync - which is best to update live files

2011-02-26 Thread Chris Albertson
heir own IP address and file system but there is only one instance of the operating system running on the hardware. I always thought it a waste to have multiple copies of the same software in RAM, Sun solved that problem well. -- = Chris Albertson Redondo Beach, California

Re: Betr.: RE: Hook help

2011-02-21 Thread Chris . Lichter
n the file. This includes: add, delete, and update. print(changed) print(action)) I later on block changes and deletes made only to tag directories. Chris

Re: Windows over linux

2011-01-25 Thread Chris Albertson
On Tue, Jan 25, 2011 at 9:24 AM, Andy Levy wrote: > On Tue, Jan 25, 2011 at 11:56, Chris Albertson > wrote: > And if the skillset in your shop is primarily Windows, using Solaris > or Linux would require a lot of expensive training, People who grow up with Windows all remember just

Re: Windows over linux

2011-01-25 Thread Chris Albertson
ecause you need to re-boot and of course the re-boot kills the remote link. -- = Chris Albertson Redondo Beach, California

Re: How to get the parent branch...

2010-12-22 Thread Chris Tashjian
> > For some client-side Tortoise hooks (which are for the purpose of > preventing people shoot themselves in the head in all the myriad ways > Subversion allows), I need to get the ancestor-branch, ie where the current > branch/tag was copied from. > When I create a new branch I add an svn:proper

RE: SVN Statistics

2010-12-10 Thread Chris Evans
. It might be a bit overkill for what you're after, but Atlassian Fisheye is really good http://www.atlassian.com/software/fisheye/ It'll give you user statistics for LoC, commits etc. You can also set a starting revision rather than 0. Chris -- Gloucester Research Limited

  1   2   >