doddy wrote:
> Hi Guys,
>
> I am new to Trac and have just implemented it at work with a few of
> our current projects for evaluation and so far I am very pleased with
> what it has to offer.
>   
> I do have a couple of things that I think would bother me in the long
> term and was wondering if it is possible to sort
>
> 1. I have setup multiple environments on my linux box but finding it a
> little tedious adding the same permissions for each user (I have
> already set it up groups) to each environemt. Is there a way to use a
> file instead so that the same file can be pluuged into different
> environments? I understand that it can use an authfile but I
> understand this is for the svn section only.
>   

It should be possible to write a simple script to propagate the 
permissions defined in one environment to the others:

trac-admin main_env permission list > perm.txt

# edit perm.txt to keep what you need - the lines with /user/  /perm/

# batch load those permissions in all the other environments

cat perm.txt | while read user perm; do
  for env in env1 env2 env3; do
    trac-admin $env permission add $user $perm;
  done
done
 

> 2. I am using Trac in an embedded environemt so it isnt just one
> version release for the product, it is split into multiple versions
> for hardware, software, electronics etc all under one trac
> environment. Is there a way to have the version drop-down box show the
> relevant versions based on the component selected?
>   

You may want to add an use case there: http://trac.edgewall.org/ticket/2464

> 3. I am too in need of the multiple repository per environment,
> againtoo meet the requirements of an embedded project. I have seen a
> few posts already asking about this. Is this due for release 0.11?
>   

This is a much wanted feature, so I'll probably make it a priority for 0.12.

See 
http://trac.edgewall.org/wiki/VcRefactoring#SupportforMultipleRepositories
and follow updates on http://trac.edgewall.org/ticket/2086

-- Christian

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to