[Trac] Re: How do you handle big size tickets ?

2008-01-15 Thread Noah Kantrowitz
이우상[기술연구소] wrote:
 Hi,
  
 When a user created a ticket that could take long time,
 how do you handle it ?
 Devide into selveral child tickets? 
 Then how do you keep the relationship between those tickets?
   

MasterTickets plugin provides support for dependencies.

--Noah



signature.asc
Description: OpenPGP digital signature


[Trac] Re: Trac performance optimization

2008-01-15 Thread Doug Douglass
Good to know as we'll be upgrading soon. Thanks!

On Jan 14, 2008 6:17 PM, Alec Thomas [EMAIL PROTECTED] wrote:


 Since r6395 this can now be automated:

  trac-admin staticcopy dest

 If anybody is running 0.11, please test.

 On 15/01/2008, Doug Douglass [EMAIL PROTECTED] wrote:
  J.R.,
 
  The one optimization that made the single biggest difference for us
 (Trac
  0.9.5, sqlite) was copying all the template resources (CSS, JS, images,
 etc)
  into a location that is served directly by Apache. Update your
 installations
  trac.ini htdocs_location setting accordingly and enjoy the boost!
 
  HTH,
  Doug
 
  P.S. Not to start a flame war, but sqlite is quite performant. It's
 weakness
  appears to be more on the concurrency front, but as an embedded db I
 suppose
  it could be argued that this is by design. I'm not affiliated with
 sqlite,
  I've just used it on several different projects ;)
 
 
  On Jan 10, 2008 7:02 AM, Vivi [EMAIL PROTECTED] wrote:
  
   Hello,
  
   I have the same surrounding that you and also I am having performance
   problems. To carry through an update of screen, he takes in average 3
   minutes more than. Already I made some searches in the InterNet and
   not meeting solution for the problem.
  
   Good luck in this fight.
  
  
  
  
   On 10 jan, 10:29, Jevgenijs Rogovs [EMAIL PROTECTED]  wrote:
Hello everyone,
   
I am running Trac 0.10.4 on RH Enterprise Release 3 (kernel 2.4.20-8
 )
  with
Apache HTTPD 2.0.54, Python 2.5.1, mod_python 3.3.1. All debug stuff
 and
logging is off, python/mod_python are built with shared libraries.
  Database
backend is SQLite.
   
Is there anything I can do to improve overall performance of Trac?
 Any
ideas?
   
P.S. I do understand that the most common issue in client-server
 system
performance is network latency; nevertheless, I'd like to be sure
 that
  my
server-side is top notch.
   
With best regards,
J.R.

  
 


 --
 Evolution: Taking care of those too stupid to take care of themselves.

 


--~--~-~--~~~---~--~~
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: highlight vs. pygments

2008-01-15 Thread Alex da Franca


Am 15.01.2008 um 12:25 schrieb Emmanuel Blot:


 I was asking for a starting point or get a hint, whether someone
 already did something like that.
 I have a few very long scripts, which take rather long to render.

 Ok. Have a look at trac/mimeview/enscript.py and trac/mimeview/ 
 silvercity.py
 It should give you the entry points you're looking for to add
 highlight support for Trac.

thanks, that helps.
Doesn't look too complicated at the first glance.
Too bad I haven't enough time on hands to start right away. :-(
Anyway many thanks for taking the time to answer.

--~--~-~--~~~---~--~~
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: Trac performance optimization

2008-01-15 Thread Jason Winnebeck

Will this technique work if running a multi-project environment? I saw there 
that the configuration and trac-admin use referenced a specific trac instance.

Jason

-Original Message-
From: Lars Immisch

Hi,

 Since r6395 this can now be automated:

   trac-admin staticcopy dest

 If anybody is running 0.11, please test.

Nice. I tested it, and it did work.

In httpd.conf, I have:

Alias /projects/foo-static /var/www/trac/foo/static/common

In trac.ini, I have:

htdocs_location = /projects/foo-static

I generated the static content with:

sudo trac-admin /var/trac/foo staticcopy /var/trac/foo/static

I was a bit surprised that I needed *common* appended to the directory
name. I was expecting that trac would take care of it.

- Lars



--~--~-~--~~~---~--~~
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: Trac performance optimization

2008-01-15 Thread C. Daniel Chase

On 01/15/2008 12:14 PM, Jason Winnebeck spoke thusly:
 Will this technique work if running a multi-project environment? I saw there 
 that the configuration and trac-admin use referenced a specific trac instance.

I can confirm it works in a multi-project setup, however, some 
clarification of what is 'static' is necessary:

- The files that are copied appear to be a merge of the shared Trac 
images into /common/ and the current project htdocs into /site/. If so, 
the base reference in Apache should be the htdocs_location, not with the 
/common/ added.

However, as Jason noted, it is currently necessary.

I think *two* static locations should be made--one site-wide for all 
shared Trac images, css, js, etc... and one for project-specific files.

- Second, I noticed references to /project-name/chrome/common/ which 
appeared to reference same 'static' files. I created another AliasMatch 
to the same location and all seems fine. Though I suspect usage should 
be standardized.

I also added a SetHandler None to the /static/ Location to make sure 
Apache handled the files instead of mod_python.

Here is my Apache config:

==
Alias /static/ /var/trac/communitypm/static/common/
AliasMatch ^/.*/chrome(.*) /var/trac/communitypm/static$1

Location /
  SetHandler mod_python
  PythonInterpreter main_interpreter
  PythonHandler trac.web.modpython_frontend
  PythonOption TracEnvParentDir /var/trac
  PythonOption TracUriRoot /
/Location

