[Trac] Re: how to remove a project component from URL

2009-02-10 Thread Noah Kantrowitz


On Feb 7, 2009, at 12:32 PM, dmitrey wrote:

>
> Thank you Noah,
> however, the person who installed Trac is unavailable for now.
> Could you specify how could I turn the existing Trac settings (if it's
> possible at all? Or should I reinstall Trac?)
> Thank you in advance, D.

It is very specific to how you are running Trac. You would need to  
give a lot more information.

--Noah

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



[Trac] Re: Get the values of ticket fields

2009-02-10 Thread Dave McCoy

I knew it the newbie question. I tried to pass this and now it works.
f.write(fname + ': ' + (ticket[fname] or ' ') + '\n')
Thanks,
Dave

On Feb 11, 3:34 pm, Dave McCoy  wrote:
> Thanks David.
> I changed my code to smt like ticket[field_name] and it worked.
>
> However when the value of ticket[field_name] is None then the
> statement f.write will throw an error, smt like cannot concatenate
> 'str' with 'NoneType'. How can I overcome this problem? I specifically
> want to use f.write here, not print >> f 
>
> Dave
>
> On Feb 11, 3:14 pm, David Champion  wrote:
>
>
>
> > > Hi, I want to get the values of each field of Ticket object. How can I
> > > do that ?
> > > I tried to loop like below but field.get('value') seems not working:
>
> > Example taken more or less from some of my code:
>
> >     env = trac.env.open_environment('/path/to/trac/env')
> >     db = env.get_db_cnx()
> >     tkt = trac.ticket.Ticket(env, 1234, db)
> >     fields = (f['name'] for f in tkt.fields)
> >     for k in fields:
> >         print "%-10.10s: %s" % (k, tkt[k])
>
> > It's too bad a Ticket instance isn't iterable.
>
> > --
> >  -D.    d...@uchicago.edu    NSIT    University of Chicago- Hide quoted 
> > text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Get the values of ticket fields

2009-02-10 Thread Dave McCoy

Thanks David.
I changed my code to smt like ticket[field_name] and it worked.

However when the value of ticket[field_name] is None then the
statement f.write will throw an error, smt like cannot concatenate
'str' with 'NoneType'. How can I overcome this problem? I specifically
want to use f.write here, not print >> f 

Dave


On Feb 11, 3:14 pm, David Champion  wrote:
> > Hi, I want to get the values of each field of Ticket object. How can I
> > do that ?
> > I tried to loop like below but field.get('value') seems not working:
>
> Example taken more or less from some of my code:
>
>     env = trac.env.open_environment('/path/to/trac/env')
>     db = env.get_db_cnx()
>     tkt = trac.ticket.Ticket(env, 1234, db)
>     fields = (f['name'] for f in tkt.fields)
>     for k in fields:
>         print "%-10.10s: %s" % (k, tkt[k])
>
> It's too bad a Ticket instance isn't iterable.
>
> --
>  -D.    d...@uchicago.edu    NSIT    University of Chicago
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: relative Dates since 0.11

2009-02-10 Thread Noah Kantrowitz


On Feb 10, 2009, at 2:12 AM, thomas peter wrote:

>
> Hi,
>
> I recently upgraded from the fantastic 0.10 to even more fantastic
> 0.11 (workflow & svn-blame rocks so much) and now all points in time
> are displayed as relative time (e.g. "Changed 18 hours ago") and not
> timestamp. The absolute time is displayed in a on-mouse-over field.
>
> Is there a way to display the absolute timestamps like in 0.10 instead
> of the relative time period?

No, not without hacking the template a good bit or some very tricky  
match blocks.

--Noah

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



[Trac] Re: a state "validated"

2009-02-10 Thread Noah Kantrowitz


On Feb 10, 2009, at 5:02 AM, Mihamina Rakotomandimby (R12y) wrote:

