Team Chat Logs

September 22, 2009

2009 8
Mo Tu We Th Fr Sa Su
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30        

[00:02:34.474758]<otaku42>moin
[02:07:22.510455]<evil_twin>t.e.o: mediawiki2trac.py attached to TracDev/UnitTests - <http://trac.edgewall.org/attachment/wiki/TracDev/UnitTests/mediawiki2trac.py> - anonymous
[02:25:08.745900]<benschi>morning
[02:25:39.946487]<benschi>anyone has ever seen this error TracError: IOError: (2, 'File or Directory not found')
[02:26:10.522426]<benschi>I moved trac from one dir to another and adjusted the vHost
[02:26:22.570971]<benschi>now I'm getting an internal server error
[02:26:31.065778]<benschi>with NO LOGs at all?!
[02:49:40.263155]<benschi>gnaa forgot to update the trac.wsgi
[02:52:23.466441]<evil_twin>t.e.o: Ticket #3785 (Regular Expression Match against custom field values) updated - <http://trac.edgewall.org/ticket/3785#comment:6> - manolo.email@…
[02:52:28.466530]<evil_twin>t.e.o: Ticket #2662 (assign tickets to multiple users) updated - <http://trac.edgewall.org/ticket/2662#comment:34> - manolo.email@…
[04:02:24.502661]<evil_twin>t.e.o: Ticket #8683 (bad indentation in TicketModule) created - <http://trac.edgewall.org/ticket/8683> - Felix Schwarz <felix.schwarz@…>
[04:02:29.506361]<evil_twin>t.e.o: bad_indentation_ticket_module attached to Ticket #8683 - <http://trac.edgewall.org/attachment/ticket/8683/bad_indentation_ticket_module> - Felix Schwarz <felix.schwarz@…>
[04:22:24.713863]<evil_twin>t.e.o: Changeset [8613]: Fix bad indentation in ticket module. Patch by Felix Schwarz (#8683). - <http://trac.edgewall.org/changeset/8613> - cboos
[04:22:29.714568]<evil_twin>t.e.o: Ticket #8683 (bad indentation in TicketModule) closed - <http://trac.edgewall.org/ticket/8683#comment:1> - cboos
[04:22:34.718586]<evil_twin>t.e.o: Ticket #5585 (bugzilla2trac does not work with bugzilla 3.0) updated - <http://trac.edgewall.org/ticket/5585#comment:11> - NickLeverton
[04:22:39.721977]<evil_twin>t.e.o: Ticket #8683 (bad indentation in TicketModule) updated - <http://trac.edgewall.org/ticket/8683#comment:2> - cboos
[05:13:12.934064]<nemo>env.log.debug <- where can I go to look at the contents of this?
[05:13:26.695371]<nemo>I'm trying to figure out why wikitopdf doesn't appear to be handling images as I expect
[05:13:32.737782]<nemo>I think my URLs are correct.
[05:14:33.573905]<nemo>reason I'm suspicious is the trace gives the url as:
[05:14:38.738427]<nemo>url u'id='
[05:14:45.949938]<nemo>as opposed to something reasonable
[05:18:15.538243]<nemo>is that some python thing?
[05:19:30.459115]<nemo>mm. bet that is "Logging" :)
[05:22:30.822572]<doki_pen>@logging
[05:22:30.841175]<evil_twin>logging is http://trac.edgewall.org/wiki/TracLogging <-- Enable debug logging to file, ensure your environments log/ directory is writeable by your web server user, check for errors.
[05:26:46.542285]<SM2k>setting up a trac server this morn. how much disk space can an install eventually take? probably want to account for enough space for 10000 issues. would 20G be reasonable?
[05:47:04.959060]<nemo>ah. I see
[05:47:09.919011]<nemo>wiki_to_pdf does:
[05:47:15.442953]<nemo> imgpos = page.find('<img')
[05:47:19.322240]<nemo>this gets a position
[05:47:21.037792]<nemo>it then does
[05:47:27.030413]<nemo> addrpos = page.find('src="',imgpos)
[05:47:31.314343]<nemo>which fails and returns -1
[05:47:40.873698]<nemo>it does not check this, and adds the result
[05:47:56.337193]<nemo>(-1)
[05:48:03.017504]<nemo>from that point on, everything is screwed up
[05:48:54.785794]<nemo>now to figure out why the page.find failed
[05:51:31.278236]<nemo>so the URL it is looking up is -1 + 5 indexed into the page
[05:52:43.127073]<nemo>2009-09-22 08:50:11,719 Trac[formatter] DEBUG: Executing Wiki macro Image by provider <trac.wiki.macros.ImageMacro object at 0xb6ddfd0c>
[05:53:17.721935]<nemo>2009-09-22 08:50:11,719 Trac[perm] DEBUG: No policy allowed nemo performing ATTACHMENT_VIEW on <Resource u', attachment:site_diagram.png'>
[05:53:36.617134]<nemo>so, presumably the page structure is lacking a src=
[05:53:45.373286]<nemo>thus. not the fault of wiki_to_pdf really
[05:54:03.530659]<nemo>ok. This is a bit odd since the image shows up in the page...
[05:54:21.246877]<nemo>http://trac-hacks.org/ticket/3590 I ran into this ticket, but the syntax the bug claims I need is no good
[05:54:33.199124]<nemo>I'm using [[Image(site_diagram.png)]]
[05:55:11.014633]<nemo>I have a different trace though. I think my issue is different
[05:57:08.607059]<nemo>odd.
[05:57:17.942912]<nemo>I don't see "ATTACHMENT_VIEW" anywhere in permissions
[05:57:20.290644]<nemo>this is really weird
[05:57:36.519131]<nemo>anyway, I let everyone view attachments
[05:58:26.438813]<nemo>http://www.mail-archive.com/trac-users@googlegroups.com/msg11512.html
[05:58:31.385713]<nemo>probably my prob there
[06:00:32.658333]<nemo>the issue is indeed I think w/ the format of the [[Image]] tag
[06:01:13.625769]<nemo>bingo
[06:01:28.486338]<nemo>if I change it to [[Image(wiki:Design:site_diagram.png)]]
[06:01:30.709801]<nemo>everything works.
[06:01:37.349559]<nemo>Of course, that's kind of convoluted and pointless.
[06:01:56.459591]<nemo>hm. no longer crashes but the image isn't in the PDF...
[06:02:05.794910]<nemo>that could just be my URLs though
[06:02:27.066031]<evil_twin>t.e.o: Ticket #8684 (AttributeError: 'Environment' object has no attribute 'secure_cookies', ...) created - <http://trac.edgewall.org/ticket/8684> - raja.mohammed@…
[06:02:32.066275]<evil_twin>t.e.o: Trac_Attribute_Error.png attached to Ticket #8684 - <http://trac.edgewall.org/attachment/ticket/8684/Trac_Attribute_Error.png> - raja.mohammed@…
[06:04:56.282334]<nemo>ah. Yep, http://localhost/trac/site//etc
[06:05:00.618812]<nemo>the // screws up trac
[06:05:09.505668]<nemo>now to get it to reload my changed ini.
[06:06:07.573163]<nemo>er
[06:06:17.809620]<nemo>http://localhost//trac/site/etc
[06:08:49.985288]<nemo>theeere we go
[06:08:59.825803]<nemo>now if only wiki_to_pdf styled the images better
[06:16:20.181852]<flazz>is there a way to link to a specific version of a wiki page?
[06:17:42.740266]<benschi>flazz: i think by adding @3 to the link
[06:17:46.737251]<benschi>not sure tho
[06:17:49.485516]<flazz>i'll try it
[06:18:57.829270]<flazz>3 being the version? it didn't work
[06:19:47.286977]<benschi>hmm
[06:22:25.030820]<benschi>flazz: [wiki:page?version=3 Page]
[06:22:27.254229]<evil_twin>t.e.o: Ticket #8684 (AttributeError: 'Environment' object has no attribute 'secure_cookies', ...) closed - <http://trac.edgewall.org/ticket/8684#comment:1> - rblank
[06:23:49.186343]<flazz>benschi: thanks
[07:21:14.947408]<Hoxolotl>could somebody point me to a "building blender with scons tutorial" I keep getting to Mike Pan's page, and he updated his site so it isn't there anymore...
[07:21:48.525822]<nemo>alll better. filed 3 trac-hacks bugs :)
[07:38:50.026028]<techtonik>About PYTHON_EGG_CACHE at http://trac.edgewall.org/wiki/TracPlugins - can it be placed into /tmp directory or files that are extracted should always be available?
[07:42:24.959108]<cmlenz>techtonik: should work
[07:44:10.002974]<techtonik>Tnx. Are eggs extracted just before execution? What if some process kill them from temp after Trac has already started? Will they be extracted anew?
[07:47:26.319309]<wgl>@logging
[07:47:26.338401]<evil_twin>logging is http://trac.edgewall.org/wiki/TracLogging <-- Enable debug logging to file, ensure your environments log/ directory is writeable by your web server user, check for errors.
[07:48:24.558272]<wgl>Regarding logging, is there a way to have trac log at above the project level? I have a multi-project trac installation and am trying to debug why requests are not properly getting to the projects.
[07:49:48.113744]<cmlenz>write to stderr?
[07:50:18.230108]<wgl>Sorry, I should have specified that I am working with tracd.
[08:06:30.723055]<vvsh>hello, i'm new to trac, for some reason,i can't view the php file in browser code, does anyone know why?
[08:07:04.458156]<vvsh>everything i try to view a .php file in repository, i always get "404 Not Found" message
[08:32:32.306530]<evil_twin>t.e.o: Ticket #2647 (Support AND/OR queries) updated - <http://trac.edgewall.org/ticket/2647#comment:18> - cboos
[09:07:36.061048]<evil_twin>t.e.o: Ticket #2647 (Support AND/OR queries) updated - <http://trac.edgewall.org/ticket/2647#comment:19> - rblank
[09:08:57.223269]<vvsh>evil_twin:thanks, i got it sorted now
[09:12:40.331534]<vvsh>i just wondering whether is possible for a ticket to link to certain line in the repository's file?
[09:12:54.489284]<jhammel>vvsh: yep
[09:13:12.485648]<jhammel>source:foo/bar/fleem.txt#L57, IIRC
[09:13:55.522048]<jhammel>vvsh: yep, as documented in http://trac.edgewall.org/wiki/TracLinks
[09:41:44.290936]<jhammel>hmmm....there's no way for an interface implementor to .... trigger something?
[09:41:51.616967]<jhammel>(i can be less vague if needed)
[10:22:33.778132]<evil_twin>t.e.o: TracOnDebian edited - <http://trac.edgewall.org/wiki/TracOnDebian?version=123> - anatoly <techtonik@…>
[10:47:36.211424]<evil_twin>t.e.o: TracOnDebian edited - <http://trac.edgewall.org/wiki/TracOnDebian?version=124> - anatoly <techtonik@…>
[10:57:34.174406]<evil_twin>t.e.o: Ticket #8685 (Emptied repository results in a browser error) created - <http://trac.edgewall.org/ticket/8685> - mikei@…
[10:57:39.174482]<evil_twin>t.e.o: mercurial-plugin-backend-empty-repo.patch attached to Ticket #8685 - <http://trac.edgewall.org/attachment/ticket/8685/mercurial-plugin-backend-empty-repo.patch> - anonymous
[11:52:36.381607]<evil_twin>t.e.o: TracTickets.txt attached to TracGuideToc - <http://trac.edgewall.org/attachment/wiki/TracGuideToc/TracTickets.txt> - anonymous
[12:12:36.722284]<evil_twin>t.e.o: Ticket #2647 (Support AND/OR queries) updated - <http://trac.edgewall.org/ticket/2647#comment:20> - cboos
[12:23:17.731351]<rorsini>hi. is there anyway (plugin or whatever) of restricting trac to a subset of a svn repository? my situation is that we have a single svn repo containing all projects yet we'd like to have trac instances to help manage projects individually. any ideas would be helpful.
[12:23:50.050990]<jhammel>rorsini: well, you won't like my recommendation (no one does)
[12:24:06.153376]<jhammel>rorsini: carve up your repo -> one repo / project
[12:25:07.227079]<wildintellect>the other option is in your ticket system to create Component tags for each project
[12:25:25.033733]<wildintellect>then you can add custom queries for each project to your view tickets
[12:26:46.466061]<rorsini>jhammel: it's useful to know that's the first reponse I get from the trac community. that may be the direction we have to move towards if there is no other solution.
[12:27:37.474751]<jhammel>rorsini: there are lots of other solutions. it is just soo much easier, IMHO, to have a repo per project from a project management perspective
[12:27:39.292996]<evil_twin>t.e.o: OR_text_align_right.png attached to Ticket #2647 - <http://trac.edgewall.org/attachment/ticket/2647/OR_text_align_right.png> - cboos
[12:27:44.294243]<evil_twin>t.e.o: OR_text_align_left.jpg attached to Ticket #2647 - <http://trac.edgewall.org/attachment/ticket/2647/OR_text_align_left.jpg> - cboos
[12:27:56.538635]<rorsini>wildintellect: interesting. I was thinking along those lines. little things like changing the browse link to point to the part of the tree that project is concerned with, and maybe the search too..
[12:28:11.134335]<jhammel>rorsini: we also have a giant repo here with lots and lots of projects...and it causes endless nightmares. our method of dealing with it is....we don't
[12:28:34.806124]<jhammel>rorsini: and no, my boss didn't like my recommendation either ;)
[12:28:40.497745]<rorsini>jhammel: I see :)
[12:32:36.838068]<evil_twin>t.e.o: Ticket #2647 (Support AND/OR queries) updated - <http://trac.edgewall.org/ticket/2647#comment:21> - rblank
[13:28:18.474598]<HandyAndE>jhammel: you might be interested in a project I am working on at http://headsupdevelopment.com - this talks through the svn server so you can mount a project at any tree node
[14:11:31.065491]<Getty>question, can someone tell me when trac checks if there are changes in the SVN? is it on "access of the timeline" or any other process responsible?
[14:13:13.075015]<retracile>Getty: IIRC, it's on each request
[14:13:36.119514]<Getty>ok...
[14:13:59.954585]<retracile>why?
[14:14:27.245947]<Getty>i just advance some bot who should get linked to the trac via direct DB access, so i hoped that i can get somehow the svn info also into that workflow
[14:14:44.337863]<Getty>but if i need a request i cant do it like i hope, but ok, 20 other ways possible
[14:15:36.021548]<retracile>Getty: I suppose you could call 'trac-admin .... resync $REV' in a post-commit hook...
[14:15:55.090097]<Getty>yeah thanks for the option
[14:17:30.810922]<Getty>how are you anyway retracile?, again making support alone ;)
[14:19:20.003237]<retracile>heh. doin' ok, I guess. thankful for working backups, but annoyed at my laptop for a wasted weekend. (filesystem corruption is so much fun)
[14:19:39.961946]<Getty>dont talk about the devil
[14:19:41.751175]<Getty>or it comes to me
[14:19:47.001117]<retracile>heh
[15:02:40.177927]<evil_twin>t.e.o: welcome created - <http://trac.edgewall.org/wiki/welcome?version=1> - erins
[15:17:45.317966]<evil_twin>t.e.o: welcome created - <http://trac.edgewall.org/wiki/welcome?version=1> - erin.shatara@…
[15:37:40.710184]<evil_twin>t.e.o: welcome edited - <http://trac.edgewall.org/wiki/welcome?version=2> - erin
[15:47:43.176176]<evil_twin>t.e.o: welcome edited - <http://trac.edgewall.org/wiki/welcome?version=3> - erin.shatara@…
[16:22:41.206578]<evil_twin>t.e.o: Ticket #8680 (trac uses uncommon mimetype for javascript) updated - <http://trac.edgewall.org/ticket/8680#comment:3> - rblank
[20:22:46.162023]<evil_twin>t.e.o: messages-r432.ja.po attached to Ticket #5471 - <http://trac.edgewall.org/attachment/ticket/5471/messages-r432.ja.po> - Kyosuke Takayama <loiseau@…>
[20:27:48.500149]<evil_twin>t.e.o: Ticket #5471 (Translation of Trac to Japanese/日本語 [ja_JP]) updated - <http://trac.edgewall.org/ticket/5471#comment:27> - Kyosuke Takayama <loiseau@…>
[23:32:50.554036]<evil_twin>t.e.o: Ticket #8686 (Improve the documents export) created - <http://trac.edgewall.org/ticket/8686> - wideweide@…