2008-06-11T01:53:55  <CIA-51> Pawel Pacana <pawel.pacana@gmail.com> default * 4027:027fe7252ab1 1.8-mercurialbackend-ppacana/MoinMoin/storage/backends/hg.py: Implemented create_item, get_item and iteritems methods in mercurial backend.
2008-06-11T02:13:42  <ThomasWaldmann> hey, progress :)
2008-06-11T02:33:46  <ThomasWaldmann> gn
2008-06-11T02:34:26  <ThomasWaldmann> dreimark: i have completely refactored the do_unzip code and will commit later when I am awake again.
2008-06-11T03:37:12  <dreimark> ok, have a good night.  me hopes it will cool down a bit more or i think i buy a cheap air condition
2008-06-11T03:38:17  * dreimark likes to kill the already wrong decoded file names.
2008-06-11T03:40:45  <dreimark> or kill the signs which makes all the later code a bit easier
2008-06-11T03:45:49  <dreimark> s/signs/chars/
2008-06-11T08:00:19  <ThomasWaldmann> moin
2008-06-11T09:51:22  <CIA-51> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 3690:7b4a32481d1e 1.7/MoinMoin/script/migration/1060900.py: mig script: fix wrong return value breaking 1.7 migration
2008-06-11T09:55:36  <TheSheep> ThomasWaldmann: thanks :)
2008-06-11T09:55:45  <TheSheep> now, for some reason the group pages seem to not work
2008-06-11T09:56:01  <TheSheep> I have a couple of them, but the wikidict seems empty
2008-06-11T10:09:06  <dreimark> hmm, if you go to SystemAdmin and do browse the user there
2008-06-11T10:10:49  <dreimark> does this change the state?
2008-06-11T10:17:43  <dreimark> bbl
2008-06-11T10:30:50  <ThomasWaldmann> TheSheep: do you have a page_group_regex in your cfg?
2008-06-11T10:31:14  <ThomasWaldmann> or any page_x_regex?
2008-06-11T10:33:34  <TheSheep> yes
2008-06-11T10:33:48  <TheSheep>     page_group_regex = u'[a-z]Group$'
2008-06-11T10:34:08  <ThomasWaldmann> see HINT in docs/CHANGES
2008-06-11T10:34:12  <TheSheep> thanks
2008-06-11T10:34:19  <ThomasWaldmann> or just deleted those lines
2008-06-11T10:35:46  * TheSheep blushes for not reading CHNAGES
2008-06-11T12:52:33  <CIA-51> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 3691:9426f34f07b9 1.7/MoinMoin/action/AttachFile.py: (log message trimmed)
2008-06-11T12:52:33  <CIA-51> AttachFile: refactored unzip subaction code:
2008-06-11T12:52:33  <CIA-51>  * simplified code
2008-06-11T12:52:33  <CIA-51>  * fix total size/count prediction (considering overwrite mode)
2008-06-11T12:52:33  <CIA-51>  * fix common zip member file path prefix removal
2008-06-11T12:52:35  <CIA-51>  * remove specialcasing of zip in zip (we happily unpack those
2008-06-11T12:52:39  <CIA-51>  files as long they are in the given limits)
2008-06-11T12:53:19  <ThomasWaldmann> seem like cia has some comment size limit X)
2008-06-11T13:04:00  <ThomasWaldmann> dreimark: if you have time, please also do some tests (maybe with zips not made on linux)
2008-06-11T13:04:49  <ThomasWaldmann> the last changeset does not yet fix the encoding problems
2008-06-11T13:24:31  <dreimark> will do later
2008-06-11T13:29:31  * dreimark has a talk with melita 
2008-06-11T13:50:56  <ThomasWaldmann> dreimark: i left some comments on her page
2008-06-11T14:01:15  <zenhase> uha, handle_auth is evil oO
2008-06-11T14:01:42  <zenhase> sets a lot of stuff on the request object ;)
2008-06-11T14:03:12  <zenhase> mitsuhiko: i was wondering about something: werkzeug has http exceptions, but only for codes 400+ ... do you see a problem with also raising for example redirect-exceptions?
2008-06-11T14:03:33  <gizmach> ThomasWaldmann: we just had a conversation about that and I will write a summary
2008-06-11T14:05:06  <mitsuhiko> zenhase: you can "raise redirects"
2008-06-11T14:05:16  <mitsuhiko> abort(redirect("path/to/somewhere"))
2008-06-11T14:05:32  <mitsuhiko> but i'm not a friend of raising redirects
2008-06-11T14:27:10  <zenhase> mitsuhiko: why is that?
2008-06-11T14:29:20  <mitsuhiko> zenhase: why is what?
2008-06-11T14:29:38  <mitsuhiko> that i don't like redirects being exceptions?
2008-06-11T14:29:50  <zenhase> yeah
2008-06-11T14:29:56  <mitsuhiko> actually i don't even like http errors being exceptions but that's convenient :)
2008-06-11T14:30:01  <mitsuhiko> but it's stupid to debug
2008-06-11T14:30:13  <mitsuhiko> and i hate it when a function does something as side effect
2008-06-11T14:30:20  <mitsuhiko> like, do some redirect if the user is not logged in etc.
2008-06-11T14:30:46  <zenhase> yeah, there are a lot of those in moin
2008-06-11T14:31:05  <zenhase> even with 'delayed' side-effects ;)
2008-06-11T14:34:04  <mitsuhiko> by not being able to redirect in sub functions you will try to keep the redirect in the function that creates the response
2008-06-11T14:34:07  <mitsuhiko> and i think that's a good thing
2008-06-11T14:34:31  <mitsuhiko> obviously you can still abort() with a response, but you should try to avoid that
2008-06-11T14:43:11  <zenhase> makes sense
2008-06-11T14:44:30  <zenhase> i just find it being more convenient right now, than setting some dubious attribute on the request object which is checked later on, somewhere in request.run, which then quits early
2008-06-11T14:45:03  <zenhase> which is even more confusing oO
2008-06-11T18:31:20  <TheSheep> is the 'double update notification' bug supposed to be fixed in rc2?
2008-06-11T18:31:44  <TheSheep> it seems I'm getting one notification in English and one in Polish for every edit
2008-06-11T18:32:41  <ThomasWaldmann> TheSheep: johill also reported dupes, but we didn't find the reason yet
2008-06-11T18:33:01  <TheSheep> ah, sorry, I had two accounts regustered with similar e-mail
2008-06-11T18:33:08  <ThomasWaldmann> :P
2008-06-11T18:33:08  <TheSheep> regustered
2008-06-11T18:33:13  <TheSheep> registered
2008-06-11T18:33:19  <TheSheep> %)
2008-06-11T18:33:42  <ThomasWaldmann> (he got it for new user notification)
2008-06-11T18:34:10  <TheSheep> 1.7 really feels good, no idea why
2008-06-11T18:34:59  <TheSheep> I briefly moved the admin wiki to track, but now we are back to moin and only use track for tickets
2008-06-11T18:35:08  <TheSheep> wrong channel I guess :)
2008-06-11T18:42:01  <ThomasWaldmann> :)
2008-06-11T18:46:26  <CIA-51> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 3692:882fbf5a3ba8 1.7/MoinMoin/i18n/ (42 files): updated i18n
2008-06-11T18:51:20  <CIA-51> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 3693:b90446900b70 1.7/.hgignore: .hgignore: be more precise
2008-06-11T19:05:27  <ThomasWaldmann> dreimark: irc would be really easier for chatting :)
2008-06-11T19:10:37  <ThomasWaldmann> btw, it really helps to talk to people that have a clue about ldap :D
2008-06-11T19:15:22  <CIA-51> Florian Krupicka <florian.krupicka@googlemail.com> default * 3668:74e295d4a75e 1.8-wsgi-fkrupicka/MoinMoin/ (web/utils.py wsgiapp.py): Fixed: errors in calling of handle_auth(_form)
2008-06-11T19:15:23  <CIA-51> Florian Krupicka <florian.krupicka@googlemail.com> default * 3669:b84bcea48523 1.8-wsgi-fkrupicka/MoinMoin/web/apps.py: Fixed typo
2008-06-11T19:15:24  <CIA-51> Florian Krupicka <florian.krupicka@googlemail.com> default * 3670:1ea1d69b28e8 1.8-wsgi-fkrupicka/MoinMoin/ (web/utils.py wsgiapp.py): Factored out surge protection and forbidden checks
2008-06-11T19:15:26  <CIA-51> Florian Krupicka <florian.krupicka@googlemail.com> default * 3671:67f0fc696d97 1.8-wsgi-fkrupicka/MoinMoin/ (web/utils.py wsgiapp.py): Factored out setuid-code
2008-06-11T19:15:29  <CIA-51> Florian Krupicka <florian.krupicka@googlemail.com> default * 3672:b36478ce3a0e 1.8-wsgi-fkrupicka/MoinMoin/web/utils.py: Function documentation in MoinMoin.web.utils
2008-06-11T19:15:32  <CIA-51> Florian Krupicka <florian.krupicka@googlemail.com> default * 3673:d45b0bb15d2f 1.8-wsgi-fkrupicka/MoinMoin/web/utils.py: Naive port of auth handling functions
2008-06-11T19:15:35  <CIA-51> Florian Krupicka <florian.krupicka@googlemail.com> default * 3674:0be4fb46e492 1.8-wsgi-fkrupicka/MoinMoin/ (web/contexts.py wsgiapp.py): Moved even more attributes into (lazy) properties
2008-06-11T19:16:44  * zenhase did a lot of ldap some years ago
2008-06-11T19:17:21  <dreimark> arrgh concurrent edit on melitas page, now I can fix the edit conflicts too
2008-06-11T19:17:26  <zenhase> but i am clean now
2008-06-11T19:17:38  <ThomasWaldmann> zenhase: haha
2008-06-11T19:18:06  <ThomasWaldmann> zenhase: if you have field experience, please contribute to melita's questions
2008-06-11T19:21:21  <zenhase> where are the questions? backlog or wiki?
2008-06-11T19:23:21  <dreimark> zenhase: http://moinmo.in/MelitaMihaljevic/ProjectLogs
2008-06-11T19:31:40  <dreimark> ThomasWaldmann: I think that is somehow a misunderstanding of SecurityPolice. To access the ldap server you have to take care on the SecurityPolicy used on that server as a user of this service
2008-06-11T19:32:15  <dreimark> s/ice/icy/
2008-06-11T19:32:53  <dreimark> gizmach you should write longer sentences ao avoid conflicts
2008-06-11T19:34:00  <dreimark> s/ao/to/
2008-06-11T19:34:08  <dreimark> and me should do less typos
2008-06-11T19:35:20  <ThomasWaldmann> must go, bbl
2008-06-11T19:47:44  <dreimark> ThomasWaldmann: about unzip, can we use the form entry "Overwrite existing ... " from above to change the overwrite status?
2008-06-11T19:50:33  <dreimark> the message if you twice time unzip a file is telling always partially unzipped
2008-06-11T19:51:09  <dreimark> but the second time it can't unzip an file
2008-06-11T19:59:35  <xorAxAx> hmm, no student
2008-06-11T20:06:37  <dreimark> bbl
2008-06-11T23:18:12  <dreimark> gn
2008-06-11T23:31:00  <PawelPacana> good night

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