Re: "svn status" does not show unversioned items been deleted but not committed

2017-06-14 Thread Andrey
Daniel Shahaf писал(а) в своём письме Wed, 14 Jun 2017 20:47:16 +0300: The first column of `status` output reports not only the in-wc.db status (e.g., 'A' / 'D' / 'R'), but also the on-disk status, e.g., '?' and '!'. For example, compare how after 'svn add iota && /bin/rm iota', iota is repor

Re: "svn status" does not show unversioned items been deleted but not committed

2017-06-14 Thread Andrey
Bert Huijben писал(а) в своём письме Wed, 14 Jun 2017 13:29:18 +0300: So, what about this issues? I see it as not opened yet. Will it be fixed? It is not easy to really describe 'the issue'. How would you handle 'svn rm --keep-local ', where the current behavior is the expected behavior.

Re: "svn status" does not show unversioned items been deleted but not committed

2017-06-14 Thread Andrey
So, what about this issues? I see it as not opened yet. Will it be fixed?

svn status merges intersected external records into single row

2017-06-13 Thread Andrey
Here is the batch script for the windows: ``` @echo off set REPODIR=test_repo set "REPOROOT=%~dp0%REPODIR%" set "REPOURL=file:///%REPOROOT:\=/%" set WCROOT=%REPODIR%_root if exist "%REPOROOT%\" rmdir /S /Q "%REPOROOT%" if exist "%WCROOT%\" rmdir /S /Q "%WCROOT%" mkdir "%REPOROOT%" svnadmin cre

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-25 Thread Andrey
So, for the time being you could use this as a workaround, Andrey (if you're scripting this): checkout to a temp directory (or even aramdisk if it's not too big), and run the propget on that; then deletethe checkout. I can not afford to check out everything in the temp, it would

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
Stefan Sperling писал(а) в своём письме Thu, 18 May 2017 15:55:36 +0300: And this, we have to admit, can be a problem for some use cases. It would be nice to have an optimized way of doing this, and I expect we would be open to suggestions and patches. I tested it a bit deeper. I checked out

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
Branko Čibej писал(а) в своём письме Thu, 18 May 2017 16:19:23 +0300: may be add file content hash to represent 2 statuses of the same file paths? At least it will protect file from accidental remove and miss of add to commit? There will be no accidental remove; when you commit, your new fi

Re: "svn status" does not show unversioned items been deleted but not committed

2017-05-18 Thread Andrey
Johan Corveleyn писал(а) в своём письме Thu, 18 May 2017 16:05:49 +0300: On Thu, May 18, 2017 at 2:03 PM, Andrey wrote: As you see the file1.txt is missed in second status output as unversioned and so can be missed from add before a commit. It's not unversioned, it's in th

Re: "svn status" does not show unversioned items been deleted but not committed

2017-05-18 Thread Andrey
Stefan Sperling писал(а) в своём письме Thu, 18 May 2017 15:52:17 +0300: On Thu, May 18, 2017 at 03:09:51PM +0300, Andrey wrote: If i'll revert it then i'll LOSE CHANGES Of course. That is the entire point of this command. $ svn help revert revert: Restore pristine working

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
Johan Corveleyn писал(а) в своём письме Thu, 18 May 2017 15:51:01 +0300: Why just not to ignore them? Anyway they are don't have any mapping to a local directory. In general I think it's fine for a directory to have an empty svn:externals property (have not tested it, but I guess it's fine)

Re: "svn status" does not show unversioned items been deleted but not committed

2017-05-18 Thread Andrey
As you see the file1.txt is missed in second status output as unversioned and so can be missed from add before a commit. It's not unversioned, it's in the "deleted" state. You can't have both, since you can revert the deletion. If i'll revert it then i'll LOSE CHANGES because the svn will remove

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
First a couple questions to get our context right: what version of svn on the client and on the server? Is there a slow network between client and server, or are they on the same LAN? svn --version ``` svn, version 1.9.5 (r1770682) compiled Nov 26 2016, 14:22:31 on x86-microsoft-windows

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
First a couple questions to get our context right: what version of svn on the client and on the server? Is there a slow network between client and server, or are they on the same LAN? svn --version ``` svn, version 1.9.5 (r1770682) compiled Nov 26 2016, 14:22:31 on x86-microsoft-windows

Re: "svn status" does not show unversioned items been deleted but not committed

2017-05-18 Thread Andrey
As you see the file1.txt is missed in second status output as unversioned and so can be missed from add before a commit. It's not unversioned, it's in the "deleted" state. You can't have both, since you can revert the deletion. If i'll revert it then i'll LOSE CHANGES because the svn will remove

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
Why is that important when the links are empty? External references are stored in properties called svn:externals. I think Bert is referring to the retrieval of those properties. I meant an external reference of cause. By the link i mean peace of string in the output from the "svn pget svn:exter

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
Branko Čibej писал(а) в своём письме Thu, 18 May 2017 14:41:17 +0300: However, I don't want to revert anything, i am talking about possibility of forget to add files because they are obscured by the deletion state in the status. So what do you suggest we do instead? There's a file named 'f

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
First a couple questions to get our context right: what version of svn on the client and on the server? Is there a slow network between client and server, or are they on the same LAN? svn --version ``` svn, version 1.9.5 (r1770682) compiled Nov 26 2016, 14:22:31 on x86-microsoft-windows ..

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
As you see the file1.txt is missed in second status output as unversioned and so can be missed from add before a commit. It's not unversioned, it's in the "deleted" state. You can't have both, since you can revert the deletion. If i'll revert it then i'll LOSE CHANGES because the svn will remove

