Re: AW: German console output

2010-10-21 Thread Alexander Skwar
Hallo! Am 21. Oktober 2010 16:01 schrieb Thorsten Schöning : > > > The point is, that people like me, or maybe just me at all ;-), would > really appreciate an (semi-?)official download source where I can just > download win32 binaries with all parts of Subversion, without overhead > like Apache

Re: Is there a clean way to move a-project to a-project/trunk

2010-09-29 Thread Alexander Skwar
Hi. 2010/9/29 Bob Archer : > svn cd a-project > svn trunk a-project/trunk What's that supposed to do? MacBook-Pro:~ alex$ svn --version svn, version 1.6.5 (r38866) compiled Oct 16 2009, 02:54:10 Copyright (C) 2000-2009 CollabNet. Subversion is open source software, see http://subversion.tigr

Re: Setting "tags" to read only ?

2010-09-29 Thread Alexander Skwar
Hi. 2010/9/29 Phil Pinkerton : > Is it possible to set these tags to read-only once ther are copied from the > trunk to the tags directory ? How about using access control http://svnbook.red-bean.com/en/1.5/svn.serverconfig.pathbasedauthz.html so that only a certain user or group has rw access t

Re: package with everything you need for svn?

2010-09-22 Thread Alexander Skwar
Hi. If you're using Solaris 10, then I'd suggest to have a look at OpenCSW -> http://opencsw.org/. With OpenCSW, installing Subversion is as easy as pkgutil --install subversion ap2_subversion Regards, Alexander 2010/9/22 KM > Does anyone know if there are all inclusive packages out there

Re: Using PAM to authenticate user?

2010-09-08 Thread Alexander Skwar
There are modules for apache out there, which allow PAM auth. Mod-auth- external seems to be easy to use (haven't tried it myself, though). http://code.google.com/p/mod-auth-external/ Alexander Am 09.09.2010 um 08:42 schrieb "Curley, John" : -Original Message- From: Curley, John [

Re: Multiple Repositories under one subversion daemon

2010-09-02 Thread Alexander Skwar
BOb, Do you mean junction points, which are more like hardlinks in Unix? Isn't it so, that they need to be on the same "drive" (filesystem)? Alexander Am 02.09.2010 um 16:09 schrieb Bob Archer : -Original Message- I may have totally misunderstood you. Are the above paths you show

Re: Setting multiple properties with on command

2010-08-16 Thread Alexander Skwar
Hi. 2010/8/16 Pathy Kongo : > Hi, > > Thank you all for you answers ! > > I know that all propset command are done locally but it takes time because I > call the svn command line client with the PHP exec function one after > another. So i have to launch this function 15 times! Dunno, but this ver

Re: svn : problems with files starting with '-'

2010-08-13 Thread Alexander Skwar
Hi. 2010/8/13 João Pinheiro : > cm% svn rename '-MediacatController.php' MediacatController.php > svn: invalid option character: M > Type 'svn help' for usage. > > Does anyone know a quick workaround for this? "svn rename ./-Mediacat..." - this should work. Alexander -- ↯    Lifestream (Twitter

Re: svn checkout - special characters in file name are not encoding properly

2010-08-13 Thread Alexander Skwar
Hi. 2010/8/13 Vincent Lefevre : > On 2010-08-13 08:16:48 +0200, Alexander Skwar wrote: >> 2010/8/13 Vincent Lefevre >> > >> > On 2010-08-12 17:16:37 +0200, Stefan Sperling wrote: >> >> > > ~/bin/mysvn: >> > >  #!/bin/sh >> >

Re: svn checkout - special characters in file name are not encoding properly

2010-08-12 Thread Alexander Skwar
Hi. 2010/8/13 Vincent Lefevre > > On 2010-08-12 17:16:37 +0200, Stefan Sperling wrote: > > ~/bin/mysvn: > >  #!/bin/sh > >  env LC_CTYPE="en_US." svn update > > Wrong, wrong, wrong! Security hole! No, not wrong, but totally correct - especially, if you need to parse the output in some script, y

Re: svn checkout - special characters in file name are not encoding properly

2010-08-11 Thread Alexander Skwar
Hi. 2010/8/11 Vincent Lefevre > > Yes, and this is another reason why the solution chosen by Subversion > doesn't work well. For instance, GNOME always uses UTF-8 for filename > encoding. So, if the user uses ISO-8859-* locales (for shell sessions), > one gets inconsistencies. > > > Just curious

Re: svn checkout - special characters in file name are not encoding properly

2010-08-09 Thread Alexander Skwar
Hi. Am 09.08.2010 um 17:31 schrieb Daniel Shahaf : suman.mai...@asia.bnpparibas.com wrote on Mon, Aug 09, 2010 at 11:42:04 +0530: Hi, I'm working on French project. Very recently we have migrated our project from CVS to SVN repository. After migration, when checking out the file names

Re: undefined symbol: REP_CACHE_DB_SQL

2010-08-04 Thread Alexander Skwar
Hi. 2010/8/4 Daniel Shahaf > No.  That file is auto-generated from libsvn_fs_fs/*.sql (IIRC, by > build/transform_sql.py). > > (And, apparently, the autogeneration mechanism has changed, since in trunk I > get > > % grep REP_CACHE_DB_SQL .../subversion/libsvn_fs_fs/*h > src/svn/trunk.d/subversi

undefined symbol: REP_CACHE_DB_SQL

2010-08-04 Thread Alexander Skwar
Hello. I'm now trying to compile Subversion 1.6.12 on a Solaris 10 system. It fails :( /bin/bash /export/home/webservd/Source/subversion-1.6.12/libtool --tag=CC --silent --mode=compile cc -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -g -g -I./subversion/include -

Re: Reconstruct repository from checkouts?

2010-08-03 Thread Alexander Skwar
Thanks a lot to all who replied! Answered my question. Cheers, Alexander 2010/8/3 Tony Sweeney > Short answer: no. > > > -Original Message- > > From: a.sk...@gmail.com [mailto:a.sk...@gmail.com] On Behalf > > Of Alexander Skwar > > Sent: 03 A

Reconstruct repository from checkouts?

2010-08-03 Thread Alexander Skwar
Hello! I'm curious: Is it somehow possible, to "reconstruct" a Subversion repository, if all you have is a checked out directory? I mean, does such a check out hold enough information reg. who did what and when in the past? Does it also hold information about what (ie. diffs) has changed? Best re