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
SVN::Hooks::Notify(3pm) 				User Contributed Perl Documentation				   SVN::Hooks::Notify(3pm)

NAME
SVN::Hooks::Notify - Subversion activity notification. VERSION
version 1.19 SYNOPSIS
This SVN::Hooks plugin sends notification emails for Subversion repository activity. It is actually a simple wrapper around the SVN::Notify module. It's active in the "post-commit" hook. It's configured by the following directives. NOTIFY_DEFAULTS(%HASH) This directive allows you to specify default arguments for the SVN::Notify constructor. NOTIFY_DEFAULTS( user_domain => 'cpqd.com.br', sendmail => '/usr/sbin/sendmail', language => 'pt_BR', ); NOTIFY_DEFAULTS(smtp => 'smtp.cpqd.com.br'); Please, see the SVN::Notify documentation to know about all the available options. NOTIFY(%HASH) This directive merges the options received with the defaults obtained from NOTIFY_DEFAULTS and passes the result to the SVN::Notify constructor. Note that neither the "repos_path" nor the "revision" options need to be specified. They are grokked automatically. NOTIFY( to => 'commit-list@example.com', with_diff => 1, ); NOTIFY( to_email_map => { '^trunk/produtos|^branches' => 'commit-list@example.com', '^conf' => 'admin@example.com', }, subject_prefix => '[REPO] ', attach_diff => 1, ); AUTHOR
Gustavo L. de M. Chaves <gnustavo@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by CPqD. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-24 SVN::Hooks::Notify(3pm)