Re: Importing Existing Repository into a New Repository

2010-10-06 Thread Nico Kadel-Garcia
2010/10/5 Ryan Schmidt : > > On Oct 5, 2010, at 15:22, Tech Geek wrote: > >> and load project a as project b and take all the history with you. >> Just create a new project b without adding trunk etc. in revision 1. >> I do not want all the revision history of projectA into projectB. I just >> nee

Re: Importing Existing Repository into a New Repository

2010-10-06 Thread Ryan Schmidt
On Oct 6, 2010, at 07:03, Nico Kadel-Garcia wrote: > 2010/10/5 Ryan Schmidt: >> >> If you do not want to preserve the history, then you want to "svn export" >> from the old repository and "svn import" it into the new repository. > > You'll also want to seriously review the Subversion propertie

Howto Disable Localistation?

2010-10-06 Thread Lechner Martin
Hi, I have a question: Is it possible to disable the localization? As a developer I prefer the english texts but unfortunately svn translate everything to the language of my OS. Help would be welcome! Br Martin

Re: Howto Disable Localistation?

2010-10-06 Thread Siva Kumar
> I have a question: Is it possible to disable the localization? > > As a developer I prefer the english texts but unfortunately svn translate > everything to the language of my OS. did you try setting up the LANG variable to en_US ? BTW, which OS are you using ?

RE: Howto Disable Localistation?

2010-10-06 Thread Tony Sweeney
alias svn='LANG=en_US svn' From: Lechner Martin [mailto:martin.lech...@alicona.com] Sent: 06 October 2010 14:54 To: users@subversion.apache.org Subject: Howto Disable Localistation? Hi, I have

svn Farm

2010-10-06 Thread jehan procaccia
hello, I need to provide svn service to many small groups of students. I'am looking for a tool that would help industrialize managment of repositories. I don't want to issue hundreds of "svn create", "vi authz" , edit ssh keys for svn+ssh access etc ... Are there such tools already existing

Re: svn Farm

2010-10-06 Thread Siva Kumar
> I need to provide svn service to many small groups of students. > I'am looking for a tool that would help industrialize managment of > repositories. > I don't want to issue hundreds of "svn create", "vi authz" , edit ssh keys > for svn+ssh access etc ... > Are there such  tools already existing  

How to file a feature request

2010-10-06 Thread James Fainer
I would like to file a feature request but don't want to clutter the issue tracker inadvertently. What is the proper process? Jim Fainer

Re: How to file a feature request

2010-10-06 Thread Daniel Shahaf
James Fainer wrote on Wed, Oct 06, 2010 at 11:10:02 -0400: > I would like to file a feature request but don't want to clutter the issue > tracker inadvertently. What is the proper process? > To propose it on this list first. > > > Jim Fainer >

Question about new server features from 1.2.1 to today

2010-10-06 Thread Steven W. Orr
Please be gentle since I'm sort of new at this. We are using svn client software that's around the 1.6.6 area, but the server hasn't been upgraded since the paleolithic era. It sits at 1.2.1. I am being asked what the *feature* differences are between the 1.2.1 server and the latest version.

Re: Question about new server features from 1.2.1 to today

2010-10-06 Thread Andy Levy
On Wed, Oct 6, 2010 at 12:37, Steven W. Orr wrote: > Please be gentle since I'm sort of new at this. > > We are using svn client software that's around the 1.6.6 area, but the > server hasn't been upgraded since the paleolithic era. It sits at 1.2.1. > > I am being asked what the *feature* differe

Feature request

2010-10-06 Thread James Fainer
I am looking to reduce the potential complexity of path access rules by applying wild card rules in the repository section of the path access rules configuration. i.e. <> [dev:/branch] @group1=rw [dev2:/branch] @group2=rw <> Define repository with a prefix eng_Project1 eng_

Re: Subversion 1.6.13 Released

2010-10-06 Thread David Darj
I'm happy to announce my release of Subversion 1.6.13 Win32 binaries and installer They are available at my website:http://alagazam.net and also on SourceForge: http://sourceforge.net/projects/win32svn/ Release notes for the 1.6.x release series may be found at: http://subversion.apache.org/

Re: Feature request

2010-10-06 Thread Johan Corveleyn
On Wed, Oct 6, 2010 at 7:25 PM, James Fainer wrote: > I am looking to reduce the potential complexity of path access rules by > applying wild card rules in the repository section of the path access rules > configuration. > > > > i.e. > > <> > > [dev:/branch] > > @group1=rw > > > > [dev2:/branch] >