>
> Jani Tiainen wrote:
>> Create workflow state called "verify" and put "resolve" to point to
>> verify.
>
> Where? in trac.ini? any documentation for that?
> Yes, I already hacked trac, but it was little crappy hack... ;-)
>
> I have really no idea of the fundamental basis of trac :-).

Look at TracWorkflow.

--Noah

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



[Trac] Re: CondFields plugin and 0.11

2009-02-10 Thread Noah Kantrowitz


On Feb 6, 2009, at 8:47 AM, Dan Sheridan wrote:

>
> Hi,
>
> We are just about to migrate our Trac environment to 0.11 (finally!)
> but we are missing one essential plugin: CondFields. Does anyone have
> further information on this ticket: http://trac-hacks.org/ticket/2197?
> It hints that there may be a patch floating around, but I haven't had
> a response to my comment...
>

I'll see if I can find it this weekend. I think I wrote it directly on  
the OLPC trac server.

--Noah

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



[Trac] Re: I logged in as admin but I can't see accounts

2009-02-10 Thread Noah Kantrowitz

On Feb 9, 2009, at 10:32 PM, messi10 wrote:

>
> Hii friends
>
> I logged in as a trac-admin and new admin tab appears rights most
> where ishould see something called acoounts where I can manage my
> users but unfortunately i can't see

You would need to install the AccountManager plugin.

--Noah

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



[Trac] Re: Managing user accounts

2009-02-10 Thread Noah Kantrowitz


On Feb 10, 2009, at 4:01 AM, eri wrote:

>
> Hi, i want to create a system for managing accounts of clients that  
> use trac so
> that the administrator give permissions to clients for accesing une  
> or more
> repositories and if he can write or anly read files in an  
> repository, i am new
> to trac and i want to know if i should create the plugin in track or  
> there is a
> mode to create it in SVN.
> Thank you.

the mod_auth_acctmgr scripts have a module for this. You will need  
mod_python as well.

--Noah

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



[Trac] Re: Get the values of ticket fields

2009-02-10 Thread David Champion

> Hi, I want to get the values of each field of Ticket object. How can I
> do that ?
> I tried to loop like below but field.get('value') seems not working:

Example taken more or less from some of my code:

env = trac.env.open_environment('/path/to/trac/env')
db = env.get_db_cnx()
tkt = trac.ticket.Ticket(env, 1234, db)
fields = (f['name'] for f in tkt.fields)
for k in fields:
print "%-10.10s: %s" % (k, tkt[k])

It's too bad a Ticket instance isn't iterable.

-- 
 -D.d...@uchicago.eduNSITUniversity of Chicago

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



[Trac] Get the values of ticket fields

2009-02-10 Thread Dave McCoy

Hi, I want to get the values of each field of Ticket object. How can I
do that ?
I tried to loop like below but field.get('value') seems not working:

for field in ticket.fields:
f.write(field['name'] + ': ' + field.get('value') + '\n')

Please advise. Thanks
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] TracHours plugin problem ...

2009-02-10 Thread Jamie @ Sierra

Hey Guys,

I'm having a little grief trying to get the TracHours plugin running:

Everything appears to be in order and I was able to download and
install the plugin. It shows up in the plugin folder and entries were
added to the TRAC.INI but I have yet to see the 'Hours' link on the
Trac main page.

When I try to reinstall the plugin I receive the following error in
Trac:

"Plugin TracHoursPlugin-0.2.2-py2.5.egg already installed"

The TarcHours plugi nalso does not appear in the 'Plugins' list in the
'Admin' menu.

Could it be that I've stumbled on to some version incompatibility?

We are running:

Trac 0.11.2.1
Python 2.5.4
Apache 2.2.11

Thanks in advance for your assistance.

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



[Trac] Re: Two trac versions, one box

2009-02-10 Thread Graham Dumpleton



On Feb 11, 1:52 am, Flatfender  wrote:
> On Tue, Feb 10, 2009 at 5:26 AM, Eirik Schwenke

