1 2010-06-11T00:18:03 *** RogerHaase
2 2010-06-11T01:08:21 *** CIA-47
3 2010-06-11T01:53:39 *** CIA-47
4 2010-06-11T05:51:48 <CIA-47> Diogenes Augusto <diofeher@gmail.com> default * 8251:56505f7156a4 2.0-dev-jinja2-plugins-dfeher/MoinMoin/ (templates/head.html theme/jinja.py): [templating] fix stylesheet rendering acording actual theme (before was using cfg.default)
5 2010-06-11T07:05:15 <diofeher> ThomasWaldmann TheSheep: I was wondering if I could call a function inside template... to render Logo in template e.g.: {% block logo %} {{ theme.render_logo() }} {% endblock %}
6 2010-06-11T07:05:40 <diofeher> we could use this to replace passing variables in dict
7 2010-06-11T07:14:41 <CIA-47> Diogenes Augusto <diofeher@gmail.com> default * 8252:396483bdfc30 2.0-dev-jinja2-plugins-dfeher/MoinMoin/theme/jinja.py: [templating] moving request.getText and request.cfg to globals dict of environment
8 2010-06-11T07:17:06 <TheSheep> diofeher: but all html should be generated in template
9 2010-06-11T07:17:27 <TheSheep> diofeher: so there is not much point calling functions inside it
10 2010-06-11T07:20:56 <diofeher> TheSheep: but i mean, return only variable
11 2010-06-11T07:21:05 <diofeher> like ThemeBase.logo()
12 2010-06-11T07:48:31 <TheSheep> diofeher: I'm at work now and can't look at the code
13 2010-06-11T07:48:59 <TheSheep> diofeher: but the general rule of thumb is, if it contains html tags, it should probably be generated by theme
14 2010-06-11T07:49:18 <diofeher> unrun, i know this part
15 2010-06-11T07:49:24 <TheSheep> diofeher: of course it's ok to call functions to get urls (you really need that link_to function, fo example)
16 2010-06-11T07:49:40 <diofeher> well, i've done external script like you said
17 2010-06-11T07:49:46 <diofeher> gonna commit now
18 2010-06-11T07:49:50 <TheSheep> diofeher: especially when getting the value is expensive and you only need it sometimes
19 2010-06-11T07:51:42 <CIA-47> Diogenes Augusto <diofeher@gmail.com> default * 8253:52bc6f364a46 2.0-dev-jinja2-plugins-dfeher/MoinMoin/ (templates/header.html theme/jinja.py): [templating] refactoring searchform function and your rendering in header.html
20 2010-06-11T07:51:43 <CIA-47> Diogenes Augusto <diofeher@gmail.com> default * 8254:1a0918f50548 2.0-dev-jinja2-plugins-dfeher/MoinMoin/ (templates/head.html theme/jinja.py): [templating] rendering external scripts with jinja
21 2010-06-11T08:14:45 <diofeher> gonna get some sleep... bbl
22 2010-06-11T08:20:49 *** DmitryAndreev
23 2010-06-11T09:45:13 *** DmitryAndreev
24 2010-06-11T12:15:29 <ThomasWaldmann> diofeher: http://hg.moinmo.in/moin/2.0-dev-jinja2-plugins-dfeher/rev/52bc6f364a46#l1.19
25 2010-06-11T12:16:01 <ThomasWaldmann> why is it only half i18ned?
26 2010-06-11T12:16:03 <eSyr> ThomasWaldmann: btw, what about parse_quoted_separated fix?
27 2010-06-11T12:16:23 <ThomasWaldmann> didn't look at it yet
28 2010-06-11T12:16:34 <eSyr> ok.
29 2010-06-11T12:17:01 <ThomasWaldmann> was too hot here yesterday :)
30 2010-06-11T12:17:16 <eSyr> oh, ok.
31 2010-06-11T12:17:29 <eSyr> In Moscow it's raining last three days.
32 2010-06-11T12:19:27 <ThomasWaldmann> diofeher: http://hg.moinmo.in/moin/2.0-dev-jinja2-plugins-dfeher/rev/396483bdfc30
33 2010-06-11T12:19:51 <ThomasWaldmann> iirc I did most of this stuff already at some other place, so why do we have it twice now?
34 2010-06-11T12:26:56 <ThomasWaldmann> TheSheep: diofeher: instead of that "d" crap, i wonder whether we should give theme instance into templating env and have some stuff lazily computed using a property (cached_property from werkzeug?) and also methods callable from template
35 2010-06-11T12:30:27 <ThomasWaldmann> so, e.g. the template could just refer to theme.title property (or call theme.title() method) and theme.title doesn't need to deal with that "d" stuff
36 2010-06-11T12:42:53 <ThomasWaldmann> diofeher: http://hg.moinmo.in/moin/2.0-dev-jinja2-plugins-dfeher/file/31b9c590fba3/MoinMoin/templates/footer.html#l8 double /div?
37 2010-06-11T12:43:49 <ThomasWaldmann> diofeher: http://hg.moinmo.in/moin/2.0-dev-jinja2-plugins-dfeher/file/31b9c590fba3/MoinMoin/templates/footer.html#l15
38 2010-06-11T12:44:41 <ThomasWaldmann> http://hg.moinmo.in/moin/2.0-dev-jinja2-plugins-dfeher/file/31b9c590fba3/MoinMoin/templates/footer.html#l1
39 2010-06-11T12:45:04 <ThomasWaldmann> could you please stop with such useless and duplicated comments?
40 2010-06-11T12:46:41 <ThomasWaldmann> if mean, if you have templates/footer.html - just telling it is "template used to render footer" is giving zero additional information
41 2010-06-11T12:47:17 <ThomasWaldmann> so either just drop that or give more precise information (if necessary)
42 2010-06-11T12:52:19 <ThomasWaldmann> diofeher: TheSheep: i also think template structure needs cleanup
43 2010-06-11T12:56:19 <ThomasWaldmann> at some places it is kind of asymmetric, like having <html>, but not </html>
44 2010-06-11T12:56:47 <ThomasWaldmann> (this comes of too much copying from old way)
45 2010-06-11T13:04:23 <TheSheep> we already talked about that
46 2010-06-11T13:04:27 <TheSheep> and agreed on new layout
47 2010-06-11T13:07:11 <ThomasWaldmann> does he have a single place for his todo?
48 2010-06-11T13:09:40 <TheSheep> I don't see any todo that wouldn't be a month old
49 2010-06-11T13:09:54 <TheSheep> I guess I will make one
50 2010-06-11T13:11:31 <ThomasWaldmann> i saw him adding todo to his diary, which is no good
51 2010-06-11T13:13:27 *** DmitryAndreev
52 2010-06-11T13:31:57 <CIA-47> Valentin Janiaut <valentin.janiaut@utbm.fr> default * 8327:36f770789c51 2.0-dev-docbook-html-vjaniaut/MoinMoin/converter2/html_in.py: Add support for <ul> and <ol> list for the HTML_IN converter
53 2010-06-11T13:32:32 <valeuf> the visit_xhtml_ul and visit_xhtml_ol will be really similar, do you think that I can make one function to handle the both case ?
54 2010-06-11T13:32:51 <valeuf> or it is better to keep "one function per element" design ?
55 2010-06-11T13:33:42 *** DmitryAndreev
56 2010-06-11T13:35:38 <ThomasWaldmann> valeuf: maybe decide that when you're finished with it
57 2010-06-11T13:35:48 <valeuf> ThomasWaldmann: ok
58 2010-06-11T13:36:04 <ThomasWaldmann> ul will be rather simple, but ol will have some special treatment for the different kind of lists
59 2010-06-11T13:36:18 <valeuf> because I will also parse for the attribute, to define if there is some special style on the list, so it can be a litttle bit big
60 2010-06-11T13:36:29 <valeuf> I will see when it will be done, you are right
61 2010-06-11T13:38:03 <valeuf> ok I should go to univ, but I will try to finish list conversion tonight now I found solution to do it :)
62 2010-06-11T13:46:34 <dreimark> ei-grad: what are you doing?
63 2010-06-11T15:51:06 *** DmitryAndreev
64 2010-06-11T16:02:09 *** RogerHaase
65 2010-06-11T16:08:13 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8280:1521b837bc5d 2.0-dev/MoinMoin/support/emeraldtree/ (5 files): Update emeraldtree (rev 78:1481eb88baf8)
66 2010-06-11T16:08:21 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8281:f4144d984512 2.0-dev/MoinMoin/converter2/ (_tests/test_link.py link.py): List converter - Use element iterator
67 2010-06-11T16:08:21 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8282:210a6954ff21 2.0-dev/MoinMoin/converter2/link.py: List converter - Use real objects in tree
68 2010-06-11T16:08:21 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8283:4ec1719a732d 2.0-dev/MoinMoin/converter2/moinwiki_in.py: Moin Wiki input converter - Use real objects in tree
69 2010-06-11T16:08:21 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8284:7306729f17f6 2.0-dev/MoinMoin/items/__init__.py: Items - Remove call for old macro converter approach
70 2010-06-11T16:20:17 <diofeher> moin
71 2010-06-11T17:15:33 <waldi> hmm, another change that moves complexity from invocation to startup ...
72 2010-06-11T17:18:26 <ThomasWaldmann> in the end, moin will take an hour to startup, but then it'll do all in zero time
73 2010-06-11T17:22:33 <diofeher> TheSheep: removed macro and now i'm using a list and iterate over template
74 2010-06-11T17:25:24 <waldi> ThomasWaldmann: no, this would need infinite time to startup
75 2010-06-11T17:26:09 <ThomasWaldmann> :)
76 2010-06-11T17:36:25 *** kursor
77 2010-06-11T17:50:29 <CIA-47> Diogenes Augusto <diofeher@gmail.com> default * 8255:e12c825f0d2b 2.0-dev-jinja2-plugins-dfeher/MoinMoin/ (templates/head.html theme/jinja.py): [templating] removing html_head, converting universal_edit_button, reverting html_stylesheets but now return a tuple to use in iteration on template
78 2010-06-11T17:53:35 <TheSheep> diofeher: I think we should prepare a single page with your todo, so that you have one place to look at when deciding what to do next
79 2010-06-11T17:53:55 <TheSheep> diofeher: of course not full todo, but things to do in the coming days
80 2010-06-11T17:54:26 <TheSheep> diofeher: I think at the moment tests are not that important, especially since the structure of templates is going to change
81 2010-06-11T17:54:57 <TheSheep> diofeher: we need to research about i18n and using templates from themes
82 2010-06-11T17:56:05 <diofeher> TheSheep: ok... but i18n will have a separate repository or it will be mine actual?
83 2010-06-11T17:57:07 <TheSheep> diofeher: babel is very similar to gettext and the current approach, so I don't think there will be that may changes in our part
84 2010-06-11T17:57:25 <TheSheep> diofeher: although I need to read more about it
85 2010-06-11T17:57:37 <TheSheep> you too, of course
86 2010-06-11T17:58:45 <diofeher> tonight i will read documentation of both so
87 2010-06-11T17:59:31 <valeuf> moin
88 2010-06-11T18:00:09 <diofeher> TheSheep: http://www.moinmo.in/DiogenesAugusto/GSoC2010/TODO
89 2010-06-11T18:21:37 <valeuf> waldi: I found upper-alpha and upper-roman for the ordered list, but what are the equivalent for lower letters ?
90 2010-06-11T18:21:49 <valeuf> waldi: is there lower-alpha and lower-roman ?
91 2010-06-11T18:23:30 <TheSheep> diofeher: I edited it a bit :)
92 2010-06-11T18:24:42 <diofeher> oh nice, that's what i'm talking about :D
93 2010-06-11T18:30:15 <TheSheep> diofeher: I'm not up to spped now, but would you have time to talk after the developer meeting on Sunday?
94 2010-06-11T18:30:44 <TheSheep> diofeher: ideally I'd like to get something to draw on, some whiteboard thing
95 2010-06-11T18:30:53 <TheSheep> diofeher: to plan further work
96 2010-06-11T18:31:09 <TheSheep> diofeher: I know I've been kind of lacking in direction so far
97 2010-06-11T18:31:09 <diofeher> TheSheep: yes, i would have time
98 2010-06-11T18:31:22 <TheSheep> I apologize for that
99 2010-06-11T18:31:32 <diofeher> relax, you are helping me :P
100 2010-06-11T18:31:37 <CIA-47> Valentin Janiaut <valentin.janiaut@utbm.fr> default * 8328:059ad65f9cd8 2.0-dev-docbook-html-vjaniaut/MoinMoin/converter2/html_in.py: Implement definition list for HTML_IN converter
101 2010-06-11T18:31:38 <CIA-47> Valentin Janiaut <valentin.janiaut@utbm.fr> default * 8329:eecf7c737ceb 2.0-dev-docbook-html-vjaniaut/MoinMoin/converter2/_tests/test_html_in.py: Add tests for the <ol> list for the HTML_IN converter
102 2010-06-11T18:31:40 <CIA-47> Valentin Janiaut <valentin.janiaut@utbm.fr> default * 8330:34a5661777e6 2.0-dev-docbook-html-vjaniaut/MoinMoin/converter2/html_in.py: Add support for the type attribute of the <ol> list for HTML_IN converter
103 2010-06-11T18:32:11 <diofeher> [off-topic] are you watching world cup? :D
104 2010-06-11T18:38:22 <TheSheep> no, what's that?
105 2010-06-11T18:39:23 <valeuf> TheSheep: I would be so happy to be able to do not know about World Cup ...
106 2010-06-11T18:44:27 <diofeher> hehe, so you all don't like soccer? :D
107 2010-06-11T18:45:02 <diofeher> TheSheep: www.fifa.com
108 2010-06-11T18:46:38 <TheSheep> ew
109 2010-06-11T18:46:50 <TheSheep> well, a bunch of adult men runnng around for a ball
110 2010-06-11T18:46:59 <TheSheep> as if they couldn't get one ball for each of them
111 2010-06-11T18:47:22 <TheSheep> I like to watch sumo championships though
112 2010-06-11T18:47:36 <diofeher> sumo championships? haha nice
113 2010-06-11T18:47:40 <TheSheep> then again, I didn't watch any since 4 years, because I have no tv
114 2010-06-11T18:47:53 <diofeher> never watched
115 2010-06-11T18:48:05 <TheSheep> diofeher: the yare awesome, you can tell who is going to win just by watching them before the combat
116 2010-06-11T18:48:11 <TheSheep> diofeher: it's pure psuchology
117 2010-06-11T18:48:17 <TheSheep> psychology
118 2010-06-11T18:48:22 * TheSheep <-- a little drunk ,sorry
119 2010-06-11T18:49:01 <TheSheep> of course the guys themselves are not very nice
120 2010-06-11T18:49:07 <TheSheep> but meh
121 2010-06-11T18:49:26 <TheSheep> I don't lik watching men anyways ;)
122 2010-06-11T18:49:52 <diofeher> haha, the only thing i know about sumo is this gif http://www.bass-ackwards.net/ftp/Sumo%20Fighter%20Turbo.gif
123 2010-06-11T18:50:15 <TheSheep> diofeher: except for the effects, that's how it looks
124 2010-06-11T18:50:23 <diofeher> soccer is VERY VERY VERY popular here
125 2010-06-11T18:50:24 <TheSheep> diofeher: but there is actually a lot of technique in it
126 2010-06-11T18:50:41 <diofeher> i'm gonna watch to see if it is good ^^
127 2010-06-11T18:50:47 <TheSheep> diofeher: so it is in Poland, but I don't have a need to follow the sheep around me
128 2010-06-11T18:51:00 <diofeher> is it there?
129 2010-06-11T18:51:14 <diofeher> in every street, kids are playing , and i'm not kidding
130 2010-06-11T18:51:37 <TheSheep> yeah
131 2010-06-11T18:51:43 <TheSheep> and on every pause at school
132 2010-06-11T18:51:53 <diofeher> hahah nice to know
133 2010-06-11T18:52:10 * TheSheep used to read at puses at school
134 2010-06-11T18:52:14 <TheSheep> pauses
135 2010-06-11T18:52:14 <diofeher> i thought that they play ski or this kind of sports there
136 2010-06-11T18:52:31 <TheSheep> diofeher: we only have real snow about 2-3 months a year
137 2010-06-11T18:52:44 <TheSheep> diofeher: plus, soccer on ice adds challenge ;)
138 2010-06-11T18:53:25 <TheSheep> diofeher: it's 2-3 months snow, 2 moths of summer and the rest is mud and rain
139 2010-06-11T18:54:00 <diofeher> ew :S i thought that was snow all year
140 2010-06-11T18:54:07 * TheSheep is trying to locate the hobgoblin music store in birmingham
141 2010-06-11T18:54:26 <TheSheep> diofeher: only in the mountais, which are about 800km from here
142 2010-06-11T18:55:16 <TheSheep> wow, it's right opposite the custard factory XD
143 2010-06-11T18:56:41 <diofeher> hehe, we were talking a few days before about ocarina
144 2010-06-11T18:56:49 <diofeher> i'm gonna buy one ^^
145 2010-06-11T18:57:33 <diofeher> btw, i saw a very strange tutorial this week
146 2010-06-11T18:57:48 <diofeher> http://www.youtube.com/watch?v=vsboQ7cp7a4&feature=fvst < how to make a ocarina carrot :P
147 2010-06-11T18:58:43 <TheSheep> yeah, the guys is awesome
148 2010-06-11T18:58:51 <TheSheep> have you seen his broccolina?
149 2010-06-11T18:59:04 <TheSheep> an occarina made of broccoli
150 2010-06-11T18:59:13 <TheSheep> biggu sizeu desu ;)
151 2010-06-11T18:59:36 <diofeher> haha, didn't see yet...
152 2010-06-11T19:00:37 <TheSheep> diofeher: this guys is something: http://www.youtube.com/watch?v=VaKoSrP_a7Y
153 2010-06-11T19:00:42 <TheSheep> guy*
154 2010-06-11T19:01:47 <diofeher> i saw this guy.. he really play nice
155 2010-06-11T19:02:55 <TheSheep> I can play Country Roads so far ;)
156 2010-06-11T19:03:05 <diofeher> really? :D
157 2010-06-11T19:03:18 <diofeher> i'm gonna do one carrot ocarina for me :D
158 2010-06-11T19:03:46 <TheSheep> I even wrote down the fingerings, but they are in the tinwhistle notation
159 2010-06-11T19:03:58 <TheSheep> for ocarina notation you'd need to substract them from 7
160 2010-06-11T19:11:55 <diofeher> country roads is very nice :P
161 2010-06-11T19:12:04 <diofeher> you gonna teach me this later haha
162 2010-06-11T19:12:16 <diofeher> i'm laughing a lot with this japanese guy
163 2010-06-11T19:12:33 <diofeher> leavin now, going to college
164 2010-06-11T19:12:37 <diofeher> bye TheSheep
165 2010-06-11T19:46:36 *** DmitryAndreev
166 2010-06-11T20:22:12 <dreimark> re
167 2010-06-11T20:28:07 *** grzywacz
168 2010-06-11T20:28:44 <valeuf> TheSheep: hobgo
169 2010-06-11T20:28:48 *** grzywacz
170 2010-06-11T20:28:55 <valeuf> TheSheep: hobgoblin looks nice ^ ^
171 2010-06-11T20:30:57 <waldi> hmm, how to write bad readable things in python: ''.join(a in filter and a or u'%%%02X' % ord(a) for a in t_plain.encode('utf-8'))
172 2010-06-11T20:32:19 <dreimark> lessor or more
173 2010-06-11T20:34:53 <TheSheep> waldi: I assume filter is shadowed there?
174 2010-06-11T20:35:14 <waldi> TheSheep: yes, thats a local variable
175 2010-06-11T20:35:22 <TheSheep> madness
176 2010-06-11T20:38:48 <waldi> what puzzles me is the high standard deviation in the times of my runtime tests
177 2010-06-11T20:39:36 <CIA-47> Pascal Volk <user@localhost.localdomain.org> default * 5705:b0d90631ed9e 1.9/MoinMoin/script/import/irclog.py: script.import.irclog: updated the --page option's help message.
178 2010-06-11T20:48:14 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8285:9e78da0374cc 2.0-dev/MoinMoin/items/__init__.py: Items - Use unicode array for tree writing
179 2010-06-11T20:48:15 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8286:f1912c491e9d 2.0-dev/MoinMoin/util/ (_tests/test_iri.py iri.py): Iri - Use regular expression instead of character lists
180 2010-06-11T20:51:09 <CIA-47> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5706:287a81fae267 1.9/MoinMoin/theme/__init__.py: PEP8 whitespace fix
181 2010-06-11T21:11:39 *** TheSheep
182 2010-06-11T21:32:17 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8287:957f98795dc3 2.0-dev/MoinMoin/converter2/_wiki_macro.py: Macro handling - Use unicode, don't use namespace attribute of tree helpers
183 2010-06-11T21:32:19 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8288:c93c0a1fe7b6 2.0-dev/MoinMoin/converter2/html_out.py: HTML output converter - Don't use namespace attribute of tree helpers
184 2010-06-11T21:32:20 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8289:5092f68aeefe 2.0-dev/MoinMoin/converter2/moinwiki_in.py: Moin Wiki input converter - Don't use namespace attribute of tree helpers
185 2010-06-11T21:32:22 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8290:709d2a38545c 2.0-dev/MoinMoin/converter2/html_out.py: HTML output converter - Only create QNames once in attribute convertion
186 2010-06-11T21:32:23 <CIA-47> Bastian Blank <bblank@thinkmo.de> default * 8291:627394637207 2.0-dev/MoinMoin/converter2/html_out.py: HTML output converter - Only create QNames once in some heavy used methods
187 2010-06-11T22:00:08 <valeuf> I have two failing test with the my latest merge with the main branch of Moin2.0
188 2010-06-11T22:00:32 <valeuf> one is a small PEP8 problem in utils/_tests/test_mime.py
189 2010-06-11T22:01:22 <valeuf> and one is directly an error in the code of wikiutil.py at the line 2349
190 2010-06-11T22:01:30 <valeuf> AttributeError: 'Iri' object has no attribute 'rfind'
191 2010-06-11T22:01:47 <valeuf> do you get same error on your computer ? Or am I the only one ?
192 2010-06-11T22:02:15 <CIA-47> Valentin Janiaut <valentin.janiaut@utbm.fr> default * 8331:ba96fe365cb6 2.0-dev-docbook-html-vjaniaut/MoinMoin/converter2/_tests/test_html_in.py: Add test for <br /> tag HTML_IN converter
193 2010-06-11T22:02:16 <CIA-47> Valentin Janiaut <valentin.janiaut@utbm.fr> default * 8332:5eed130a6e12 2.0-dev-docbook-html-vjaniaut/MoinMoin/converter2/html_in.py: Implement conversion of the <br /> tag for the HTML_IN converter
194 2010-06-11T22:02:21 <CIA-47> Valentin Janiaut <valentin.janiaut@utbm.fr> default * 8350:5c553659494b 2.0-dev-docbook-html-vjaniaut/MoinMoin/ (13 files in 6 dirs): Merge with moin2.0-dev
195 2010-06-11T22:03:28 <waldi> wikiutils *gna*
196 2010-06-11T22:03:36 <valeuf> waldi: ?
197 2010-06-11T22:09:45 <waldi> i try to remove code from this trash as i fix things
198 2010-06-11T22:23:46 <valeuf> waldi: ah ah ah ok, I see
199 2010-06-11T23:46:11 <ThomasWaldmann> http://www.adobe.com/support/security/bulletins/apsb10-14.html < world class industrial coding
200 2010-06-11T23:49:04 <valeuf> I have a bug with moin 1.9.2 and DocBook export ^ ^
201 2010-06-11T23:52:42 <valeuf> a quick patch to fix it would be : http://paste.pocoo.org/show/224403/
202 2010-06-11T23:52:57 <valeuf> however, I am wondering, if some general settings to support unicode would not be better
203 2010-06-11T23:54:23 <valeuf> something like : "sys.setdefaultencoding( "utf-8" )" with the appropriate encoding depending each user ?
204 2010-06-11T23:55:01 <waldi> this is not possible
205 2010-06-11T23:55:59 <valeuf> waldi: ok well, in this case, my patch is ok
206 2010-06-11T23:56:04 <valeuf> I will quickly wrote a bug report