Re: An established connection was aborted by the software in your host machine.

2016-04-15 Thread Eric Johnson
I've seen this kind of error, and usually it seems to map to problems with the network connectivity. In addition to checking for Apache configuration, also check for proxies that might be disrupting the communication. You're also using a very old version of the Subversion server, and presumably an

Re: SVN and Active Directory

2016-04-19 Thread Eric Johnson
Absolutely, but by way of using Apache mod_auth_ldap, and AD's LDAP API. Eric On 4/19/16 12:53 PM, Gronde, Christopher (Contractor) wrote: Has anyone in here successfully integrated SVN with Active Directory for user authentication? We are currently using FreeIPA and user ac

Re: Blank lines

2016-05-04 Thread Eric Johnson
which gives me a jungle of changes that I don't want to see. Sounds like you like the command line. If you also use IDEs, I've found the "Compare" capabilities in Eclipse pretty fantastic for white space problems, because you can toggle between ignoring and respecting white space changes. Eric.

Re: New Mac Subversion Client

2016-05-20 Thread Eric Johnson
aning all libraries can be loaded at the same time. If your working copies are derived from Subversion 1.6 -> 1.9 then you can work with them all simultaneously. That's a neat trick! Eric

Re: LDAP Usage Question

2016-05-24 Thread Eric Johnson
We scan our LDAP server, and generate group information from that, and then apply that to our version control servers. Eric. On 5/24/16 12:51 AM, Dariusz Nowak wrote: Hello, I'm new in subversion world and tried to research something yesterday - without success, so decided to post

Re: SVN

2016-05-27 Thread Eric Johnson
om making changes to a file when it isn't "checked out". This is otherwise known as "pessimistic locking." If your user needs require pessimistic locking, then you should use a tool that does it. Probably not a good idea to squeeze everything into Subversion, if that's the case. Eric.

Re: Component mangement and Subversion

2016-06-17 Thread Eric Johnson
tree, via any means (such as svn:externals), is probably just fine, so long as the external source does not swamp the size of the local code. Eric. On 6/17/16 8:39 AM, Ignacio González (Eliop) wrote: Hello. I'm looking for examples on how to use Subversion efficiently in the context of

Re: securing of correct transmit

2016-07-22 Thread Eric Johnson
use SVN 1.8.11. Looks like current version of Subversion 1.8.X is 1.8.16. If you want it to be the most correct, perhaps upgrade? Eric. mit freundlichen Grüßen/ with best regards *Lars Krüger* Embedded Softwareentwicklung *Carmeq GmbH *Carnotstr. 4 D-10587 Berlin Mobil: +49 172 5892291(BIK: 266

Migrating old format repositories (format 4), running into bad line endings

2016-08-22 Thread Eric Johnson
e property, which is *not* a revprop, and cannot be fixed by any of the tools available. I've seen that other people recommend editing the dump file directly, but that makes me quite nervous, especially on an 8MB dump file. Hoping there's a better way. Eric.

Re: Migrating old format repositories (format 4), running into bad line endings

2016-08-22 Thread Eric Johnson
Hi Mark, On 8/22/16 2:06 PM, Mark Phippard wrote: On Mon, Aug 22, 2016 at 2:11 PM, Eric Johnson <mailto:e...@tibco.com>> wrote: So I wrote myself a tool to go through all commit comments, and verify that no "CRs" appear in the svn:log entry. If I find them, I re

Re: Migrating old format repositories (format 4), running into bad line endings

2016-08-22 Thread Eric Johnson
Thanks for the reply. On 8/22/16 5:25 PM, Daniel Shahaf wrote: Eric Johnson wrote on Mon, Aug 22, 2016 at 14:29:47 -0700: * // move original repo out of the way, move new copy into position. At the comma you should restart the server to flush caches: http://mail-archives.apache.org

Re: Implementing the Lock->Edit->Unlock cycle

2016-09-28 Thread Eric Johnson
ould tie yourself up into knots trying to write hook scripts that accomplish some of what you want, but by the time you get them working just the way you think you want them, you'll discover that you probably don't want them that way. Eric. We plan to use it mainly from the AnkhSVN pl

Re: Implementing the Lock->Edit->Unlock cycle

2016-09-29 Thread Eric Johnson
On 9/29/16 4:58 AM, Anton Shepelev wrote: Thanks to everybody for their replies. Eric Johnson to Anton Shepelev: "svn update" is your friend. Just encourage users to do updates before they start editing. Is there no protection against an oblivious users's losing a da

Re: Cannot add files due to hierarchical RDC svn:auto-props when matching rules merge properties between text and binary file types

2016-10-12 Thread Eric Johnson
ent repositories for the binary files vs. the text format. - improved hook scripts to enforce your desired constraints based on the content of the incoming added file, rather than just the extension. You could also create a client side script / tool to check before a commit. Eric.

Re: History split after server-side mkdir/mv

2016-10-27 Thread Eric Johnson
ory up to its birth? I don't believe there's any good way to do what you want without recreating the history of your repository. You might be able to achieve what you want by doing an svnadmin dump & load, where you load to a sub-directory trunk", then relocate everything buried a level down (trunk/trunk/...) back into the top-level trunk folder. Eric. Thanks for your comments, DN

Seeing very slow performance with svnadmin verify

2016-11-01 Thread Eric Johnson
pository finishes verifying. That's not really acceptable. Any suggestions? Am I doing something wrong? Thanks! Eric.

Re: SVN Properties

2016-11-01 Thread Eric Johnson
mime-type However, I was not able to then search and locate the file by its property. Exactly. 3) What is a better way to indicate a given status/attribute on a set of files? See my suggestion above about copying into a known folder. Would that satisfy your requirements? Eric. Amad