>  wrote:
> > Oliver Marshall skrev 10. feb. 2009 09:58:
> >> Hi chaps,
>
> >> Is it possible to run two versions of Trac on one server? We are using a 
> >> normal Trac install at the moment with SVN. However we are working on a 
> >> new product for some clients which is based on a highly modified version 
> >> of Trac. Currently we are looking at a separate box each, though this is 
> >> only because the tech's don't know if (how) we can run both versions on 
> >> one server.
>
> >> The current Trac setup is more than enough to handle all the requests so 
> >> I'm keen to save some budget and get the one box working for it's dinner.
>
> >> Anyone know whether this is possible at all ?
>
> > If the system now is able to run a newer version of trac (ie you have a
> > reasonably up to date python available) -- there shouldn't be a problem.
>
> > You have a couple of options, depending on how much separation you want/need
> > between the to instances. You might want to look at:
>
> >  http://trac.edgewall.org/wiki/TracDev/DevelopmentEnvironmentSetup
>
> > for a general overview of how to use trac and python's virtualenv together.
> > It's a great way to set up test-environments for trac, without creating
> > problems for your regular installs.
>
> > If you want more separation than this, you might look at runnig a chroot or 
> > a
> > vserver/jail if your server is a linux or *bsd box. Personally I'm a great 
> > fan
> > of Debian, and the combination of cdebootstrap and the schroot or vserver
> > packages is a great way to run certain packages from eg. sid/unstable on a
> > server running mainly etch/stable code.
>
> > Hope this helps to get you started.
>
> I would think you could use two different virtual hosts with apache
> and then usemod_wsgiand have your wrapper scripts point to each
> separate trac install.

It doesn't have to be two virtual hosts, mod_wsgi separates based on
WSGI application mount point.

Either way, you would be much better of delegating each instance to
separate daemon process and separate virtual environment so no risk of
interference, especially if different versions of C extension modules
used.

For further details see:

  http://code.google.com/p/modwsgi/wiki/IntegrationWithTrac
  http://code.google.com/p/modwsgi/wiki/VirtualEnvironments

Graham

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



[Trac] Re: Error running Trac-admin

2009-02-10 Thread Erik Bray

On Tue, Feb 10, 2009 at 8:47 AM, Oliver Marshall
 wrote:
> Hi chaps,
>
>
>
> I'm seeing the following error on a box running Trac-admin. One of the end
> users with enough techy know-how to cause damage, but not enough to know
> much of anything, SSH'd in to the box to "update it and make it feel newer"
> (seriously) and afterwards lots of things didn't work.
>
>
>
> The error I get when running trac-admin is;
>
>
>
> Traceback (most recent call last):
>
>   File "/usr/bin/trac-admin", line 21, in 
>
> from trac.scripts.admin import run
>
> ImportError: No module named scripts.admin
>
> Any ideas what the error relates to ? I've tried using aptitude to remove
> and reinstall trac but that hasn't worked (aptitude was used apparently to
> install it in the first place).

It sounds like they tried to upgrade Trac to a newer version, but it
wrong.  trac.scripts.admin no longer exists.  Rather, your
/usr/bin/trac-admin should look something like:

#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'Trac==0.11.2','console_scripts','trac-admin'
__requires__ = 'Trac==0.11.2'
import sys
from pkg_resources import load_entry_point

sys.exit(
   load_entry_point('Trac==0.11.2', 'console_scripts', 'trac-admin')()
)



I'm assuming here that you had a Trac 0.10.x version, and that it was
upgraded to Trac 0.11.2.  Hard to say much beyond that though without
more details.  (In the future I'd say don't give admin accounts to
users who don't know what they're doing.)

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



[Trac] Re: Installing Trac - Choices

2009-02-10 Thread Erik Bray

