| [00:03:23] |
* |
|1|||1| has joined #trac |
| [00:03:52] |
* |
clajo04 has joined #trac |
| [00:03:54] |
<|1|||1|> |
Hey does anybody know if it is possible to override the default pages such as - "Create a new page" page? |
| [00:07:56] |
* |
proofek has joined #trac |
| [00:08:19] |
<pacopablo> |
what do you mean? |
| [00:08:37] |
<pacopablo> |
orride the page so that when you create a new pag it's already populated with something? |
| [00:08:43] |
<pacopablo> |
er, override, even |
| [00:09:03] |
<|1|||1|> |
no - that's templating - i mean... modify the displayed message.. |
| [00:09:30] |
<|1|||1|> |
so have a more welcoming message on there instead of this page doesnt exist, create it. |
| [00:10:00] |
<|1|||1|> |
or even offer a search using the words the user has used to get to that url |
| [00:10:05] |
<pacopablo> |
well, you could make a custom tempalte, or use a request handler to do it |
| [00:10:32] |
<pacopablo> |
there's no built in way, but one could be creatd as a plugin |
| [00:10:57] |
<|1|||1|> |
if i make a custom template - how would i make it activated each time user goes to APage/That/Does/Not/Exist for example? |
| [00:11:08] |
<|1|||1|> |
like a default-route page |
| [00:12:21] |
<coderanger> |
hmm |
| [00:12:36] |
<pacopablo> |
you can look for the wiki.html template |
| [00:12:59] |
* |
pacopablo has to actaully check which template is loaded in that case |
| [00:13:12] |
<coderanger> |
Thats not enough |
| [00:13:22] |
<coderanger> |
you also need to check if it is a new page |
| [00:13:56] |
<pacopablo> |
coderanger: why could you not simply do a py:match on the text that's supposed to be there when it's a new page? |
| [00:14:09] |
<coderanger> |
pacopablo: Nah, got a better way |
| [00:14:32] |
<coderanger> |
check template == 'wiki.html' and data.get('version') is None |
| [00:15:59] |
<coderanger> |
nope, thats not enough |
| [00:16:01] |
<coderanger> |
hmm |
| [00:16:11] |
<coderanger> |
ahh, I was close |
| [00:16:48] |
<coderanger> |
template == 'wiki.html' and data.get('latest_version') == 0 |
| [00:17:12] |
<coderanger> |
You can use a stream filter to add whatever markup you want to the page then |
| [00:18:16] |
<pacopablo> |
can you py match on body text? (CDATA) ? |
| [00:18:25] |
* |
kirean has joined #trac |
| [00:18:48] |
<coderanger> |
There is a text() function in the genshi xpath system, so probably |
| [00:20:45] |
* |
jerem_y has quit IRC |
| [00:21:35] |
* |
cmlenz has quit IRC |
| [00:29:45] |
<asmodai> |
coderanger / pacopablo : heya dudes |
| [00:32:04] |
* |
WormDrink has joined #trac |
| [00:33:05] |
* |
andrei2102 has joined #trac |
| [00:40:53] |
<orkam_wrk> |
Well, I'm still thinking on how about organizing Milestones. What we'd need is a defined order. AFAIK there is no built-in possibility to add customized entries like 'Priority' to milestones. Also I thought about a workaround, using prefixes and natural order instead of duedate. Any further ideas? |
| [00:40:54] |
<|1|||1|> |
where should i read on the py:match etc syntax - I'm familiar with python, but zero on python+web integration |
| [00:41:16] |
<coderanger> |
|1|||1|: Use the Transformer API |
| [00:41:23] |
<coderanger> |
along with ITemplateStreamFilter |
| [00:41:49] |
* |
WormDrink has joined #trac |
| [00:41:52] |
* |
hhos has quit IRC |
| [00:41:58] |
<|1|||1|> |
so is this py:match syntax trac-specific, or is there a web python language syntax? |
| [00:42:15] |
<coderanger> |
py:match is a Genshi template tag, but don't use it |
| [00:43:23] |
* |
gakman_ has joined #trac |
| [00:45:34] |
* |
clajo04 has quit IRC |
| [00:48:24] |
* |
cbalan has joined #trac |
| [00:59:29] |
* |
gakman has quit IRC |
| [01:03:18] |
* |
Davey has quit IRC |
| [01:03:55] |
* |
SunWuKung has quit IRC |
| [01:13:24] |
* |
nonzen has joined #trac |
| [01:15:44] |
* |
[domon] is now known as [domon]|away |
| [01:15:49] |
* |
huats has joined #trac |
| [01:16:32] |
* |
[domon]|away is now known as [domon] |
| [01:18:01] |
* |
mcella has joined #trac |
| [01:25:30] |
<evil_twin> |
New news from t.e.o: SandBox edited <http://trac.edgewall.org/wiki/SandBox?version=826> |
| [01:27:50] |
* |
patrick_ has quit IRC |
| [01:28:25] |
* |
malth has joined #trac |
| [01:31:25] |
<malth> |
I'm using an instance of trac that doesn't have the history & last change links http://www.grabup.com/uploads/c29b34200e13a52caf15755cc469cce7.png for pages that i see |
| [01:32:25] |
<malth> |
how is that turned on? is it in configuration or is it something that has to go into the templates? |
| [01:38:22] |
* |
liquidat0r has joined #trac |
| [01:43:07] |
* |
cmlenz has joined #trac |
| [01:46:54] |
<coderanger> |
malth: What instance? |
| [01:47:03] |
<coderanger> |
and what do you have there instead? |
| [01:47:22] |
<malth> |
0.10.4 |
| [01:47:27] |
<malth> |
nothing in that spot |
| [01:47:42] |
<coderanger> |
It is possible they altered the templates |
| [01:47:44] |
<malth> |
maybe the feature isn't in that version |
| [01:47:49] |
<malth> |
ah |
| [01:48:37] |
* |
W0rmDrink has joined #trac |
| [01:48:47] |
* |
WormDrink has quit IRC |
| [01:49:15] |
<coderanger> |
malth: It is, but those links are coded into the wiki page template |
| [01:49:31] |
<coderanger> |
so if they customized the templates, they would be able to easily remove them |
| [01:49:42] |
<coderanger> |
not sure why people would do this, but you never know |
| [01:49:53] |
<malth> |
hm ya |
| [01:50:24] |
<malth> |
we do have the timeline link http://www.grabup.com/uploads/64bb5db2000b5641d3b18ac8f3906f6b.png |
| [01:50:31] |
<malth> |
don't know if that's standard |
| [01:50:40] |
<malth> |
and that links to a page where you can see revision history |
| [01:50:49] |
<malth> |
so at least it's not all blacked out |
| [01:51:11] |
<malth> |
want to be able to not get paranoid about people chaning my projects around :P |
| [01:51:11] |
<coderanger> |
Thats the mainnav bar |
| [01:51:22] |
<coderanger> |
which is different than the ctxtnav bar under it |
| [01:51:44] |
<malth> |
alright |
| [01:52:10] |
<coderanger> |
the mainnav and metanav bars were already programatically controlled in 0.10 |
| [01:52:38] |
* |
W0rmDrink has quit IRC |
| [01:53:01] |
* |
WormDrink has joined #trac |
| [01:53:38] |
<malth> |
ok |
| [01:53:56] |
<malth> |
yeah i wonder why got rid of that |
| [01:54:12] |
<malth> |
at least there is some way to track history |
| [01:55:30] |
* |
W0rmDrink has joined #trac |
| [02:03:07] |
<malth> |
thanks code |
| [02:03:10] |
* |
W0rmDrink has quit IRC |
| [02:04:18] |
* |
handyande_ has joined #trac |
| [02:05:13] |
* |
W0rmDrink has joined #trac |
| [02:06:25] |
* |
kcon has joined #trac |
| [02:06:33] |
<kcon> |
hi! :) |
| [02:07:44] |
<kcon> |
can anybody tell me if trac wiki supports merging of different versions of a page? my scenario is as follows: we have 2-3 people in our team here, working on the same page in the wiki at the same time |
| [02:08:37] |
<kcon> |
problem: the one who is working on the page for longer than the other one, looses all his changes somehow... it is weird behaviour. trac should merge the changes when two people are editing the page at the same time. OR *lock* it! |
| [02:08:54] |
<kcon> |
I'd really appreciate it if anybody could give me some advice on this.. |
| [02:09:20] |
<coderanger> |
kcon: Not automatically |
| [02:09:37] |
<coderanger> |
0.11 does show you some diff overlays and lets you manually merge I think |
| [02:10:14] |
<coderanger> |
It still won't hold up will under highly parallel editing though |
| [02:10:20] |
<coderanger> |
use a real VCS for that |
| [02:12:26] |
* |
handyande has quit IRC |
| [02:13:03] |
<tazle_> |
hm what should get_navigation_items of a Component produce? |
| [02:13:41] |
* |
WormDrink has quit IRC |
| [02:14:52] |
<tazle_> |
I get a "LookupError: unknown encoding: /my-project-dir/burndown" after installing ScrumBurndown plugin into 0.11-r7215 |
| [02:15:16] |
<coderanger> |
http://trac.edgewall.org/browser/trunk/trac/web/chrome.py#L204 |
| [02:15:31] |
<coderanger> |
tazle_: That means it never updated to the Genshi 0.5 interface |
| [02:16:03] |
<coderanger> |
Look for any calls to Markup() |
| [02:16:12] |
<kcon> |
coderanger: hey, thanks a lot for the info!! :) |
| [02:16:21] |
<coderanger> |
they probably need to be changed from Markup(str, args) to Markup(str % args) |
| [02:16:59] |
* |
coderanger -> sleep |
| [02:17:05] |
<tazle_> |
coderanger: hm, let's try that |
| [02:18:17] |
<kcon> |
but why does trac wiki not lock a file while some user is editing it ? |
| [02:19:15] |
<kcon> |
sorry to bother you guys, i'm just wondering, as we just lost a huge part of data because another team member interfered with our changes to a page |
| [02:19:52] |
<nonzen> |
people, anyone got multiple repository support working well? |
| [02:20:58] |
<nonzen> |
I mean this: http://trac.edgewall.org/wiki/MultipleRepositorySupport |
| [02:21:25] |
<nonzen> |
when I give [repositories], it keeps asking for resync |
| [02:21:40] |
<nonzen> |
and hg plugin mentioned there doesn't work at all for me... |
| [02:24:55] |
<tazle_> |
hrm, indeed it uses ClearSilver |
| [02:31:10] |
* |
SunWuKung has joined #trac |
| [02:35:17] |
* |
[domon] is now known as [domon]|away |
| [02:38:33] |
* |
malth has quit IRC |
| [02:46:32] |
* |
W0rmDrink has quit IRC |
| [02:46:56] |
* |
WormDrink has joined #trac |
| [02:48:45] |
* |
dafeder has joined #trac |
| [02:51:14] |
* |
rofrol has joined #trac |
| [03:13:04] |
* |
AnMaster has joined #trac |
| [03:16:44] |
* |
dafeder has quit IRC |
| [03:21:35] |
* |
SunWuKung has quit IRC |
| [03:22:35] |
* |
SunWuKung has joined #trac |
| [03:26:30] |
<evil_twin> |
New news from t.e.o: Ticket #7351 (Renaming a milestone to a name that was already given to another milestone ...) created <http://trac.edgewall.org/ticket/7351> |
| [03:29:09] |
<orkam_wrk> |
I have installed the graphviz plugin form source on trac 0.11r2. Everything seems to work ok, except the #!graphviz entries in the wiki are shown as text and no image is generated. Any hints, what I might be doing wrong or where I could find more docs (except trac-hacks wiki and README.txt) |
| [03:33:29] |
* |
W0rmDrink has joined #trac |
| [03:50:03] |
* |
WormDrink has quit IRC |
| [03:54:05] |
* |
mickael__ has quit IRC |
| [04:05:04] |
* |
handyande has joined #trac |
| [04:06:17] |
* |
octo__ is now known as octorian |
| [04:11:20] |
* |
plmayer has joined #trac |
| [04:12:09] |
<plmayer> |
hi |
| [04:16:12] |
* |
nergalix has quit IRC |
| [04:22:55] |
* |
nergalix has joined #trac |
| [04:25:19] |
* |
handyande_ has quit IRC |
| [04:26:16] |
<plmayer> |
I am having trouble with authentication in a virtual host. Works fine without virtual host, but get "Authentication information not available. Please refer to the installation documentation." when inside virtual host. I have read the wiki and troubleshooting section, but to no avail. I don't even get any error messages in the apache log. Can someone point me in the right direction? |
| [04:36:25] |
<orkam_wrk> |
plmayer, maybe you could have a look at my apache sites-available/default: http://rafb.net/p/Np91Im56.html |
| [04:36:46] |
<orkam_wrk> |
that's how I configured the auth via apache / virtual host and it's working fine |
| [04:37:40] |
<plmayer> |
thanks |
| [04:37:43] |
<orkam_wrk> |
it's running on https, but it'l be similar without ssl |
| [04:37:47] |
<plmayer> |
however I'm using mod_python |
| [04:37:57] |
<plmayer> |
The issue I am seeing is only there if I use <Location /> |
| [04:38:01] |
<orkam_wrk> |
ok, that one's for mod_wsgi |
| [04:38:16] |
<orkam_wrk> |
(script alias) |
| [04:39:07] |
<plmayer> |
I have got it working with another location (i.e. not the root). Seems that my apache version ignores the <Location login> directive if there's a <Location /> present. This is also referred to in the Apache documentation. If I use <Location /web> and <Location /web/login>, it works fine |
| [04:39:34] |
<orkam_wrk> |
So you are on the right trac :) |
| [04:39:43] |
<plmayer> |
looks like :) |
| [04:39:47] |
<plmayer> |
Apache Docs says "An exception is <Location />, which is an easy way to apply a configuration to the entire server." |
| [04:39:53] |
<orkam_wrk> |
I have to go now, be back later. good luck! |
| [04:40:03] |
<plmayer> |
I have added this information to the wiki (http://trac.edgewall.org/wiki/TracModPython?action=diff&version=134). Hope it helps someone else too. |
| [04:40:09] |
<plmayer> |
see you |
| [04:40:20] |
<plmayer> |
and thanks! |
| [04:40:58] |
* |
plmayer has left #trac |
| [04:49:46] |
* |
hwinkel has joined #trac |
| [04:51:26] |
* |
liquidat0r has quit IRC |
| [04:51:54] |
* |
nergalix has quit IRC |
| [04:53:00] |
* |
takayama has quit IRC |
| [04:57:08] |
<evil_twin> |
New news from t.e.o: TracModPython edited <http://trac.edgewall.org/wiki/TracModPython?version=134> |
| [04:57:50] |
* |
Skoog[W] has joined #Trac |
| [04:58:24] |
* |
nergalix has joined #trac |
| [05:10:45] |
* |
m_g has joined #trac |
| [05:17:45] |
* |
attachmentgenie has joined #trac |
| [05:24:14] |
* |
Tetraboy has quit IRC |
| [05:27:20] |
<evil_twin> |
New news from t.e.o: Ticket #7350 (Can't synchronize with the repository) closed <http://trac.edgewall.org/ticket/7350#comment:1> || Ticket #7348 (AssertionError: Authentication information not available.) closed <http://trac.edgewall.org/ticket/7348#comment:1> || Ticket #7352 (Logging configuration not remembered) created <http://trac.edgewall.org/ticket/7352> |
| [05:30:31] |
* |
__t has quit IRC |
| [05:34:58] |
* |
Skoog[W] has quit IRC |
| [05:38:06] |
* |
MickMcMack has joined #trac |
| [05:40:55] |
* |
takayama has joined #trac |
| [05:45:34] |
* |
kasimon has joined #trac |
| [05:47:15] |
<kasimon> |
Hi, I'm setting up trac for the first time, with subversion. One thing I did not understand yet: Does trac make the repository available or do i have to setup mod_svn myself? |
| [05:49:40] |
<kirean> |
Trac can handle repository browsing within Trac |
| [05:50:15] |
<kasimon> |
but to commit remotely i have to setup other means of access? |
| [05:50:19] |
<kirean> |
yep |
| [05:50:28] |
<kasimon> |
okay, thanks! |
| [05:50:34] |
* |
jdolan_ has joined #trac |
| [05:55:51] |
* |
ras0ir has joined #trac |
| [05:56:19] |
* |
attachmentgenie has quit IRC |
| [05:58:24] |
* |
tinh_ has quit IRC |
| [06:01:26] |
* |
kirean has left #trac |
| [06:04:00] |
* |
|igor_ has joined #trac |
| [06:17:08] |
* |
kasimon has left #trac |
| [06:25:57] |
* |
havvg has joined #trac |
| [06:31:13] |
* |
Davey has joined #trac |
| [06:33:28] |
* |
retracile has quit IRC |
| [06:33:48] |
* |
flakrat has joined #trac |
| [06:35:34] |
* |
proppy has joined #trac |
| [06:35:37] |
* |
retracile has joined #trac |
| [06:35:55] |
<proppy> |
Hi, how could I found out which version include the following changeset http://trac.edgewall.org/changeset/6328 ? |
| [06:36:24] |
* |
retracile grumbles something sardonic about mornings. |
| [06:37:00] |
* |
nOgAnOo has quit IRC |
| [06:37:01] |
<proppy> |
maybe I should just compare revision of tags/ |
| [06:37:39] |
<proppy> |
seems 0.11 include it |
| [06:37:48] |
* |
sun1 has joined #trac |
| [06:39:33] |
* |
Allquantor has joined #trac |
| [06:40:10] |
* |
Allquantor has left #trac |
| [06:42:53] |
* |
bkuhn has joined #trac |
| [06:43:30] |
<sun1> |
I am trying to create a mock object with getMock in a unit test, but the tested object calls a member in the mock object wich gives the following error: Undefined property: Mock_Phpmailer_d76e1574::$ErrorInfo. How do i define a member for the mock? |
| [06:47:49] |
* |
nicholasbs has joined #trac |
| [06:48:25] |
* |
__t has joined #trac |
| [06:52:31] |
* |
tobias_ has joined #trac |
| [06:57:53] |
<evil_twin> |
New news from t.e.o: TracProject edited <http://trac.edgewall.org/wiki/TracProject?version=7> |
| [07:06:01] |
* |
Tetraboy has joined #trac |
| [07:06:27] |
* |
__t has quit IRC |
| [07:06:29] |
* |
tobias_ has quit IRC |
| [07:07:30] |
* |
jhammel has joined #trac |
| [07:07:51] |
* |
nonzen has quit IRC |
| [07:10:06] |
* |
tobias_ has joined #trac |
| [07:12:10] |
* |
maverik has joined #trac |
| [07:16:07] |
* |
handyande_ has joined #trac |
| [07:24:53] |
* |
patrick_ has joined #trac |
| [07:26:29] |
* |
handyande has quit IRC |
| [07:28:11] |
* |
Jeraimee|Wrk has joined #trac |
| [07:29:11] |
<Jeraimee|Wrk> |
Hey all, forgive the nub-question but I can't seem to figure out the correct way to get GitPlugin installed. It's not an egg nor is it a single file. I'm trying to install it in the plugins directory |
| [07:29:46] |
<Jeraimee|Wrk> |
well... that was a statement but, intended to be a question :) |
| [07:36:27] |
* |
sun1 has left #trac |
| [07:42:54] |
* |
Jeraimee|Wrk has left #trac |
| [07:43:19] |
* |
rofrol has quit IRC |
| [07:45:48] |
* |
andrei2102 has left #trac |
| [07:46:38] |
* |
WormDrink has joined #trac |
| [07:47:08] |
* |
W0rmDrink has quit IRC |
| [07:52:52] |
* |
mfork has joined #trac |
| [07:53:59] |
<mfork> |
When I load http://192.168.101.110/trac I see the initial wiki page. If I go to http://192.168.101.110/trac/project, I get No handler matched request to /project. Am I doing something wrong? |
| [07:54:49] |
<jhammel> |
mfork: why would you assume that /project exists? |
| [07:55:06] |
* |
c1|freaky has quit IRC |
| [07:56:17] |
<mfork> |
From the documetation I was reading, it said to browse to http://server/trac/<project> |
| [07:56:57] |
* |
trbs has joined #trac |
| [07:57:03] |
<mfork> |
Maybe I misunderstood. |
| [07:57:18] |
* |
Tetraboy has quit IRC |
| [07:57:31] |
<mfork> |
I have it running on mod_python |
| [07:57:55] |
<jhammel> |
mfork: i think in this case '/trac' is your project, if you see the wiki there |
| [07:58:12] |
<jhammel> |
mfork: i think it means "things are fine" :) |
| [07:58:25] |
<mfork> |
ok. makes sense. Next qusetion, http://192.168.101.110/trac/login says Authentication information not available. Please refer to the installation documentation. |
| [07:58:36] |
<jhammel> |
mfork: yep |
| [07:58:39] |
* |
gjo has joined #trac |
| [07:58:55] |
<jhammel> |
mfork: i mean...that's not a question |
| [07:59:04] |
<mfork> |
I have <Location /trac/project/login> |
| [07:59:17] |
<mfork> |
with the appropriate Auth information |
| [07:59:34] |
<mfork> |
is there something more to do? |
| [08:00:51] |
* |
timte has quit IRC |
| [08:02:39] |
<jhammel> |
mfork: not sure; i'm not using apache auth for my tracs |
| [08:03:35] |
<mfork> |
in /etc/httpd/conf.d/trac.conf, I have two Location directives <Location /trac/project> and <Location /trac/project/login>. Does that look right? |
| [08:03:39] |
* |
patrick_ has quit IRC |
| [08:04:56] |
* |
takayama has quit IRC |
| [08:05:05] |
* |
c1|freaky has joined #trac |
| [08:05:29] |
* |
drtns has joined #trac |
| [08:07:11] |
<drtns> |
hello I am trying to get code highlighting working in the wiki... I installed pygments and the pygments plugin... and the plugin is showing up as listed as installed and active.. but the wiki pages are not coloured? is there something I am missing?? |
| [08:09:58] |
* |
nergalix has quit IRC |
| [08:12:55] |
* |
gjo has quit IRC |
| [08:14:38] |
* |
mcella has quit IRC |
| [08:28:33] |
<evil_twin> |
New news from t.e.o: Ticket #7353 (Catalan language for 0.12) created <http://trac.edgewall.org/ticket/7353> |
| [08:34:07] |
* |
cratylus has joined #trac |
| [08:40:03] |
* |
w0nder has joined #trac |
| [08:45:36] |
* |
patrick_ has joined #trac |
| [08:48:39] |
* |
asdfasdfasdf has joined #trac |
| [08:48:45] |
* |
patrick_ has quit IRC |
| [08:55:26] |
* |
cheshai1 has joined #trac |
| [08:56:36] |
* |
w0nder has quit IRC |
| [08:56:40] |
<c1|freaky> |
it would be nice if creating new projects in trac was easier |
| [08:56:41] |
<c1|freaky> |
;D |
| [08:56:55] |
* |
w0nder has joined #trac |
| [08:58:49] |
<evil_twin> |
New news from t.e.o: TracModPython edited <http://trac.edgewall.org/wiki/TracModPython?version=135> || Ticket #7354 (Unable to Edit or Delete an invalid tickets report) created <http://trac.edgewall.org/ticket/7354> |
| [09:02:02] |
* |
pombreda has quit IRC |
| [09:03:23] |
* |
owlmanatt has joined #trac |
| [09:04:39] |
<w0nder> |
I just installed trac on a new server |
| [09:04:50] |
<w0nder> |
but need to import our database from the old server |
| [09:05:12] |
<w0nder> |
can I do that going from .10 to .11? |
| [09:05:30] |
<w0nder> |
mysql |
| [09:05:46] |
* |
hhos has joined #trac |
| [09:09:09] |
<cheshai1> |
hi guys, is it possible to use ldap+apache user authentication and have the restric_owner working too? |
| [09:09:57] |
<cheshai1> |
how can restric_owner know about my users? will it perform a query against my ldap server? it sounds weird... |
| [09:10:09] |
<cheshai1> |
*restrict |
| [09:10:25] |
<jhammel> |
w0nder: yes |
| [09:15:38] |
* |
Federico2 has joined #trac |
| [09:18:48] |
* |
hpnadig has joined #trac |
| [09:23:56] |
* |
havvg has quit IRC |
| [09:24:55] |
* |
|igor_ has quit IRC |
| [09:29:53] |
* |
orkam_wrk has quit IRC |
| [09:30:38] |
<drtns> |
hello I am trying to get code highlighting working in the wiki... I installed pygments and the pygments plugin... and the plugin is showing up as listed as installed and active.. but the wiki pages are not coloured? is there something I am missing?? |
| [09:34:35] |
* |
handyande has joined #trac |
| [09:36:21] |
* |
hwinkel has quit IRC |
| [09:38:45] |
<huats> |
retracile: hey |
| [09:38:56] |
<huats> |
sorry I have not been able to test case it yesterday |
| [09:39:09] |
<retracile> |
huats: Hey. I tried to duplicate your bug last night, but it was only getting called once. |
| [09:39:25] |
<retracile> |
huats: I am using tracd, but I don't see how apache would change that behavior. |
| [09:39:27] |
<huats> |
but I have been able to reproduce it on both apache and tracd |
| [09:39:38] |
<huats> |
hum that is weird |
| [09:39:53] |
* |
Tetraboy has joined #trac |
| [09:39:57] |
<huats> |
do you have the trac.ini part of your workflow that you used ? |
| [09:40:07] |
<huats> |
may be it was another side effect... |
| [09:40:33] |
<huats> |
I was meaning the workflow part of your trac.ini :) |
| [09:42:02] |
<lisppaste5> |
retracile pasted "tested workflow config" at http://paste.lisp.org/display/62426 |
| [09:43:24] |
* |
cheshai1 has left #trac |
| [09:43:40] |
<retracile> |
@seen trac-ja |
| [09:43:40] |
<evil_twin> |
retracile: trac-ja was last seen in #trac 1 week, 0 days, 8 hours, 26 minutes, and 7 seconds ago: <trac-ja> asmodai: no. I'm amember of trac-ja@i-act.co.jp |
| [09:44:29] |
<retracile> |
@tell trac-ja I think your problem was probably fixed by jonas' change http://trac.edgewall.org/changeset/7215 |
| [09:44:30] |
<evil_twin> |
retracile: Error: I haven't seen trac-ja, I'll let you do the telling. |
| [09:44:40] |
* |
retracile grumbles |
| [09:46:04] |
<huats> |
retracile: now I have the same workflow than you... and I still have the double call... |
| [09:46:57] |
<lisppaste5> |
huats pasted "run_external command" at http://paste.lisp.org/display/62427 |
| [09:47:19] |
<huats> |
retracile: here is the command I use to verify the simple or double call :) |
| [09:47:58] |
<retracile> |
huats: look for 'Side effect' in your trac log |
| [09:48:06] |
<huats> |
sure |
| [09:48:40] |
<retracile> |
pastebin a chunk around those lines for a case you've verified as double-running. |
| [09:51:08] |
* |
drtns has quit IRC |
| [09:53:13] |
* |
havvg has joined #trac |
| [09:53:14] |
* |
pombreda has joined #trac |
| [09:54:42] |
* |
handyande_ has quit IRC |
| [09:55:01] |
<asmodai> |
retracile! |
| [09:58:29] |
<retracile> |
asmodai! :) |
| [09:59:16] |
<evil_twin> |
New news from t.e.o: SandBox edited <http://trac.edgewall.org/wiki/SandBox?version=828> || SandBox edited <http://trac.edgewall.org/wiki/SandBox?version=827> |
| [09:59:44] |
<asmodai> |
retracile: Sup matey? |
| [10:02:17] |
* |
proppy has left #trac |
| [10:05:21] |
<retracile> |
asmodai: work, of course :) |
| [10:06:25] |
* |
cheshair has joined #trac |
| [10:06:59] |
<asmodai> |
retracile: suckage |
| [10:07:35] |
<retracile> |
bbiab |
| [10:07:37] |
* |
retracile is now known as retracile_ |
| [10:08:29] |
<olistudent> |
Hi. |
| [10:08:33] |
<owlmanatt> |
Anyone written a bridge to use mediawiki instead of trac's built-in wiki? |
| [10:08:45] |
* |
tag has quit IRC |
| [10:08:54] |
<olistudent> |
Is it possible to turn off email verification feature in trac-0.11? |
| [10:09:42] |
<coderanger> |
olistudent: its a feature of accountmanager, not trac |
| [10:09:44] |
<coderanger> |
but yes |
| [10:10:12] |
<coderanger> |
acct_mgr.web_ui.EmailVerificationModule = disabled |
| [10:10:35] |
<olistudent> |
Hm. I've done that some days ago. But this raised some errors. I will try again. |
| [10:11:02] |
<coderanger> |
matt seems to have rushed this feature in a bit |
| [10:11:54] |
<coderanger> |
I only wish I could say I didn't see this coming, and went on record saying this needed to be isolated from acct_mgr |
| [10:12:36] |
* |
Epcylon has quit IRC |
| [10:12:47] |
<jhammel> |
coderanger: i'm +1 there; i'm hoping to mail trac-dev about that issue soon |
| [10:14:33] |
<coderanger> |
jhammel: The problem is that its become clear acctmgr needs to be partially merged into trac itself |
| [10:15:19] |
<jhammel> |
coderanger: is that going to happen for 0.12? |
| [10:15:24] |
<coderanger> |
unlikely |
| [10:15:54] |
<jhammel> |
coderanger: any particular reason, or just too many things slated for 0.12 already? |
| [10:16:06] |
<coderanger> |
jhammel: No one has begun working on it |
| [10:16:12] |
<coderanger> |
jhammel: "feel free" ;-) |
| [10:16:14] |
* |
cmlenz has quit IRC |
| [10:16:44] |
<jhammel> |
coderanger: heh, i might ;) |
| [10:16:50] |
<olistudent> |
coderanger: It's working now. Thank you. |
| [10:17:20] |
<jhammel> |
coderanger: as a mere developer i'm not 100% sure what our priorities are, but that might be something we're interested in doing; i'll let you know |
| [10:19:41] |
* |
mfork has quit IRC |
| [10:20:01] |
<s0undt3ch> |
olistudent: what issues do you have? regarding email verifications? |
| [10:20:32] |
<olistudent> |
I only want to turn it off because some users complained. But it worked like a charm. |
| [10:21:00] |
<s0undt3ch> |
olistudent: great, some issues with it were resolved on last commits |
| [10:21:15] |
<s0undt3ch> |
but one can't still disable it from admin pages |
| [10:21:30] |
<olistudent> |
I can disable it from admin pages. |
| [10:21:42] |
* |
handyande_ has joined #trac |
| [10:21:58] |
<s0undt3ch> |
olistudent: yes, on the plugins page |
| [10:22:04] |
<coderanger> |
you just need to know which component to disable, which is less friendly than a simple box |
| [10:22:09] |
<s0undt3ch> |
olistudent: the the plug itself does not provide a switch for that |
| [10:22:37] |
<s0undt3ch> |
coderanger: you have write perms on the repo ;) |
| [10:25:58] |
* |
matt_good has joined #trac |
| [10:28:05] |
* |
jerem_y has joined #trac |
| [10:28:29] |
<jerem_y> |
does christian boos hang out here? |
| [10:29:10] |
<lisppaste5> |
huats pasted "debug around run_external called twice" at http://paste.lisp.org/display/62429 |
| [10:29:16] |
<jhammel> |
@seen cboos |
| [10:29:16] |
<evil_twin> |
jhammel: cboos was last seen in #trac 6 weeks, 1 day, 3 hours, 10 minutes, and 52 seconds ago: <cboos> retracile: having the .po files in the repo is not the question, that's ok. It's how we deal with changes to them. I suggested before that when there's a new actual contribution for a given .po file, the update is done in two changesets: first update that .po file (and that .po file only) using the toolchain, (1 more message) |
| [10:29:19] |
<evil_twin> |
New news from t.e.o: Changeset [7213]: 0.11-stable: minor clean-ups in report.py <http://trac.edgewall.org/changeset/7213> |
| [10:29:26] |
<huats> |
retracile_: i have pasted it ... |
| [10:30:35] |
* |
MickMcMack has quit IRC |
| [10:32:11] |
* |
handyande has quit IRC |
| [10:34:04] |
<huats> |
retracile_: sorry but I have to leave.. |
| [10:34:15] |
<huats> |
please mail me if you find anything.... |
| [10:34:56] |
* |
huats has quit IRC |
| [10:37:20] |
* |
kcon has quit IRC |
| [10:38:12] |
* |
handyande has joined #trac |
| [10:39:19] |
* |
hpnadig has quit IRC |
| [10:45:29] |
* |
retracile_ is now known as retracile |
| [10:46:27] |
<retracile> |
asmodai: could be worse. :) |
| [10:47:33] |
<asmodai> |
retracile: PHP? ASP? |
| [10:47:58] |
<retracile> |
asmodai: yeah, those would be worse. ;) |
| [10:48:27] |
<retracile> |
asmodai: But I haven't quite "gotten" EJBs... maybe there's some use for 'em that I haven't seen. |
| [10:48:38] |
<asmodai> |
EJB? |
| [10:49:14] |
* |
handyande_ has quit IRC |
| [10:49:19] |
<retracile> |
asmodai: I'm dealing with javascript and Jav*cough*... Ja*gag*... Sun's implementation of IcedTea... ;) |
| [10:51:26] |
<asmodai> |
Ah |
| [10:51:38] |
<asmodai> |
Java Sprouts |
| [10:53:28] |
* |
[domon]|away is now known as [domon] |
| [10:53:44] |
* |
macmaN6789 has joined #trac |
| [10:57:53] |
<jhammel> |
is there an interface or a way to do something upon plugin enablement? |
| [10:58:08] |
<jhammel> |
(preferably only once per project, but that's an implementation detail) |
| [10:59:30] |
<retracile> |
jhammel: do something in the component's __init__() method, perhaps? |
| [11:01:07] |
|