Re: SVN Properties

2016-11-01 Thread Eric Johnson
Hi Amad, On 11/1/16 1:48 PM, CM Analyst wrote: Eric, Thank you for your response. Actually, we do copy executables to a "release" directory in SVN. However, for that to happen, the release content has to be defined in advance, completed the formal test cycle. You could have anot

Re: Svn branching issue

2016-11-07 Thread Eric Johnson
rent and future versions of the parent folder. Older versions of the parent folder still contain the older version of the child folder. You might benefit from understanding the difference between the "peg" and "operative" versions. http://svnbook.red-bean.com/en/1.7/svn.advanced.pegrevs.html Eric.

Re: Svn branching issue

2016-11-07 Thread Eric Johnson
On 11/7/16 9:58 AM, gyanendra ojha wrote: hi eric, that is the issue, new branch created from old location is having the old path in svn log,i want it to point it to newly created branch path for example there is svn old branch //depot/a/a.txt now if i create branch

Re: Svn branching issue

2016-11-07 Thread Eric Johnson
sion won't lose history. Eric. On 7 Nov 2016 23:37, "Eric Johnson" <mailto:e...@tibco.com>> wrote: On 11/7/16 9:58 AM, gyanendra ojha wrote: hi eric, that is the issue, new branch created from old location is having the old path i

Re: Advice for better SVN

2016-11-24 Thread Eric Johnson
to help. Thanks. Also, might help to investigate which version of SVN you're using on both the client and the server. Each release tends to bring some performance improvements. It may also be that the server is mis-configured, and performing slowly. More details would help diagnose the specifi

Re: post-commit hook