On Tue, Feb 10, 2009 at 8:36 AM, ray  wrote:
>
> I would like to learn how to install, use and maintain Trac.  I am an
> end user with little tech support.  I will need to provide the
> resources to support the installation.
>
> To get started, I have gone through the install info on the website.
> There are many choices.  It would be great to better understand the
> ramifications of each choice.  Additionally, a simplified
> architectural diagram would go a long way in helping me understand how
> it all fits together and maybe I could better understand the
> implications of the choices that must be made.
>
> The only sure things I have at the moment are:
> 1) A need to Trac(k).
> 2) Users have Windows boxes.
> 3) The server (for now) will be on a Windows XP Professional box.
> 4) Apache and SVN (and TSVN client) are currently being tested for
> document management.
>
> I would very much appreciate a link to a simplified architectural
> diagram and to any resources that would help me understand the
> installation choices.  Additionally, the installation docs address
> Python 2.5 and I find 2.4.6, 2.5.3, 2.6.1 and 3.0; what are the
> concerns/considerations here?

I don't know any specifics because I don't use them, but there are a
few pre-packaged Trac installers out there for windows, as well as
various Trac appliance VMs.  Try Googling around and searching this
newsgroup.  Depending on how specialized your needs our I'd say that's
the way to go for a lot of users starting out.

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



[Trac] Re: Two trac versions, one box

2009-02-10 Thread Remy Blank
Oliver Marshall wrote:
> Is it possible to run two versions of Trac on one server?

Sure, have a look at virtualenv:

  http://pypi.python.org/pypi/virtualenv

-- Remy



signature.asc
Description: OpenPGP digital signature


[Trac] Re: Two trac versions, one box

2009-02-10 Thread Flatfender

On Tue, Feb 10, 2009 at 5:26 AM, Eirik Schwenke
 wrote:
>
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Oliver Marshall skrev 10. feb. 2009 09:58:
>> Hi chaps,
>>
>> Is it possible to run two versions of Trac on one server? We are using a 
>> normal Trac install at the moment with SVN. However we are working on a new 
>> product for some clients which is based on a highly modified version of 
>> Trac. Currently we are looking at a separate box each, though this is only 
>> because the tech's don't know if (how) we can run both versions on one 
>> server.
>>
>> The current Trac setup is more than enough to handle all the requests so I'm 
>> keen to save some budget and get the one box working for it's dinner.
>>
>> Anyone know whether this is possible at all ?
>
> If the system now is able to run a newer version of trac (ie you have a
> reasonably up to date python available) -- there shouldn't be a problem.
>
> You have a couple of options, depending on how much separation you want/need
> between the to instances. You might want to look at:
>
>  http://trac.edgewall.org/wiki/TracDev/DevelopmentEnvironmentSetup
>
> for a general overview of how to use trac and python's virtualenv together.
> It's a great way to set up test-environments for trac, without creating
> problems for your regular installs.
>
> If you want more separation than this, you might look at runnig a chroot or a
> vserver/jail if your server is a linux or *bsd box. Personally I'm a great fan
> of Debian, and the combination of cdebootstrap and the schroot or vserver
> packages is a great way to run certain packages from eg. sid/unstable on a
> server running mainly etch/stable code.
>
>
> Hope this helps to get you started.
>
>
> Best regards,
>
> - --
>  .---.  Eirik Schwenke 
> ( NSD ) Harald Hårfagresgate 29Rom 150
>  '---'  N-5007 Bergentlf: (555) 889 13
>
>  GPG-key at pgp.mit.edu  Id 0x8AA3392C
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.9 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
>
> iEYEARECAAYFAkmRVmIACgkQxUW7FIqjOSy0kACeNJbU9873GB+NntsrRnLenSy4
> h8UAoIdmIw1W5NFxrW5H4tdCK1IGNQCc
> =Lp+Y
> -END PGP SIGNATURE-
>
> >
>

I would think you could use two different virtual hosts with apache
and then use mod_wsgi and have your wrapper scripts point to each
separate trac install.

