1 2012-04-07T00:13:31  *** dwcramer has joined #moin-dev
   2 2012-04-07T00:25:59  <dreimark> gb
   3 2012-04-07T00:45:48  *** dwcramer has quit IRC
   4 2012-04-07T03:46:11  *** ayrus12 has joined #moin-dev
   5 2012-04-07T03:49:58  *** sudo_dirk has quit IRC
   6 2012-04-07T03:58:25  *** dwcramer has joined #moin-dev
   7 2012-04-07T04:04:12  *** sudo_dirk has joined #moin-dev
   8 2012-04-07T04:58:21  *** dwcramer has quit IRC
   9 2012-04-07T05:12:09  *** dwcramer has joined #moin-dev
  10 2012-04-07T05:48:03  *** yufra_ has joined #moin-dev
  11 2012-04-07T06:24:16  *** dwcramer has quit IRC
  12 2012-04-07T06:35:58  <xiaq> dreimark: I already filled that out (IM handle) in my melange profile. Is that okay?
  13 2012-04-07T06:49:23  *** chaitu has joined #moin-dev
  14 2012-04-07T07:35:08  *** yufra_ has quit IRC
  15 2012-04-07T07:44:42  *** chaitu has quit IRC
  16 2012-04-07T08:02:33  *** ayrus12 has quit IRC
  17 2012-04-07T08:58:14  <dreimark> xiaq: melange did not show that information to us.
  18 2012-04-07T09:11:46  <xiaq> dreimark: Proposal cannot be modified now... I've added my irc nickname as a comment.
  19 2012-04-07T09:21:46  <dreimark> thx
  20 2012-04-07T09:34:19  *** chaitu has joined #moin-dev
  21 2012-04-07T10:11:27  *** kanha has joined #moin-dev
  22 2012-04-07T10:29:54  <MaikuMori> dreimark: Yes, I did. Both of those discussions/papers.
  23 2012-04-07T10:48:51  <MaikuMori> dreimark: Also responded to the question in melange website. I can discuss it more if needed.
  24 2012-04-07T11:42:56  <dreimark> bbl
  25 2012-04-07T13:22:06  *** greg_f has joined #moin-dev
  26 2012-04-07T14:20:09  <ThomasWaldmann> moin
  27 2012-04-07T14:29:12  *** kanha_ has joined #moin-dev
  28 2012-04-07T14:30:08  *** kanha__ has quit IRC
  29 2012-04-07T14:45:09  *** chaitu has left #moin-dev
  30 2012-04-07T14:51:57  <kanha> moin
  31 2012-04-07T15:07:47  <kanha> eSyr : waldi : I was going through the codes in pygments_in.py regarding bug https://bitbucket.org/thomaswaldmann/moin-2.0/issue/169/highlight-python-does-not-work and found that this file is not executed whenever I write and save anything on wikki page.
  32 2012-04-07T15:08:29  <eSyr> kanha: yes, that's the problem :)
  33 2012-04-07T15:09:03  <kanha> something is wrong with the call
  34 2012-04-07T15:09:05  <eSyr> and noone still haven't digged deeper to understand why it is not, afaik.
  35 2012-04-07T15:09:16  <eSyr> *have
  36 2012-04-07T15:09:30  <eSyr> *dug
  37 2012-04-07T15:11:00  *** xiaq has quit IRC
  38 2012-04-07T15:11:01  <kanha> any idea how or where it should be called?
  39 2012-04-07T15:11:07  *** xiaq has joined #moin-dev
  40 2012-04-07T15:17:42  <ThomasWaldmann> kanha: it seems as x-moin/format is not handled at all
  41 2012-04-07T15:18:16  <ThomasWaldmann> (at least not like looking up a converter for it and calling that)
  42 2012-04-07T15:19:27  <ThomasWaldmann> i began looking at this problem a week ago and trying if i can solve it by unifying macros/parsers/converters
  43 2012-04-07T15:21:35  <kanha> ok
  44 2012-04-07T15:26:33  <kanha> this files executes at the time of runing moin command(i.e at the starting moinmoin) but not after that(means during wikki writing and saving)
  45 2012-04-07T15:27:30  <ThomasWaldmann> yes, it is registering itself when moin starts
  46 2012-04-07T15:29:04  <kanha> but even though highlighter doesn't works
  47 2012-04-07T15:29:28  *** dwcramer has joined #moin-dev
  48 2012-04-07T15:37:34  <kanha> just look at arguments difference between these two.why is nothing is passed inplace of 'self' argument? http://paste.pocoo.org/show/577469/
  49 2012-04-07T15:49:58  <ThomasWaldmann> i dont understand your question and the pastebin is not very readable.
  50 2012-04-07T15:50:48  <kanha> def register(self, factory, type_input, type_output, priority=RegistryBase.PRIORITY_MIDDLE):  >>>from __init__.py
  51 2012-04-07T15:50:55  <kanha> default_registry.register(Converter._factory, Type(type='text'), type_moin_document, default_registry.PRIORITY_MIDDLE + 1)   >>>from pygments_in.py
  52 2012-04-07T15:51:20  <kanha> here why nothing is passed inplace of self?
  53 2012-04-07T15:51:31  <kanha> in second one
  54 2012-04-07T15:52:00  <ThomasWaldmann> it doesnt improve by pasting it into irc client either
  55 2012-04-07T15:53:47  <kanha> I means register is defined in file __init__.py and while calling it in file pygments_in.py as
  56 2012-04-07T15:53:55  <kanha> default_registry.register(Converter._factory, Type(type='text'), type_moin_document, default_registry.PRIORITY_MIDDLE + 1)
  57 2012-04-07T15:54:21  <kanha> then there is a difference in call in second one
  58 2012-04-07T15:54:38  <kanha> there are only 4 arguments for later one
  59 2012-04-07T15:55:40  <kanha> why something is not passed in place of self according to defintion of register given in __init__.py
  60 2012-04-07T15:57:26  <ThomasWaldmann> well, it sounds like you may want to read about how method calls work in python
  61 2012-04-07T16:04:46  *** RogerHaase has joined #moin-dev
  62 2012-04-07T16:15:13  *** DasIch_ has joined #moin-dev
  63 2012-04-07T16:17:35  *** DasIch has quit IRC
  64 2012-04-07T16:17:35  *** DasIch_ is now known as DasIch
  65 2012-04-07T16:49:08  *** dwcramer has quit IRC
  66 2012-04-07T16:55:14  *** kanha has quit IRC
  67 2012-04-07T17:23:58  *** greg_f has quit IRC
  68 2012-04-07T17:32:22  *** dwcramer has joined #moin-dev
  69 2012-04-07T18:47:15  *** dwcramer has quit IRC
  70 2012-04-07T18:59:30  *** dwcramer has joined #moin-dev
  71 2012-04-07T19:00:54  *** jaiditya has joined #moin-dev
  72 2012-04-07T19:05:55  *** yufra_ has joined #moin-dev
  73 2012-04-07T19:14:39  *** dwcramer has quit IRC
  74 2012-04-07T19:47:35  *** jaiditya has quit IRC
  75 2012-04-07T19:52:31  *** jaiditya has joined #moin-dev
  76 2012-04-07T19:52:40  *** jaiditya has joined #moin-dev
  77 2012-04-07T19:57:02  *** jaiditya has quit IRC
  78 2012-04-07T20:20:54  <dreimark> bbl
  79 2012-04-07T20:23:34  * ThomasWaldmann looks at some applications
  80 2012-04-07T20:31:54  *** dwcramer has joined #moin-dev
  81 2012-04-07T20:47:04  <RogerHaase> ThomasWaldmann:  common.js changes ready for review:  http://codereview.appspot.com/5989056/
  82 2012-04-07T20:47:09  <RogerHaase> bbl
  83 2012-04-07T21:38:25  *** yufra_ has quit IRC
  84 2012-04-07T21:45:28  *** dwcramer has quit IRC
  85 2012-04-07T21:47:09  *** dwcramer has joined #moin-dev
  86 2012-04-07T21:55:41  <ThomasWaldmann> dwcramer: hi
  87 2012-04-07T22:36:59  <dwcramer> ThomasWaldmann: hi
  88 2012-04-07T22:41:25  *** spy has joined #moin-dev
  89 2012-04-07T22:42:19  <ThomasWaldmann> dwcramer: at docbook project, did you get applications for moin-related stuff?
  90 2012-04-07T22:44:57  <dwcramer> ThomasWaldmann: Unfortunately no.
  91 2012-04-07T22:45:51  <dwcramer> I'm thinking we should have had more detail on the ideas pages from the beginning.
  92 2012-04-07T22:45:56  <dwcramer> So maybe next year.
  93 2012-04-07T22:46:17  <dwcramer> If someone ends up doing work on it before then and you want some advice from the DocBook side, let me know.
  94 2012-04-07T22:47:39  <ThomasWaldmann> at moin, we got one proposal about improving dom converters. this might include some docbook work.
  95 2012-04-07T22:47:43  <dwcramer> I looked at some moin2 code dreimark pointed me to and I saw some thing I would suggest changing to make the DocBook output more in line with the way DocBook is generally used.
  96 2012-04-07T22:48:13  <dwcramer> Ah, ok. Well feel free to include me as a co-mentor from the DocBook side for that one.
  97 2012-04-07T22:48:23  <dwcramer> If you end up accepting it.
  98 2012-04-07T22:48:53  <ThomasWaldmann> well, maybe have a look at it in melange and give comments there.
  99 2012-04-07T22:58:22  *** dwcramer has quit IRC
 100 2012-04-07T23:06:02  *** dwcramer has joined #moin-dev
 101 2012-04-07T23:11:28  <dreimark> re
 102 2012-04-07T23:35:30  <sudo_dirk> dreimark: wb... there was a ms png type but now gif type. i added those to cr with the comment i want to use for pull request.
 103 2012-04-07T23:39:39  <sudo_dirk> gn8 all.
 104 2012-04-07T23:46:03  <dwcramer> ThomasWaldmann: Ok, will do.
 105 2012-04-07T23:55:08  <RogerHaase> re

MoinMoin: MoinMoinChat/Logs/moin-dev/2012-04-07 (last edited 2012-04-06 22:45:03 by IrcLogImporter)