[Trac] Customize error pages

2007-07-31 Thread Simon Martin
Hi, is there a way to customize error pages? My trac-installation allows WIKI_VIEW (and other permissions) only to registered users. So I wanted to ask, how I can customize the Forbidden-page to something like "Please register / login to view wiki". Second question, is there a plugin that regis

[Trac] Re: Encrypted WIKI pages

2007-07-31 Thread Noah Kantrowitz
This is a different issue than obfuscating data. You are talking about making a webapp that doesn't trust the server. The Web (as defined as HTML+JS+CSS+HTTP+etc) is not designed to provide this kind of end-to-end security, and attempts to layer it on top are fraught with peril. Solutions

[Trac] Re: Encrypted WIKI pages

2007-07-31 Thread Noah Kantrowitz
If you really insist on this otherwise silly feature, you should look at one of the Fx/GPG integration plugins. FireGPG is the first that comes to mind. Doing this is kind of multistep security is very broken and should be regarded as worthless when compared to a real security solution. I

[Trac] trac-admin wiki import question

2007-07-31 Thread Vincent
I am looking to import from an existing MediaWiki installation to Trac. I've found the mediawiki2trac.py script (see http://trac.edgewall.org/ticket/5241 as the script referenced in the FAQ is out of date with respect to mediawiki) that helps things, but when I look at it, it doesn't seem to add

[Trac] Re: Encrypted WIKI pages

2007-07-31 Thread Vincent
Oh, and in this case, it's an internal wiki behind a VPN+firewall. Access and making sure that the information isn't stored in a compromised format is the issue as I understand it. On Jul 31, 3:52 pm, Noah Kantrowitz <[EMAIL PROTECTED]> wrote: > This feature really makes little sense. The correct

[Trac] Re: Encrypted WIKI pages

2007-07-31 Thread Vincent
Well, let me try to explain the feature again. The intent is to store passwords and to do so in a way that isn't just the information being encrypted on transmission from serverside to browser, but to not have the information available in plaintext to begin with. It would be similar to sending e

[Trac] Re: Google Groups is broken?

2007-07-31 Thread Graham Dumpleton
Google Groups has been having problems lately. A few weeks ago the search feature broke and search results wouldn't show anything recent. This appears to have been fixed in the last few days though. It is possible there were other consequences from the problems they were having. So, maybe you were

[Trac] Re: Encrypted WIKI pages

2007-07-31 Thread Noah Kantrowitz
This feature really makes little sense. The correct way to do this is server-side authorization controls. SSL provides transport security already. The "once the users password is cracked" issue is orthogonal, and means you need a better authentication system than simple passwords. I would

[Trac] Re: Encrypted WIKI pages

2007-07-31 Thread Vincent
I would tend to agree with you. In fact I completely agreed with you until I looked into this a bit. And yes, ultimately, you're kind of right - end-to-end security and HTML isn't quite consistent. But in the event of hey I want to post a message and provide an easy way to encrypt/decrypt it if

[Trac] Re: Encrypted WIKI pages

2007-07-31 Thread Noah Kantrowitz
You should use the new context-dependent permissions system. Look at the authz-policy sample plugin. If you want end-to-end security, don't use HTML. --Noah On Jul 31, 2007, at 5:47 PM, Vincent wrote: > > As an addendum, the client who requested this feature found this link > to an equivale

[Trac] Re: Encrypted WIKI pages

2007-07-31 Thread Vincent
As an addendum, the client who requested this feature found this link to an equivalent feature written in Ruby. Seems to me this could be done client side (presuming there is some sort of cryptology library available for javascript) but it could also be done as a python process. Will do more res

[Trac] Re: I need a trac.ini file example

2007-07-31 Thread Noah Kantrowitz
The default config file contains every option that Trac knows about along with its default value. Look at your TracIni page for explanations of all of these. For a web UI, use the IniAdmin plugins. --Noah On Jul 31, 2007, at 5:14 PM, marianeko wrote: > > I´m making changes to my trac config

[Trac] Re: Remote SVN Repository followup