Matt P.

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



[Trac] Error running Trac-admin

2009-02-10 Thread Oliver Marshall
Hi chaps,

I'm seeing the following error on a box running Trac-admin. One of the end 
users with enough techy know-how to cause damage, but not enough to know much 
of anything, SSH'd in to the box to "update it and make it feel newer" 
(seriously) and afterwards lots of things didn't work.

The error I get when running trac-admin is;

Traceback (most recent call last):
  File "/usr/bin/trac-admin", line 21, in 
from trac.scripts.admin import run
ImportError: No module named scripts.admin


Any ideas what the error relates to ? I've tried using aptitude to remove and 
reinstall trac but that hasn't worked (aptitude was used apparently to install 
it in the first place).

Thanks

Olly


--
G2 Support
Network Support : Online Backups : Server Management

[cid:image001.jpg@01C98B86.14FAD070]

Tel:0870 904 3443
Email:  oliver.marsh...@g2support.com
Web:http://www.g2support.com
Mail:   2nd Floor, 130a Western Rd, Brighton, Sussex, BN12LA

G2 Support LLP is registered at Mill House, 103 Holmes Avenue, HOVE
BN3 7LE. Our registered company number is OC316341.


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

<>

[Trac] SubversionException - fsfs recognized as Berkeley ?

2009-02-10 Thread perezdavid77

Hello,

My subversion repository was corrupted but I had a backup (file
backup) of the repository (db folder)

When I launched Trac (after putting the backed up db folder), I got
this error:

SubversionException: ("Berkeley DB error for filesystem /sharednew/
subversion/repos6/db while opening 'nodes' table:\nNo such file or
directory", 160029)

This is my trac environment:

Trac:   0.11.2.1
Python: 2.5.4 (r254:67916, Jan 14 2009, 19:06:07) [GCC 3.3.5-20050130
(Gentoo 3.3.5.20050130-r1, ssp-3.3.5.20050130-1, pie-8.7.7.
setuptools: 0.6c9
SQLite: 3.3.6
pysqlite:   2.3.2
Genshi: 0.5.1
Subversion: 1.3.1 (r19032)
jQuery: 1.2.6

Thanks for your help,

Regards,

David

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



[Trac] Installing Trac - Choices

2009-02-10 Thread ray

I would like to learn how to install, use and maintain Trac.  I am an
end user with little tech support.  I will need to provide the
resources to support the installation.

To get started, I have gone through the install info on the website.
There are many choices.  It would be great to better understand the
ramifications of each choice.  Additionally, a simplified
architectural diagram would go a long way in helping me understand how
it all fits together and maybe I could better understand the
implications of the choices that must be made.

The only sure things I have at the moment are:
1) A need to Trac(k).
2) Users have Windows boxes.
3) The server (for now) will be on a Windows XP Professional box.
4) Apache and SVN (and TSVN client) are currently being tested for
document management.

I would very much appreciate a link to a simplified architectural
diagram and to any resources that would help me understand the
installation choices.  Additionally, the installation docs address
Python 2.5 and I find 2.4.6, 2.5.3, 2.6.1 and 3.0; what are the
concerns/considerations here?

Thanks,
Ray
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: a state "validated"

2009-02-10 Thread Mihamina Rakotomandimby (R12y)

Jani Tiainen wrote:
> Create workflow state called "verify" and put "resolve" to point to 
> verify.

Where? in trac.ini? any documentation for that?
Yes, I already hacked trac, but it was little crappy hack... ;-)

I have really no idea of the fundamental basis of trac :-).

-- 
Chef de projet chez Vectoris
http://www.google.com/search?q=mihamina+rakotomandimby
System: xUbuntu 8.10 with almost all from package install

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



[Trac] Re: Sharing Apache with SVN (TSVN)

2009-02-10 Thread Stodge

I updated my page on Trac hacks with the Apache configuration files
for Trac & Subversion. Hope this helps:

