Re: [Trac] Changing a user's name

2010-04-19 Thread Olemis Lang
On Fri, Apr 16, 2010 at 2:45 PM, Danny Sauer trac-us...@dannysauer.com wrote:
 On 04/08/2010 08:57 AM, Roger Oberholtzer wrote:
  On Thu, 2010-04-08 at 08:20 -0400, Olemis Lang wrote:
  There is a previous discussion about this subject
  AFAICR somebody there mentioned a script that might be helpful for you.
 
  I will have to search the google archives for the script. Any idea when
  it was discussed?
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Sorry for not responding sooner - I wasn't paying attention. :)


Nevermind, thnx for the pointer.

 The username change was last discussed in January 2010, in a thread
 entitled changing usernames  Doruk Fisek included a link to a SQLite
 script he wrote to change the usernames.  He wrote:

 - ---
 I have a function here that returns such a query:

 http://svn.linux.org.tr/uyeyazilimi/playground/doruk.fisek/trac_login_change.inc.php

 Though (as it states in the file), it doesn't change the cc fields
 (yet).
 - ---


I also found this script that k0s [1]_ is leaving behind. Probably
somebody might want to adopt it ...

.. [1] RenameTracUsersScript migrate the Trac DB to respect a user name change
(http://trac-hacks.org/wiki/RenameTracUsersScript)

-- 
Regards,

Olemis.

Blog ES: http://simelo-es.blogspot.com/
Blog EN: http://simelo-en.blogspot.com/

Featured article:

-- 
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=0.11.7 Debian squeeze install

2010-04-19 Thread Olemis Lang
Hello , I am starting to upgrade Trac to use 0.11.7 . I do it this way

{{{
#!sh

$ sudo apt-get install -t squeeze trac
}}}

I previously installed python2.6 (from squeeze too ;o) and I noticed
that apt was using that interpreter rather than 2.5 in order to
perform the install. So I'm curious

Q:
  - What could I do so that apt will use python2.5 ?

Besides I have noticed that 0.11.7 is slower than usual (0.11.1) using Fast CGI

Q:
  - In general, what could I do to profile it and improve
 its performance ? Anybody has previous experience ?

Thnx in advance !

-- 
Regards,

Olemis.

Blog ES: http://simelo-es.blogspot.com/
Blog EN: http://simelo-en.blogspot.com/

Featured article:
On adding AMF (RPC) support for Trac -
http://feedproxy.google.com/~r/simelo-en/~3/RDv-qDkEK_w/on-adding-amf-support-trac.html

-- 
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=0.11.7 Debian squeeze install

2010-04-19 Thread W. Martin Borgert

Quoting Olemis Lang ole...@gmail.com:

I previously installed python2.6 (from squeeze too ;o) and I noticed
that apt was using that interpreter rather than 2.5 in order to
perform the install.


Are you sure? Default Python in Debian squeeze is still 2.5.5.
Debian will change to Python 2.6 very soon, however.

If you happen to live in the future, please pass me the
lottery numbers of next week in private mail. :~)

--
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: Trac=0.11.7 Debian squeeze install

2010-04-19 Thread Olemis Lang
On Mon, Apr 19, 2010 at 8:14 AM, Olemis Lang ole...@gmail.com wrote:
 Hello , I am starting to upgrade Trac to use 0.11.7 . I do it this way

 {{{
 #!sh

 $ sudo apt-get install -t squeeze trac
 }}}

 I previously installed python2.6 (from squeeze too ;o) and I noticed
 that apt was using that interpreter rather than 2.5 in order to
 perform the install. So I'm curious

 Q:
  - What could I do so that apt will use python2.5 ?


In addition, I am installing trac-bitten (squeeze) and I don't see it
listed in Trac admin plugin page.

Q:
  - What should I do in this case ? I thought it would
be available OOTB

Thnx !

