2009-05-04T00:02:03  *** dimazest_ has joined #moin-dev
2009-05-04T00:02:03  *** dimazest has quit IRC
2009-05-04T00:50:16  *** dimazest_ has quit IRC
2009-05-04T07:46:36  *** dimazest has joined #moin-dev
2009-05-04T08:03:27  *** dimazest has quit IRC
2009-05-04T08:05:34  *** Noya has quit IRC
2009-05-04T08:05:38  *** Noya has joined #moin-dev
2009-05-04T08:16:27  *** devilsadvocate has quit IRC
2009-05-04T08:17:07  *** devilsadvocate has joined #moin-dev
2009-05-04T08:29:49  *** dimazest has joined #moin-dev
2009-05-04T08:33:07  *** dimazest has quit IRC
2009-05-04T08:34:06  *** dimazest has joined #moin-dev
2009-05-04T08:45:28  <ThomasWaldmann> moin
2009-05-04T08:46:10  <TheSheep> moin
2009-05-04T08:51:18  <ThomasWaldmann> TheSheep: btw, it could be that moin needs new theme from scratch soon, based on jinja2
2009-05-04T08:52:31  <TheSheep> cool
2009-05-04T08:53:41  <ThomasWaldmann> i currently set it up for content area only, but doing all with it would be nicer.
2009-05-04T08:54:45  <TheSheep> definitely
2009-05-04T08:55:21  <TheSheep> although moin still needs a well thought out theme api
2009-05-04T08:55:30  <dennda> theme api?
2009-05-04T08:55:55  <TheSheep> functions you can call inside your theme
2009-05-04T08:56:23  <TheSheep> the ones currently in ThemeBase are pretty specific to existing themes
2009-05-04T08:56:50  <dennda> ah
2009-05-04T08:56:59  <TheSheep> no way to get the actions as an <ul> list instead of <select>, for example
2009-05-04T08:57:15  <dennda> that's not directly dependant on ripping out the html from the code and putting it in seperate templates
2009-05-04T08:57:27  <dennda> umm
2009-05-04T08:57:41  <ThomasWaldmann> I am currently ripping out AttachFile and everything related
2009-05-04T08:57:45  <dennda> you don't want something like get_actions_as_ul(), do you?
2009-05-04T08:57:45  <TheSheep> yeah, but you don't want to have lots of themes using the old api
2009-05-04T08:58:02  <TheSheep> no, I want an 'actions' iterator
2009-05-04T08:58:06  <dennda> exactly
2009-05-04T08:59:13  <ThomasWaldmann> (and if that stuff what I do currently is getting into moin 2.0, not much 1.x plugin code will run on 2.0 anyway)
2009-05-04T09:00:05  <dennda> you need a clever solution for jinja2 then, by the way
2009-05-04T09:00:23  <dennda> it has some C code in it, if you don't "disable speedups"
2009-05-04T09:01:40  <ThomasWaldmann> http://moinmo.in/FeatureRequests/ThemeApi < maybe we collect ideas there
2009-05-04T09:02:39  <ThomasWaldmann> dennda: i am running it without any installation/setup
2009-05-04T09:03:03  <dennda> ok
2009-05-04T09:04:53  <dennda> I don't know the performance increase in %
2009-05-04T09:06:11  <TheSheep> I have to look into trac for an example of wiki based on templates
2009-05-04T09:06:29  <TheSheep> would be nice to also make actions and macros/parsers use templates
2009-05-04T09:06:59  <TheSheep> or rather, to have overridable presentation
2009-05-04T09:07:12  <dennda> jinja2 has that
2009-05-04T09:07:16  <ThomasWaldmann> TheSheep: i started with it for implementing show/edit action
2009-05-04T09:07:41  <TheSheep> ah, nice
2009-05-04T09:08:06  <ThomasWaldmann> or rather "modify", the new "edit"
2009-05-04T09:08:08  <dennda> TheSheep: with jinja2 you can have template inheritance where childs override the parents "blocks"
2009-05-04T09:08:22  <dennda> syntactically similar to django templates
2009-05-04T09:09:54  <ThomasWaldmann> the way how (different) themes would work exactly with jinja is a bit unclear to me, though
2009-05-04T09:10:11  <dennda> ThomasWaldmann: for a working example, take a look at zine
2009-05-04T09:10:21  <ThomasWaldmann> would one completely switch the base part of the templates?
2009-05-04T09:10:31  <ThomasWaldmann> s/part/path/
2009-05-04T09:10:48  <dennda> "one" being the user aiming to provide his own theme?
2009-05-04T09:10:56  <ThomasWaldmann> yes
2009-05-04T09:10:58  <dennda> no
2009-05-04T09:11:19  <dennda> you just extend the existing base template and override the parts you want to modify, if any
2009-05-04T09:11:42  <dennda> http://dev.pocoo.org/projects/zine/browser/zine/templates <-- base templates
2009-05-04T09:12:11  <dennda> http://dev.pocoo.org/projects/zine/browser/zine/plugins <-- specific templates overriding the default (in parts). see the *_theme plugins
2009-05-04T09:12:24  *** dimazest has joined #moin-dev
2009-05-04T09:13:09  <dennda> ignore the stuff not in *_theme/templates, that's zine plugin management overhead
2009-05-04T09:16:33  <TheSheep> is zine stable already?
2009-05-04T09:16:44  <dennda> stable yes, feature complete no
2009-05-04T09:16:52  <dennda> 0.1.2 is current stable
2009-05-04T09:17:46  <ThomasWaldmann>             if template_path is not metadata is not settings \
2009-05-04T09:17:47  <ThomasWaldmann> 926                      is not configuration_page is not None:
2009-05-04T09:22:08  <dennda> where did you get that from?
2009-05-04T09:22:21  <ThomasWaldmann> zine application.py
2009-05-04T09:23:22  * TheSheep eyes the line suspiciously
2009-05-04T09:23:39  <TheSheep> you can't override 'is', can you?
2009-05-04T09:23:46  <dennda> why would you?
2009-05-04T09:23:51  <dennda> True is not False is not True
2009-05-04T09:23:55  <dennda> (gonna be my new email signature)
2009-05-04T09:24:21  <dennda> True is not (False is not True)
2009-05-04T09:24:54  <TheSheep> but False is not None
2009-05-04T09:25:01  <dennda> True
2009-05-04T09:25:27  <TheSheep> why would you set any of those variables to False?
2009-05-04T09:25:52  <dennda> I thought you were wondering about the use of the is
2009-05-04T09:26:12  <TheSheep> that too, I'd rather use boolean operators
2009-05-04T09:26:21  <TheSheep> or normal ==
2009-05-04T09:26:41  * ThomasWaldmann still thinks about what that should do and whether that'ld work
2009-05-04T09:26:57  <dennda> I actually think that's a bug
2009-05-04T09:27:02  <TheSheep> pidgeons. them.
2009-05-04T09:27:10  <dennda> configuration_page is not None is either True or False
2009-05-04T09:27:20  <dennda> i guess that's what radomir meant
2009-05-04T09:28:31  <ThomasWaldmann> yeah, i also think at can't do anything useful
2009-05-04T09:28:40  <dennda> lemme fix it
2009-05-04T09:29:03  * xorAxAx bets it doesnt do what it should do
2009-05-04T09:29:06  <dennda> so it should read:
2009-05-04T09:29:23  <xorAxAx> the not needs to be pulled out
2009-05-04T09:29:56  <dennda> if not (template_path is None and metadata is None and settings is None and configuration_page is None)
2009-05-04T09:31:15  *** dimazest has quit IRC
2009-05-04T09:31:37  <TheSheep> I guess someone has just blindly replaced a -
2009-05-04T09:31:39  <TheSheep> a =
2009-05-04T09:32:22  <ThomasWaldmann> if not (x == y == z == None) maybe?
2009-05-04T09:32:34  <dennda> that's better
2009-05-04T09:32:37  <TheSheep> I bet that's what it was initially
2009-05-04T09:37:36  *** dimazest has joined #moin-dev
2009-05-04T09:39:59  <dennda> fixed
2009-05-04T09:56:15  *** dimazest has quit IRC
2009-05-04T10:09:32  *** dimazest has joined #moin-dev
2009-05-04T10:15:28  *** dimazest has quit IRC
2009-05-04T10:29:19  *** dimazest has joined #moin-dev
2009-05-04T10:39:57  <xorAxAx> dimazest: you are bouncing off and on here :)
2009-05-04T10:41:08  <dimazest> yes, i'm using laptop now, so i need to switch it off to go to another room in the uni
2009-05-04T10:44:14  <dennda> /ignore #moin-dev JOINS QUITS PARTS
2009-05-04T10:46:33  <TheSheep> dennda: we like to see when we come and go
2009-05-04T10:46:47  <dennda> i don't :-)
2009-05-04T10:47:16  <dennda> way too distracting (part of my new "concentrate on important things" strategy i'm trying out)
2009-05-04T10:49:18  <TheSheep> dennda: then what are you doing on irc? ;)
2009-05-04T10:49:19  <xorAxAx> its much more sensible to change the irc polling interval to higher amounts of minutes or hours, dennda
2009-05-04T10:50:38  <dennda> that's another idea
2009-05-04T10:50:42  <xorAxAx> but that requires self-discpline if you are not used to it :)
2009-05-04T10:52:45  <dennda> that's the problem
2009-05-04T10:52:47  <dennda> :-)
2009-05-04T10:52:58  <dennda> i already parted all non-essential channels
2009-05-04T10:53:57  <xorAxAx> just minimize the window and try to keep t there until it flashes
2009-05-04T10:54:03  <xorAxAx> its not like this cannot be "trained"
2009-05-04T10:55:05  <dennda> it's hard to get rid of bad habits you have for ages
2009-05-04T10:57:38  <ronny> so true
2009-05-04T11:04:17  <dreimark> moin
2009-05-04T11:09:37  <dreimark> dimazest: can you use irssi and screen on a server ?
2009-05-04T11:09:48  <xorAxAx> or quassel :)
2009-05-04T11:12:16  <dimazest> ok, i'll use something to stay always online
2009-05-04T11:15:02  *** devilsadvocate has quit IRC
2009-05-04T11:18:10  <dimazest> xorAxAx: thanks for the quassel
2009-05-04T11:18:28  <ronny> dimazest: any curses based app will work in screen
2009-05-04T11:18:35  <dreimark> dimazest: that's from devilsadvocate
2009-05-04T11:18:48  *** devilsadvocate has joined #moin-dev
2009-05-04T11:19:20  <dreimark> ronny: that's a different app. http://quassel-irc.org/
2009-05-04T11:21:17  <ronny> dreimark: i know quassel, im not keen of qt/kde stuff
2009-05-04T11:22:12  <xorAxAx> then write an urwid client, ronny
2009-05-04T11:22:37  <xorAxAx> ;-)
2009-05-04T11:23:55  <ronny> xorAxAx: so much work, so little time
2009-05-04T11:24:04  <xorAxAx> yeah
2009-05-04T11:24:08  <ronny> also atm urwid is a bit lacking wrt mainloops
2009-05-04T11:27:17  *** dimazest_ has joined #moin-dev
2009-05-04T11:28:49  *** dimazest has quit IRC
2009-05-04T11:29:01  *** dimazest_ is now known as dimazest
2009-05-04T11:31:31  <dimazest> it seems quassel is working
2009-05-04T11:33:52  * devilsadvocate just moved his quassel core onto a server :D
2009-05-04T11:41:53  *** dimazest has quit IRC
2009-05-04T11:42:00  *** dimazest has joined #moin-dev
2009-05-04T11:46:19  *** dimazest has quit IRC
2009-05-04T11:46:45  *** dimazest has joined #moin-dev
2009-05-04T11:47:26  *** dimazest has joined #moin-dev
2009-05-04T12:29:22  <ThomasWaldmann> xorAxAx: devilsadvocate: what do you think about jinja2 for the UI?
2009-05-04T12:30:01  * devilsadvocate googles jinja2
2009-05-04T12:31:30  <dennda> jinja.pocoo.org
2009-05-04T12:35:11  <devilsadvocate> it looks ok, very much like django with configurability hooks
2009-05-04T12:36:04  <devilsadvocate> not too sure if we'd need that kind of configuration, though, but in any case it might hurt ThemeMarket if we pass them on to the user
2009-05-04T12:41:21  <xorAxAx> ThomasWaldmann: doesnt sound too bad, but on the other hand we dont need to require it in new themes ... those engines have a common API
2009-05-04T12:41:49  <xorAxAx> hmm, except in "inheritance" scenarios
2009-05-04T12:41:59  <xorAxAx> so indeed, the choice is important
2009-05-04T12:45:26  <ThomasWaldmann> xorAxAx: I currently use it just for content div, so yes, the old themes still work
2009-05-04T12:46:01  <ThomasWaldmann> but that's definitely patchy
2009-05-04T12:47:33  <xorAxAx> i guess people will enjoy theme creation much more with a real templating language
2009-05-04T13:32:05  <ThomasWaldmann> hg rm AttachFile.py
2009-05-04T13:34:55  <TheSheep> \o/
2009-05-04T13:37:36  <dennda> :-)
2009-05-04T13:54:43  <ThomasWaldmann> TheSheep: that'll mean some work for you :)
2009-05-04T14:19:20  <TheSheep> ThomasWaldmann: we could maybe keep the old theme code around for a moment, and only use jinja in new themes?
2009-05-04T14:19:37  <TheSheep> ThomasWaldmann: or introduce a new plugin type, skins?
2009-05-04T14:48:31  <dennda> imo all html code should be ripped out from any .py file
2009-05-04T14:49:19  <devilsadvocate> +1 on stripping html from py
2009-05-04T14:51:49  <TheSheep> dennda: you want a h1.template for the parser? :)
2009-05-04T14:52:04  <TheSheep> dennda: and ul.template, pre.template, etc.
2009-05-04T15:11:37  <dennda> TheSheep: hm?
2009-05-04T15:13:14  <TheSheep> dennda: a template tha twould contain only '<h1>{{ heading }}</h1>', so that the formatter can use it for outputting headings...
2009-05-04T15:15:35  <dennda> TheSheep: formatter? I don't know the moin specific parts. i've only seen quite some html in the code and that's usually not considered best practice
2009-05-04T15:16:27  <TheSheep> dennda: usualy not, but sometimes yes
2009-05-04T15:18:15  <TheSheep> of course, there should be some infrastructure for distributing plugin-specific templates with the plugins
2009-05-04T15:18:43  <TheSheep> and making sure that macro called foo doesn't use tamplates of action called foo
2009-05-04T15:18:50  <TheSheep> templates*
2009-05-04T15:22:16  <TheSheep> on the other hand, a theme should be able to override templates of both of them
2009-05-04T15:32:01  <ThomasWaldmann> of course parsers/formatters will stay until we merge waldi's stuff
2009-05-04T15:34:14  <ThomasWaldmann> (and that will be either also for 2.0 or for 3.0 :)
2009-05-04T17:06:56  *** devilsadvocate_ has joined #moin-dev
2009-05-04T17:07:04  *** devilsadvocate has quit IRC
2009-05-04T17:10:47  <ThomasWaldmann> dennda: vv
2009-05-04T17:19:46  <dreimark> the user can use the "link" button in the GUI
2009-05-04T17:19:49  <dreimark> ditor
2009-05-04T17:19:56  <dreimark> where is that button
2009-05-04T17:20:34  <dreimark> loks like he speaks from edit/insert
2009-05-04T17:22:10  <dreimark> and another ie7 problem
2009-05-04T17:23:04  *** devilsadvocate_ has quit IRC
2009-05-04T17:27:03  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5612:49c9b9ba737f 1.9-storage/wiki/ (3 files in 3 dirs): updated underlay (converted to 1.9)
2009-05-04T17:27:11  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5613:de10b1613647 1.9-storage/MoinMoin/formatter/text_html.py: drawings: fix KeyError for non-existing map file
2009-05-04T17:27:13  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5614:43701c896e38 1.9-storage/docs/CHANGES: updated CHANGES
2009-05-04T17:27:15  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5615:b7eff2037a66 1.9-storage/ (4 files in 4 dirs): bump version to 1.9.0beta2, make interwiki install-docs
2009-05-04T17:27:17  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5616:c5fd7683a847 1.9-storage/MoinMoin/i18n/ (43 files): updated i18n
2009-05-04T17:27:18  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5617:5e634ea82648 1.9-storage/Makefile: cleanup before running sdist
2009-05-04T17:27:20  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5618:641b595ce675 1.9-storage/MoinMoin/ (PageGraphicalEditor.py config/multiconfig.py): use url_prefix_fckeditor if you don't want to use the builtin FCKeditor of moin, but a separate one at some specific url
2009-05-04T17:27:24  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5619:bb7f7f7ef88a 1.9-storage/MoinMoin/_tests/test_packages.py: test_packages: added some real package install tests for add attachments. destinguishes attaching a file to an existing page or non existing page.
2009-05-04T17:27:28  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5620:ca61dedd6fda 1.9-storage/MoinMoin/action/AttachFile.py: AttachFile: fix exception when someone just clicks on upload, without giving a file
2009-05-04T17:27:33  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5621:321ca881ce70 1.9-storage/MoinMoin/ (_tests/test_packages.py action/AttachFile.py): merged moin/1.7
2009-05-04T17:27:36  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5622:268004c7b206 1.9-storage/MoinMoin/ (4 files in 4 dirs): merged moin/1.8
2009-05-04T17:27:39  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5623:e673b8b21dc2 1.9-storage/MoinMoin/action/ (AttachFile.py Load.py): remove unneeded code: the filename we get from werkzeug is already preprocessed to fix IE bugs
2009-05-04T17:27:45  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5624:aa481a3b6a60 1.9-storage/MoinMoin/action/AttachFile.py: AttachFile: fix another exception when someone just clicks on upload, without giving a file
2009-05-04T17:27:48  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5625:567bea26c321 1.9-storage/MoinMoin/action/Load.py: action.Load: added textcha feature
2009-05-04T17:27:55  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5626:4d01cd04af70 1.9-storage/MoinMoin/web/ (flup_frontend.py frontend.py): support --debug=off/external/web or MOIN_DEBUGGER for flup frontend, default to off
2009-05-04T17:27:59  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5627:a04008fe1233 1.9-storage/MoinMoin/action/Load.py: merged main
2009-05-04T17:28:02  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5628:4f76ce232716 1.9-storage/MoinMoin/action/Load.py: action.Load: added textcha feature
2009-05-04T17:28:07  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5629:052b6926c82d 1.9-storage/MoinMoin/_tests/test_user.py: test_user: added two tests for the difference of retrieving an user object by uid or name
2009-05-04T17:28:10  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5630:1da5c7d21660 1.9-storage/MoinMoin/_tests/test_user.py: test_user: fixed the wrong encoding of the password
2009-05-04T17:28:19  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5631:f37524774ba4 1.9-storage/MoinMoin/ (_tests/test_user.py action/Load.py): merged moin/1.8
2009-05-04T17:28:22  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5632:1b3b177719ee 1.9-storage/MoinMoin/script/account/homepage.py: script.account.homepage: This tool allows you to create user homepages via a command line interface.
2009-05-04T17:28:26  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5633:f4e386e03434 1.9-storage/MoinMoin/action/info.py: fix quoting for pagehits stats (info action) - was not working for pagenames with blanks
2009-05-04T17:28:31  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5634:3a7c9b0a6ae4 1.9-storage/docs/ (CHANGES README.migration README_FIRST): clarified upgrad docs
2009-05-04T17:28:34  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5635:922550c3dd25 1.9-storage/MoinMoin/action/Load.py: action.Load: added textcha feature
2009-05-04T17:28:47  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5636:68628fe3b091 1.9-storage/MoinMoin/events/ (emailnotify.py jabbernotify.py): fix wrong links in attachment notifications
2009-05-04T17:28:50  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5637:14017d47a003 1.9-storage/MoinMoin/events/ (emailnotify.py jabbernotify.py): merged moin/1.7
2009-05-04T17:28:53  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5638:757aad5a56ff 1.9-storage/ (6 files in 3 dirs): merged moin/1.8
2009-05-04T17:29:00  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5639:025fb6ea4f9f 1.9-storage/MoinMoin/action/info.py: fix crash in info action (general page infos)
2009-05-04T17:29:03  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5640:6fcf0c534ca7 1.9-storage/Makefile: make 'make install-docs' happy with the default url_prefix
2009-05-04T17:29:12  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5641:7ee24547de7d 1.9-storage/MoinMoin/wikiutil.py: fix url_unquote - we sometimes call it with unicode
2009-05-04T17:29:15  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5642:d9f18ecbb2c4 1.9-storage/MoinMoin/macro/ (MonthCalendar.py __init__.py): fix and clean up macro exception handling, log exceptions
2009-05-04T17:29:18  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5643:06a744121699 1.9-storage/MoinMoin/support/werkzeug/ (http.py script.py test.py): updated werkzeug
2009-05-04T17:29:25  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5644:83451b52e947 1.9-storage/MoinMoin/support/xapwrap/index.py: add compatibility code for set to xapwrap.index (py 2.6 emits warnings if you use Sets module
2009-05-04T17:29:28  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5645:357ad7160d15 1.9-storage/MoinMoin/config/__init__.py: add mumble protocol (nice and good quality F/OSS VOIP conference chat software)
2009-05-04T17:29:35  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5646:307c423cf0d1 1.9-storage/MoinMoin/macro/TableOfContents.py: macro.TableOfContents: bug fix for MoinMoinBugs/TableOfContentsIgnoresSectionNumbersPragma
2009-05-04T17:29:38  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5647:0946442e94ab 1.9-storage/MoinMoin/wikiutil.py: wikiutil: MIMETYPES_MORE extended for .md5 as text/plain
2009-05-04T17:29:41  <CIA-38> Reimar Bauer <rb.proj AT googlemail DOT com> default * 5648:2b7e69ce6a05 1.9-storage/MoinMoin/ (4 files in 4 dirs): merged moin/1.8
2009-05-04T17:29:46  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5649:e42fc41f71a4 1.9-storage/MoinMoin/auth/ldap_login.py: ldap_login: use None as default value for ssl certs/keys, so it does set the related options. Using empty pathes lets it fail with Connect Error. Thanks to chantra for the fix.
2009-05-04T17:29:50  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5650:9eeae87fdd36 1.9-storage/MoinMoin/auth/ldap_login.py: merged moin/1.7
2009-05-04T17:29:59  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5651:e17387246649 1.9-storage/MoinMoin/auth/ldap_login.py: merged moin/1.8
2009-05-04T17:30:02  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5652:903831e9eb77 1.9-storage/wiki/config/more_samples/ldap_wikiconfig_snippet: ldap_login: use None as default value for ssl certs/keys (updated config/more_samples/ file)
2009-05-04T17:30:06  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5653:58b18877d6ac 1.9-storage/wiki/config/more_samples/ldap_wikiconfig_snippet: merged moin/1.7
2009-05-04T17:30:11  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5654:b94ed1321130 1.9-storage/wiki/config/more_samples/ldap_wikiconfig_snippet: merged moin/1.8
2009-05-04T17:30:14  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5655:088e291e6a21 1.9-storage/MoinMoin/i18n/ (README strings.py dummy.py): rename i18n/dummy to i18n/strings, use it for new approach for SystemPages later
2009-05-04T17:30:17  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5656:2f5fa1f9aa32 1.9-storage/MoinMoin/i18n/strings.py: i18n.strings updated from SystemPagesInEnglishGroup
2009-05-04T17:30:22  <CIA-38> (45 lines omitted)
2009-05-04T17:40:07  <ThomasWaldmann> i guess i rename moin/1.9-storage to moin/2.0-storage
2009-05-04T17:41:23  <ThomasWaldmann> hmm, or keep that and push my refactoring as moin/2.0-storage
2009-05-04T17:45:15  <dreimark> better
2009-05-04T17:46:20  <dreimark> devilsadvocate: do you know zc.buildout?
2009-05-04T17:50:23  <dreimark> http://www.archive.org/details/SeanKellyRecoveryfromAddiction
2009-05-04T18:00:26  <dreimark> comparison between java and py
2009-05-04T18:14:29  <ThomasWaldmann> http://hg.moinmo.in/moin/2.0-storage/
2009-05-04T18:15:21  <ThomasWaldmann> (very experimental/broken currently)
2009-05-04T18:32:53  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5698:d582c2effb51 2.0-storage/MoinMoin/support/jinja2/ (21 files): adding jinja2 templating engine (current repo checkout, post-2.1.1)
2009-05-04T18:36:04  <ThomasWaldmann> hmm, werkzeug, jinja, pygments. seems like moin is half a pocoo project now :)
2009-05-04T18:42:50  <dreimark> dennda: ThomasWaldmann do you have thought on implemening meta data based on  Dublin Core Schemas ?
2009-05-04T18:47:26  <dreimark> that livesearch feature is also nice
2009-05-04T18:59:28  *** devilsadvocate has joined #moin-dev
2009-05-04T19:17:24  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5699:545a3674db63 2.0-storage/MoinMoin/ (items/__init__.py templates/show.html): show action: improve history display
2009-05-04T19:20:05  <ThomasWaldmann> dreimark: not yet
2009-05-04T19:21:38  * dennda heard of that term for the first time now
2009-05-04T19:23:57  <dreimark> dennda: http://en.wikipedia.org/wiki/Dublin_Core
2009-05-04T19:24:48  <dennda> yeah i already found it
2009-05-04T19:26:43  <dreimark> bbl
2009-05-04T19:59:51  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5700:3cb7449a9607 2.0-storage/MoinMoin/templates/show.html: show action: diff radiobuttons, table heading, cosmetics
2009-05-04T22:34:35  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5701:732b6ecbe90b 2.0-storage/MoinMoin/ (4 files in 4 dirs): delete action
2009-05-04T22:42:43  *** cdyson37 has joined #moin-dev
2009-05-04T22:44:06  <cdyson37> got a strange xmlrpc problem...
2009-05-04T22:44:49  <cdyson37> the only page getAllPages() returns is BadContent.
2009-05-04T22:54:02  <ThomasWaldmann> wrong wikiconfig, wrong data_dir, fresh wiki?
2009-05-04T22:55:03  <cdyson37> the wiki's established; can't see anything obviously wrong
2009-05-04T22:55:18  <cdyson37> I think the problem is authentication related  - do I need specific acl rights to access via xmlrpc?
2009-05-04T22:55:30  <cdyson37> (for some reason my problem is being discussed in #moin despite me raising it here!)
2009-05-04T22:57:20  <dreimark> wrong channel
2009-05-04T22:57:33  <dreimark> please go to #moin
2009-05-04T22:57:44  <cdyson37> ok
2009-05-04T23:22:34  *** cdyson37 has quit IRC
2009-05-04T23:25:35  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5702:a2b028be9c37 2.0-storage/MoinMoin/ (5 files in 4 dirs): revert action
2009-05-04T23:31:38  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5703:32b4e0a81d9c 2.0-storage/ (4 files in 2 dirs): remove (spellcheck) dictionaries
2009-05-04T23:32:06  *** RaphaelBossek has joined #moin-dev
2009-05-04T23:43:31  <CIA-38> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 5704:7d617ee1abe6 2.0-storage/MoinMoin/templates/show.html: show action: handle deleted items
2009-05-04T23:58:56  *** devilsadvocate_ has joined #moin-dev
2009-05-04T23:59:47  *** RaphaelBossek has quit IRC

MoinMoin: MoinMoinChat/Logs/moin-dev/2009-05-04 (last edited 2009-05-03 22:15:02 by IrcLogImporter)