http://trac-hacks.org/wiki/AdminToolkitScript

On Feb 9, 9:44 pm, Stodge  wrote:
> We use Apache to access Trac and Subversion. I also wrote some scripts
> that make it easier to create and manage multiple projects (one
> project per Trac environment). I'm in the slow process of open
> sourcing the scripts ontohttp://track-hacks.org. I will also include
> two Apache configuration files; one for Trac and one for Subversion.
> So if you can wait a wee while I'll try to get those up. Currently the
> scripts assume global rights - that is, everyone can access all
> projects. I also plan on changing the scripts to provide per project
> authentication, so you can define which users can read/write each
> project (assuming one project is one Trac environment and one
> Subversion repository, both on the same server). But this will take
> time. Drop me an email and I'll try to walk you through it.
>
> Cheers
> Mike
>
> On Feb 9, 11:29 am, ray  wrote:
>
> > I am experimenting with TSVN to manage content in an engineering
> > company.  Additionally, I would like to have an issue tracker for
> > office operations.  I have found reading about Trac.  I have seen in
> > this discussion group that Trac uses SVN as a repository.  I would
> > like to keep the two repositories separate in physical location and
> > ACLs.
>
> > I see that Trac can us Apache as an http server.  Since this is
> > similar to what I have setup (TSVN and
> > Appache), I would like to consider using both TSVN and Trac with one
> > Apache server.
>
> > I would like to learn about other people that may have experience
> > with
> > this combination.  Moreover, I am concerned with how to setup Apache
> > for both TSVN and Trac.  Is there any problem with serving both from
> > one Apache instance and how do I configure Apache for both?
>
> > Thanks,
> > Ray
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: CondFields plugin and 0.11

2009-02-10 Thread patrickdes...@home.nl
Hi,

yes please, I would like this (shown/hidden custom fields on type of
ticket/status of a ticket)
plugin at trac-hacks.

Thanks,
Patrick

2009/2/9 jevans 

>
> On Feb 9, 2:15 am, Jeffrey  wrote:
> > I have written a plug-in that allows fields to be shown or hidden
> > based on ticket type, ticket status and any combination of type &
> > status.  I am new to Trac programming, so it may not be the prettiest
> > implementation.  But it works for me.
> >
> > I am running it now with Trac 0.12dev and the latest from Genshi trunk
> > because I want to make use of wiki formatting for text fields, but I
> > think I could relax these requirements and it should run just fine
> > with the latest stable Trac 0.11.x.
> >
> > I still need to clean up the code a little.  Should I contact trac-
> > hacks, or what?
> >
> > Jeffrey
>
> Yes, please!
> - jevans
> >
>

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



[Trac] I logged in as admin but I can't see accounts

2009-02-10 Thread messi10

Hii friends

I logged in as a trac-admin and new admin tab appears rights most
where ishould see something called acoounts where I can manage my
users but unfortunately i can't see

any help pleses/

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



[Trac] EstimatorPlugin

2009-02-10 Thread Mike K

What software methodology is being used for this estimator, what does
communications and variable mean?

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



[Trac] Managing user accounts

2009-02-10 Thread eri

Hi, i want to create a system for managing accounts of clients that use trac so
that the administrator give permissions to clients for accesing une or more
repositories and if he can write or anly read files in an repository, i am new
to trac and i want to know if i should create the plugin in track or there is a
mode to create it in SVN.
Thank you.


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



[Trac] Re: Two trac versions, one box

2009-02-10 Thread Eirik Schwenke

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Oliver Marshall skrev 10. feb. 2009 09:58:
> Hi chaps,
> 
> Is it possible to run two versions of Trac on one server? We are using a 
> normal Trac install at the moment with SVN. However we are working on a new 
> product for some clients which is based on a highly modified version of Trac. 
> Currently we are looking at a separate box each, though this is only because 
> the tech's don't know if (how) we can run both versions on one server.
> 
> The current Trac setup is more than enough to handle all the requests so I'm 
> keen to save some budget and get the one box working for it's dinner.
> 
> Anyone know whether this is possible at all ?