2016-12-11 Thread Eric Johnson
By any chance does the gmail account in question now have two factor authentication turned on? Eric Sent from my iPad > On Dec 11, 2016, at 6:21 PM, João M. S. Silva > wrote: > > [I'm not subscribed to the list, please CC me.] > > Hi, > > I have been using subvers

Re: Checkout through link ignores rev parameter

2017-01-24 Thread Eric Johnson
What version of the Subversion client & server are you using? Eric On Mon, Jan 23, 2017 at 10:54 AM, Dalton, Bill (GE Energy Connections) < bill.dal...@ge.com> wrote: > We have projects which share some of the files in the subversion folders > but not all. So, those projects

Re: Reg: Code baseline in apache subversion implementation

2017-02-01 Thread Eric Johnson
I believe Subversion would refer to a baseline as a "tag". Eric On Feb 1, 2017, at 11:25 PM, Durgaprasad Potnuru < durgaprasad.potn...@iictechnologies.com> wrote: Dear users, Could you guide if code can be base-lined in repositories implementing apache subversion. Related doc

Re: SVN log --revision "{2017-02-23T18:53Z}:{2017-02-24T02:46:15.225107Z}" not parsing date correctly?

2017-02-24 Thread Eric Johnson
other words, depending on what you allow of the repository clients, the date is not a reliable indicator of "changed since". Eric. On Fri, Feb 24, 2017 at 10:08 AM, Dane Kantner wrote: > I'm running a script on a scheduled basis where each new iteration I'm > esse

Re: File storage

2017-03-26 Thread Eric Johnson
sharing a "repository" with other people may not work as expected. Unlike Git, the Subversion repository must be stored in a location other than the Subversion working copy. That other location, however, need not be on a separate server. Eric. On Wed, Mar 22, 2017 at 5:29 AM, Sagar Pare

Re: so urgent

2017-05-11 Thread Eric Johnson
That is a very old version of the client. You probably want to upgrade your client to something newer before you try anything else. Eric On May 11, 2017, at 10:36 PM, tina S. wrote: Hello, i was working with the svn and tried to revert some files then i started getting this error and right

Re: Facing issues in Enable editing log messages.

2017-05-17 Thread Eric Johnson
The failures shown in your screenshot are due to authentication, and appear to be unrelated to Subversion. It would appear that the csvn user is either an invalid user or you have the wrong password. Eric. On Wed, May 17, 2017 at 3:26 AM, Ramamurthy, Manochitra < mramamur...@intevaproducts.

Re: On the subversion I have a question to confirm

2017-05-19 Thread Eric Johnson
It is a little bit difficult to follow your question. Perhaps you can restate the question as a sequence of Subversion actions, and a question about the result? As a stab at your question, when a change is committed, all the preceding changes are still available from the repository. Eric. On

Re: [wait on line]about svnsync

2017-05-19 Thread Eric Johnson
As best I can tell, the problem is that your hook scripts end in ".sh". The file name should just be "pre-revprop-change". Eric. On Thu, May 18, 2017 at 11:39 PM, Dummy <3295285...@qq.com> wrote: > dear subversion: > when i exec : svnsync init svn:/

Re: 【wait on line】weird question about svnsync

2017-07-20 Thread Eric Johnson
This could be for a number of reasons. Perhaps your original repository is an older format? If that's the case, and your mirror is a newer format, then the newer format could be packing and finding binary duplicates much more effectively than is possible using the older format. Eric. O

Re: Checksum mismatch still with 1.8.19

2017-08-29 Thread Eric Johnson
Does an svnadmin load, with the same dump file, work without errors, when you load back into version 1.8.5? How did you create the dump file? Did you use the incremental form with deltas? Eric. On Tue, Aug 29, 2017 at 9:58 AM, Grant Drake wrote: > Our current Subversion server is 1.8.5.

Re: Subversion version 1.6.11 (r934486) package

2017-09-22 Thread Eric Johnson
new server liver. Maybe a minute of total down time. > > > I am not sure if I can install svn 1.9.7 on centos7 and migrate my svn > 1.6.1 directly to the 1.9.7 on centos7. > I believe so, if you follow the approach I outlined above. Caveat - I don't run CentOS. Eric. >

Re: Recommended apr / openssl etc. library version for svn ?

2017-11-21 Thread Eric Johnson
*PCRE 8.41 *SQLite 3.19.3 *ZLib 1.2.11 Specifically, in the case of openssl, I found this bug tracking all the compatibility problems: https://bugs.gentoo.org/592438 . Seems like you probably want to stay away from it. Eric. On Tue, Nov 21, 2017 at 7:11 AM, Cooke, Mark < mark.co...@sie

Re: Hiding Subversion version number

2017-12-16 Thread Eric Johnson
the extra time nudges attackers towards looking for easier targets. Eric On Dec 16, 2017, at 3:35 AM, Branko Čibej wrote: On 15.12.2017 20:10, Matt Simmons wrote: Many documents relating to information security compliance require blocking visible software version information. Interesting

Re: regarding downloading subversion

2018-02-08 Thread Eric Johnson
e the download process". Download of what? >From where? How did it fail? Depending on your answer, some other email list might be more appropriate. Eric. On Thu, Feb 8, 2018 at 3:09 AM, nayama scariah wrote: > Good day sir, > I tried to download Apache Subversion 1.9.7 for work

Re: No longer get multiple icons

2018-03-16 Thread Eric Johnson
Hi Victor, It sounds like you might be using TortoiseSVN. Most likely you'll get a better answer asking people familiar with that project. This email list is specifically for the core SVN functionality, not the GUI clients. Eric. On Fri, Mar 16, 2018 at 9:53 AM, Victor A. Wagner Jr.

Re: Is svnadmin load affected by hooks?

2018-03-29 Thread Eric Johnson
quot;--use-pre-commit-hook" and "--use-post-commit-hook". Assuming you're using your post-commit hook to trigger the calls to sync, you could pass that flag. That seems weird to me, though, in that such an approach would trigger a sync request per loaded commit. Eric.

Re: Is svnadmin load affected by hooks?

2018-03-29 Thread Eric Johnson
Hi Bo, On Thu, Mar 29, 2018 at 2:29 PM, Bo Berglund wrote: > On Thu, 29 Mar 2018 10:23:34 -0700, Eric Johnson > wrote: > >On Wed, Mar 28, 2018 at 8:17 PM, Bo Berglund > wrote: > > > >If you're dumping into an empty repository, that typically resets the > &g

Re: Moving SVN from one server to another

2018-04-23 Thread Eric Johnson
It should be OK to use rsync, so long as the "old server" is not in use and the repositories are not being modified while you're syncing them. Then, I strongly recommend a dump and load on the new server. Eric. On Mon, Apr 23, 2018 at 3:19 PM, Paul Greene wrote: > Hello, &g

Re: Subversion Exception during cleanup

2018-05-17 Thread Eric Johnson
Start with upgrading to a newer version of TortoiseSVN. Eric. On Thu, May 17, 2018 at 12:40 AM, Hartmut Leister wrote: > I encountered the following exceptions (see below) in the mid of > SVN-Cleanup. > > What I was doing: > - SVN-merge via TortoiseSVN, stopped with Error

Re: LDAP authenticate problem

2018-05-22 Thread Eric Johnson
The question relates to to either Apache, or the ActiveDirectory configuration, not Subversion, from the looks of it. The mailing lists for httpd will probably be able to give better advice more quickly. Eric. On Mon, May 21, 2018 at 2:41 PM, Paul Nguyen wrote: > I’m running SVN 1.

Re: Migration a Git archive to subversion

2018-07-10 Thread Eric Johnson
However, having said all that, try the "git-svn" connector. Here's someone with a similar sounding task: http://www.draconianoverlord.com/2010/03/05/existing-git-into-svn.html Eric On Tue, Jul 10, 2018 at 8:30 AM Martin Sauer wrote: > Hello, > > I want to migrate my gi

Re: Using wild cards to specify usernames in svn auth file

2018-10-26 Thread Eric Johnson
ch in this case. Eric. On Fri, Oct 26, 2018 at 7:06 AM William Muriithi wrote: > Hello > > I have an SVN where a user can login through two accounts. For > example, will...@example.com and will...@example.org. The access > rules however are tailored for one domain > > I wa

Re: help of SVN

2019-01-11 Thread Eric Johnson
tions will likely need to be more specific / detailed. For example, when you say "now it can't work", what does that mean? What error messages do you see? How do you know it doesn't work? What *does* work (can you perform svnadmin commands, or svnlook commands, for example?), as that will help eliminate possible failures. Good luck! Eric > Thank U. > > > > >

Re: Subversion Version Control

2019-01-25 Thread Eric Johnson
(with a small exception for tracking specific property values as part of the contents of files, a mostly discouraged practice). Eric. >

Re: Subversion Version Control

2019-01-25 Thread Eric Johnson
Hi Gennar, On Fri, Jan 25, 2019 at 12:07 PM Gillead, Gennar < gennar.gill...@teradata.com> wrote: > Eric, > > Thanks for response. I haven't used SVN but my client currently uses it > and looking for a certain functionality before considering replacing it. > To be mo

Re: Why does svn up give me a different file than in the repo

2019-03-05 Thread Eric Johnson
Possibly a line-ending conversion? http://svnbook.red-bean.com/nightly/en/svn.advanced.props.file-portability.html#svn.advanced.props.special.eol-style Check to see if the svn:eol-style property is set. Eric On Tue, Mar 5, 2019 at 10:34 AM Satya Mishra wrote: > Hi, > > I recently en

Re: --normalize-probs doesn't do its thing

2019-03-26 Thread Eric Johnson
Just FYI, I've found that svnsync automatically fixes these problems. My pattern for old repositories has been to perform the svnadmin dump / load with --bypass-prop-validation. Then use svnsync to copy yet again to another copy of the repository. Then remove the sync properties on rev 0.

Re: Add changes from a local svn repo to the same but older repo on a server with history

2019-04-01 Thread Eric Johnson
es off the rails. The load command would only work if nobody else touches the repository (in a way that conflicts) in the meantime. Assuming this is unlikely. The most obvious alternative that I can think of is to use "git-svn". Instead of pushing changes to Subversion, push them to Gi

Re: Add changes from a local svn repo to the same but older repo on a server with history

2019-04-03 Thread Eric Johnson
On Tue, Apr 2, 2019 at 10:08 PM wrote: > > On 04/01 09:23, Eric Johnson wrote: > > Hi mcc, > > > > On Mon, Apr 1, 2019 at 5:40 AM wrote: > > > > > Hi, > > > > > > (I am not subscribed and appreciate to be CC:ed by any reply to my >

Re: Importing from a working copy ... bad idea?

2019-04-17 Thread Eric Johnson
Sounds like you might want to take advantage of svn:externals. http://svnbook.red-bean.com/nightly/en/svn.advanced.externals.html Eric. On Wed, Apr 17, 2019 at 3:51 PM Mun Johl wrote: > Hi, > > We're using SVN version 1.8.19 on Red Hat Enterprise Linux 6.8 . > > For a new

Re: modules not getting loaded on windows subversion server

2019-05-22 Thread Eric Johnson
yields a lot of hits that point in the same direction. This, for example: https://serverfault.com/questions/477706/apache-ssl-on-64-bit-windows-not-a-valid-win32-application Eric. On Wed, May 22, 2019 at 1:13 PM Gomathi wrote: > Hi, > > I have installed apache http server 2.4.39 in

Re: Unsubscribe

2019-06-17 Thread Eric Johnson
If you look in the original source of the email, you'll see one of the message headers is: List-Unsubscribe: <mailto:users-unsubscr...@subversion.apache.org> I suspect you'll have more success with that address. Eric. On Sun, Jun 16, 2019 at 10:25 AM Michael Mueller wrote: > Unsubscribe >

Re: Reg: SVN subversion checkout issue in ubuntu

2019-07-16 Thread Eric Johnson
ve the -q option from 'ssh' > in the [tunnels] section of your Subversion configuration file. > Did you try this step of removing the -q option? What shows up on the command line? Eric. > Network connection closed unexpectedly > > I tried lot of ways from the forums to get ou

Re: which review tools are suitable for codes versioned by svn

2019-08-12 Thread Eric Johnson
ReviewBoard. Eric > On Aug 10, 2019, at 9:18 PM, wuzhouhui wrote: > > Hi, > > I'm searching some review tools which are suitable for codes versioned > by Subversion, any recommends? >

Python 3.X bindings for Subversion on MacOS?

2019-09-24 Thread Eric Johnson
i. Should I use subvertpy instead, or maybe pysvn? What's the right approach here? Eric.

Re: Subversion and JIRA integration

2019-09-30 Thread Eric Johnson
oating licence? > This mailing list isn't going to be a good source of information about that. And that assumes that you can find an existing commercial vendor of extension(s) that meet your needs. Eric. > > > Thanks > Ragu.P > >

Re: Cannot get info for a file that was inside of file-replaced directory

2019-11-18 Thread Eric Johnson
fails, as you note. Looks like a bug to me. Eric. On Mon, Nov 18, 2019 at 1:53 AM Иван Селин wrote: > Hi! > > I think I've found a bug in subversion client. Setup is as follows: > 1. Create directory with a file in it — commit 1 > 2. Replace directory with other file

Re: Repo browser not opening

2020-04-09 Thread Eric Johnson
em on the server? Keep in mind, this is the open-source Subversion users list - so if the problem is with a commercial server, or with the client software, it may be appropriate for a different mailing list. Eric On Wed, Apr 8, 2020 at 10:29 PM Ayush Sharma wrote: > When i try to access

Some sync merges no more allowed with 1.8 client ?

2013-07-05 Thread Eric Estievenart
ll developers. Changes from v2-dev are regularly propagated to v3-dev; so are those from v3-dev to trunk. Environment: - server: debian 1.7.9-1+nmu1 (amd64) - client: debian 1.8.0-1+WANdisco (amd64) Sincerely -- Eric

RE: Some sync merges no more allowed with 1.8 client ?

2013-07-08 Thread Eric Estievenart
ncestry svn: E24: Cannot merge automatically while ignoring mergeinfo We'll continue our investigations, and keep you updated. Thanks -- Eric Estievenart

RE: Some sync merges no more allowed with 1.8 client ?

2013-07-08 Thread Eric Estievenart
es you to keep track of the number of the revision > number the v3 branch was last synced up to (r70081 in this example). Of course, but it's tedious and error prone. We'll only use that if we can't find a better solution which properly tracks the mergeinfos. -- Eric Estievenart

Re: Mixing recursive and non-recursive commits

2013-07-24 Thread Braun, Eric
d then any parent directories for the given command line targets that are in an add state should be included in the targets passed on. Eric [CONFIDENTIALITY AND PRIVACY NOTICE] Information transmitted by this email is proprietary to Medtronic and is intended for use only by the individual or entit

RE: Mixing recursive and non-recursive commits

2013-07-25 Thread Braun, Eric
to do this work in most cases but GUI's don't work as well when defining wildcards/filtering (*/*/file for example for a commit target). Eric -Original Message- From: Stefan Sperling [mailto:s...@elego.de] Sent: Wednesday, July 24, 2013 5:24 PM To: Braun, Eric Cc: users@subver

RE: Mixing recursive and non-recursive commits

2013-07-25 Thread Braun, Eric
ry hard to filter out just what you want. Eric -Original Message- From: Stefan Sperling [mailto:s...@elego.de] Sent: Thursday, July 25, 2013 10:21 AM To: Braun, Eric Cc: users@subversion.apache.org; Moe, Mark Subject: Re: Mixing recursive and non-recursive commits On Thu, Jul 25, 2013 at

RE: Mixing recursive and non-recursive commits

2013-08-06 Thread Braun, Eric
not a newly added parent directory. In the second corner case items in the changelist plus any newly added parent directories is what would be committed. Eric -Original Message- From: Philip Martin [mailto:philip.mar...@wandisco.com] Sent: Friday, August 02, 2013 12:05 PM To: Braun,

svn 1.8.1 fails on underscore in the tunnel protocol

2013-08-16 Thread Eric Hall
'svn up' or an 'svn checkout'. Changing the tunnel protocol name to 'foobar' (i.e. drop the underscore) appears to work properly, both 'svn up' and 'svn checkout' work fine. Is this a bug, or should tunnel protocols not have underscores in them? -eric

RE: Mixing recursive and non-recursive commits

2013-08-20 Thread Braun, Eric
continue on manually adding parents to the command line checkin. Eric -Original Message- From: Philip Martin [mailto:philip.mar...@wandisco.com] Sent: Tuesday, August 20, 2013 9:40 AM To: Braun, Eric Cc: Stefan Sperling; users@subversion.apache.org; Moe, Mark Subject: Re: Mixing recursive and

Tools for projecting growth of repository storage?

2013-12-02 Thread Eric Johnson
Anyone have a suggestion for a tool that projects the growth of repository storage. I've got repos taking over 75% of a disk volume, and I'm curious to project out when I'll need new storage. Obviously, this is approximate, but has anyone got a tool for it? Eric.

Re: Repository Structure Question

2014-01-02 Thread Eric Johnson
straight up ongoing branch of what's different from the changes in "A". Create that branch by first making a copy of those 20 files from "A", then replacing them with the versions from B & committing. Eric. On 1/2/14, 2:25 PM, Mike Fochtman wrote: I

Re: ignore property not ignoring...

2014-01-10 Thread Eric Johnson
had 1.8.X for quite some time. You might try that route, rather than just relying on XCode. Eric

Re: SVN notify--post-commit---steps

2014-01-28 Thread Eric Johnson
hat Subversion uses when it is executing its scripts. You might try putting in script commands (python, bash, ruby, perl, other?) that log to a file, so you can debug the execution when run by Subversion. Eric On 1/28/14, 2:01 AM, sushant wrote: Hello sir, please provide me the SVN notify

Re: The XML response contains invalid XML

2014-02-05 Thread Eric Johnson
ce of the problem. Eric. On 2/4/14, 10:05 PM, Daren Hawes wrote: Hi, I was hoping someone has seen this error before. It randomly happens when we SVN Checkout. We have a Windows 2012 Server with SVN 1.8.5 installed. We use Visual SVN 1.8.4 to manage this Server. The Sub Version data fold

svn log entries with no data

2014-03-14 Thread Eric Johnson
line r3 | (no author) | (no date) | 1 line r4 | (no author) | (no date) | 1 line How is this possible? Have I lost data? svnadmin verify doesn't report any problems. Eric.

Re: svn log entries with no data

2014-03-14 Thread Eric Johnson
e server yields blank responses. $ svnlook info ___ --revision 2 0 $ svnlook info ___ --revision 3 0 Anyone seen anything like this before? Eric. On 3/14/14, 12:18 PM, Philip Martin wrote: Stefan Sperling writes: On Fri, Mar 14, 2014 at 10:51:56AM -0700, Eri

Re: svn log entries with no data

2014-03-14 Thread Eric Johnson
Finally triggered a memory over here - almost certainly a svndumpfilter operation that filtered out commit contents. Eric. On 3/14/14, 2:25 PM, Eric Johnson wrote: More puzzling then either case you suggest. Doing "svn log -v --xml ..." directly on the server (thus sid

Re: Issue with Subversion client - svn command line interface - Spaces in the message

2014-04-17 Thread Eric Johnson
Try: svn mkdir -m "Message with spaces" instead ... instead. The "svn help" command reports that the syntax is of the form "svn [options] [args]", whereas you've done "svn [args] [options]" Eric On Thu, Apr 17, 2014 at 9:49 AM, Srinivasa Dara

Re: Correcting missing log message

2014-04-30 Thread Eric Johnson
See http://svnbook.red-bean.com/en/1.7/svn.reposadmin.maint.html#svn.reposadmin.maint.setlog Eric. On Wed, Apr 30, 2014 at 9:17 AM, Martin Clarke wrote: > Hi > > > > I have a file that I fumbled the log message for during $ svn ci > > > > Is there any way of d

Git Patch fails to apply with Svn Patch

2014-05-01 Thread Eric Berge
kefile (working copy)* *@@ -5,6 +5,7 @@* * export BUILD_TARGET_ROOT* * export BUILD_DIR* * export CMAKE_PASSTHROUGH_ARGS* *+export ADD_FAKE_VARIABLE* * export DESTDIR* * export DISTPKG_LOC* * export WITH_MOVER* Thanks for your consideration of this request, Eric Berge Senior File System Devel

Re: Git Patch fails to apply with Svn Patch

2014-05-02 Thread Eric Berge
The original patch file I used is attached. Thanks! Eric On Fri, May 2, 2014 at 4:05 AM, Stefan Sperling wrote: > On Thu, May 01, 2014 at 02:30:33PM -0500, Eric Berge wrote: > > I was running "svn patch" with a patch I created with "git diff" and it > >

Re: Git Patch fails to apply with Svn Patch

2014-05-02 Thread Eric Berge
That sounds right to me, thanks Stefan! Eric On Fri, May 2, 2014 at 2:50 PM, Stefan Sperling wrote: > On Fri, May 02, 2014 at 02:06:46PM -0500, Eric Berge wrote: > > The original patch file I used is attached. > > > > Thanks! > > > > Eric > > > >

Re: SVN update and conflict

2014-06-04 Thread Eric Johnson
workflow: "svn update" -- resolve merge issues. -- build, and run all automated tests - correct issues as appropriate -- inspect code changes to identify salient details to put into the commit message. -- finally commit... Seems like that would be easier than what you describe. Eric.

Re: How to control access of a subversion repo subfolder via AD groups

2014-07-09 Thread Eric Johnson
I'll add that where we've deployed Subversion access controls, we use mod_authz_svn, and generate its contents from other sources. Not that hard to scan AD, and generate group information that can be stuffed into the access file. Eric On Wed, Jul 9, 2014 at 12:56 PM, Ben Reser wrote:

Re: Creating a pre-commit hook for copy operations

2014-08-15 Thread Eric Johnson
I had a similar problem of needing to look for copies. Rather than deal with the complexity of the API, I simply relied on the "svnlook" command output. Specifically, I used "svnlook --transaction ${tx_id} changed --copy-info", and parsed the result. Eric On Fri, Aug 15, 20

Looking to dump/load with minimal repository downtime

2014-08-18 Thread Eric Johnson
do an svnadmin dump on a live repository? Eric.

Re: Looking to dump/load with minimal repository downtime

2014-08-19 Thread Eric Johnson
Thanks for the excellent answers to my question! One more comment and question below. On Tue, Aug 19, 2014 at 12:05 AM, Branko Čibej wrote: > On Mon, Aug 18, 2014 at 7:43 PM, Eric Johnson > wrote: > > I've got a crazy idea for minimizing downtime - since the server

Re: Looking to dump/load with minimal repository downtime

2014-08-19 Thread Eric Johnson
Hi Branko, On Tue, Aug 19, 2014 at 10:08 AM, Branko Čibej wrote: > On 19.08.2014 17:55, Eric Johnson wrote: > > Thanks for the excellent answers to my question! One more comment and > question below. > > On Tue, Aug 19, 2014 at 12:05 AM, Branko Čibej wrote: > >&g

Re: Starting to use vendor branch with existing code

2014-09-25 Thread Eric Johnson
Copy the vendor item to location B (svn copy A B) Check out working copy of B. Three way merge changes between A & C onto the working copy of B. (svn merge A C .) Resolve conflicts & commit. Delete location C. Now you have a folder at location B which is derived from your vendor folder at A

Subversion encountered a serious problem

2014-09-25 Thread Eric Ji
--- Subversion Exception! --- Subversion encountered a serious problem. Please take the time to report this on the Subversion mailing list with as much information as possible about what you were trying to do. But please first search the mailing list

Re: Ldap

2014-10-15 Thread Eric Johnson
d, or is Apache failing to start up? What versions of Apache & Subversion? What have you done to isolate the problem? Eric On Wed, Oct 15, 2014 at 9:14 AM, Somashekarappa, Anup (CWM-NR) < anup.somashekara...@rbc.com> wrote: > > > Hi, > > We are using the below mentioned c

Re: Ldap

2014-10-16 Thread Eric Johnson
n order to determine whether Apache is denying access, or whether it is authz_svn_module (subversion). Sure looks like Apache configuration is the issue. Eric.

Getting a segmentation fault with the Perl bindings....

2014-10-30 Thread Eric Johnson
inate(); DB<2> *s* Segmentation fault Is my Perl script doing something wrong? Should I rebuild something (Gentoo system)? Thanks! Eric

Setting up a mirror - should I use the same repository UUID, or different?

2014-11-21 Thread Eric Johnson
an do that. Anyone with experience that suggests that that is a bad idea? Eric.

Re: Setting up a mirror - should I use the same repository UUID, or different?

2014-11-24 Thread Eric Johnson
Thanks for the pointers! Eric. On Sat, Nov 22, 2014 at 1:29 AM, Andreas Stieger wrote: > On 22/11/14 01:40, Ryan Schmidt wrote: > > Right, using the same UUID would be necessary to allow users to relocate > between the mirror(s) and the master. This is suggested here: &

Any know of a Subversion sync program that I could run as a daemon?

2014-11-25 Thread Eric Johnson
iles on both success and failure. Are there any open source tools out there already that do that? Eric.

Re: Error while committing

2014-12-17 Thread Eric Johnson
d try again.... Eric. On Wed, Dec 17, 2014 at 5:26 AM, Somashekarappa, Anup (CWM-NR) < anup.somashekara...@rbc.com> wrote: > > Hi, > > Same script is working fine for other repository. > > > Thanks & Regards, > Anup T S > > > -- &

Re: copy multiple folders from one repository to another repository at server using subversion

2015-02-02 Thread Eric Johnson
As a previous response suggested, upgrade your Subversion first, and then try the dump/filter/load. Eric. On Mon, Feb 2, 2015 at 5:56 AM, gangadhar jannu wrote: > Hi, > > Thanks for your detailed explanation. > > I've already tried what you suggested but something went wro

point of time dump?

2016-01-19 Thread Eric Antonio Maquiling
check out to my local PC, and burn the folder to a CD. Yes, burn to a CD. Old managers have old habits so I don't question that. So what I (they) want is a CD with code that is 1.5 years old. -- eric

<    1   2   3   >