[Trac] Re: TracListTickets 1.2

2010-03-03 Thread Quique76
lol :D
http://sourceforge.net/projects/traclisttickets/
This is the website


On Mar 3, 8:44 am, Quique76 kike...@gmail.com wrote:
 I have released the 1.2 TracListTickets.
 A python script to load tickets from several trac projects.

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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.



Re: [Trac] Warning: Can't synchronize with the repository...

2010-03-03 Thread Matt Caron


Mike wrote:
 I get this error when accessing a Trac project:
 
 Warning:  Can't synchronize with the repository (Unsupported version
 control system svn: libsvn_swig_py-1.so.0: cannot open shared
 object file: No such file or directory ). Look in the Trac log for
 more information.

locate libsvn_swig_py-1.so.0

Does it find anything? If not, you have an unmet dependency and need to 
install whatever package provides that shared library. (I'm going to 
take a guess that it's python-subversion on debianish distros, just by 
doing a quicj apt-cache search libsvn on Ubuntu)...

-- 
SIXNET - Solutions for Your Industrial Networking Challenges
331 Ushers Road, Ballston Lake, NY 12019
Tel: 1.518.877.5173, Fax: 1.518.877.8346
www.sixnet.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-us...@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] how to show nickname with openid

2010-03-03 Thread Bill
I use both accountmanager   openid , but when I login with openid to
modify wiki, the author shows the url, not more human readable
nickname?

Anybody know how to solve it?

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-us...@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] Removing old listbox values from the New Ticket listbox ?

2010-03-03 Thread henke
Hi,

I have updated by list of priority values in Trac. I removed the
default ones and created some new ones. However, the old default
values can still selected in the New Tickets page.

Is there any way to remove this?
Do I have to open the database and do it under the hood?

Regards
Henrik

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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: Ordering custom report by milestone due date. Please help!

2010-03-03 Thread MC
You are ordering by *milestone* filed in *ticket* database, which is a
text field - the name of the milestone.

Details about each milestone are tracked in the *milestone* table, so
you have to join that table in your query, if you want due date.