2007-07-31 Thread Greg Luce
Thanks Vincent. I will contact you later if I give it a go. Greg On 7/31/07, cobwebsmasher <[EMAIL PROTECTED]> wrote: > > Hi. Saw a thread about trying to use remote SVN Repositories and wanted > to throw my 2 cents in, apologies if the 2 cents are an unnecessary tip. > > My understanding is tha

[Trac] I need a trac.ini file example

2007-07-31 Thread marianeko
I´m making changes to my trac configuration in trac.ini but the trac.ini sample is very poor. Does anybody have an example more complete? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post t

[Trac] Encrypted WIKI pages

2007-07-31 Thread cobwebsmasher
This is something I hadn't thought would be useful, as I think there are plenty of workarounds to get a similar effect, but I wanted to know what the group thought of this idea: Encryptable Wiki pages that can only be unlocked by either a specific password and/or a specific username/password co

[Trac] Workflow patch by PV: set_owner_to_reporter

2007-07-31 Thread cobwebsmasher
Hi. I'd like to submit this patch to the Trac development team, presuming it's actually useful (or still not addressed) but don't know how, so I'm hoping this is useful. The use case is when you want a ticket to be assigned to original reporter. Our company uses this as a enforced QA step. i

[Trac] Remote SVN Repository followup

2007-07-31 Thread cobwebsmasher
Hi. Saw a thread about trying to use remote SVN Repositories and wanted to throw my 2 cents in, apologies if the 2 cents are an unnecessary tip. My understanding is that Trac HAS to be pointing to a local version of SVN. I'm not sure why it would be an issue to refer to an NFS mount of said SV

[Trac] Spanish Manual

2007-07-31 Thread juanmatias
Hi, in first place, I apologize because I didn't start a new thread for this question before. I'm just a rookie with this stuff. Well, I'm looking for TRAC spanish manuals or handbooks. Anyone knows where can I find it? Thanks a lot. --~--~-~--~~~---~--~~ You re

[Trac] Re: help me installing trac in my office please

2007-07-31 Thread Noah Kantrowitz
Please ignore this. Not sure how this ended up on the wrong thread. --Noah On Jul 31, 2007, at 2:55 PM, Noah Kantrowitz wrote: > > The easiest way will be to make a plugin that has a new > IAuthenticator. Specifically you want to inherit from > trac.web.auth.LoginModule and override _do_login.

[Trac] Re: help me installing trac in my office please

2007-07-31 Thread Noah Kantrowitz
The easiest way will be to make a plugin that has a new IAuthenticator. Specifically you want to inherit from trac.web.auth.LoginModule and override _do_login. s/req.remote_user/ req.environ['REMOTE_USER_FULLNAME']. --Noah On Jul 31, 2007, at 9:09 AM, De La Camara Juan Matias wrote: > > Hi

[Trac] Re: [First Release] Import PhpBugTracker bugs to Trac tickets

2007-07-31 Thread Lucas Stephanou
My bad, I knew trac-hacks site :-) but, now it's offline ( 500 ). When It's come back, I post there. On 7/31/07, Rainer Sokoll <[EMAIL PROTECTED]> wrote: > > > On Tue, Jul 31, 2007 at 03:01:15PM -0300, Lucas Stephanou wrote: > > > I didn't understood what you told. > > See http://trac-hacks.org

[Trac] Re: help me installing trac in my office please

2007-07-31 Thread jmt4b04d4v
On 30 jul, 18:57, marianeko <[EMAIL PROTECTED]> wrote: > Hello, thanks to users that help me to figure installing trac out, i > finally arrive with that and i´m seeing my trac project page in > localhost. Now i have other challenge, i want to make configurationes > in trac.ini, but, to my surprise

[Trac] Remote SVN Repository?

2007-07-31 Thread jmt4b04d4v
Please don't break ML editing subject, all of us are anxious about 0.11 release. Personally, I'd be more concerned in taking a close eye at http://trac.edgewall.org/wiki/TracDev/ToDo Good things require time investment. Let 0.11 be it. On 31 jul, 09:47, Wolfgang Kundrus <[EMAIL PROTECTED]> wrot