Re: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Andrey
Bert Huijben писал(а) в своём письме Thu, 18 May 2017 13:09:07 +0300: There is no optimized code path for retrieving properties recursively directly from the server. The implementation of this specific command is like running 'svn ls' on every directory + fetching the properties on every

"svn status" does not show unversioned items been deleted but not committed

2017-05-17 Thread Andrey
As a result, for example, you can not say by "svn status" command which file you forgot to add. Reproduction batch script for windows: ``` @echo off set REPODIR=test_repo set "REPOROOT=%~dp0%REPODIR%" set "REPOURL=file:///%REPOROOT:\=/%" set WCROOT=%REPODIR%_root if exist "%REPOROOT%\" rmdir

ABI changes analysis

2016-06-24 Thread Ponomarenko Andrey
Hello, I'm working on a new project for backward compatibility analysis of the Linux ABIs. The report for Subversion base libraries has been recently added to the project: http://abi-laboratory.pro/tracker/timeline/subversion/ The report is generated with the help of the abi-compliance-checker,

SVN v1.7.1 asserting / crashing - workqueue.c, line 672

2011-10-27 Thread Andrey Ogorodnik
r more information. === Previous steps was to resolve tree conflict in some directory... (Using WANdisco SVN v1.7.0 and TortoiseSVN v1.7.0) Any ideas what to do now? -- Best regards, Andrey mailto:ogorodni...@mail.ru

Re: Merge strategies?

2011-10-21 Thread Andrey Paramonov
e that we could also do this (in rather rare cases when we merge upstream) if we have mergeinfo filled for our release branches. Thank you for sharing your experience, Andrey Paramonov

Re: Merge strategies?

2011-10-20 Thread Andrey Paramonov
d how the mergeinfo about upstream merges could be really useful. Thank you for your valuable comments, Andrey Paramonov

Re: Merge strategies?

2011-10-20 Thread Andrey Paramonov
On 20.10.2011 17:55, Bob Archer wrote: On 19.10.2011 14:00, Stefan Sperling wrote: On Wed, Oct 19, 2011 at 12:22:05PM +0400, Andrey Paramonov wrote: What about my other fears, bloated svn:mergeinfo The entire svn:mergeinfo property is stored in RAM and parsed from string form into a data

Re: Merge strategies?

2011-10-19 Thread Andrey Paramonov
On 19.10.2011 14:00, Stefan Sperling wrote: On Wed, Oct 19, 2011 at 12:22:05PM +0400, Andrey Paramonov wrote: What about my other fears, bloated svn:mergeinfo The entire svn:mergeinfo property is stored in RAM and parsed from string form into a data structure (nested hash table) before it is

Re: Merge strategies?

2011-10-19 Thread Andrey Paramonov
On 19.10.2011 11:44, Johan Corveleyn wrote: On Wed, Oct 19, 2011 at 8:38 AM, Andrey Paramonov wrote: On 18.10.2011 20:05, Daniel Shahaf wrote: Andrey Paramonov wrote on Tue, Oct 18, 2011 at 11:40:37 +0400: What confuses people most now is the scattered svn:mergeinfo ("Oh, why that di

Re: Merge strategies?

2011-10-18 Thread Andrey Paramonov
On 18.10.2011 20:05, Daniel Shahaf wrote: Andrey Paramonov wrote on Tue, Oct 18, 2011 at 11:40:37 +0400: What confuses people most now is the scattered svn:mergeinfo ("Oh, why that dir has modified status, my merge shouldn't have changed it!"). Isn't this particular issu

Re: AW: SVN v1.6.5 (CollabNet) and SVN v1.7.0 (WANdisco) creates many threads, allocate all free memory and crashes/stops

2011-10-18 Thread Andrey
backend, you could even try to dump/restore to FSFS, or vice versa. We use FSFS. Thank you. -- С уважением, Andrey mailto:and...@online-solutions.ru

Re[4]: Very big problems with access rights (authz file using) in SVN v1.7.0

2011-10-18 Thread Andrey
Здравствуйте, Johan. Вы писали 18 октября 2011 г., 17:43:48: JC> 2011/10/18 Andrey : >> Здравствуйте, Stefan. >> >> Вы писали 18 октября 2011 г., 17:20:56: >> >>>> But when we using SVN v1.7.0 (console client from the same build as >>>> server

Re[2]: Very big problems with access rights (authz file using) in SVN v1.7.0

2011-10-18 Thread Andrey
y thing I understand is that both SS> 1.6 client and 1.6 server was working. Forgot to write a state before update: 4. Server: SVN v1.6.5 (CollabNet build) Client: TortoiseSVN v1.6.15 (Subversion v1.6.16) [!] WORKING -- С уважением, Andrey mailto:and...@online-solutions.ru

Re[2]: Very big problems with access rights (authz file using) in SVN v1.7.0

2011-10-18 Thread Andrey
ING (update problem; empty directory created, update failed) 3. Server: SVN v1.7.0 (WANdisco build) Client: TortoiseSVN v1.6.15 (Subversion v1.6.16) [!] WORKING as previous behaviour! So, the problem is really inside CLIENT interpretation of server statuses. Both new version of console svn.exe (svn client) and TortoiseSVN working incorrectly now. -- С уважением, Andrey mailto:and...@online-solutions.ru

SVN v1.6.5 (CollabNet) and SVN v1.7.0 (WANdisco) creates many threads, allocate all free memory and crashes/stops

2011-10-18 Thread Andrey
of the problem, anyway, after a lot of hours of shamanism this issue is not reproduce on our system again. Someone seen something similar to this? Any ideas? Just interesting. -- С уважением, Andrey mailto:and...@online-solutions.ru

Re[2]: Very big problems with access rights (authz file using) in SVN v1.7.0

2011-10-18 Thread Andrey
s some change in a specific location required between updates? BH> E.g. one in AnyDir, RestrictedDir, etc. BH> I can see some problems, which might need fixing but I'm still not sure what BH> your specific problem is. BH> (I'm not sure if the problems I currently see are regressions. Still looking BH> into that) BH> The error you see would only make sense if the working copy doesn't know BH> about RestrictedDir, except that it is a locally added file or directory. BH> When the server then tells that there should be a restricted path there you BH> get this error. BH> But giving a working copy with a single user, that is +- impossible to read BH> in your mail. -- С уважением, Andrey mailto:and...@online-solutions.ru

Very big problems with access rights (authz file using) in SVN v1.7.0

2011-10-18 Thread Andrey
a few dirs), he will unable to make svn update in the root -- svn will fail on this directory, that must be easly skipped, as SVN v1.6.5 server/clients done before! This is a really serious problem for us, we can't work now. -- FTSOS Andrey mailto:and...@online-solutions.ru

Merge strategies?

2011-10-18 Thread Andrey Paramonov
(slowness) and conflicting (major annoyance). Maybe I'm missing something? Your comments greatly appreciated, Andrey Paramonov

Re: [Bug] [Subversion 1.7] svn blame doesn't work for locally modified files

2011-10-13 Thread Andrey Paramonov
On 13.10.2011 22:31, Ryan Schmidt wrote: On Oct 13, 2011, at 06:51, Andrey Paramonov wrote: I believe Subversion can automagically translate line ending sequences when transferring data to and from server. I use Windows, so I have CRLF sequences at the ends of the lines in my working copy

Re: [Bug] [Subversion 1.7] svn blame doesn't work for locally modified files

2011-10-13 Thread Andrey Paramonov
On 13.10.2011 15:54, Daniel Shahaf wrote: Andrey Paramonov wrote on Thu, Oct 13, 2011 at 15:51:46 +0400: On 13.10.2011 15:42, Stefan Sperling wrote: On Thu, Oct 13, 2011 at 03:37:36PM +0400, Andrey Paramonov wrote: On 13.10.2011 15:24, Daniel Shahaf wrote: No, it's a feature, showing

Re: [Bug] [Subversion 1.7] svn blame doesn't work for locally modified files

2011-10-13 Thread Andrey Paramonov
On 13.10.2011 15:42, Stefan Sperling wrote: On Thu, Oct 13, 2011 at 03:37:36PM +0400, Andrey Paramonov wrote: On 13.10.2011 15:24, Daniel Shahaf wrote: No, it's a feature, showing that those lines are new in the locally-modified version. You can do % svn blame file@BASE for the old beha

Re: [Bug] [Subversion 1.7] svn blame doesn't work for locally modified files

2011-10-13 Thread Andrey Paramonov
I get "- -" for all lines, not just locally modified ones. svn blame file@BASE works, thanks. My server is of version 1.6, if it matters. Best wishes, Andrey Paramonov Andrey Paramonov wrote on Thu, Oct 13, 2011 at 13:14:35 +0400: Hello! To reproduce: 0) Checkout a working cop

[Bug] [Subversion 1.7] svn blame doesn't work for locally modified files

2011-10-13 Thread Andrey Paramonov
available. This is a regression compared to 1.6.12. Best wishes, Andrey Paramonov

Re: How to find out the rev number where a file was deleted?

2010-12-01 Thread Andrey Repin
, with some extra work on the server >>> side, track down the end of the line in the future of f...@3 by examining >>> every subsequent revision when you ask for: >>> svn log -r 0:head file://${HOME}/trash/repo/f...@3 >>> But what should it do if a different obje

Re: How to find out the rev number where a file was deleted?

2010-11-30 Thread Andrey Repin
once lived under a certain > path, when that path is copied, would you also want it to think that the > deleted object was once under this new copied path? You asking a question that has no meaning. Subversion copy copies current state. Deleted files do not present in it. I don't see any problem. Or clarify your question. (provide use-case?) -- WBR, Andrey Repin (anrdae...@freemail.ru) 30.11.2010, <21:22> Sorry for my terrible english...

Re: AW: How to find out the rev number where a file was deleted?

2010-11-30 Thread Andrey Repin
gt; It does track that, but I don't think there is a convenient way to ask for > it. > Or for the server itself to find it efficiently. It only track it back into the past. There's no sane way to track it forward currently. I see some complications in implementation of this ability

Re: How to find out the rev number where a file was deleted?

2010-11-30 Thread Andrey Repin
d, which is impossible. Impossible within current realization of storage backend. But sensible from user's viewpoint and scheduled to be resolved in future. I'd ask you to stop giving out your own opinion under mask of absolute truth. -- WBR, Andrey Repin (anrdae...@freemail.ru) 30.11.2010, <16:36> Sorry for my terrible english...

Re: AW: How to find out the rev number where a file was deleted?

2010-11-30 Thread Andrey Repin
duce any result at that point. You know, the classic school primer asking you for something extraordinary not to make any sense of it, but to teach you to support your own opinion with arguments. In this case the argument should be "this shit was deleted in rev.X, so it can't be found in

Re: AW: How to find out the rev number where a file was deleted?

2010-11-27 Thread Andrey Repin
intent - to get around absence of file in >> HEAD... > But you can only expect it to track the history and it appeared that you > wanted > to track the future to HEAD. I could have pointed to any other of the revisions between @PEG and HEAD, which will net the very same result - unless I guess it right, the process will not start at all. > I guess it could be more polite about giving you the revisions it can find > along with the error. Nah, it could just obey to @PEG rule. Everything will be simpler. Unless there's absolutely no other way to track the file from @PEG, which i doubt, since you DO can access the file by @PEG, as well as navigate back in time easier, than forward. -- WBR, Andrey Repin (anrdae...@freemail.ru) 28.11.2010, <9:13> Sorry for my terrible english...

Re: AW: How to find out the rev number where a file was deleted?

2010-11-27 Thread Andrey Repin
ly 25 tags denoting "stable" builds. Good luck finding directory LOW enough that allow you to find a file without use of a sophisticated log parser, since revision numbers are not connected to changed files in any way suitable for meaningful grep'ing. -- WBR, Andrey Repin (anrdae...@freemail.ru) 28.11.2010, <5:50> Sorry for my terrible english...

Re: AW: How to find out the rev number where a file was deleted?

2010-11-27 Thread Andrey Repin
this should be possible without user's guesswork. It's fairly simple to find correct revision range in repository with 40 commits. In repository with 40,000 commits things became "a bit" scary. -- WBR, Andrey Repin (anrdae...@freemail.ru) 27.11.2010, <22:30> Sorry for my terrible english...

Re: Release Repositories

2010-11-22 Thread Andrey Repin
ble to know if file transfer is completed. It will have to guess from, e.g., testing the archive (if it's archive) for integrity. filesystem notification mechanism will for sure know, when the iostream got filewriteclose event. -- WBR, Andrey Repin (anrdae...@freemail.ru) 23.11.2010, <5:53> Sorry for my terrible english...

Re: Release Repositories

2010-11-22 Thread Andrey Repin
Greetings, David Weintraub! > Any ideas of any software that can handle this. You'd be surprised, but the very filesystem (in Unix/Linux at least) support trigger mechanism. All you need is to write appropriate filter. -- WBR, Andrey Repin (anrdae...@freemail.ru) 22.11.2010, <19

Re: Version caching

2010-11-21 Thread Andrey Repin
7;s not possible, nor it is realistically applicable. > That way if I run "log" or "merge" or "diff" against an older version I have > seen before... poof! it is immediately available. > I thought about mirroring the server in read-only mode, but I really

Re: Can't see the wood for the trees (or: what are my branches called?)

2010-11-19 Thread Andrey Repin
s the right way to do this. -- WBR, Andrey Repin (anrdae...@freemail.ru) 19.11.2010, <23:32> Sorry for my terrible english...

error occured during svn merge

2010-11-13 Thread Andrey Starodubtsev
Hello! I've faced with crash during following command ( dns name was replaced ): svn merge --dry-run -r3778:5716 svn://svn.example.com/repo/trunk . | tee merge.log Working copy has few local modifications ( removed svn:mergeinfo on some files and directories ). Svn log attached. svn --version

Re: What is the best client with GUI for svn?

2010-11-06 Thread Andrey Repin
her person was using Eclipse and it's integrated Subversion capabilities to the same extent. There's not even a slight chance either of us would be using something else, that would drastically reduce performance for one of us, or both. More at pediwikia: http://en.wikipedia.org/wiki/Subvers

Re: Promoting a mirror repository as a source repository

2010-11-06 Thread Andrey Repin
is about changing URLs in working copies, I know how to do this > (actually I made several of these changes today). I gave you both answers. If you are too lazy to pick them, sorry, it's not my problem. > But what I want to know is what I have to do on the REPOSITORY side. Most generalized answer: nothing. Details depends on your exact setup. -- WBR, Andrey Repin (anrdae...@freemail.ru) 06.11.2010, <19:54> Sorry for my terrible english...

Re: Promoting a mirror repository as a source repository

2010-11-05 Thread Andrey Repin
rror repository without change is not enough > as it contains somewhere inside it information about the old source > repository, given at the beginning by "svnsync initialize", which would > certainly need to be removed) svn help switch http://svnbook.org/ -- WBR, Andre

Re: RES: Subversion 1.6.13 Released

2010-10-26 Thread Andrey Repin
Servers. * Contact author: http://www.softshape.com Connecting 192.168.1.12... OK. Connecting 192.168.1.12... OK. Connecting 192.168.1.12... OK. Connecting 192.168.1.12... OK. Current time : 2010-10-26 16:38:40 Suggested time : 2010-10-26 16:38:40 Inaccuracy : 00:00:00 -- WBR, Andrey Rep

Re: RES: RES: Subversion 1.6.13 Released

2010-10-25 Thread Andrey Repin
the same TZ and clocks usually differs by a fraction of second. -- WBR, Andrey Repin (anrdae...@freemail.ru) 26.10.2010, <9:17> Sorry for my terrible english...

Re: RES: Subversion 1.6.13 Released

2010-10-25 Thread Andrey Repin
orkstation clock is synchronized with it :) (And i'm not using AD, it's "a bit" over my league of small home server.) -- WBR, Andrey Repin (anrdae...@freemail.ru) 26.10.2010, <9:14> Sorry for my terrible english...

Re: RES: Subversion 1.6.13 Released

2010-10-25 Thread Andrey Repin
th no problems. > From recent list traffic, issues with large commits failing seem to be > related to timeout issues, search through the recent list for timeout > and see if any of the suggestions there can help you. Which Apache version/SSPI module/SVN server and client you're using

Re: Subversion 1.6.13 Released

2010-10-24 Thread Andrey Repin
word for 'anrdaemon': ** .. Authentication realm: <http://svn.darkdragon:80> Subversion repository Password for 'AnrDaemon': ** .. Authentication realm: <http://svn.darkdragon:80> Subvers

Re: Subversion 1.6.13 Released

2010-10-24 Thread Andrey Repin
s, ~10Mb size total), Subversion start to break on authorization, randomly asking for password or username, again and again. I don't quite know, if it is specific to your builds, or is a bug in Subversion. I'll be glad to present any additional info. -- WBR, Andrey Repin (anrdae...@freemai

Re: Subversion 1.6.13 Released

2010-10-24 Thread Andrey Repin
and write access require proper authentication. Just want to confirm if it is compilation, configuration or something else. -- WBR, Andrey Repin (anrdae...@freemail.ru) 24.10.2010, <21:32> Sorry for my terrible english...

Re: Subversion 1.6.13 Released

2010-10-24 Thread Andrey Repin
it any further installing yet another all-in-one monstrocity. (Been there, done that mistake in the past) Erm... actually, forget that. I don't have account and don't see the need for registration just to be able to download one file. -- WBR, Andrey Repin (anrdae...@freemail.ru) 24.10.2010, <14:46> Sorry for my terrible english...

svn crashed

2010-08-12 Thread Andrey Starodubtsev
col using serf. - handles 'http' scheme - handles 'https' scheme crash log attached -- WBR, Andrey Starodubtsevmailto:andrey.starodubt...@gmail.com Process info: Cmd line: "C:\Program Files\SlikSvn\bin\svn.EXE" merge -r 26832:26831 . Version: 1.6.12 (S

Re: Recursive ACLs fail

2010-03-11 Thread Andrey Repin
Greetings, Jeremiah Foster! > Is there any way I can specify ACLS per directory? What am I doing > wrong? Just mention everyone at every point. Like, [] ~someone = rw someone = r -- WBR, Andrey Repin (anrdae...@freemail.ru) 11.03.2010, <19:46> Sorry for my terrible english...

Re: Programming a Watcher File

2010-03-04 Thread Andrey Repin
Greetings, David Weintraub! > On Tue, Mar 2, 2010 at 11:39 PM, Andrey Repin wrote: >> Sorry, my head is a bit crippled for now, and your post contains too much >> cross-references to be understandable in my current state. >> Could you please put it in simple terms, how y

Re: Programming a Watcher File

2010-03-02 Thread Andrey Repin
27;s a hint: hook script can access repository as easy as any other local file. Just do "svn cat" on required file and parse it's content as normal. However, be very wary of access rights on the mentioned configuration file. -- WBR, Andrey Repin (anrdae...@freemail.ru) 03.03.2010, <7:35> Sorry for my terrible english...

Re: Regarding shallow checkouts

2010-02-22 Thread Andrey Repin
out you mean fetching of only certain depth of subdirs, then "real-world" example is quite simple. You need to change only one file. You co empty top-level directory, then update only that file. And edit and commit it. -- WBR, Andrey Repin (anrdae...@freemail.ru) 22.02.2010, <19:22> Sorry for my terrible english...

Re: SVN Dump Question

2010-02-17 Thread Andrey Repin
who have responded to this mail, and all of you > who take the time and read these messages What you describing sounds... fair. But first, I would suggest some steps that involve more, say, native operations on repository. Cleanup, hotcopy... See how would they affect it, and what would be the results. -- WBR, Andrey Repin (anrdae...@freemail.ru) 18.02.2010, <2:56> Sorry for my terrible english...

Re: SVN Dump Question

2010-02-16 Thread Andrey Repin
pipe it through svndumpfilter to > extract out just the part you want. To clarify, if it's unclear, you could attempt to directly pipe the dump to filter on the fly, saving disk space for intermediate storage. Although, it's not the one failsafe process, I'm afraid. -- WBR, A

Re: Restoring a hotcopy repo

2010-02-13 Thread Andrey Repin
itory from them. Yet again, you should not be need to mess with hotcopied files by hands - only using standard Subversion utilities. -- WBR, Andrey Repin (anrdae...@freemail.ru) 14.02.2010, <8:09> Sorry for my terrible english...

Re: Changing the "native" newline mode

2010-02-13 Thread Andrey Repin
athe!" "Then what should you stop doing?" First, I said already, AnkhSVN. Second, don't join replies to multiple authors in one post - it's frustrating. -- WBR, Andrey Repin (anrdae...@freemail.ru) 14.02.2010, <8:08> Sorry for my terrible english...

Re: Changing the "native" newline mode

2010-02-12 Thread Andrey Repin
ring to native Windows build of Subversion. Fourth, http://farmanager.com/. mc rest in peace, no way it could reach power of FAR even remotely. To say you the truth, FAR is the only program that hold me to the Windows. It can do everything (Yes, it can make you coffee) -- WBR, Andrey Repin (anrdae.

Re: Changing the "native" newline mode

2010-02-12 Thread Andrey Repin
it. It'll load them and do > basic editing fine, but copy/paste leads to mixed newlines. Use AnkhSVN for example. Or native Windows build of Subversion. -- WBR, Andrey Repin (anrdae...@freemail.ru) 13.02.2010, <6:15> Sorry for my terrible english...

Re: Changing the "native" newline mode

2010-02-12 Thread Andrey Repin
ving Windows clients, but ends up with Unix line > endings, leading to newline headaches. Don't do that. Check out it where it'll be used. -- WBR, Andrey Repin (anrdae...@freemail.ru) 13.02.2010, <6:14> Sorry for my terrible english...

Re: upgrade subversion on ubunty hardy to 1.6.9

2010-02-11 Thread Andrey Repin
e end. And btw... ## PPA repositories ## ## Subversion deb http://ppa.launchpad.net/svn/ppa/ubuntu hardy main deb-src http://ppa.launchpad.net/svn/ppa/ubuntu hardy main Source: http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2416305 -- WBR, Andrey Repin (anrdae...@freemail.ru) 12.02.2010, <4:17> Sorry for my terrible english...

Re: Web access to repository

2010-02-04 Thread Andrey Repin
in apache (mod_proxy), redirecting a virtualhost (viewvc.yourdomain.com for example) to a subversion server. -- WBR, Andrey Repin (anrdae...@freemail.ru) 04.02.2010, <12:36> Sorry for my terrible english...

Re: Recursive svn stat

2010-01-29 Thread Andrey Repin
certain directory wasn't part of the original checkout. (Even being a part of repository) -- WBR, Andrey Repin (anrdae...@freemail.ru) 30.01.2010, <5:10> Sorry for my terrible english...

Re: spam being forwarded from ad...@subversion.apache.org

2010-01-28 Thread Andrey Repin
I decided to try and unsub from it. Worked well, at least, I haven't received any of it yet again. -- WBR, Andrey Repin (anrdae...@freemail.ru) 29.01.2010, <5:51> Sorry for my terrible english...

Re: Need help for subversion

2010-01-28 Thread Andrey Repin
invoke an "hook method (exit routine)", which can add some > extra > user required function. Hooking is only server-side, and only handle commits. Without more information about your intentions and supposed program architecture, it's hard to suggest anything. -- WBR, And

Re: Subversion on Linux, Authentication on Windows

2010-01-25 Thread Andrey Repin
DAP server for Apache, for example. -- WBR, Andrey Repin (anrdae...@freemail.ru) 26.01.2010, <5:41> Sorry for my terrible english...

Re: Keeping tags/ and branches/ in the "trunk"

2010-01-25 Thread Andrey Repin
vnbook... SVN is a filesystem, all basic rules of file handling apply. -- WBR, Andrey Repin (anrdae...@freemail.ru) 25.01.2010, <17:45> Sorry for my terrible english...

Re: Externals within the same repository

2010-01-25 Thread Andrey Repin
eating a mess that not reflect your workspace. -- WBR, Andrey Repin (anrdae...@freemail.ru) 25.01.2010, <17:48> Sorry for my terrible english...

Re: svn diff 'path not found' and 'Error reading spooled REPORT request response'

2010-01-22 Thread Andrey Repin
ttps://www.yourdomain.local/svn/ - ViewVC root -- WBR, Andrey Repin (anrdae...@freemail.ru) 22.01.2010, <18:38> Sorry for my terrible english...

Re: I think I'm in big trouble! (committed changes error)

2010-01-20 Thread Andrey Repin
eed to take certain steps to replicate *repository* at laptop. And it falls into "you're enemy of yourself" category. > If you commit using an http URL and your home machine is found even though > you're in a different network, the commit went to the right repository. > Otherwise you would have gotten an error, too. Yep. -- WBR, Andrey Repin (anrdae...@freemail.ru) 20.01.2010, <19:24> Sorry for my terrible english...

Re: Subversion queries hanging, timing out

2010-01-15 Thread Andrey Repin
th_sspi/1.0.5 SVN/1.6.1 PHP/5.2.2 DAV/2 http://www.nosq.com/blog/2008/06/fixing-mod_auth_sspi-and-ie-losing-post-data/ http://dev.nosq.com/downloads/mod_auth_sspi/mod_auth_sspi_1.0.5b-vc9-2.2.11.zip -- WBR, Andrey Repin (anrdae...@freemail.ru) 15.01.2010, <17:48> Sorry for my terrible english...

Re: Troubles with VirtualHost configuration: never asked for password

2010-01-12 Thread Andrey Repin
SSPIOmitDomain On SSPIUsernameCase lower SSPIBasicPreferred Off # only developers may access the repository Require group "EXAMPLE\CVS" # And they should obey to SVN user permissions file AuthzSVNAccessFile "C:/home/svn/.registry" -- WBR, Andrey Repin (anrdae...@freemail.ru) 13.01.2010, <4:28> Sorry for my terrible english...

Re: reuse of tag to keep stable URLs?

2010-01-12 Thread Andrey Repin
ver you want to it, then merge it back to stable and delete the one you used to backport. -- WBR, Andrey Repin (anrdae...@freemail.ru) 12.01.2010, <14:00> Sorry for my terrible english...

Re: Can Subversion use PAM?

2010-01-07 Thread Andrey Repin
he Pluggable > Authentication Module architecture for authentication? - If not, how much > work would be involved in providing the feature? Why not put it the other way - how much work would be involved for you to change your authentication to LDAP? -- WBR, Andrey Repin (anrdae...@freemail.ru) 08.01.2010,

Re: Problem with Subversion and TortoiseSVN

2009-12-27 Thread Andrey Repin
egular browser, it shouldn't be a problem to work with any other client. Just to clarify one bit: Did you gave CLI client the repos URL (i.e. http://...) or local path? (file:///...) -- WBR, Andrey Repin (anrdae...@freemail.ru) 27.12.2009, <22:01> Sorry for my terrible english...

Re: Help Getting Started

2009-12-25 Thread Andrey Repin
in >   > Any help would be greatly appreciated.  Thank you. See... -- WBR, Andrey Repin (anrdae...@freemail.ru) 25.12.2009, <23:01> Sorry for my terrible english...

Re: Subversion repository maintenance

2009-12-23 Thread Andrey Repin
will corrupt then how can I take backup of two range (1-75 and 77-137). And > also how can I restore them? I think I have answered your question. Hope you can find more info in documentation by yourself. May be also worth looking into http://svnbook.org - there could be more info too. -- WBR, Andrey Repin (anrdae...@freemail.ru) 24.12.2009, <6:12> Sorry for my terrible english...

Re: Q: How to ignore minor changes in text files?

2009-12-23 Thread Andrey Repin
put RESULTS of your work into SOURCE control system. At the very least, it creates data duplication in repository, as I'm pretty sure the code you building files from is in the same repository. (And trust me, even pretty simple projects could have building times longer than one minute) P.S. Please, don't top-post. -- WBR, Andrey Repin (anrdae...@freemail.ru) 24.12.2009, <4:22> Sorry for my terrible english...

Re: restricting sub-directory permissions

2009-12-16 Thread Andrey Repin
> > My AuthUserFile looks like this: > [/] > * = rw > [/Delta/trunk/qsrc/strategies] > mchen = rw > gricardo = rw > * = Try [/Delta/trunk/qsrc/strategies] * = mchen = rw gricardo = rw or make a group and tell this directory to [/Delta/trunk/qsrc/strategies] ~...@group = @group = rw -- WBR, Andrey Repin (anrdae...@freemail.ru) 17.12.2009, <4:14> Sorry for my terrible english...

Re: SVN command line client for Windows-98

2009-12-11 Thread Andrey Repin
Greetings, Yuri Popoff! > Is there a command line client for Windows-98? SVN is based on Apache APR. Since Win9x support in it was abandoned quite a while ago, I doubt you can find any modern enough client. Some old client could do. -- WBR, Andrey Repin (anrdae...@freemail.ru) 11.12.2009,

Re: Subversion: integration of certificate based login

2009-12-03 Thread Andrey Repin
s etc. So theoretically, it is possible... P.S. Testing new template to reply to corresponding mailing list... Please tell me (using reply to author!) if this reply appears without the originating message. And sorry for any possible troubles. -- WBR, Andrey Repin (anrdae...@freemail.ru) 03.12.