SVN Subversion Mac Questions


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users SVN Subversion Mac Questions
# 1  
Old 12-04-2010
SVN Subversion Mac Questions

Hello all,

I am the owner of a company that just lost it's programmer. Because I am not a programmer, I am trying to see if I can get some assistance setting up the following:

Hey - couple questions

On the SERVER SVN is kept. Is is maintained under the user USERSERVER

The problem is that to SVN grab the folder you need to SSH in, and USERSERVER for me is the admin and contains files I dont want the new programmers to have access to. Therefore I want to know if I can set up a user called "programmer1" of which is used for the first programmer to download and upload to the SVN. I am using Snow Lep Server.

Is this possible to do?


Furthermore, there is a bunch of source code in the SVN folder that programmer1 doesn't need to see. Past versions of the code, and other elements of source code. Is it possible to restrict a user or SVN folder to only contain certain directories on downloads? Maybe under the user account "programmer1" make it so that he doesnt have download permissions on some directories inside of .../SVN?

Also, we use Redmine, which is linked directly to SVN, and displays all the source code. If programmer1 account is set up on Redmine, and lets say his SVN downloads are restricted, then Redmine might still display ALL of the source. Do you know if the web front end (Redmine) can be altered in conjunction with the SVN permissions for programmer1?

Thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Making post down hook script for svn regarding sending emails after an file is committed in svn

Hi Folks , I am asking this question but i apologise please if this is not the correct forum , I have to develop a shell script that i want to place in at hooks/post-commit , that is basically i have to develop a post hook script and the main functionality of that script would be lets say if... (0 Replies)
Discussion started by: sunsun06060606
0 Replies

2. SuSE

SVN(subversion) installation on SLES 11

I had installed svn on SLES 11 using comands: zypper addrepo http://download.opensuse.org/repositories/devel:tools:scm:svn/SLE_11/devel:tools:scm:svn.repo zypper refresh zypper install subversion But when I run svn it gives me error as: linux-uw85:~/Desktop # svn help svn: error while... (4 Replies)
Discussion started by: rupeshkp728
4 Replies

3. Shell Programming and Scripting

Single User Mode Questions (mac)

Hello everyone. Completely new here (so if this post is in the wrong forum point me in the right direction), and fairly new to unix. I have a macbook pro and just recently started messing around with the Single User Mode, where i can manipulate directories/files/etc using unix. I have also just... (0 Replies)
Discussion started by: lsant894
0 Replies

4. Solaris

How to integrate SVN client to SVN server repository.

Hi, I am new to SVN configuration on Solaris 10.I have installed SVN client version 1.7. bash-3.00# ./svn --version svn, version 1.7.4 (r1295709) compiled Mar 2 2012, 12:59:36 Here my requirement is how to integrate svn client to One of the SVN server repository. My repository... (0 Replies)
Discussion started by: muraliinfy04
0 Replies

5. Shell Programming and Scripting

How to checkout from SVN using Terminal in Mac OS X?

Hi, I am new for SVN. Earlier I have been using CVS. When I checkout the code from SVN using Eclipse, the size of the source code checked out is 612MB. But when I try to checkout from terminal, from my 5.8 branch , the checked out source code's size is only 312.1 MB. Can anyone tell me... (0 Replies)
Discussion started by: Afreen
0 Replies

6. UNIX and Linux Applications

integrating svn (subversion) with vi editor

hi, I have installed subversion in my debian system.and is working properly with authentication. my repository has only one workspace. and many authenticated users edit files in this. my question is simple. can we integrate svn with vi ,so that if anyone edits the file and make any... (1 Reply)
Discussion started by: madhusudankh
1 Replies

7. UNIX for Advanced & Expert Users

Problem with Subversion SVN

Hi, I am trtying to install SVN server with Apache. I have already configured apache with SVN modulesh and the same can be seen in the modules directory. -rwxr-xr-x 1 root root 34740 Jul 3 13:43 mod_authz_svn.so -rwxr-xr-x 1 root root 385133 Jul 3 13:43 mod_dav_svn.so now the... (1 Reply)
Discussion started by: Siddheshk
1 Replies

8. Red Hat

SVN subversion performance issue.

Hello to everyone, I am having svn performace issue. Whenever i am doing svn checkout it's slower on one machine than other Xen machine. I will try to explain what is goin on here. I have 3 machine and all three running linux (Centos 5) Machine A is running Svn server. Machine B... (6 Replies)
Discussion started by: email-lalit
6 Replies
Login or Register to Ask a Question
native::Delta(3)					User Contributed Perl Documentation					  native::Delta(3)

NAME
SVN::Delta - Subversion delta functions SYNOPSIS
require SVN::Core; require SVN::Repos; require SVN::Delta; # driving an editor my $editor = SVN::Delta::Editor-> new(SVN::Repos::get_commit_editor($repos, "file://$repospath", '/', 'root', 'FOO', &committed)); my $rootbaton = $editor->open_root(0); my $fbaton = $editor->add_file ('filea', $rootbaton, undef, -1); my $ret = $editor->apply_textdelta ($fbaton, undef); SVN::TxDelta::send_string("FILEA CONTENT", @$ret); # implement an editor in perl SVN::Repos::dir_delta($root1, $path, undef, $root2, $path, SVN::Delta::Editor->new(_debug=>1), 1, 1, 0, 1 DESCRIPTION
SVN::Delta wraps delta related function in subversion. The most important one is SVN::Delta::Editor, the interface for describing tree deltas. by default SVN::Delta::Editor relays method calls to its internal member "_editor", which could either be an editor in C (such as the one you get from get_commit_editor), or another SVN::Delta::Editor object. SVN
::Delta::Editor Driving Editors If you want to drive a native editor (such as commit_editor obtained by SVN::Repos::get_commit_editor), create a SVN::Delta::Editor object with the native editor/baton pair. The object will then be ready to use and its method calls will be relayed to the native editor. Implementing Editors If you want to implement an editor, subclass SVN::Delta::Editor and implement the editors callbacks. see the METHODS section below. CONSTRUCTOR - new (...) new ($editor, $editor_baton) Link to the native editor You can also pass a hash array to new: _debug Turn on debug. _editor An arrayref of the editor/baton pair or another SVN::Delta::Editor object to link with. METHODS Please consult the svn_delta.h section in the Subversion API. Member functions of svn_delta_editor_t could be called as methods of SVN::Delta::Editor objects, with the edit_baton omitted. The pool is also optional. If you are subclassing, the methods take exactly the same arguments as the member functions (note that void ** are returned data though as throughout the perl bindings), with the edit_baton omitted. BUGS
Functions returning editor/baton pair should really be typemapped to a SVN::Delta::Editor object. AUTHORS
Chia-liang Kao <clkao@clkao.org> COPYRIGHT
Copyright (c) 2003 CollabNet. All rights reserved. This software is licensed as described in the file COPYING, which you should have received as part of this distribution. The terms are also available at http://subversion.tigris.org/license-1.html. If newer versions of this license are posted there, you may use a newer version instead, at your option. This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision history and logs, available at http://subversion.tigris.org/. perl v5.12.1 2005-10-25 native::Delta(3)