If the system now is able to run a newer version of trac (ie you have a
reasonably up to date python available) -- there shouldn't be a problem.

You have a couple of options, depending on how much separation you want/need
between the to instances. You might want to look at:

  http://trac.edgewall.org/wiki/TracDev/DevelopmentEnvironmentSetup

for a general overview of how to use trac and python's virtualenv together.
It's a great way to set up test-environments for trac, without creating
problems for your regular installs.

If you want more separation than this, you might look at runnig a chroot or a
vserver/jail if your server is a linux or *bsd box. Personally I'm a great fan
of Debian, and the combination of cdebootstrap and the schroot or vserver
packages is a great way to run certain packages from eg. sid/unstable on a
server running mainly etch/stable code.


Hope this helps to get you started.


Best regards,

- --
 .---.  Eirik Schwenke 
( NSD ) Harald Hårfagresgate 29Rom 150
 '---'  N-5007 Bergentlf: (555) 889 13

  GPG-key at pgp.mit.edu  Id 0x8AA3392C
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkmRVmIACgkQxUW7FIqjOSy0kACeNJbU9873GB+NntsrRnLenSy4
h8UAoIdmIw1W5NFxrW5H4tdCK1IGNQCc
=Lp+Y
-END PGP SIGNATURE-

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



[Trac] relative Dates since 0.11

2009-02-10 Thread thomas peter

Hi,

I recently upgraded from the fantastic 0.10 to even more fantastic
0.11 (workflow & svn-blame rocks so much) and now all points in time
are displayed as relative time (e.g. "Changed 18 hours ago") and not
timestamp. The absolute time is displayed in a on-mouse-over field.

Is there a way to display the absolute timestamps like in 0.10 instead
of the relative time period?

Thank you in advance
Thomas
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Two trac versions, one box

2009-02-10 Thread Oliver Marshall
Hi chaps,

Is it possible to run two versions of Trac on one server? We are using a normal 
Trac install at the moment with SVN. However we are working on a new product 
for some clients which is based on a highly modified version of Trac. Currently 
we are looking at a separate box each, though this is only because the tech's 
don't know if (how) we can run both versions on one server.

The current Trac setup is more than enough to handle all the requests so I'm 
keen to save some budget and get the one box working for it's dinner.

Anyone know whether this is possible at all ?

Olly
--
G2 Support
Online Backups

Email:  oliver.marsh...@g2support.com
Web:http://www.g2support.com



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



[Trac] Re: Linking two TRAK databases

2009-02-10 Thread Christian Boos

Ian wrote:
> Hi list
>
> I am working as a contractor at a company that is using TRAK but the
> main database that they are using is abroad and the connectivity
> is ... well poor to say the least.
>
> As it stands at the moment, the staff lose a lot of time prepating
> their submissions, clicking submit/commit and watching it time out
> with the poor connectivity. Getting this fixed at the head office is
> apprently a bit of a no-go since we're a tiny outlying branch and the
> tech guys #1 issue is supporting local users.
>
> So  I was wondering how hard it would be set up a local TRAK
> server and just schedule that to commit to the foreign server every 60
> mins or so? Even every couple of hours would be OK - it is not time
> critical data. I don't know if we would need some sort of 'wrapper' to
> check for succesful commits or not?
>
> I looked at mirroring but that appears to be a read only local copy of
> the database, which is not what we are after.
>
> If you need any more information, I am back on site tomorrow and can
> investigate further.
>   

Just for the record, it's a possible long term goal for Trac (see 
http://trac.edgewall.org/ticket/1465). If you feel like trying 
experimental systems, you'll find in this ticket a link to Fossil that 
you may find useful. If you try it out, please report back ;-)

-- Christian

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