[Trac] Re: [First Release] Import PhpBugTracker bugs to Trac tickets

2007-07-31 Thread Rainer Sokoll
On Tue, Jul 31, 2007 at 03:01:15PM -0300, Lucas Stephanou wrote: > I didn't understood what you told. See http://trac-hacks.org/ HTH, Rainer --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To p

[Trac] Re: [First Release] Import PhpBugTracker bugs to Trac tickets

2007-07-31 Thread Lucas Stephanou
Hi Noah, I didn't understood what you told. sorry On 7/31/07, Noah Kantrowitz <[EMAIL PROTECTED]> wrote: > > > Please post this to trac-hacks. It serves as the canonical index of all > addons. > > --Noah > > Lucas Stephanou wrote: > > Hi All, > > > > I had a first version of a python script to i

[Trac] decreasing memory usage

2007-07-31 Thread [EMAIL PROTECTED]
I'm running Trac 10.3 on a VPS and am looking for ways to decrease memory usage. Right now, my Trac instance use the majority of my memory (37M for 1 process, 19M for another process, and 2 processes less than 3M). I'm running fcgi through lighttpd with sqlite (database is 1.7M). Are there any

[Trac] TRACD only works when I am logged in on ssh console

2007-07-31 Thread jmt4b04d4v
Juan, please start another thread for disscussing a new subject (instead of changing it). On 31 jul, 10:14, "De La Camara Juan Matias" <[EMAIL PROTECTED]> wrote: > Hi, I looking for a trac spanish manual?... > Juan Matias --~--~-~--~~~---~--~~ You received this m

[Trac] Re: [First Release] Import PhpBugTracker bugs to Trac tickets

2007-07-31 Thread Noah Kantrowitz
Please post this to trac-hacks. It serves as the canonical index of all addons. --Noah Lucas Stephanou wrote: > Hi All, > > I had a first version of a python script to import bugs from > PhpBugTracker(phpbt) database to Trac. > > This first shot import only from Postgresql backend of phpbt, but

[Trac] [First Release] Import PhpBugTracker bugs to Trac tickets

2007-07-31 Thread Lucas Stephanou
Hi All, I had a first version of a python script to import bugs from PhpBugTracker(phpbt) database to Trac. This first shot import only from Postgresql backend of phpbt, but I'm working to port mysql too. It's based on bugzilla2trac and it's very simple, but you should by a little bit of knowled

[Trac] Re: TicketQuery order by id (Trac 0.10.4)

2007-07-31 Thread Noah Kantrowitz
This was only added in trunk. --Noah Noam Tamim wrote: > Hi, > > Question to Trac devs: > I was wondering why the TicketQuery macro ignores my "order=priority" > parameter, so I looked at the code (class TicketQueryMacro in query.py). To > my amazement, just before executing the query this state

[Trac] Re: Google Groups is broken?

2007-07-31 Thread Noam Tamim
I think I ran into another symptom of the same problem: I posted two messages to this list using GG, and they didn't even appear in the list of messages I posted. After nobody replied to them for a few days I subscribed to this list instead, resent the messages, and got immediate responses. Noam.

[Trac] Google Groups is broken?

2007-07-31 Thread Daniel Serodio (lists)
Lots of messages can't be seen from the Google Groups website; for example, a thread titled "Merge ReportPluginPatch" I started on 26/7/2007 12:16 can't be seen in the website, neither browsing nor searching for "ReportPluginPatch". Is this some sort of configuration error, or is it a Google Grou

[Trac] Spanish manual

2007-07-31 Thread De La Camara Juan Matias
Hi, I looking for a trac spanish manual? Anyone knows where can I find one? Thank you. Juan Matias --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to trac-user

[Trac] Re: TicketQuery order by id (Trac 0.10.4)

2007-07-31 Thread Eli Carter
On Sunday 29 July 2007, Noam Tamim wrote: > Hi, > > Question to Trac devs: > I was wondering why the TicketQuery macro ignores my "order=priority" > parameter, so I looked at the code (class TicketQueryMacro in query.py). To > my amazement, just before executing the query this statement appears:

[Trac] Re: TRACD only works when I am logged in on ssh console

