[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: currently logged in user keyword

From: Andy Levy <andy.levy_at_gmail.com>
Date: Fri, 12 Dec 2008 13:55:34 -0500

On Thu, Dec 11, 2008 at 18:04, altern <altern_at_bigmir.net> wrote:
> How could I get current logged in user login as svn keyword? Should I write
> hook for this purpose? Are there update-hooks at all? I need to make
> specific configuration files functionality available. For example, I have
> next code in my config.php:
> <?php
> switch('$login$') {
> case 'user1':
> $conf['dbname'] = 'db1';
> break;
> case 'user2':
> $conf['dbname'] = 'db2';
> break;
> case 'user1':
> $conf['dbname'] = 'db3';
> break;
> }
> mysql_select_db($conf['dbname']);
> ?>
>
> Is something planned to develop in future subversion version to handle
> configuration files? This is a big issue for me. And not for me, I guess

Subversion isn't an "interactive" logon environment. Your client
configuration file is managed in your user account home directory; if
you need multiple configurations based on what repository you're
interacting with, write a wrapper script around your SVN client
operations to swap the appropriate versions of ~/.subversion in & out
for those repositories.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=983505

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2008-12-12 20:12:57 CET

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.