[Trac] Re: Progress-reporting / project-management in TRAC
On Apr 16, 2008, at 1:45 AM, MichaelO wrote: > > Hi, > Is there add-in to use in TRAC if I want to add progress-reporting > into tickets. > I would like to be able add possibility to add something like a > weekly > progressreport, hours spent, hours to go, Estimated deliverydate. > This should be something that could be added more than once for a > ticket eg weekly. > For thoose knowing projectplace.com they have this functionality but I > wouldlike to keep this info together > with the tickets. Timing&Estimation 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Single sign-on to multiple projects?
On Apr 16, 2008, at 1:41 AM, Scott Bussinger wrote: > > I've got a Trac 0.11b2 installation on a Windows server with several > projects on it. I'm using tracd and the AccountManagerPlugin. Is it > possible to set up the system so that once you log into one project > that you can then jump to the other project and already be logged in? > > In other words, I've got the same users for all the projects and would > like to only have to sign in one time for access to any of the > projects. TracForge handles this. I think I ported that portion of it to 0.11 already. --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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Progress-reporting / project-management in TRAC
Hi, Is there add-in to use in TRAC if I want to add progress-reporting into tickets. I would like to be able add possibility to add something like a weekly progressreport, hours spent, hours to go, Estimated deliverydate. This should be something that could be added more than once for a ticket eg weekly. For thoose knowing projectplace.com they have this functionality but I wouldlike to keep this info together with the tickets. Regards Michael --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Email-notifications only work in one project
Hi, I have set up 3 projects in trac (0.11 dev) trac-admin C:\Python25\Scripts\trac\Proj1 initenv Proj1 sqlite:db/ trac.db svn "C:\svnrep\MGEditor" trac-admin C:\Python25\Scripts\trac\Proj2 initenv Proj2 sqlite:db/ trac.db svn "C:\svnrep\MGEditor" trac-admin C:\Python25\Scripts\trac\Proj3 initenv Proj3 sqlite:db/ trac.db svn "C:\svnrep\MGEditor" For all 3 projects I have set up email notification like [notification] smtp_enabled = true smtp_server = mailhost.xyz.se smtp_from = [EMAIL PROTECTED] smtp_replyto = [EMAIL PROTECTED] smtp_port = 25 smtp_subject_prefix = __default__ ticket_subject_template = $prefix #$ticket.id: $summary But it only works for one of the projects. And it seems that after I made some tests and added a cc to a specific adress this still works without the adress existing in the INI-file. Could it be some kind of cashing of the configurations that needs to be cleared. Or are projects that are configured on a mchine related in some way. /Michael --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Single sign-on to multiple projects?
I've got a Trac 0.11b2 installation on a Windows server with several projects on it. I'm using tracd and the AccountManagerPlugin. Is it possible to set up the system so that once you log into one project that you can then jump to the other project and already be logged in? In other words, I've got the same users for all the projects and would like to only have to sign in one time for access to any of the projects. Is there any support for this sort of thing? 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Patch for bugzilla2trac.py (Import from Bugzilla 2.23.3)
Hi, I just want to report that I was able to successfully import my bugs from Bugzilla 2.23.3 to trac 0.10.3 after making a small change to the latest version of bugzilla2trac.py (see attached patch). Maybe you want to apply this patch to the bugzilla2trac script. I use the test 'BZ_VERSION >= 2233' in the patch as it works for me with that version. However, most likely the change in the Bugzilla DB was in an earlier version and this number can be reduced in order to work with earlier verions, too. Thanks, Marco --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~--- --- bugzilla2trac.py.old 2008-02-11 12:22:57.0 +0100 +++ bugzilla2trac.py 2008-04-15 17:56:19.0 +0200 @@ -28,12 +28,12 @@ # Bugzilla version. You can find this in Bugzilla's globals.pl file. # # Currently, the following bugzilla versions are known to work: -# 2.11 (2110), 2.16.5 (2165), 2.18.3 (2183), 2.19.1 (2191) +# 2.11 (2110), 2.16.5 (2165), 2.18.3 (2183), 2.19.1 (2191), 2.23.3 (2233) # # If you run this script on a version not listed here and it is successful, # please report it to the Trac mailing list and drop a note to # [EMAIL PROTECTED] so we can update the list. -BZ_VERSION = 2180 +BZ_VERSION = 2233 # MySQL connection parameters for the Bugzilla database. These can also # be specified on the command line. @@ -427,8 +427,12 @@ def getFieldName(self, cursor, fieldid): if fieldid not in self.fieldNameCache: -cursor.execute("SELECT * FROM fielddefs WHERE fieldid = %s", - (fieldid)) +if BZ_VERSION >= 2233: +cursor.execute("SELECT * FROM fielddefs WHERE id = %s", + (fieldid)) +else: +cursor.execute("SELECT * FROM fielddefs WHERE fieldid = %s", + (fieldid)) fieldName = cursor.fetchall() if fieldName:
[Trac] installing tocmacro
I'm trying to get tocmacro into my 0.9.6 install. I downloaded tocmacro.zip from trac-hacks.org The zip contains tocmacro/0.11/tractoc/__init__.py tocmacro/0.11/tractoc/macro.py tocmacro/0.11/setup.py tocmacro/0.8/TOC.py tocmacro/0.9/tractoc/__init__.py tocmacro/0.9/tractoc/macro.py tocmacro/0.9/setup.py tocmacro/0.10/tractoc/__init__.py tocmacro/0.10/tractoc/macro.py tocmacro/0.10/setup.py and the instructions say to install it "in the usual manner". I find two sets of instructions at macrobazaar; one for old style "hdf" macros and one for "new style" macros. I'm going to guess that tocmacro.zip contains a "new style" macro, so... Either it's the same as a plugin -- follow the link to plugins and I find a discussion about .egg files, or it's a simple "single file plugin" -- download the .py file, and save to plugins directory. I did add tractoc.* = enabled to trac.ini I renamed it to tocmacro.egg, dropped into plugins, and restarted apache, but that didn't work. I unzipped the file, copied tocmacro/0.9/tractoc/macro.py to my wiki- macros/tractoc.py, restarted apache, but that didn't work. I know this a newbie question, but I guess I just don't know what to do with this .zip file. 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Installing Trac on Leopard Server
> > I'm having a tough time getting Trac to work with Apache on OS X 10.5 > Server. The error I get is "Access Forbidden 403" > > tracd works fine. > > I followed the wiki instructions and installed everything. > > And I chown'd the trac folder (-R www) Ps.. Apache is run as user '_www' on OS X... David Starr Technical Director Trapeze Animation [EMAIL PROTECTED] 902-370-3007 --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Installing Trac on Leopard Server
I use Trac on Leopard server with digest auth, Open Directory users and mod_wsgi.. Just create the realms in (Web) Server Admin... Assign permissions, and omit any AuthUserFile lines from your site conf. Easy as pie, works great. Only minor annoyance is anytime I update the web configuration in Server Admin, It changes my 'DAV svn' location to 'DAV Off' ... Which I need to then fix manually and restart. Also I'm not using separate conf files... both locations (/trac and /svn) are in my '/etc/apache2/ sites/_443' SSL enabled site. After skimming over that TracOnLeopardServer article it seems much more complicated than my setup. David Starr Technical Director Trapeze Animation [EMAIL PROTECTED] 902-370-3007 On 15-Apr-08, at 5:22 PM, M. Beckley Roberts wrote: > > Thanks, Eirik. I'll give basic auth a try. > > Beckley > > On Apr 15, 2008, at 2:40 PM, Eirik Schwenke wrote: > >> >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> M. Beckley Roberts skrev 15-04-2008 19:25: >> | On Apr 15, 2008, at 1:13 PM, Emmanuel Blot wrote: >> | >> |>> I followed the wiki instructions and installed everything. >> |> ... >> |>>AuthuserFile /dev/null >> |> Is THIS line in the wiki instructions ? If so, some fixes are >> |> required... >> |> >> | yes it is. that line instructed to be in the section of >> | both httd-subversion.conf and httpd-trac.conf. >> | >> | http://trac.edgewall.org/wiki/TracOnLeopardServer >> | >> >> It looks like the wiki-instructions attempt to use mod_apple_auth, >> for >> authenticating against the standard ldap/kerberos backend provided >> by Leopard >> - -- I don't know why someone thought adding a dummy AuthUserFile to >> the config >> would help -- but then it seems that the mod_apple_auth module is >> very poorly >> documented. >> >> >> Sorry I can't be of more help, but as I don't have any Apple systems >> to test >> this on, I can't be sure what the best way to set up Apache with >> authentication >> through the built in user database is. >> >> Maybe one of the trac developers can be of more help. >> --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Installing Trac on Leopard Server
Thanks, Eirik. I'll give basic auth a try. Beckley On Apr 15, 2008, at 2:40 PM, Eirik Schwenke wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > M. Beckley Roberts skrev 15-04-2008 19:25: > | On Apr 15, 2008, at 1:13 PM, Emmanuel Blot wrote: > | > |>> I followed the wiki instructions and installed everything. > |> ... > |>>AuthuserFile /dev/null > |> Is THIS line in the wiki instructions ? If so, some fixes are > |> required... > |> > | yes it is. that line instructed to be in the section of > | both httd-subversion.conf and httpd-trac.conf. > | > | http://trac.edgewall.org/wiki/TracOnLeopardServer > | > > It looks like the wiki-instructions attempt to use mod_apple_auth, for > authenticating against the standard ldap/kerberos backend provided > by Leopard > - -- I don't know why someone thought adding a dummy AuthUserFile to > the config > would help -- but then it seems that the mod_apple_auth module is > very poorly > documented. > > You might have better luck using either just basic auth (See the > general > instructions) -- or try to use ldap: > > ~ http://www.macosxhints.com/article.php?story=20071024161139559 > > > If you're new to trac and/or apache -- I'd suggest following the > normal > instructions, using a passwd-file -- you might also have better luck > following > the article linked at the top of the wiki: > > ~ http://sonzea.com/articles/subversion-trac.html > > > Sorry I can't be of more help, but as I don't have any Apple systems > to test > this on, I can't be sure what the best way to set up Apache with > authentication > through the built in user database is. > > Maybe one of the trac developers can be of more help. > > Best regards, > > - -- > ~ .---. Eirik Schwenke <[EMAIL PROTECTED]> > ( 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.6 (GNU/Linux) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFIBPaWxUW7FIqjOSwRAvt3AJ9e8/3BZJzNHbYN8UKjMmI9YyIjYACfVKlQ > 44+qrwNuzdEOUFmHO1wZ6bw= > =GKxr > -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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Installing Trac on Leopard Server
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 M. Beckley Roberts skrev 15-04-2008 19:25: | On Apr 15, 2008, at 1:13 PM, Emmanuel Blot wrote: | |>> I followed the wiki instructions and installed everything. |> ... |>>AuthuserFile /dev/null |> Is THIS line in the wiki instructions ? If so, some fixes are |> required... |> | yes it is. that line instructed to be in the section of | both httd-subversion.conf and httpd-trac.conf. | | http://trac.edgewall.org/wiki/TracOnLeopardServer | It looks like the wiki-instructions attempt to use mod_apple_auth, for authenticating against the standard ldap/kerberos backend provided by Leopard - -- I don't know why someone thought adding a dummy AuthUserFile to the config would help -- but then it seems that the mod_apple_auth module is very poorly documented. You might have better luck using either just basic auth (See the general instructions) -- or try to use ldap: ~ http://www.macosxhints.com/article.php?story=20071024161139559 If you're new to trac and/or apache -- I'd suggest following the normal instructions, using a passwd-file -- you might also have better luck following the article linked at the top of the wiki: ~ http://sonzea.com/articles/subversion-trac.html Sorry I can't be of more help, but as I don't have any Apple systems to test this on, I can't be sure what the best way to set up Apache with authentication through the built in user database is. Maybe one of the trac developers can be of more help. Best regards, - -- ~ .---. Eirik Schwenke <[EMAIL PROTECTED]> ( 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.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFIBPaWxUW7FIqjOSwRAvt3AJ9e8/3BZJzNHbYN8UKjMmI9YyIjYACfVKlQ 44+qrwNuzdEOUFmHO1wZ6bw= =GKxr -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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Installing Trac on Leopard Server
yes it is. that line instructed to be in the section of both httd-subversion.conf and httpd-trac.conf. http://trac.edgewall.org/wiki/TracOnLeopardServer what might actually work then? thanks. Beckley On Apr 15, 2008, at 1:13 PM, Emmanuel Blot wrote: > >> I followed the wiki instructions and installed everything. > ... >>AuthuserFile /dev/null > > Is THIS line in the wiki instructions ? If so, some fixes are > required... > > > > --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Adding Users???
On Tue, Apr 15, 2008 at 5:58 AM, Raina <[EMAIL PROTECTED]> wrote: > No-One to Reply...Whats This Forum is all about??? Calm down--while there are plenty of people here who I'm sure are happy to help you, this is not your personal support service, and you can't always necessarily expect an immediate reply, particularly if you need lots of hand-holding. > On Apr 14, 7:48 pm, Axton <[EMAIL PROTECTED]> wrote: > > On Mon, Apr 14, 2008 at 2:18 AM, Raina <[EMAIL PROTECTED]> wrote: > > > > > I can see the Webadmin browsing page > athttp://trac.edgewall.org/browser/sandbox/webadmin > > > but how can I download it???I dont see any package downloading > > > option.Whenever I am clicking on Webadmin it simply opens new > > > hirarchial tree thats it.Pls Help > > > > http://trac.edgewall.org/wiki/TracPlugins Also, please refrain from top-posting, and please trim replies appropriately. The link you were given (http://trac.edgewall.org/wiki/TracPlugins) gives step by step instructions for installing Trac plugins in general. For information about the WebAdmin plugin in particular, see http://trac.edgewall.org/wiki/WebAdmin. Normally for Trac 0.10.4 (which I'm going to assume is what you're using) you would have to check out the WebAdmin plugin from SVN. But it seems that some kind soul has attached an egg for a recent version to that wiki page: http://trac.edgewall.org/attachment/wiki/WebAdmin/TracWebAdmin-0.1.2dev_r6060-py2.4.egg.zip Either way, if you use easy_install, you can easily install a package from an SVN repository. Again, see the TracPlugins wiki page for instructions on installing setuptools, which includes easy_install. Then follow the directions to install WebAdmin either from the repository, or from the egg linked to above. Erik --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Installing Trac on Leopard Server
> I followed the wiki instructions and installed everything. ... > AuthuserFile /dev/null Is THIS line in the wiki instructions ? If so, some fixes are required... --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: view a SVG file
Image macro produces a HTML tag. A SVG file is not an image from a HTML perspective, it is an XML document. In other words, it cannot be inserted into a HTML page within a tag. To insert a SVG "image" inside a HTML document, you need to use an HTML tag. You can have a look at the Graphviz plugin to see how to use SVG inside an object tag, for example. HTH, Manu On Tue, Apr 15, 2008 at 6:32 PM, JBrett <[EMAIL PROTECTED]> wrote: > > An image will not view when I use [[Image(file1.svg)]]. I have the > image attached to the page it I can view it in it's Original > Format. > > Any Suggestions? > > --J > > > > -- Manu --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: view a SVG file
This would be because svg files aren't images --Noah On Apr 15, 2008, at 12:32 PM, JBrett wrote: > > An image will not view when I use [[Image(file1.svg)]]. I have the > image attached to the page it I can view it in it's Original > Format. > > Any Suggestions? > > --J > > > > --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Installing Trac on Leopard Server
Hello everyone, I'm having a tough time getting Trac to work with Apache on OS X 10.5 Server. The error I get is "Access Forbidden 403" tracd works fine. I followed the wiki instructions and installed everything. And I chown'd the trac folder (-R www) Site path: /Users/subversion/trac httpd-trac.conf: ScriptAlias /trac /Users/subversion/trac/cgi-bin/trac.fcgi FastCgiConfig -initial-env TRAC_ENV=/Users/subversion/trac SetEnv TRAC_ENV "/Users/subversion/trac" AuthType Basic AuthName "SVN Repository" AuthuserFile /dev/null AuthBasicAuthoritative Off Require valid-user SSLRequireSSL AllowOverride None Options None Order allow,deny Allow from all Anybody have any insight on this. Thank you in advance. Beckley --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] view a SVG file
An image will not view when I use [[Image(file1.svg)]]. I have the image attached to the page it I can view it in it's Original Format. Any Suggestions? --J --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: i18n internationalization
Hi, On Apr 15, 11:58 am, Jeroen Ruigrok van der Werven <[EMAIL PROTECTED] nomine.org> wrote: > -On [20080415 16:41], tom ([EMAIL PROTECTED]) wrote: > > >I have progressed: localization (indeed specified by choosing the > >browser's local) is now working.. but only on the home page. (!). > > >Once a user logs in, Trac reverts back to English... any clue on why > >can this be happening? > > I think it is related to the code I added for the custom settings per user. > In the preferences section we now have the option to have the user select > their own preferred language. This is overruling the brower's language > setting. I think when when you hit reload on the frontpage it will most > likely also revert to English? If the user is not logged in, she can hit reload as many times as she wants and Trac keeps on respecting the browser's lang. setting. Coherently, if she's logged in, it always falls back to English. :) > If a user does not log in everything should stay at the language as specific > in the browser. Indeed. > I'll see if I can get a look at the code again tonight. Last time around we > were a bit stumped at why it was not updating on the fly. Thank you very much. We're using Trac in a context where many users (I'd say the vast majority) don't know English, so having it translated is a must for us. Thanks again, tom. > -- > Jeroen Ruigrok van der Werven / asmodai > イェルーン ラウフロック ヴァン デル ウェルヴェンhttp://www.in-nomine.org/|http://www.rangaku.org/ > All art is but imitation of Nature... --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] changes in files within Trac
Hi everyone! Is it possible to view within Trac which files are being currently locked in a repository? Is there any change of generating a report with Trac which gives me a complete list of files that are currently being locked in a SVN repository? Regards, -- Miguel Rentes Software Engineer ID/GR Address: Rua Eng. Frederico Ulrich apartado 3078 4471-907 Moreira da Maia - Portugal Phone: +351 22 940 20 00 (DDI: 22 940 33 88) Fax: +351 22 948 54 28 Email: [EMAIL PROTECTED] Disclaimer
[Trac] Re: i18n internationalization
-On [20080415 16:41], tom ([EMAIL PROTECTED]) wrote: >I have progressed: localization (indeed specified by choosing the >browser's local) is now working.. but only on the home page. (!). > >Once a user logs in, Trac reverts back to English... any clue on why >can this be happening? I think it is related to the code I added for the custom settings per user. In the preferences section we now have the option to have the user select their own preferred language. This is overruling the brower's language setting. I think when when you hit reload on the frontpage it will most likely also revert to English? If a user does not log in everything should stay at the language as specific in the browser. I'll see if I can get a look at the code again tonight. Last time around we were a bit stumped at why it was not updating on the fly. -- Jeroen Ruigrok van der Werven / asmodai イェルーン ラウフロック ヴァン デル ウェルヴェン http://www.in-nomine.org/ | http://www.rangaku.org/ All art is but imitation of Nature... --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: i18n internationalization
Hi Jeroen, thanks for replying. I have progressed: localization (indeed specified by choosing the browser's local) is now working.. but only on the home page. (!). Once a user logs in, Trac reverts back to English... any clue on why can this be happening? To have the localization running I followed the steps on http://trac.edgewall.org/wiki/TracL10N, (thus, compiling all .pos) but got stuck on this "only one page translated" issue. Thanks again, tom Jeroen Ruigrok van der Werven wrote: > -On [20080414 18:54], tom ([EMAIL PROTECTED]) wrote: > >I've checked out i18n version from the sandbox, and upgraded to it > >(deleted the previous version (0.11)'s code as the UPGRADE file > >suggested), but I am not able to make internationalization work. > > How are you trying to make it work? > Right now you need to use the language option of your browser. The control > panel does not work yet to switch on the fly, sorry if that is not clear. > > >Babel is installed and the .po are compiled... > > So the egg has the .mo files inside it? > > -- > Jeroen Ruigrok van der Werven / asmodai > イェルーン ラウフロック ヴァン デル ウェルヴェン > http://www.in-nomine.org/ | http://www.rangaku.org/ > Who looks under the surface does so at his own risk... --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Adding Users???
Can you tel me exact what steps I need to follow.I am Linux Newbie and Trac too.. Pls send me the exact link to download webadmin On Apr 14, 7:48 pm, Axton <[EMAIL PROTECTED]> wrote: > On Mon, Apr 14, 2008 at 2:18 AM, Raina <[EMAIL PROTECTED]> wrote: > > > I can see the Webadmin browsing page > > athttp://trac.edgewall.org/browser/sandbox/webadmin > > but how can I download it???I dont see any package downloading > > option.Whenever I am clicking on Webadmin it simply opens new > > hirarchial tree thats it.Pls Help > > http://trac.edgewall.org/wiki/TracPlugins > > Axton Grams --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---
[Trac] Re: Adding Users???
No-One to Reply...Whats This Forum is all about??? On Apr 14, 7:48 pm, Axton <[EMAIL PROTECTED]> wrote: > On Mon, Apr 14, 2008 at 2:18 AM, Raina <[EMAIL PROTECTED]> wrote: > > > I can see the Webadmin browsing page > > athttp://trac.edgewall.org/browser/sandbox/webadmin > > but how can I download it???I dont see any package downloading > > option.Whenever I am clicking on Webadmin it simply opens new > > hirarchial tree thats it.Pls Help > > http://trac.edgewall.org/wiki/TracPlugins > > Axton Grams --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~--~~~~--~~--~--~---