Here's my report for active tickets per milestone:


  SELECT p.value AS __color__,
 (CASE t.milestone WHEN NULL THEN 'Unclassiffied'
 WHEN '' THEN 'Without a Milestone'
 ELSE concat(milestone, ' Release, due
',from_unixtime(m.due)) END) AS __group__,
 t.id AS ticket, t.summary, t.component, t.version as
_version, t.type AS type, priority,
 (CASE t.status WHEN 'assigned' THEN concat(owner, ' *') ELSE
owner END) AS owner,
 t.time AS created,
 t.changetime AS modified,
 t.description AS _description,
 t.reporter AS _reporter
FROM ticket t
LEFT OUTER JOIN enum p ON p.name = t.priority AND p.type =
'priority'
LEFT OUTER JOIN milestone m on t.milestone=m.name
WHERE status IN ('new', 'assigned', 'reopened')
ORDER BY (t.milestone IS NULL),m.due, p.value, t.type, time


On Mar 2, 2:47 pm, bbew wrw...@gmail.com wrote:
 I have been banging on this report trying to get it to get it to order
 by milestone due date.  Any help would be appreciated!

 SELECT p.value AS __color__,
    milestone||' Release' AS __group__,
    id AS ticket, summary, priority, owner, component, reporter, t.type
 AS type,
    time AS created,
    changetime AS _changetime, description AS _description,
    reporter AS _reporter

   FROM ticket t, enum p
   WHERE status  'closed' AND milestone  ''AND p.name = t.priority
 AND p.type = 'priority'
   ORDER BYmilestone, p.value, severity, time

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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: Use timestamp from when ticket was closed in TicketQuery macro

2010-03-03 Thread MC
Another way of doing is to add a closedate field to the ticket table
and put a trigger on the ticket_change table.
Then you can get all your info from the ticket table.


On Mar 1, 3:27 pm, RjOllos ry...@physiosonics.com wrote:
 On Mar 1, 8:48 am, MC marjet...@yahoo.com wrote:

  The information is stored in ticket_change table:

  select * from ticket_change where newvalue='closed' order by timestamp
  desc limit 0,5;

  Does this help?

 Yes, thank you.  I'll give it a try ... the only catch is that I can't
 see a way to do this with the TicketQuery macro, so I guess I'll have
 to use the SqlQuery macro.

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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.



Re: [Trac] how to show nickname with openid

2010-03-03 Thread Matt Caron
Bill wrote:
 I use both accountmanager   openid , but when I login with openid to
 modify wiki, the author shows the url, not more human readable
 nickname?
 
 Anybody know how to solve it?

We ended up patching Trac to use whatever the user puts in for a Full 
Name instead of the username (if full name is set).

http://trac.edgewall.org/ticket/7339
-- 
SIXNET - Solutions for Your Industrial Networking Challenges
331 Ushers Road, Ballston Lake, NY 12019
Tel: 1.518.877.5173, Fax: 1.518.877.8346
www.sixnet.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-us...@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.



Re: [Trac] Re: Warning: Can't synchronize with the repository...

2010-03-03 Thread Matt Caron


Mike wrote:
 I reconfigured, made, and installed subversion 1.6.9.

I'm sorry you had to do that. (Too many years of being a sysadmin before 
package management). What distro are you using?

 What is the reason that /usr/local/lib/ isn't being checked? Thanks
 for you response.

First, let's make sure it isn't being checked. As root, run:

ldconfig -v

It will show all the directories and files checked.

- If /usr/local/lib DOES NOT show up, you will need to add it. This is 
either in /etc/ld.so.conf, or by adding a file in /etc/ld.so.conf.d 
(depending on what your distro does).

- If /usr/local/lib DOES show up, then something else is wrong. (But my 
guess is that /usr/local/lib is not included by default, so unless that 
proves to not be the case, I won't waste the brainpower).
-- 
SIXNET - Solutions for Your Industrial Networking Challenges
331 Ushers Road, Ballston Lake, NY 12019
Tel: 1.518.877.5173, Fax: 1.518.877.8346
www.sixnet.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-us...@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.



RE: [Trac] customise header logo of *all* trac sites

2010-03-03 Thread Noah Kantrowitz
In 0.11 (I think, might have 0.10 even) we changed global config to be
explicit instead of implicit. You need to add:
[inherit]
file = /path/to/global/trac.ini

to every env.

--Noah

 -Original Message-
 From: trac-users@googlegroups.com [mailto:trac-us...@googlegroups.com]
 On Behalf Of MOLOKO
 Sent: Tuesday, March 02, 2010 5:40 AM
 To: Trac Users
 Subject: [Trac] customise header logo of *all* trac sites
 
 Hi all
 
 I have a LOT of trac sites (300+) running on my server that I'd like to
 customise to change the header logo and stylesheet.
 
 I had this set up OK before in 0.9 but since upgrading to 0.11 it's
 reverted back to the default logo and stylesheet, and I cannot for the
 life of me work out how to change it globally.
 
 I've got a shared trac.ini which all my trac sites are inheriting. In
 there, I've got the following:
 
 [header_logo]
 alt = company name
 height = -1
 link = http://www.companyname.com
 src = common/trac_banner.png
 width = -1
 
 But where exactly is common/trac_banner.png being pulled from?
 
 There's a copy in /usr/lib/python2.5/site-packages/Trac-0.11.6-
 py2.5.egg/trac/htdocs/ but presumably I don't modify that one.
 
 I tried copying these files elsewhere, replacing trac_banner.png with
 my own version and setting htdocs_location in the global trac.ini but
 then the sites just stopped rendering styles (and the logo was still
 the default one). Not sure why as the paths looked corrected but when I
 tried to load the stylesheet according to the path I got this
 error:
 TracError: IOError: [Errno 2] No such file or directory: '/www/trac/
 htdocs/VERSION'
 
 Any help much appreciated!
 
 --
 You received this message because you are subscribed to the Google
 Groups Trac Users group.
 To post to this group, send email to trac-us...@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.


-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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.



Re: [Trac] Removing old listbox values from the New Ticket listbox ?

2010-03-03 Thread Remy Blank
henke wrote:
 Is there any way to remove this?

Restarting your web server should be enough.

-- Remy



signature.asc
Description: OpenPGP digital signature


[Trac] Re: Warning: Can't synchronize with the repository...

2010-03-03 Thread Mike
The distro is CentOS 5. Here's uname -a

Linux host.domain.lan 2.6.18-92.el5 #1 SMP Tue Jun 10 18:51:06 EDT
2008 x86_64 x86_64 x86_64 GNU/Linux

ldconfig -v shows /usr/local/lib

/usr/local/lib:
libkdb5.so.4 - libkdb5.so.4.0
libpng12.so.0 - libpng12.so.0.32.0
libkrb5support.so.0 - libkrb5support.so.0.1
libpspell.so.15 - libpspell.so.15.1.4
libdes425.so.3 - libdes425.so.3.0
libfontconfig.so.1 - libfontconfig.so.1.3.0
libsvn_subr-1.so.0 - libsvn_subr-1.so.0.0.0
libgd.so.2 - libgd.so.2.0.0
libexslt.so.0 - libexslt.so.0.8.13
libsvn_diff-1.so.0 - libsvn_diff-1.so.0.0.0
libsvn_ra-1.so.0 - libsvn_ra-1.so.0.0.0
libjpeg.so.62 - libjpeg.so.62.0.0
libcom_err.so.3 - libcom_err.so.3.0
libldap-2.4.so.2 - libldap.so
libsvn_swig_py-1.so.0 - libsvn_swig_py-1.so.0.0.0
libgssapi_krb5.so.2 - libgssapi_krb5.so.2.2
libkadm5srv.so.5 - libkadm5srv.so.5.1
libxslt.so.1 - libxslt.so.1.1.24
libfreetype.so.6 - libfreetype.so.6.3.18
libsvn_fs_fs-1.so.0 - libsvn_fs_fs-1.so.0.0.0
libkrb4.so.2 - libkrb4.so.2.0
libsvn_ra_local-1.so.0 - libsvn_ra_local-1.so.0.0.0
libsvn_fs_util-1.so.0 - libsvn_fs_util-1.so.0.0.0
libkdb_ldap.so.1 - libkdb_ldap.so.1.0
libkadm5clnt.so.5 - libkadm5clnt.so.5.1
libsvn_ra_svn-1.so.0 - libsvn_ra_svn-1.so.0.0.0
libsvn_delta-1.so.0 - libsvn_delta-1.so.0.0.0
libsvn_ra_neon-1.so.0 - libsvn_ra_neon-1.so.0.0.0
libkrb5.so.3 - libkrb5.so.3.3
libldap_r-2.4.so.2 - libldap_r.so
libz.so.1 - libz.so.1.2.3
libxml2.so.2 - libxml2.so.2.7.1
libaspell.so.15 - libaspell.so.15.1.4
libsvn_fs-1.so.0 - libsvn_fs-1.so.0.0.0
liblber-2.4.so.2 - liblber.so
libsvn_repos-1.so.0 - libsvn_repos-1.so.0.0.0
libsvn_wc-1.so.0 - libsvn_wc-1.so.0.0.0
libpng.so.3 - libpng.so.3.32.0
libsvn_client-1.so.0 - libsvn_client-1.so.0.0.0
libk5crypto.so.3 - libk5crypto.so.3.1
libgssrpc.so.4 - libgssrpc.so.4.0

Here's the contents of /etc/ld.so.conf

/usr/local/lib
/usr/local/apache2/lib
/usr/lib/python2.4/site-packages/libsvn
/usr/local/lib/mysql
include ld.so.conf.d/*.conf

Thanks again, Matt.

On Mar 3, 10:29 am, Matt Caron matt.ca...@sixnet.com wrote:
 Mike wrote:
  I reconfigured, made, and installed subversion 1.6.9.

 I'm sorry you had to do that. (Too many years of being a sysadmin before
 package management). What distro are you using?

  What is the reason that /usr/local/lib/ isn't being checked? Thanks
  for you response.

 First, let's make sure it isn't being checked. As root, run:

 ldconfig -v

 It will show all the directories and files checked.

 - If /usr/local/lib DOES NOT show up, you will need to add it. This is
 either in /etc/ld.so.conf, or by adding a file in /etc/ld.so.conf.d
 (depending on what your distro does).

 - If /usr/local/lib DOES show up, then something else is wrong. (But my
 guess is that /usr/local/lib is not included by default, so unless that
 proves to not be the case, I won't waste the brainpower).
 --
 SIXNET - Solutions for Your Industrial Networking Challenges
 331 Ushers Road, Ballston Lake, NY 12019
 Tel: 1.518.877.5173, Fax: 1.518.877.8346www.sixnet.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-us...@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.



RE: [Trac] Migrate / Move Trac Wiki pages

2010-03-03 Thread Noah Kantrowitz
Copy the old env to the new box and look at using the datamover plugin. Does
that even work anymore?

--Noah

 -Original Message-
 From: trac-users@googlegroups.com [mailto:trac-us...@googlegroups.com]
 On Behalf Of Luke Ryder
 Sent: Wednesday, March 03, 2010 3:11 AM
 To: Trac Users
 Subject: [Trac] Migrate / Move Trac Wiki pages
 
 Hello all,
 
 I have just moved Subversion  Trac from an old server to a new server.
 
 But some of the Trac Projects have their own wiki pages.  Is there an
 easy way to move the wiki pages across to the new server without
 manually creating new pages?
 
 --
 You received this message because you are subscribed to the Google
 Groups Trac Users group.
 To post to this group, send email to trac-us...@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.


-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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] ImportError: No module named trac.web

2010-03-03 Thread Rafael Trevisan
Hello, I'm new to python and never installed the trac before.

However I understand that is one of the best tools available today.

I'm having a problem with my installation.

I managed to install trac and create a project without any problems,
until I can run the test-drive (tracd), only when access via the
trac.cgi browser I get the message below.

Oops...

Trac detected an internal error: No module named trac.web

Traceback (most recent call last):
  File trac.cgi, line 31, in module
from trac.web import cgi_frontend
ImportError: No module named trac.web

Even Google and saw that has some references to the path of projenv
already trac.cgi and checked the path is correct, I do not know what
to do.

Can you help?

PS.: I'm using 0.11.6 version.

[]s,
Rafael Trevisan.

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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.



Re: [Trac] Migrate / Move Trac Wiki pages

2010-03-03 Thread Chris Mulligan
You can export and load with trac-admin.

On the old box... trac-admin /path/to/old/env wiki export
On the new box... trac-admin /path/to/new/env wiki load

On Wed, Mar 3, 2010 at 2:25 PM, Noah Kantrowitz n...@coderanger.net wrote:
 Copy the old env to the new box and look at using the datamover plugin. Does
 that even work anymore?

 --Noah

 -Original Message-
 From: trac-users@googlegroups.com [mailto:trac-us...@googlegroups.com]
 On Behalf Of Luke Ryder
 Sent: Wednesday, March 03, 2010 3:11 AM
 To: Trac Users
 Subject: [Trac] Migrate / Move Trac Wiki pages

 Hello all,

 I have just moved Subversion  Trac from an old server to a new server.

 But some of the Trac Projects have their own wiki pages.  Is there an
 easy way to move the wiki pages across to the new server without
 manually creating new pages?

 --
 You received this message because you are subscribed to the Google
 Groups Trac Users group.
 To post to this group, send email to trac-us...@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.


 --
 You received this message because you are subscribed to the Google Groups 
 Trac Users group.
 To post to this group, send email to trac-us...@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.



-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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.



Re: [Trac] how to show nickname with openid

2010-03-03 Thread Bill
I patch it to my install source .11.6  with something

 patch -p0 -i pathtopatch 

it seemed works fine, 

then I reinstall it by 

python setup.py install

all source code are compiled to the python lib .

but no effects till now, where did i go wrong? or it's the cache in
server, if so anyway to make it take effects quickly?

 On Wed, Mar 03, 2010 at 10:13:10AM -0500, Matt Caron wrote:
 Bill wrote:
  I use both accountmanager   openid , but when I login with openid to
  modify wiki, the author shows the url, not more human readable
  nickname?
 
  Anybody know how to solve it?
 
 We ended up patching Trac to use whatever the user puts in for a Full
 Name instead of the username (if full name is set).
 
 http://trac.edgewall.org/ticket/7339

-- 

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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: Warning: Can't synchronize with the repository...

2010-03-03 Thread Mike
Oh. New error message. :)

Unsupported version control system svn: /usr/local/lib/
libsvn_subr-1.so.0: undefined symbol: apr_memcache_add_server

So it looks like the library is being found now. Do you know if the
error that I'm getting now is related to the subversion build? Here's
my configure options:

./configure --disable-keychain --disable-mod-activation --with-apr=/
usr/local/apache2/bin/ --with-apr-util=/usr/local/apache2/bin/ --with-
apxs=/usr/local/apache2/bin/apxs --with-apache-libexecdir=/usr/local/
apache2/lib/ --with-sasl=/usr/lib/ --with-zlib=/usr/lib/ --without-
serf

It's getting there. I can feel it.

On Mar 3, 12:18 pm, Matt Caron matt.ca...@sixnet.com wrote:
          libsvn_ra_neon-1.so.0 - libsvn_ra_neon-1.so.0.0.0

 And here's the thing we're looking for...

 Have you tried it again since running ldconfig? And it still doesn't
 work? (Because if so, I'm a little stumped...)

 Can you use svn from the command line on that system without issue? Even
 just doing an svn co from the svn server on that machine to something in
 your homedir should be a reasonable test.
 --
 SIXNET - Solutions for Your Industrial Networking Challenges
 331 Ushers Road, Ballston Lake, NY 12019
 Tel: 1.518.877.5173, Fax: 1.518.877.8346www.sixnet.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-us...@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.



Re: [Trac] Re: TracListTickets 1.2

2010-03-03 Thread CM Lubinski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Why not place that on Trac-Hacks [1]?

CM Lubinski
http://cmlubinski.info

[1] http://trac-hacks.org/

Quique76 wrote:
 lol :D
 http://sourceforge.net/projects/traclisttickets/
 This is the website
 
 
 On Mar 3, 8:44 am, Quique76 kike...@gmail.com wrote:
 I have released the 1.2 TracListTickets.
 A python script to load tickets from several trac projects.
 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkuO3dMACgkQfzi1OiZiJLCZhgCdGr/Hqc1pazcXAcmw+LUrTSEQ
XZkAniHiy+Uiru44P6tgPDacjtRLu0zi
=wtYY
-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-us...@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.



Re: [Trac] how to show nickname with openid

2010-03-03 Thread Matt Caron
 but no effects till now, where did i go wrong? or it's the cache in
 server, if so anyway to make it take effects quickly?

Bounce apache.

-- 
SIXNET - Solutions for Your Industrial Networking Challenges
331 Ushers Road, Ballston Lake, NY 12019
Tel: 1.518.877.5173, Fax: 1.518.877.8346
www.sixnet.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-us...@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.



Re: [Trac] how to show nickname with openid

2010-03-03 Thread Bill
Thanks for all your kindly help, but I don't have enough
permission:) to do that, it's just a remote web space .

On Wed, Mar 03, 2010 at 05:18:50PM -0500, Olemis Lang wrote:
 On Wed, Mar 3, 2010 at 5:12 PM, Matt Caron matt.ca...@sixnet.com wrote:
  but no effects till now, where did i go wrong? or it's the cache in
  server, if so anyway to make it take effects quickly?
 
 
 Linux ...
 
 sudo kill -s HUP `pgrep apache2`
 sudo kill -s HUP `pgrep httpd`
 ...
 

-- 
   卷126_80 【待储光羲不至】王维 

重门朝已启,起坐听车声。要欲闻清佩,方将出户迎。 
晚钟鸣上苑,疏雨过春城。了自不相顾,临堂空复情。



-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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] Trac says it can't find mercurial repo - but it's there?

2010-03-03 Thread sfinnie

First up apologies for what's likely an elementary noob error.  I did search
the forum and didn't find an answer, so apologies also if it's a duplicate.

I have trac set up to use Mercurial for the repo.  All was working fine. For
various reasons I need to switch to a new repo in a new directory.  The new
repo seems fine: hg command line works as expected.  I updated trac.ini to
point to the new repo, however I now get the following error when I launch
the trac site:

Warning: Can't synchronize with the repository (/Users/scoot/projects/w4t
does not appear to contain a Mercurial repository.)

I've double checked trac.ini and the settings appear correct:

...
repository_dir = /Users/scoot/projects/w4t
repository_type = hg
...

Directory permissions, etc. all appear fine.  Similarly, if I revert
trac.ini to the old repo it works.

Would appreciate any suggestions.  Config is trac 0.11b2, plugin
TracMercurial-0.11.0.7-py2.5.egg, mac osx 10.6.

thx,
Scoot.


-- 
View this message in context: 
http://old.nabble.com/Trac-says-it-can%27t-find-mercurial-repo---but-it%27s-there--tp27773118p27773118.html
Sent from the Trac Users mailing list archive at Nabble.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-us...@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: Warning: Can't synchronize with the repository...

2010-03-03 Thread Mike
I think I found the problem.

ldd `which svn`|grep apr

libaprutil-1.so.0 = /usr/lib64/libaprutil-1.so.0 (0x2b99b9885000)
libapr-1.so.0 = /usr/lib64/libapr-1.so.0 (0x2b99b9aa3000)

Problem is I'm specifying which apr I want to use to the configure
script. I'm only using the path to the binaries though. Should it be a
full path with binary name included?

On Mar 3, 1:56 pm, Mike swiz...@gmail.com wrote:
 Oh. New error message. :)

 Unsupported version control system svn: /usr/local/lib/
 libsvn_subr-1.so.0: undefined symbol: apr_memcache_add_server

 So it looks like the library is being found now. Do you know if the
 error that I'm getting now is related to the subversion build? Here's
 my configure options:

 ./configure --disable-keychain --disable-mod-activation --with-apr=/
 usr/local/apache2/bin/ --with-apr-util=/usr/local/apache2/bin/ --with-
 apxs=/usr/local/apache2/bin/apxs --with-apache-libexecdir=/usr/local/
 apache2/lib/ --with-sasl=/usr/lib/ --with-zlib=/usr/lib/ --without-
 serf

 It's getting there. I can feel it.

 On Mar 3, 12:18 pm, Matt Caron matt.ca...@sixnet.com wrote:

           libsvn_ra_neon-1.so.0 - libsvn_ra_neon-1.so.0.0.0

  And here's the thing we're looking for...

  Have you tried it again since running ldconfig? And it still doesn't
  work? (Because if so, I'm a little stumped...)

  Can you use svn from the command line on that system without issue? Even
  just doing an svn co from the svn server on that machine to something in
  your homedir should be a reasonable test.
  --
  SIXNET - Solutions for Your Industrial Networking Challenges
  331 Ushers Road, Ballston Lake, NY 12019
  Tel: 1.518.877.5173, Fax: 1.518.877.8346www.sixnet.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-us...@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] Start with tickets instead of wiki

2010-03-03 Thread Jason
Hi,

I'm running Trac 0.11.7rc1 under Windows Server 2003, Apache 2.2 with
mod_python. I'd like to know whether it's possible to configure Trac
to start with the tickets page instead of the wiki when users access
the Trac base URL (/trac).

Also, I've removed wiki from the [trac]/mainnav config key, but it
still shows up in the navigation bar. Is there a way to just disable
the wiki?

Cheers,
Jason

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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] Can Trac + SSPI forget authentication?

2010-03-03 Thread Jason
Using Trac 0.11.7rc1 on Windows Server 2003, Apache 2.2, mod_python
and mod_auth_sspi. The authentication works great, except that I would
like users to be able to log out and log back in as a different user
without needing to close their browser or change accounts. However
whenever I logout and click the login link again, I'm automatically
logged back in as I was previously, with no username or password
request.

Is it possible to configure Trac to do this?

The Trac part of httpd.conf is:

Location /trac
SetHandler mod_python
PythonInterpreter main_interpreter
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv E:\Path\To\Trac
PythonOption TracUriRoot /trac
/Location

Location /trac/login
AuthType SSPI
AuthName Trac project management website @ The Server
SSPIAuth On
SSPIAuthoritative On
SSPIDomain OURDOMAIN
SSPIOfferBasic On
Require valid-user
/Location

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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.



RE: [Trac] Can Trac + SSPI forget authentication?

2010-03-03 Thread Prestel, John D.
The problem is with basic HTTP authentication and your browser, NOT with
Trac.


Ticket 8027 addresses exactly your question:
http://trac.edgewall.org/ticket/8027

This article explains more about the problem:
http://www.artima.com/weblogs/viewpost.jsp?thread=155252



-Original Message-
From: trac-users@googlegroups.com [mailto:trac-us...@googlegroups.com]
On Behalf Of Jason
Sent: Wednesday, March 03, 2010 9:04 PM
To: Trac Users
Subject: [Trac] Can Trac + SSPI forget authentication?

Using Trac 0.11.7rc1 on Windows Server 2003, Apache 2.2, mod_python
and mod_auth_sspi. The authentication works great, except that I would
like users to be able to log out and log back in as a different user
without needing to close their browser or change accounts. However
whenever I logout and click the login link again, I'm automatically
logged back in as I was previously, with no username or password
request.

Is it possible to configure Trac to do this?

The Trac part of httpd.conf is:

Location /trac
SetHandler mod_python
PythonInterpreter main_interpreter
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv E:\Path\To\Trac
PythonOption TracUriRoot /trac
/Location

Location /trac/login
AuthType SSPI
AuthName Trac project management website @ The Server
SSPIAuth On
SSPIAuthoritative On
SSPIDomain OURDOMAIN
SSPIOfferBasic On
Require valid-user
/Location

-- 
You received this message because you are subscribed to the Google
Groups Trac Users group.
To post to this group, send email to trac-us...@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.

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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.



RE: [Trac] Trac says it can't find mercurial repo - but it's there?

2010-03-03 Thread Cooke, Mark
 First up apologies for what's likely an elementary noob
 error.  I did search the forum and didn't find an answer,
 so apologies also if it's a duplicate.
 
Ditto for my answer...

 I have trac set up to use Mercurial for the repo.  All was 
 working fine. For various reasons I need to switch to a new
 repo in a new directory.  The new repo seems fine: hg command
 line works as expected.  I updated trac.ini to point to the
 new repo, however I now get the following error when I launch
 the trac site:
 
 Warning: Can't synchronize with the repository 
 (/Users/scoot/projects/w4t
 does not appear to contain a Mercurial repository.)
 
Did you run a trac-admin env resync operation to tell trac to
force-refresh it's repo info?

~ mark c

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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: TracListTickets 1.2

2010-03-03 Thread Quique76
Sorry, but I don't know this page ;)
I try to placed it.

On Mar 3, 11:08 pm, CM Lubinski cmc333...@gmail.com wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Why not place that on Trac-Hacks [1]?

 CM Lubinskihttp://cmlubinski.info

 [1]http://trac-hacks.org/

 Quique76 wrote:
  lol :D
 http://sourceforge.net/projects/traclisttickets/
  This is the website

  On Mar 3, 8:44 am, Quique76 kike...@gmail.com wrote:
  I have released the 1.2 TracListTickets.
  A python script to load tickets from several trac projects.

 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.9 (GNU/Linux)
 Comment: Using GnuPG with Mozilla -http://enigmail.mozdev.org

 iEYEARECAAYFAkuO3dMACgkQfzi1OiZiJLCZhgCdGr/Hqc1pazcXAcmw+LUrTSEQ
 XZkAniHiy+Uiru44P6tgPDacjtRLu0zi
 =wtYY
 -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-us...@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.



Re: [Trac] Trac does not send verification emails.

2010-03-03 Thread Michael Renzmann
Hi.

 How can I get this to work?

Is smtp_enabled set to True in section [notification] in your trac.ini?

Bye, Mike

-- 
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-us...@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.