1 2014-06-06T03:52:08  *** sl33k_ has quit IRC
   2 2014-06-06T04:15:05  *** sl33k_ has joined #moin-dev
   3 2014-06-06T05:04:19  *** dreimark has quit IRC
   4 2014-06-06T05:04:26  *** dreimark has joined #moin-dev
   5 2014-06-06T05:06:15  *** waldi_ has joined #moin-dev
   6 2014-06-06T05:09:47  *** sharky93_ has joined #moin-dev
   7 2014-06-06T05:15:16  *** sharky93 has quit IRC
   8 2014-06-06T05:15:16  *** jek has quit IRC
   9 2014-06-06T05:15:17  *** waldi has quit IRC
  10 2014-06-06T05:15:18  *** Cthulhux has quit IRC
  11 2014-06-06T05:15:18  *** dimazest has quit IRC
  12 2014-06-06T05:26:54  *** dimazest has joined #moin-dev
  13 2014-06-06T05:26:54  *** jek has joined #moin-dev
  14 2014-06-06T05:26:54  *** Cthulhux has joined #moin-dev
  15 2014-06-06T05:28:30  *** jek has quit IRC
  16 2014-06-06T05:28:31  *** Cthulhux has quit IRC
  17 2014-06-06T05:28:31  *** dimazest has quit IRC
  18 2014-06-06T05:33:36  *** Cthulhux has joined #moin-dev
  19 2014-06-06T05:33:36  *** jek has joined #moin-dev
  20 2014-06-06T05:33:36  *** dimazest has joined #moin-dev
  21 2014-06-06T06:22:50  *** Bernard1 has joined #moin-dev
  22 2014-06-06T07:35:43  *** sl33k_ has quit IRC
  23 2014-06-06T07:37:08  *** Bernard1 has quit IRC
  24 2014-06-06T07:38:27  *** sl33k_ has joined #moin-dev
  25 2014-06-06T07:48:32  *** waldi_ is now known as waldi
  26 2014-06-06T07:48:32  *** waldi has joined #moin-dev
  27 2014-06-06T07:51:20  *** penguinRaider has quit IRC
  28 2014-06-06T08:30:53  *** penguinRaider has joined #moin-dev
  29 2014-06-06T08:58:44  *** greg_f has joined #moin-dev
  30 2014-06-06T09:20:33  *** sl33k_ has quit IRC
  31 2014-06-06T09:28:42  *** sl33k_ has joined #moin-dev
  32 2014-06-06T11:27:35  *** Bernard1 has joined #moin-dev
  33 2014-06-06T12:00:53  *** derdon has joined #moin-dev
  34 2014-06-06T12:14:38  <Bernard1> With help of RogerHaase I could configure how to use WingIDE to debug Moin. I documented it in http://moinmo.in/MoinMoin2/IdeSetup for re-use. From moin I could follow the initialisation, step by step. Now I set a breakpoint on items.__init__.py method do_show and method do_modify. After settings these breakpoints I changed a wikipage, and would expect code stops at these breakpoints.  But no stop. Where do I have to set breakpoints to see what
  35 2014-06-06T12:17:39  *** derdon has quit IRC
  36 2014-06-06T12:40:24  *** dave_largo has joined #moin-dev
  37 2014-06-06T12:42:55  *** sl33k_ has quit IRC
  38 2014-06-06T12:44:44  *** RogerHaase has joined #moin-dev
  39 2014-06-06T13:07:10  *** derdon has joined #moin-dev
  40 2014-06-06T13:37:13  <Bernard1> I would like to debug Moin. Where should I set a breakpoint to catch a wiki page modification?
  41 2014-06-06T13:43:29  <RogerHaase> Bernard1: try line 176 of MoinMoin/converter/moinwiki_in.py, and then view the Home page (assuming you did ./m sample)
  42 2014-06-06T13:52:34  <Bernard1> RogerHaase: Yes, I did execute allready ./m sample.  I set a breakpoint, and made an edit  but the breakpoint was not triggered.
  43 2014-06-06T13:53:02  <Bernard1> The edit was porcessed correctly.
  44 2014-06-06T13:56:21  <RogerHaase> Bernard1: in PyCharm there is both a run mode and a debug mode. Does wingide have something similar and are you in debug mode?  (you should have hit the breakpoing just by refreshing the page, no need to edit it.)
  45 2014-06-06T14:08:33  <Bernard1> RogerHaase: Yes I can debug moin. If i set a breakpoint in moin-2.0-venvpython/bin/moin I can follow the whole process of starting moin until the wiki is available in the browser.
  46 2014-06-06T14:20:34  <RogerHaase> Bernard1: no ideas. Only thought is to try installing Community Edition of PyCharm, and maybe that will give you a clue as to how to setup WingIDE.
  47 2014-06-06T14:49:21  <Bernard1> RogerHaase: That might be possible. But that is a long way going a different direction hoping for a solution. What I noticed in System monitor that 4 instances of Python2.7 are used. WingIDE itself is written in Python and uses one. So Moin uses 3 instances it self. I can imagine I view the wrong instance.
  48 2014-06-06T16:42:45  *** penguinRaider has quit IRC
  49 2014-06-06T16:44:55  *** skathpalia has joined #moin-dev
  50 2014-06-06T16:50:44  *** penguinRaider has joined #moin-dev
  51 2014-06-06T16:53:01  <RogerHaase> Bernard1: had one idea  --  you did remember to stop built-in server running on same port as your WingIDE
  52 2014-06-06T17:01:13  <Bernard1> RogerHaase: No, how I should do that?
  53 2014-06-06T17:15:31  <RogerHaase> Bernard1: ctrl-C in terminal window running the built-in server
  54 2014-06-06T17:20:43  <RogerHaase> Bernard1: btw, you can run built-in server on another port - ./m run --port 8081
  55 2014-06-06T17:29:01  <Bernard1> RogerHaase: When I use Ctrl-C I also kill WingIDE. I e-mail WingIDE and explained my problem. They do not have Moin knowledge, but good general Python knowledge. They replied fast. They said I no need to execute within Venv as explained in http://moinmo.in/MoinMoin2/IdeSetup. It is sufficient to point Python executable to the Venv Python version. Seems logical to me. They also said if, in Moin, is it possible to configure a single Python process
  56 2014-06-06T17:35:22  <Bernard1> RogerHaase: I execute WingIDE outside Venv, and could run Moin and debug it from the start in moin-2.0-venv-python/bin/moin So this seems Ok.   But now I do not have a terminal which I could stop. Because I start running just from moin I can not (or I do not know how) to set additional parameters.
  57 2014-06-06T17:39:59  *** greg_f has quit IRC
  58 2014-06-06T17:41:58  <RogerHaase> Bernard1: I was thinking you may have left the built-in server running in one terminal window and started wingide in some other process/window.  In that case you would have 2 servers running on the same port and usually oldest server takes all requests. But that seems to not apply here.
  59 2014-06-06T17:43:03  <skathpalia> ThomasWaldmann, Made a very basic /+tickets view for displaying list of tickets
  60 2014-06-06T17:43:13  <skathpalia> You can review it here https://codereview.appspot.com/102140045
  61 2014-06-06T17:44:06  <RogerHaase> Bernard1: While you can send additional parameters, to run server you do not want to.  When you start wingide, do you get some console log that looks like this?  http://rn0.me/show/Tcbo8iz6QsSVpAdsS45J/
  62 2014-06-06T17:45:52  <RogerHaase> Bernard1: oops, missed some output http://rn0.me/show/3Q8mYwUZOl1AbiKwk1Xx/
  63 2014-06-06T17:48:35  <Bernard1> RogerHaase: Yes, very similar. But the first 3 lines, about pydev debugger is not there for me. Until line 16 is allmost equal. line 17 about pudev debugger I miss again. We are getting close I feel.
  64 2014-06-06T17:53:28  <RogerHaase> Bernard1: when I do pycharm run (e.g. not debug),  this is on console log:  http://rn0.me/show/P6d4u0TcBUbD3GP4oGU9/
  65 2014-06-06T17:59:05  <Bernard1> RogerHaase: That is almost identical what I have.
  66 2014-06-06T18:12:13  *** skathpalia has quit IRC
  67 2014-06-06T19:25:34  *** Bernard1 has quit IRC
  68 2014-06-06T20:01:35  *** Cthulhux has quit IRC
  69 2014-06-06T20:02:04  *** Cthulhux has joined #moin-dev
  70 2014-06-06T21:09:31  *** dave_largo has quit IRC
  71 2014-06-06T21:31:31  * ThomasWaldmann added some comments on https://codereview.appspot.com/102140045
  72 2014-06-06T22:04:08  <RogerHaase> ThomasWaldmann: docbook  https://codereview.appspot.com/101960044/
  73 2014-06-06T22:06:33  <RogerHaase> ThomasWaldmann: also revised docbook page, but no intent to create new serialized/items.moin as of now  http://www.digitalrockart.org/moin2/docbook
  74 2014-06-06T22:12:59  *** RogerHaase has left #moin-dev
  75 2014-06-06T22:22:18  <ThomasWaldmann> that was quick :)
  76 2014-06-06T23:13:54  *** sharky93_ is now known as sharky93
  77 

MoinMoin: MoinMoinChat/Logs/moin-dev/2014-06-06 (last edited 2014-06-06 04:00:02 by IrcLogImporter)