Re: Moving asvn to its own project

2010-05-10 Thread Jörg Steffens
s soon as I've a little more time. However, for the requirements I'm facing in my current project, asvn seams to be the better choice. Mainly because its low footprint (single bash script). But I'm totally aware, that fsvs is much more powerful. regards, Jörg - --

Re: Moving asvn to its own project

2010-05-10 Thread Jörg Steffens
requirements. To ensure others persons will still be able to find asvn: how would you link from the current asvn location to the new one? Replace the asvn script with a text like "asvn has moved. It now resides at https://trac.dass-it.de/pub/";? regards, Jörg - -- Jörg Steffens

Re: [PATCH] contrib/client-side/asvn: only check files, that are part of the subversion repository

2010-05-06 Thread Jörg Steffens
Am 06.05.2010 16:06, schrieb Stefan Sperling: > On Thu, May 06, 2010 at 03:16:38PM +0200, Jörg Steffens wrote: >> [[[ >> reduces error messages by checking svn return code >> >> * contrib/client-side/asvn >> (recordpermissions): skip files where "svn pro

Re: [PATCH] contrib/client-side/asvn: only check files, that are part of the subversion repository

2010-05-06 Thread Jörg Steffens
Am 06.05.2010 12:52, schrieb Stefan Sperling: [...] thank you for your comments. Unfortunately, I've found another problem in my patch: # cut -c 42-: svn status lists different information. The filename starts at column 42 is not even vaild for all Linux systems. As you recommended in your fi

Re: [PATCH] contrib/client-side/asvn: only check files, that are part of the subversion repository

2010-05-06 Thread Jörg Steffens
Am 05.05.2010 21:15, schrieb Stefan Sperling: > On Wed, May 05, 2010 at 07:03:44PM +0200, Jörg Steffens wrote: >> +function stat_details() >> +{ >> +# attention: stat uses other variables as find, eg. %u<->%U >> +local path=${1:-.} >> +stat -c &q

[PATCH] contrib/client-side/asvn: "asvn status" updates asvn file properties

2010-05-06 Thread Jörg Steffens
asvn stores file permissions in subversion properties. I would expect, that a "asvn status" shows, if file permissions have changed. This patch enables this functionality by updating the svn properties before calling "svn status" [[[ "asvn status" updates asvn file properties * contrib/client-si

Re: [PATCH] contrib/client-side/asvn: fixes handling of filenames with spaces

2010-05-06 Thread Jörg Steffens
[Peter Samuelson] > [Jörg Steffens] >> * contrib/client-side/asvn >> (main): uses "$@" instead of $@ > > That's fine. > >> @@ -384,16 +412,17 @@ >> case "$1" in >>checkout|co) CHDIR=true; ACTION="post"

[PATCH] contrib/client-side/asvn: only check files, that are part of the subversion repository

2010-05-05 Thread Jörg Steffens
[[[ originally, asvn uses find commands to determine the files where properties are set. The new version uses svn status. Therefore only files that are part of the repository are used. This reduces warning messages. * contrib/client-side/asvn (recordpermissions): uses the new function svn_list i

[PATCH] contrib/client-side/asvn: disable symlink handling

2010-05-05 Thread Jörg Steffens
[[[ Since Version 1.1 Subversion can handle symlink by itself. Therefore this functionality is not required in asvn and is now made optional. * contrib/client-side/asvn ($SYM_PROP): unset variable (updatedirsymlinks): function is only performed, if variable $SYM_PROP is

[PATCH] contrib/client-side/asvn: fixes handling of filenames with spaces

2010-05-05 Thread Jörg Steffens
[[[ Bugfix for handling variables with spaces in filenames * contrib/client-side/asvn (main): uses "$@" instead of $@ patch by joerg.steffens < at > dass-it.de ]]] Index: contrib/client-side/asvn === --- contrib/client-side/asvn