Re: Checked Out CGI not served by Apache

2010-10-06 Thread Ryan Schmidt
On Oct 5, 2010, at 16:00, James Simpson wrote: > Hi, I am currently trying to set up a python cgi based websystem. I am using > an SVN to backup the entirety of my ./www directory. When I create python > files manually and access them from the browser they work fine. But if they > are checked

Sending attachments in email using mailer.py script

2010-10-06 Thread Tech Geek
Let's say I have an exisiting repository at /var/lib/svn/projectA with (tags, branches, trunk structure) on my Linux system. I am using the mailer.py script and mailer.conf file [1] in my post-commit hook for sending out emails whenever a new release tag (like projectA/tags/REL-1.0) is created and

Re: Sending attachments in email using mailer.py script

2010-10-06 Thread Tech Geek
I guess my biggest hurdle at this time is how to extract the file from the repository that I would like to send it as an attachment. Most of the examples on the net simply specifies an explicit filename (to show as an example) like this:

Re: Howto Disable Localistation?

2010-10-06 Thread Nico Kadel-Garcia
On Wed, Oct 6, 2010 at 10:46 AM, Tony Sweeney wrote: > alias svn='LANG=en_US svn' You've just written a recursive alias. Try 'alias svn='LANG=POSIX /usr/bin/svn', which fixes the loathsome case-insensitive sorting behavior of "LANG=en_US'.

Re: Sending attachments in email using mailer.py script

2010-10-06 Thread Nick Stolwijk
You can checkout the file to /tmp and include it from there. You cannot reference a file in your repository with a file path. Hth, Nick Stolwijk ~Java Developer~ IPROFS BV. Claus Sluterweg 125 2012 WS Haarlem http://www.iprofs.nl On Thu, Oct 7, 2010 at 12:58 AM, Tech Geek wrote: > I guess my

Re: Sending attachments in email using mailer.py script

2010-10-06 Thread Tech Geek
> > You can checkout the file to /tmp and include it from there. You > cannot reference a file in your repository with a file path. I had thought about that but it would mean that I will need to include a svn checkout command to /tmp/ directory in my post-commit hook, right? If that is the case

Re: Sending attachments in email using mailer.py script

2010-10-06 Thread Tech Geek
OK I have managed to get the name of the file (after checking out to the /tmp directory) to be attached in the commit email in a variable called $ATTACHFILE in my post-commit hook. But here is another issue that I am now running into: How do I pass the value of the variable $ATTACHFILE to the mai

Re: Importing Existing Repository into a New Repository

2010-10-06 Thread Tech Geek
> > svnadmin dump -rHEAD /path/to/oldrepo > dump > svnadmin load /path/to/newrepo < dump > Thanks Ryan! That worked!

Why doesn't 'svnadmin create' creates tags, branches, trunk?

2010-10-06 Thread Tech Geek
So I am relatively new to subversion as compared to most of the folks on this mailing list. After seeing lot of examples over the web and reading official subversion book it seems that almost every body creates their repository in some or the other way with tags, branches and trunk structure even t

Re: Howto Disable Localistation?

2010-10-06 Thread Ulrich Eckhardt
On Thursday 07 October 2010, Nico Kadel-Garcia wrote: > On Wed, Oct 6, 2010 at 10:46 AM, Tony Sweeney wrote: > > alias svn='LANG=en_US svn' > > You've just written a recursive alias. No. Uli -- ML: http://subversion.apache.org/docs/community-guide/mailing-lists.html FAQ: http://subversion.apac

Re: Why doesn't 'svnadmin create' creates tags, branches, trunk?

2010-10-06 Thread Siva Kumar
You can achieve the same by having a svnadmin alias in linux and a wrapper batch in windows.

svnserve Segmentation fault on Slackware 13.1 64bit

2010-10-06 Thread Hirofumi Saitoh
I tried to build subversion 1.6.13 and 1.6.12 on Slackware 13.1 64bit with apr-1.4.2 apr-util-1.3.9 and run svnserve. I have Segmentation fault problem, but did not happen same problem on Slackware 13.1 32bit. Thank you -- Hirofumi Saitoh # gcc -v Reading specs from /usr/lib64/gcc/x86_64-slack