2007-07-31 Thread ajc
Thanks for your help! Redirecting output did not help, but nohup did! Problem solved... On Jul 31, 6:14 am, "De La Camara Juan Matias" <[EMAIL PROTECTED]> wrote: > Hi, people... why not run tracd with "-d" parameter? > > -Mensaje original- > De: trac-users@googlegroups.com [mailto:[EMA

[Trac] 0.11 release date ?

2007-07-31 Thread Wolfgang Kundrus
Hi, I need to post this question again. We would like to make the switch to 0.11, but we have no clue, when it will be a good time for that. I thought, we wait until there is an official release, rather then working with a checked out revision. So, is there an official word on the release dat

[Trac] Re: TicketQuery order by id (Trac 0.10.4)

2007-07-31 Thread Noam Tamim
On 7/31/07, Roo <[EMAIL PROTECTED]> wrote: > > > What, nobody knows? Shall I ask in the dev list? > Try the svn blame command and find out who added and in what revision. > Maybe the commit log might shed some light on it. Already tried that. The commit (1636, http://trac.edgewall.org/log/trunk?r

[Trac] Re: TRACD only works when I am logged in on ssh console

2007-07-31 Thread De La Camara Juan Matias
Hi, people... why not run tracd with "-d" parameter? -Mensaje original- De: trac-users@googlegroups.com [mailto:[EMAIL PROTECTED] En nombre de Graham Dumpleton Enviado el: Lunes, 30 de Julio de 2007 11:21 p.m. Para: Trac Users Asunto: [Trac] Re: TRACD only works when I am logged in on ssh

[Trac] Re: help me installing trac in my office please

2007-07-31 Thread De La Camara Juan Matias
Hi, Maria... this file must be into conf dir. Is relative to your project: //conf/trac.ini (this is for *ux, I guess in windows it could be: C:\\conf\trac.ini ) -Mensaje original- De: trac-users@googlegroups.com [mailto:[EMAIL PROTECTED] En nombre de marianeko Enviado el: Lunes, 30 de J

[Trac] Error while using "up2date" for Trac installation

2007-07-31 Thread Ajay
Hi, I am new to Linux & Trac and trying to setup Trac with Subversion, Cruisecontrol for my development team. I am facing following error when using "up2date --nosig -i trac" for Trac installation. My Server configuration is: - RHEL4 running on DELL Optiplex 745 (Intel Core 2 Duo 2.4 GHz). Err

[Trac] Array in Memcache variable does not add value

2007-07-31 Thread Francisc Simon
Hi @all, hope somebody can help me :-) I' ve tried the following code and it does not work: memcache = MemCache.new( 'localhost:11211' ) // connection was ok memcache[ 'myArray' ] = [] // empty array was put into memcache memcache[ 'myArray' ] << 'myValue' // no error message was given puts

[Trac] Re: Post Subversion commit comments on Trac Tickets

2007-07-31 Thread Mark van Sintfiet
I'm sorry, it's correct, my subversion project is in /var/lib/svn ... I used /var/lib/svn/project just as an example to replace P0001. So I created "/var/lib/svn/P0001/hooks/post-commit" made it executable for www-data. And I tested it with this command: sudo -u www-data /var/lib/svn/P0001/ hook

[Trac] Re: TicketQuery order by id (Trac 0.10.4)

2007-07-31 Thread Roo
On 31/07/07, Noam Tamim <[EMAIL PROTECTED]> wrote: > What, nobody knows? Shall I ask in the dev list? Try the svn blame command and find out who added and in what revision. Maybe the commit log might shed some light on it. Cheers, Roo. --~--~-~--~~~---~--~~ You

[Trac] Re: TicketQuery order by id (Trac 0.10.4)

2007-07-31 Thread Noam Tamim
What, nobody knows? Shall I ask in the dev list? On 7/29/07, Noam Tamim <[EMAIL PROTECTED]> wrote: > > Hi, > > Question to Trac devs: > I was wondering why the TicketQuery macro ignores my "order=priority" > parameter, so I looked at the code (class TicketQueryMacro in query.py). > To my amazement