Featured article:
On adding AMF (RPC) support for Trac -
http://feedproxy.google.com/~r/simelo-en/~3/RDv-qDkEK_w/on-adding-amf-support-trac.html

-- 
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=0.11.7 Debian squeeze install

2010-04-19 Thread Christian Boos

Hello Olemis,

On 4/19/2010 3:14 PM, Olemis Lang wrote:

... Besides I have noticed that 0.11.7 is slower than usual (0.11.1) using Fast 
CGI
   


We're not aware of any performance degradation between 0.11.1 and 
0.11.7, as we tried to only introduce performance improvements... 
However there's a long way between 0.11.1 and 0.11.7 (around 460 
changesets), so maybe you could try some intermediate releases in order 
to identify the version which introduced a regression. You can find all 
the former releases in http://ftp.edgewall.org/pub/trac/. You could also 
directly install previous versions from a checkout. This will give you 
the advantage of being able to bisect to the precise changeset which 
introduced the regression. That would be a very valuable information for 
us, along with some timings and a more precise description of the 
problem, if possible.



Q:
   - In general, what could I do to profile it and improve
  its performance ? Anybody has previous experience ?
   


Please read http://trac.edgewall.org/wiki/TracPerformance for an 
overview of the different factors that can impact performance. Besides, 
there are some ideas about profiling you can get from reading 
http://trac.edgewall.org/wiki/TracDev/Performance#Profiling, but there's 
no convenient way to do this for now.


-- Christian

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

2010-04-19 Thread Olemis Lang
On Mon, Apr 19, 2010 at 9:03 AM, W. Martin Borgert deba...@debian.org wrote:
 Quoting Olemis Lang ole...@gmail.com:

 I previously installed python2.6 (from squeeze too ;o) and I noticed
 that apt was using that interpreter rather than 2.5 in order to
 perform the install.

 Are you sure?

I trust the messages outputted by apt-get, AFAICR something like
«Using python version 2.6 but not specified in XXX . Is package
information correct ?» (to be more precise I need to uninstall and
reinstall , and that's something I don't think is gonna happen soon
:-/ )

 Default Python in Debian squeeze is still 2.5.5.

that's what it says ;o)

 Debian will change to Python 2.6 very soon, however.


... but I want to stay with 2.5 , that's why I ask

;o)

 If you happen to live in the future, please pass me the
 lottery numbers of next week in private mail. :~)


There's no such thing called lottery here in heaven ... :P

-- 
Regards,

Olemis.

Blog ES: http://simelo-es.blogspot.com/
Blog EN: http://simelo-en.blogspot.com/

Featured article:
On adding AMF (RPC) support for Trac -
http://feedproxy.google.com/~r/simelo-en/~3/RDv-qDkEK_w/on-adding-amf-support-trac.html

-- 
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=0.11.7 Debian squeeze install

2010-04-19 Thread Olemis Lang
On Mon, Apr 19, 2010 at 10:45 AM, Christian Boos cb...@neuf.fr wrote:
 Hello Olemis,

 On 4/19/2010 3:14 PM, Olemis Lang wrote:

 ... Besides I have noticed that 0.11.7 is slower than usual (0.11.1) using
 Fast CGI

[...]
 Q:
   - In general, what could I do to profile it and improve
      its performance ? Anybody has previous experience ?


 Please read http://trac.edgewall.org/wiki/TracPerformance for an overview of
 the different factors that can impact performance. Besides, there are some
 ideas about profiling you can get from reading
 http://trac.edgewall.org/wiki/TracDev/Performance#Profiling, but there's no
 convenient way to do this for now.


Good start. Thnx for the pointers !

-- 
Regards,

Olemis.

Blog ES: http://simelo-es.blogspot.com/
Blog EN: http://simelo-en.blogspot.com/

Featured article:
On adding AMF (RPC) support for Trac -
http://feedproxy.google.com/~r/simelo-en/~3/RDv-qDkEK_w/on-adding-amf-support-trac.html

-- 
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.