Location /static/
  SetHandler None
/Location

Directory /var/trac/communitypm/static/common/
  Order allow,deny
  Allow from all
/Directory
=

Note, Directory was necessary since my location is outside document root.

-Dan


-- 
C. Daniel Chase  [EMAIL PROTECTED]
Web Systems Analyst (423) 425-4003
The University of Tennessee at Chattanooga http://www.utc.edu/
Get Firefox!   http://www.spreadfirefox.com/?q=affiliatesid=58708t=1
HighEdWebDev 2007   http://highedweb.org/2007/ 


--~--~-~--~~~---~--~~
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: Trac performance optimization

2008-01-15 Thread C. Daniel Chase

PS...

I forgot to add that the command 'staticcopy' was changed to 
*copystatic* in r6396, so I had a little difficulty at first before 
checking out the latest changeset.  :-)

So, I'm confirming this is function on 0.11dev-6396 specifically.

-Dan

-- 
C. Daniel Chase  [EMAIL PROTECTED]
Web Systems Analyst (423) 425-4003
The University of Tennessee at Chattanooga http://www.utc.edu/
Get Firefox!   http://www.spreadfirefox.com/?q=affiliatesid=58708t=1
HighEdWebDev 2007   http://highedweb.org/2007/ 


--~--~-~--~~~---~--~~
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] Stop sending me emails

2008-01-15 Thread abdula



  I don't know what I did to receive these emails and I don't know how  
to stop them.





--~--~-~--~~~---~--~~
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: Stop sending me emails

2008-01-15 Thread Noah Kantrowitz
[EMAIL PROTECTED] wrote:

   I don't know what I did to receive these emails and I don't know how  
 to stop them.





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


   
Please read the footer on every message.

--Noah



signature.asc
Description: OpenPGP digital signature


[Trac] way of using a form to create tickets

2008-01-15 Thread Daniel Hahn


I may have missed this or used the wrong keywords in my searches.

I am looking to have a user filled form that will create tickets upon
submission.

Using Trac .11 on Windows 2003 server, Python 2.4 and apache as the web
server.


Daniel Hahn
Twin Techs - Senior Systems Engineer
[EMAIL PROTECTED]
509-416-2136
www.twintechs.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-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: way of using a form to create tickets

2008-01-15 Thread Joshua Preston

Daniel,

The easiest solution is to use email2trac.  Basically use an email  
submission with a form page to send

This has the added bonus of just using email afterwards.

Sent from my iPhone

On Jan 15, 2008, at 6:29 PM, Daniel Hahn [EMAIL PROTECTED]  
wrote:



 I may have missed this or used the wrong keywords in my searches.

 I am looking to have a user filled form that will create tickets upon
 submission.

 Using Trac .11 on Windows 2003 server, Python 2.4 and apache as the  
 web
 server.


 Daniel Hahn
 Twin Techs - Senior Systems Engineer
 [EMAIL PROTECTED]
 509-416-2136
 www.twintechs.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-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: way of using a form to create tickets

2008-01-15 Thread Jani Tiainen

Daniel Hahn kirjoitti:
 
 I may have missed this or used the wrong keywords in my searches.
 
 I am looking to have a user filled form that will create tickets upon
 submission.
 
 Using Trac .11 on Windows 2003 server, Python 2.4 and apache as the web
 server.

Another alternative could be using (still unofficial) json-rpc extension 
to xml-rpc.

It would be nice to get someone to actually test that... :)

-- 

Jani Tiainen

--~--~-~--~~~---~--~~
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] delete attachments from wiki?

2008-01-15 Thread [EMAIL PROTECTED]

Hi,

Can't seem to locate instructions on how to delete attachments from
TracWiki. Any clue?

Thanks,
jane

--~--~-~--~~~---~--~~
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] How can I get registered as a normal user in http://trac.edgewall.org/

2008-01-15 Thread Yang, Frank

It's important to me :) Thank for anysuggestion.

--~--~-~--~~~---~--~~
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] external RSS Feed integration in trac!

2008-01-15 Thread Sven Sternberger

Hello!

I'm looking for a way to show an external rss feed in
trac. It woud better if I could show several independent rss feeds
(like planet http://www.planetplanet.org/)

Is there a plugin or a wiki macro which offers this.

best regards!

sven

--~--~-~--~~~---~--~~
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] Visual Studio Addin

2008-01-15 Thread Mladen Mihajlovic

Hey Guys,

I just wanted to let everyone interested know that I have started with
a Visual Studio 2005/2008 addin for Trac integration. It requires the
xml-rpc plugin from Trac-hacks. There is an alpha release at the
moment. Many more features to come...

Check it out at http://vstrac.devjavu.com/

Please feel from to try it out and post and bugs or suggestions at the
site.

Cheers,
Mladen

--~--~-~--~~~---~--~~
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: How can I get registered as a normal user in http://trac.edgewall.org/

2008-01-15 Thread Noah Kantrowitz
Yang, Frank wrote:
 It's important to me :) Thank for anysuggestion.
   
You cannot, accounts are only given to Trac developers.

--Noah



signature.asc
Description: OpenPGP digital signature


[Trac] Re: delete attachments from wiki?

2008-01-15 Thread Erik Andersson
Hi

http://trac.edgewall.org/wiki/TracFaq#is-there-a-way-to-remove-an-attached-file-from-a-page

Cheers / Erik

On Jan 15, 2008 9:49 PM, [EMAIL PROTECTED] [EMAIL PROTECTED]
wrote:


 Hi,

 Can't seem to locate instructions on how to delete attachments from
 TracWiki. Any clue?

 Thanks,
 jane

 


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