[Trac] Re: default_severity setting in trac.ini has no effect

2006-09-27 Thread Emmanuel Blot
Did you restart the server once the changes have been saved? On 9/28/06, Steve Pole <[EMAIL PROTECTED]> wrote: > > Hi all, > > I did the following changes to the [ticket] section in trac.ini: > > replace default_priority = major > by default_priority = blocker > replace default_type = defect

[Trac] Re: Logout button does nothing

2006-09-27 Thread Emmanuel Blot
> This is a known problem. To really logout, you'll need to close the > browser. ... or a browser (or an extension) that offers an option to clear out http authentication data. Firefox does, for example. Another option is to use an alternative way to authenticate (a Trac plugin). Cheers, Manu

[Trac] Re: SMTP AUTH extension not supported by server

2006-09-27 Thread Emmanuel Blot
Do you need to authenticate when sending an email through this server? First try to remove authentication options from the config file (smtp_user, smtp_password) to check whether you can send email anonymously (it does not mean that there won't be a "From:" or "Sender:" in your emails, only that th

[Trac] Re: Problem with notify function

2006-09-27 Thread Emmanuel Blot
It seems that your are using smtp_user / smtp_password options with a SMTP server that is not configured to support authentication. Either remove these options from your Trac configuration file, or change the settings of the Exim server so that it supports authentication. The first option being t

[Trac] SMTP AUTH extension not supported by server

2006-09-27 Thread Steve Pole
Hi all, I would like to use Tracs email notification feature. When I create a new ticket, I get the following message in the log: 2006-09-28 17:24:20,658 Trac[web_ui] ERROR: Failure sending notification on creation of ticket #4: SMTP AUTH extension not supported by server. Traceback (most rece

[Trac] Problem with notify function

2006-09-27 Thread Ofir
This is what I get in my logs when I try to send the notification of a ticket: 19:23:39 Trac[web_ui] ERROR: Failure sending notification on change to ticket #7: SMTP AUTH extension not supported by server. Traceback (most recent call last): File "/usr/lib/python2.4/site-packages/trac/ticket/web

[Trac] default_severity setting in trac.ini has no effect

2006-09-27 Thread Steve Pole
Hi all, I did the following changes to the [ticket] section in trac.ini: replace default_priority = major by default_priority = blocker replace default_type = defect by default_type = task add default_severity = moderate The changes to default_priority and default_type show the ne

[Trac] Re: Dynamic TracNav...Possible?

2006-09-27 Thread Dirk
Hi Rob, Rob Wilkerson wrote: > > Interesting. I'll give that a shot and see what happens. Please let us know what you end up doing. This sounds like a very nice feature to have. Thanks Dirk --~--~-~--~~~---~--~~ You received this message because you are s

[Trac] Re: Logout button does nothing

2006-09-27 Thread Brad Anderson
John Hampton wrote: > Sid Wiesner wrote: >> Kenneth Gonsalves wrote: >>> On 28-Sep-06, at 7:04 AM, Steve Pole wrote: >>> when a user is logged into Trac and hits the 'Logout' button, nothing happens, the user just stays logged in. >>> works for me >> This is a known problem. To really

[Trac] Re: Logout button does nothing

2006-09-27 Thread John Hampton
Sid Wiesner wrote: > Kenneth Gonsalves wrote: >> On 28-Sep-06, at 7:04 AM, Steve Pole wrote: >> >>> when a user is logged into Trac and hits the 'Logout' button, >>> nothing happens, the user just stays logged in. >> works for me > > This is a known problem. To really logout, you'll need to clo

[Trac] Re: internal error: UnicodeDecodeError w/ New Ticket --> TracTickets

2006-09-27 Thread z00m1n
or even easier: just try to open http:///Trac/wiki/TracTickets (Default Trac start page --> TracGuide -- Built-in Documentation --> TracTickets -- Using the issue tracker.) I did read the similar reply saying that string handling has recently been re-done, but I don't know how to figure out in w

[Trac] internal error: UnicodeDecodeError w/ New Ticket --> TracTickets

2006-09-27 Thread Steve Pole
Hi all, when I create a new ticket and select TracTickets in the note at the bottom of this screen, I reproducibly get an internal error: Python Traceback Traceback (most recent call last): File "C:\Program Files\Development\ActivePython\Lib\site-packages\trac\web\main.py", line 335, in di

[Trac] Re: Logout button does nothing

2006-09-27 Thread Sid Wiesner
z00m1n wrote: > If this is a known problem, why couldn't I find anything in this group > searching for 'log out', logout ? What resources should I tap in the > future before asking here ? This list was just recently moved to googlegroups, so the archives on google only go back 1 month. If you wa

[Trac] Re: Logout button does nothing

2006-09-27 Thread z00m1n
Thanks for the info, I am happy to wait for a fix to come in with a later update. If this is a known problem, why couldn't I find anything in this group searching for 'log out', logout ? What resources should I tap in the future before asking here ? CU z00m1n --~--~-~--~~--

[Trac] Re: Severity appears at wrong position and can't be re-ordered

2006-09-27 Thread z00m1n
You win that bet - when I add more severities, they also show up in the wrong place (after None or Negligible...) Cause found. Solution ? CU z00m1n --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Trac Users" grou

[Trac] Re: Logout button does nothing

2006-09-27 Thread Sid Wiesner
Kenneth Gonsalves wrote: > On 28-Sep-06, at 7:04 AM, Steve Pole wrote: > >> when a user is logged into Trac and hits the 'Logout' button, >> nothing happens, the user just stays logged in. > > works for me This is a known problem. To really logout, you'll need to close the browser. The Trac

[Trac] Re: Logout button does nothing

2006-09-27 Thread Alistair Campbell
This issue is due to the browser caching authentication information on the behalf of the user. Unless the mechanism has been changed in more recent versions of trac, I'd imagine this is still the case. On 28/09/06, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > > > On 28-Sep-06, at 7:04 AM, Steve

[Trac] Re: Logout button does nothing

2006-09-27 Thread Kenneth Gonsalves
On 28-Sep-06, at 7:04 AM, Steve Pole wrote: > when a user is logged into Trac and hits the 'Logout' button, > nothing happens, the user just stays logged in. works for me -- regards Kenneth Gonsalves Associate, NRC-FOSS [EMAIL PROTECTED] http://nrcfosshelpline.in/web/ --~--~-~

[Trac] Re: Severity appears at wrong position and can't be re-ordered

2006-09-27 Thread Noah Kantrowitz
$10 says these are being sorted in the ASCII order (so number '10' comes right after '1'). --Noah On Sep 27, 2006, at 9:23 PM, Steve Pole wrote: > > Hi all, > > tickets in our Trac system can have 10 different severities: > > Dangerously High > Extremely High > Very High > High > Moderate > L

[Trac] Logout button does nothing

2006-09-27 Thread Steve Pole
Hi all, when a user is logged into Trac and hits the 'Logout' button, nothing happens, the user just stays logged in. This is not really a major issue as it does not prevent anyone from doing anything, but it gives those in the company who are against Trac a reason not to use it (security iss

[Trac] Severity appears at wrong position and can't be re-ordered

2006-09-27 Thread Steve Pole
Hi all, tickets in our Trac system can have 10 different severities: Dangerously High Extremely High Very High High Moderate Low Very Low Minor Very Minor None (Please don't laugh, it wasn't my idea, it's a company thing.) I add them in the right order in the DOS shell: python trac-admin D:\S

[Trac] WebAdmin does not show up

2006-09-27 Thread Steve Pole
Hi all, I can't get the WebAdmin plugin to work. Here is what I did so far: + download http://peak.telecommunity.com/dist/ez_setup.py to C:\Temp + run python ez_setup.py + svn co http://svn.edgewall.com/repos/trac/sandbox/webadmin/ ... --> Checked out revision 3781. + cd webadmin + pyt

[Trac] Simple URL without /trac

2006-09-27 Thread Pelton, Brian
Apache2 with mod_python (on windows) I want to use this url for my project `http://myproject` I can't seem to get it to work. I have to use `http://myproject/trac` which isn't so good. With this setup, trac works fine: SetHandler mod_python PythonHandler trac.web.modpython_frontend Py

[Trac] Re: Dynamic TracNav...Possible?

2006-09-27 Thread Rob Wilkerson
On Sep 27, 2006, at 6:02 PM, Thomas Moschny wrote: > > On Wednesday 27 September 2006 20:32 Noah Kantrowitz wrote: >> TracNav parses the text of the TOC page directly, so no, you cannot >> do that. > > Well, that's not the complete story. The TracNav plugin has a > (currently > hardcoded) list

[Trac] Re: Dynamic TracNav...Possible?

2006-09-27 Thread Thomas Moschny
On Wednesday 27 September 2006 20:32 Noah Kantrowitz wrote: > TracNav parses the text of the TOC page directly, so no, you cannot > do that. Well, that's not the complete story. The TracNav plugin has a (currently hardcoded) list ALLOWED_MACROS, and if you add "subwiki" to that list, your examp

[Trac] Re: RFC - about a mini tracForge

2006-09-27 Thread Noah Kantrowitz
This is indeed all part of the goal of TracForge, though sans the Django part since that just would get hellish to integrate. --Noah zwetan wrote: > Hello, > > I'm not that much an advanced user in Python, > but I got a little project itching and I would need > some advices from more advanced

[Trac] RFC - about a mini tracForge

2006-09-27 Thread zwetan
Hello, I'm not that much an advanced user in Python, but I got a little project itching and I would need some advices from more advanced Python and Trac users. the goal is to set up a kind of tracForge on a dedicated server why: I plan that for my needs, and for clients needs and well ... why n

[Trac] Re: Customize the "resolve as" field?

2006-09-27 Thread Noah Kantrowitz
Add items to the enum table. --Noah [EMAIL PROTECTED] wrote: > Sorry if this question has already been addressed somewhere, or if it's > obvious, but we've just got Trac running, and we're going through all > the various milestones, versions, etc. to make them fit with our > particular setup. Ho

[Trac] change the size of Images

2006-09-27 Thread nortoncillo
where can i tell munin to draw "wide" graphs? regards --~--~-~--~~~---~--~~ 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 gr

[Trac] Customize the "resolve as" field?

2006-09-27 Thread [EMAIL PROTECTED]
Sorry if this question has already been addressed somewhere, or if it's obvious, but we've just got Trac running, and we're going through all the various milestones, versions, etc. to make them fit with our particular setup. However, when we got to the 'resolve as' action, I couldn't find how thos

[Trac] Re: Dynamic TracNav...Possible?

2006-09-27 Thread Noah Kantrowitz
Not sure if its working at the moment, but you can look at the TOP macro on trac-hacks. --Noah On Sep 27, 2006, at 3:08 PM, Rob Wilkerson wrote: > > On 9/27/06, Noah Kantrowitz <[EMAIL PROTECTED]> wrote: >> >> TracNav parses the text of the TOC page directly, so no, you cannot >> do that. > >

[Trac] Re: Dynamic TracNav...Possible?

2006-09-27 Thread Rob Wilkerson
On 9/27/06, Noah Kantrowitz <[EMAIL PROTECTED]> wrote: > > TracNav parses the text of the TOC page directly, so no, you cannot > do that. Damn. That seems like such a perfect fit. Thanks for the definitive response. At least I know not to waste any more time on it. :-) --~--~-~--~---

[Trac] Re: TracSimpleTicket 1.0 and trac 0.10rc1

2006-09-27 Thread Noah Kantrowitz
Just uploaded a new version that should work. --Noah On Sep 27, 2006, at 11:28 AM, Rainer Sokoll wrote: > > Hi, > > I have installed $SUBJECT. > Anonymous has TICKET_CREATE_SIMPLE privileges, but not > TICKET_CREATE, as > the documentation suggests. > But now, an anonymous user is denied acce

[Trac] Re: Dynamic TracNav...Possible?

2006-09-27 Thread Noah Kantrowitz
TracNav parses the text of the TOC page directly, so no, you cannot do that. --Noah On Sep 27, 2006, at 2:08 PM, Rob Wilkerson wrote: > > I'm trying to use the TracNav macro, but populating one section of my > nav dynamically using the SubWiki macro (SubWiki.3.py, to be precise). > It's not

[Trac] Dynamic TracNav...Possible?

2006-09-27 Thread Rob Wilkerson
I'm trying to use the TracNav macro, but populating one section of my nav dynamically using the SubWiki macro (SubWiki.3.py, to be precise). It's not behaving as I expect, though, and I'm hoping someone can explain to me what I'm doing wrong or why it's not going to do what I want. The TracNav m

[Trac] Re: Where should you keep 3rd party binaries?

2006-09-27 Thread Pelton, Brian
Not sure if this is "best-practice" but it works for me: project/ src/ <-- code lib/ <-- third party dlls build/ <-- non version control built exes thirdparty/<-- third party code img/ <-- photoshop / other files resources/ <-- text files

[Trac] Re: advices to run more than one trac version

2006-09-27 Thread zwetan
thank you all for the input, really helpfull. Well, I will go with Peter suggestion, different hosts for different trac as I need 1 very stable Trac for production on a dedicated server and I can so reuse the local servers for Trac testing, and in fact I see it now, what I really need is a trac-t

[Trac] Re: TicketBox plugin and TicketBox.diffs not working

2006-09-27 Thread Shun-ichi GOTO
On 9/27/06, Paulo Alexandre Freire <[EMAIL PROTECTED]> wrote: > I'm trying to patch the TicketBox.py with TicketBox.diffs so that I have a > box with the description of the tickets. Sorry for inconvenience by my poor maintenance. I've create a new patch for recent code. Please try this: http://

[Trac] Where should you keep 3rd party binaries?

2006-09-27 Thread randrus
I am using Visual Studio 2005 with C# for developement. I am currently developing custom commerce starter kit solutions and I also use the Telerik RAD controls. Both have lots of binaries associated with them that I thought needed to be kept in the bin dir and also in source control but everytime

[Trac] Troubleshooting hints - Trac stops working

2006-09-27 Thread Randy Groves
So - I installed trac 0.96, and everything's working swimmingly - then yesterday a user writes that trac just stopped responding. Investigation shows a core file in the logs directory at the time of the failure. Re-starting trac results only in a web page with the following: Available Projec

[Trac] Re: Moving Trac Installation

2006-09-27 Thread Pelton, Brian
Don't forget to change your repository path in the trac.ini file. -Original Message- From: trac-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Noah Kantrowitz Sent: Wednesday, September 27, 2006 8:16 AM To: trac-users@googlegroups.com Subject: [Trac] Re: Moving Trac Insta

[Trac] Re: Moving Trac Installation

2006-09-27 Thread Guillaume
Noah Kantrowitz a écrit : > Yes, if you are using the same version of SQLite on both servers you > don't even need to dump it, just tar up the env and move it over. > Ditto for subversion if you are using FSFS. For BDB-basck repos I > would say to use svnadmin dump and svnadmin load. > > --

[Trac] Re: Moving Trac Installation

2006-09-27 Thread randrus
Thanks everyone for you help. It's a great product which I am sure has a lot to do with the community of users behind it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, se

[Trac] Re: TicketBox plugin and TicketBox.diffs not working

2006-09-27 Thread Paulo Alexandre Freire
Hello Noah Sorry my ignorance. I'm not familiar with that macro [[Query]]and can't find info to. Where can I have info on that. Does it allow to have a Grey box just like TicketBox macro? Thanks Perhaps you want to use the [[Query]] macro? --Noah On Sep 27, 2006, at 10:50 AM, Paulo Alexand

[Trac] Re: advices to run more than one trac version

2006-09-27 Thread Peter Fischer
zwetan wrote: > Hello, > > I'm running Trac 0.9.6 stable under Apache 2.0.5x on Windows > > I was wondering if it's possible: > - to have different apache conf per web site > so you can run Trac 0.9.6-stable on trac.domain.com > and in // run Trac 0.10-RC1 on test.domain.com > > note: I'm a

[Trac] TracSimpleTicket 1.0 and trac 0.10rc1

2006-09-27 Thread Rainer Sokoll
Hi, I have installed $SUBJECT. Anonymous has TICKET_CREATE_SIMPLE privileges, but not TICKET_CREATE, as the documentation suggests. But now, an anonymous user is denied access at all. Error: "TICKET_CREATE privileges are required to perform this operation". The same works on another box with Trac

[Trac] Re: Moving Trac Installation

2006-09-27 Thread Noah Kantrowitz
Yes, if you are using the same version of SQLite on both servers you don't even need to dump it, just tar up the env and move it over. Ditto for subversion if you are using FSFS. For BDB-basck repos I would say to use svnadmin dump and svnadmin load. --Noah On Sep 27, 2006, at 10:59 AM, [E

[Trac] Re: TicketBox plugin and TicketBox.diffs not working

2006-09-27 Thread Noah Kantrowitz
Perhaps you want to use the [[Query]] macro? --Noah On Sep 27, 2006, at 10:50 AM, Paulo Alexandre Freire wrote: > Hello all > > > > I’m trying to patch the TicketBox.py with TicketBox.diffs so that > I have a box with the description of the tickets. > > > > When I do this: > > > > “patch Ti

[Trac] Re: Moving Trac Installation

2006-09-27 Thread randrus
Can you give more details on: "i've just dump the database" and "add the dump to your local database server." By this do you mean: - Export DB data - reinstall DB on new computer - import old DB data And this is just for Trac right? Moving the repository directory would move the repository

[Trac] Re: advices to run more than one trac version

2006-09-27 Thread Pelton, Brian
Yesterday I asked the same question. Here's what I'm doing: I have two separate apache server instances. One instance is tied to Python23 and Trac 0.9. The other is tied to Python24 and Trac 0.10. I am using mod_python. So, I have two mod_python.so files. In the apache config for Trac 0.9,

[Trac] Re: advices to run more than one trac version

2006-09-27 Thread nomorsad
Hi, That's what I tried to do, because here it's a real "production" environnement, with test/validation/upgrade. I use tracd for web-serving, but my experience can help you. In each Trac instance, I have one Trac Engine with its own plugin and one project environnement (and one python, snv and

[Trac] TicketBox plugin and TicketBox.diffs not working

2006-09-27 Thread Paulo Alexandre Freire
Hello  all   I’m trying to patch the TicketBox.py with TicketBox.diffs  so that I have a box with the description of the tickets.   When I do this:   “patch TicketBox.py TicketBox.diffs”   It reports this: patching file TicketBox.py Hunk #5 FAILED at 113. Hunk #6 FAILED at 127.

[Trac] Re: Moving Trac Installation

2006-09-27 Thread Guillaume
[EMAIL PROTECTED] a écrit : > Hi, > > I decided to try out Trac for my new job, which is a small shop with no > software for project management, source control, wiki, etc... > > I like it but now I would like to install it on the production server > but I would like to be able to move my current

[Trac] Moving Trac Installation

2006-09-27 Thread randrus
Hi, I decided to try out Trac for my new job, which is a small shop with no software for project management, source control, wiki, etc... I like it but now I would like to install it on the production server but I would like to be able to move my current repository and trac DB to the new machine

[Trac] Re: problems installing trac

2006-09-27 Thread Ruslan Sivak
You don't NEED to set up a subversion repository if you don' t use subversion. The latest version of trac will run happily without it. If you do want to use subversion it's as easy as svnadmin create /repo/path Russ J. Manuel Velasco wrote: > Dear Emmanuel, > > I did it, thanks. But now I a

[Trac] Re: problems installing trac

2006-09-27 Thread J. Manuel Velasco
Dear Emmanuel, I did it, thanks. But now I am having problems in the step: Failed to initialize environment. /var/svn/test does not appear to be a Subversionrepository. So i guess I need to create a subversion repository before installing trac. I don't know how to do it, I will try later look

[Trac] advices to run more than one trac version

2006-09-27 Thread zwetan
Hello, I'm running Trac 0.9.6 stable under Apache 2.0.5x on Windows I was wondering if it's possible: - to have different apache conf per web site so you can run Trac 0.9.6-stable on trac.domain.com and in // run Trac 0.10-RC1 on test.domain.com note: I'm also interested for these kind of s

[Trac] Re: problems installing trac

2006-09-27 Thread Emmanuel Blot
> from svn import fs, repos, core, delta >ImportError: No module named svn This error means that your installation misses the Subversion bindings for Python. You need to install a package (whose name depends on your unix distribution, it's named "python-subversion" on Debian for instance) that p

[Trac] Re: problems installing trac

2006-09-27 Thread J. Manuel Velasco
I've installed python2.3-subversion package and now I guess I need to create a subversion repository. I will look for doc ... thanks El Miércoles, 27 de Septiembre de 2006 13:13, amimusa escribió: > Hello all, > > Recently I've installed trac to use as developers shared project in my > server,

[Trac] problems installing trac

2006-09-27 Thread amimusa
Hello all, Recently I've installed trac to use as developers shared project in my server, but whan i try to init a project I get this error. I've followed the instruction and i've checked the restrictions. Any help, please ?¿ Indexing repository Failed to initialize environment. No module nam