2007-08-12T00:01:50  <nir> good night
2007-08-12T01:12:17  <ThomasWaldmann> btw, for what exactly is cfg.bang_meta?
2007-08-12T01:12:45  <ThomasWaldmann> !CamelCase gets not rendered as a link if it is True.
2007-08-12T01:13:17  <ThomasWaldmann> But what if it is False? Who would have a CamelCase link and a ! directly before?
2007-08-12T01:13:31  <ThomasWaldmann> Does it make any sense to have it configurable?
2007-08-12T11:22:17  <ThomasWaldmann> moin
2007-08-12T13:15:32  <CIA-14> moin: Thomas Waldmann <tw AT waldmann-edv DOT de> * 2625:b25faa72dd5b 1.7/MoinMoin/parser/text_creole.py: creole parser: remove unneeded re.I(GNORECASE)
2007-08-12T15:11:40  <dreimark> moin
2007-08-12T15:12:26  <dreimark> ThomasWaldmann:I will be back on Thursday
2007-08-12T15:13:18  <dreimark> wifi and irc does not work well in the motel
2007-08-12T15:13:58  <dreimark> xorAxAx: what is with neagulm?
2007-08-12T15:14:44  <xorAxAx> he doesnt use his online time to communicate
2007-08-12T15:19:44  * vpv is back, hopefully some more Moin / avoiding doclifter bugs work this evening
2007-08-12T15:20:19  <dreimark>  xorAxAx: he does not ask for help when he is blocked?
2007-08-12T15:23:26  <dreimark> ThomasWaldmann: did one thought about a moin shutdown command if databases involved?
2007-08-12T15:31:17  <xorAxAx> dreimark: its hard to pick up discussion that ended abruptly when he had to leave
2007-08-12T15:34:55  <dreimark> xorAxAx: I asked him to use the wiki for discussions too. Seems he doesnt enter much new there.
2007-08-12T15:53:56  <dreimark> breakfast, bye
2007-08-12T16:03:35  <ThomasWaldmann> re
2007-08-12T16:06:20  <ThomasWaldmann> vpv: please: first refactor / fix bugs in your code, then fix/search bugs in other people's code
2007-08-12T16:08:22  <ThomasWaldmann> vpv: when is SCF deadline?
2007-08-12T16:08:34  <vpv> ThomasWaldmann: I fixed what you pointed out on friday, any more?
2007-08-12T16:08:51  * ThomasWaldmann looks
2007-08-12T16:09:34  <vpv> ThomasWaldmann: for me it'll be Sunday September 2:nd for full time work, because my studies begin in the next day
2007-08-12T16:09:36  <xorAxAx> grzywacz: ping
2007-08-12T16:10:33  <vpv> then we will attend a Finnish FOSS conference in October to present our stuff, I'll probably do some work until then to hopefully have something nice to show
2007-08-12T16:10:39  <ThomasWaldmann> vpv: changeset url of your fixes? i only see one cs with some minor fixes.
2007-08-12T16:11:22  <ThomasWaldmann> vpv: ok, then you have some days more than the other students. but you also have lots to do left, so ...
2007-08-12T16:11:38  <vpv> ThomasWaldmann: http://hg.moinmo.in/moin/1.7-maninfo-vpv/rev/f113dc813032 and http://hg.moinmo.in/moin/1.7-maninfo-vpv/rev/cf026915f8ae
2007-08-12T16:12:01  <ThomasWaldmann> maybe use some break to read some python literature, coding style tipps, etc.
2007-08-12T16:14:40  <ThomasWaldmann> vpv: this is not equivalent:
2007-08-12T16:14:42  <ThomasWaldmann> - cpio_arg = ""
2007-08-12T16:14:42  <ThomasWaldmann> - for mfile in manfilelist:
2007-08-12T16:14:42  <ThomasWaldmann> - cpio_arg += "."
2007-08-12T16:14:42  <ThomasWaldmann> - cpio_arg += mfile
2007-08-12T16:14:42  <ThomasWaldmann> - cpio_arg += " "
2007-08-12T16:14:45  <ThomasWaldmann> + cpio_arg = " .".join(manfilelist)
2007-08-12T16:15:02  <ThomasWaldmann> what do you need in cpio_arg at the end?
2007-08-12T16:15:33  <ThomasWaldmann> - if line.find(self.manpath) is not -1:
2007-08-12T16:15:33  <ThomasWaldmann> + if line.find(self.manpath) != -1:
2007-08-12T16:15:53  <ThomasWaldmann> this is getting better, but you could also use "in" operator
2007-08-12T16:16:25  <ThomasWaldmann> - pass
2007-08-12T16:16:25  <ThomasWaldmann> -
2007-08-12T16:16:25  <ThomasWaldmann> + continue
2007-08-12T16:16:33  <ThomasWaldmann> both is pointless there
2007-08-12T16:16:41  <vpv> ThomasWaldmann: the point is to pass only the man files to cpio, so it won't save all files in a package
2007-08-12T16:20:05  <ThomasWaldmann> so cpio_arg should look like what exactly?
2007-08-12T16:20:48  <vpv> like "./file/path ./next/file" etc.
2007-08-12T16:21:08  <ThomasWaldmann>          if len(self.args) != 0:             if self.args:
2007-08-12T16:21:27  <ThomasWaldmann> then you current cpio_arg code is wrong
2007-08-12T16:22:02  <ThomasWaldmann> + request.user = user.User(request=request, \
2007-08-12T16:22:02  <ThomasWaldmann> + name=self.username, \
2007-08-12T16:22:02  <ThomasWaldmann> + password=self.password)
2007-08-12T16:22:48  <ThomasWaldmann> the backslashes are superfluous as the paranthesis naturally continues until it is closed
2007-08-12T16:24:29  <vpv> So what's exactly wrong with cpio_arg, I've tested it, it seems to work?
2007-08-12T16:25:16  <ThomasWaldmann> you also still have some function level imports left. for each of them, you should think about why you don't want them on module level. if you find no reason why, maybe there is none. :)
2007-08-12T16:25:16  <xorAxAx> it looks like it lacks quoting
2007-08-12T16:25:42  <ThomasWaldmann> vpv: if you are unsure, just use the python interpreter to try out things
2007-08-12T16:25:53  <vpv> oh I just added the quoting to separate it from my irc sentence here, sorry
2007-08-12T16:25:56  <ThomasWaldmann> such stuff is rapidly pasted into it and you see the result
2007-08-12T16:26:40  <vpv> ThomasWaldmann: yes, the function level imports I have are or at least should be for Fedora related stuff only
2007-08-12T16:27:22  <xorAxAx> makes sense
2007-08-12T16:27:25  <vpv> although I admit that the whole thing is pretty much Fedora related anyway, but thinking about the future, one doesn't necessarily need XML parsing with Debian repositories
2007-08-12T16:28:06  <xorAxAx> but dont forget that generalization is a requirement for getting the branch merged
2007-08-12T16:28:42  <ThomasWaldmann> (and pretty clean and working code :)
2007-08-12T16:30:10  <vpv> I haven't forgotten about that. The SCF result may be Fedora specific as the timeline is what it is now, but I have planned to keep doing this stuff in the fall, if I have a possibility of it actually being used in Fedora and merged to main
2007-08-12T16:31:15  <xorAxAx> yes, a special timeframe is not necessary, other branches are already waiting for more than one year :-)
2007-08-12T16:31:31  <ThomasWaldmann> vpv: do you use vim?
2007-08-12T16:31:56  <vpv> ThomasWaldmann: for quick edits, yes, but I don't really know it that well
2007-08-12T16:32:21  <ThomasWaldmann> maybe use the vim pep8 plugin, you find it on the CodingStyle page
2007-08-12T16:32:33  <ThomasWaldmann> and if something looks red afterwards, fix it :)
2007-08-12T16:34:25  <vpv> I could try that :)
2007-08-12T16:44:16  <ThomasWaldmann> vpv: explain this:
2007-08-12T16:44:20  <ThomasWaldmann>             lines = u""
2007-08-12T16:44:20  <ThomasWaldmann>             lines += u"#format docbook\n\n"
2007-08-12T16:44:20  <ThomasWaldmann>             for line in xmlfile:
2007-08-12T16:44:20  <ThomasWaldmann>                 if not line.startswith('<?xml'):
2007-08-12T16:44:20  <ThomasWaldmann>                     try:
2007-08-12T16:44:22  <ThomasWaldmann>                         lines += line.decode("utf-8", "ignore")
2007-08-12T16:47:08  <ThomasWaldmann> do you expect some xml file to be line-oriented somehow?
2007-08-12T16:47:20  <vpv> well the #format docbook is explained in the comment, then I remove the <?xml line since Moin seemed not to produce the right output if that was there and then I decode everything to utf-8, since at least Fedora's man pages should be in utf-8
2007-08-12T16:48:16  <ThomasWaldmann> you decode from utf-8. you don't need ignore.
2007-08-12T16:48:24  <ThomasWaldmann> the first 2 lines could be one.
2007-08-12T16:48:45  <vpv> you do have a point there, the removing of the <?xml stuff shouldn't happen per lines
2007-08-12T16:48:54  <ThomasWaldmann> and assuming that <?xml is in a separate line won't work for the cases when it is not.
2007-08-12T16:50:19  <ThomasWaldmann> also doing str += more in a loop (with maybe bigger amounts of data) is not the finest thing to do in python
2007-08-12T16:51:39  <ThomasWaldmann> (same for unicode objects)
2007-08-12T17:01:57  <CIA-14> moin: Ville-Pekka Vainio <vpivaini AT cs DOT helsinki DOT fi> * 2816:e6a931da0e4a 1.7-maninfo-vpv/MoinMoin/script/import/manimport.py: Some small code cleanups suggested by ThomasWaldmann
2007-08-12T17:29:20  <CIA-14> moin: Ville-Pekka Vainio <vpivaini AT cs DOT helsinki DOT fi> * 2817:3f848df64e0d 1.7-maninfo-vpv/MoinMoin/script/import/manimport.py: Try to handle XML file to string reading more efficiently
2007-08-12T17:49:36  <RaphaelBossek> ThomasWaldmann, request.redirectRequest exists but should it not be a general rule to use UNICODE for request.write() function ?
2007-08-12T17:50:19  <RaphaelBossek> ThomasWaldmann, but if you thing it's better to request.redirectRequest for this test case I'll do that...
2007-08-12T17:56:45  <ThomasWaldmann> the point is just generating the problem as you find it initially, not just testing for a very concrete (and fixed by your patch) implementation error
2007-08-12T17:57:18  <ThomasWaldmann> (we will have to extend that test to cover all parsers then, later)
2007-08-12T17:57:55  <ThomasWaldmann> and yes, putting some unicode type assertion into request.write would be an option
2007-08-12T18:27:29  <ThomasWaldmann> http://test17.wikiwikiweb.de/TestWiki17MainBranch could someone with a java enabled browser please create that drawing there?
2007-08-12T18:28:35  <RaphaelBossek> ongoing
2007-08-12T18:43:06  <ThomasWaldmann> ok, not quite sure if I have made the best out of alt and title attributes for the links/transclusions, so comments about that are welcome
2007-08-12T18:46:35  <CIA-14> moin: Ville-Pekka Vainio <vpivaini AT cs DOT helsinki DOT fi> * 2818:a3b856e5bc9c 1.7-maninfo-vpv/MoinMoin/script/import/manimport.py: Small coding style changes, remove xmlrpc related option
2007-08-12T18:46:37  <CIA-14> moin: Ville-Pekka Vainio <vpivaini AT cs DOT helsinki DOT fi> * 2819:7b8d2866374d 1.7-maninfo-vpv/MoinMoin/script/import/manimport.py: Remove CVS integration completely, it won't be used by Fedora, so no use maintaining that code for now.
2007-08-12T18:50:56  <CIA-14> moin: Ville-Pekka Vainio <vpivaini AT cs DOT helsinki DOT fi> * 2820:b13547e001f6 1.7-maninfo-vpv/MoinMoin/script/import/manimport.py: make test_sourcecode pass again
2007-08-12T19:03:05  <RaphaelBossek> ThomasWaldmann, the utf-8 multi byte test case works... it would be easy to be extended to all parsers, should I ?
2007-08-12T19:04:08  * RaphaelBossek away
2007-08-12T19:40:44  <ThomasWaldmann> http://hg.moinmo.in:8000/ see the last <2 days there for the new wiki parser
2007-08-12T20:48:29  <grzywacz> re
2007-08-12T20:48:30  <grzywacz> ...
2007-08-12T20:50:00  <TheSheep> grzywacz: o/
2007-08-12T20:51:54  <xorAxAx> hey TheSheep :)
2007-08-12T20:52:10  <xorAxAx> and hi my student
2007-08-12T20:55:46  <ThomasWaldmann> moin TheSheep
2007-08-12T20:56:59  <TheSheep> hello everyone
2007-08-12T20:58:53  <grzywacz> TheSheep: hello
2007-08-12T21:01:46  <TheSheep> grzywacz: you're doing soc this year too?
2007-08-12T21:05:09  <grzywacz> TheSheep: erm, yes.
2007-08-12T21:06:24  * xorAxAx wonders if the student replies when spoken to :)
2007-08-12T21:09:56  <grzywacz> xorAxAx: pong
2007-08-12T21:10:11  <grzywacz> xorAxAx: sorry, I had a hardware problem, then had to help with a convention
2007-08-12T21:10:22  <grzywacz> (no internet there...)
2007-08-12T21:10:28  <xorAxAx> grzywacz: i meant "hi my student" and not the ping from above :)
2007-08-12T21:10:56  <grzywacz> xorAxAx: ah, sorry. I always keep missing stuff when using irssi without nick coloring :S
2007-08-12T21:11:02  <grzywacz> xorAxAx: hi HMRE ;)
2007-08-12T21:11:36  <xorAxAx> you can enable nick colouring in irssi as well :)
2007-08-12T21:12:09  <grzywacz> I know, but I don't use irssi very often. ;)
2007-08-12T21:17:14  <grzywacz> Oh no, I have a crappy keyboard here...
2007-08-12T21:18:09  <TheSheep> grzywacz: be glad you have a keyboard! when I was your age, we had to connect the pins with our tongues
2007-08-12T21:18:44  <ThomasWaldmann> grzywacz: what's this for a convention with no net and crappy keyboards? :)
2007-08-12T21:19:54  <xorAxAx> the dead poets
2007-08-12T21:20:05  <TheSheep> u-bot probably
2007-08-12T21:20:41  <TheSheep> no, wait, that was last year
2007-08-12T21:22:28  <grzywacz> ThomasWaldmann: no no, the convention is over, I'm in Warsaw atm takin care of aunt's flat. ;-) No more interruptions expected this week.
2007-08-12T21:23:51  <xorAxAx> the music on http://www.guide.amu.edu.pl/amu/index.htm rocks, TheSheep
2007-08-12T21:24:25  <TheSheep> xorAxAx: argh
2007-08-12T21:24:38  <TheSheep> xorAxAx: I have absolutely nothing to do with it, honest!
2007-08-12T21:24:46  <TheSheep> xorAxAx: they even misspelled my name!
2007-08-12T21:25:11  <xorAxAx> your name?
2007-08-12T21:25:38  <xorAxAx> is your second name adam?
2007-08-12T21:25:55  <grzywacz> That would be first name.
2007-08-12T21:26:14  <xorAxAx> well, maybe he is called radomir adam
2007-08-12T21:26:30  <ThomasWaldmann> http://test17.wikiwikiweb.de/LinkMarkupCollection looks like we almost have working and easy link markup
2007-08-12T21:26:35  <grzywacz> No. "adam" works as a first name in Polish, only.
2007-08-12T21:26:42  <xorAxAx> ah
2007-08-12T21:26:45  <xorAxAx> why is that?
2007-08-12T21:26:49  <TheSheep> xorAxAx: http://web.wmi.amu.edu.pl/Owydziale/Pracownicy/Pracownicyadministracyjni/tabid/264/Default.aspx
2007-08-12T21:27:24  <TheSheep> note the friendly url -_-
2007-08-12T21:27:43  <xorAxAx> very neat
2007-08-12T21:29:41  <ThomasWaldmann> (except for ../../stuff case which is also broken in 1.5/1.6/1.7 main)
2007-08-12T21:31:15  <TheSheep> xorAxAx: you can easily recognize the sites that I made on that uni, because thay are all moins ;)
2007-08-12T21:31:28  <xorAxAx> hehe
2007-08-12T21:31:40  <ThomasWaldmann> with sheep :)
2007-08-12T21:31:48  <TheSheep> without
2007-08-12T21:32:08  <ThomasWaldmann> nothing fluffy? :D
2007-08-12T21:32:12  <grzywacz> ThomasWaldmann: can you add an another ssh key for me? :)
2007-08-12T21:32:26  <ThomasWaldmann> sure
2007-08-12T21:32:38  <grzywacz> xorAxAx: um... no idea why. It's just that "adam" is used only as a first name. ;)
2007-08-12T21:32:56  <grzywacz> TheSheep: correct me if I'm wrong ;)
2007-08-12T21:33:12  * TheSheep corrects grzywacz 
2007-08-12T21:33:46  <TheSheep> grzywacz: Adam, Adamowicz, Adamowski, Adamczak...
2007-08-12T21:34:12  <TheSheep> Adamski
2007-08-12T21:35:13  <xorAxAx> TheSheep: we were talking about first vs. second
2007-08-12T21:35:15  <xorAxAx> not about last
2007-08-12T21:35:25  <xorAxAx> grzywacz: that sounds very conserative :)
2007-08-12T21:36:02  <grzywacz> uh maybe
2007-08-12T21:36:02  <TheSheep> xorAxAx: for people who only have two the second one is the last ;)
2007-08-12T21:36:13  <xorAxAx> TheSheep: weeellll
2007-08-12T21:36:15  <xorAxAx> :-)
2007-08-12T21:36:54  <TheSheep> Adam Culla, doctor of medicine, hematologist
2007-08-12T21:37:02  <TheSheep> dr. A. Culla
2007-08-12T21:56:24  <grzywacz> ah, ssh key... the last piece to my temporary development environment ;)
2007-08-12T22:01:03  <TheSheep> kabooom!
2007-08-12T22:02:14  <grzywacz> ThomasWaldmann: priv :)
2007-08-12T22:22:04  <xorAxAx> hi debarshi
2007-08-12T22:24:17  <grzywacz> hm, one week left. ok.
2007-08-12T22:24:52  <grzywacz> ThomasWaldmann?
2007-08-12T22:25:00  <ThomasWaldmann> grzywacz: are you registered with freenode?
2007-08-12T22:25:46  <ThomasWaldmann> btw, I guess we have no hindi i18n :)
2007-08-12T22:26:19  <debarshi> xorAxAx: H
2007-08-12T22:26:23  <debarshi> xorAxAx: Hi
2007-08-12T22:26:48  <grzywacz> ThomasWaldmann: oh crap
2007-08-12T22:26:48  <grzywacz> :S
2007-08-12T22:33:51  <ThomasWaldmann> debarshi: btw, I guess we have no hindi i18n :)
2007-08-12T22:34:18  <debarshi> ThomasWaldmann: Ah! But I speak more of Bengali than Hindi.
2007-08-12T22:34:28  <ThomasWaldmann> so if some few of you 10^9 people feel bored... :)
2007-08-12T22:34:42  <ThomasWaldmann> iirc we don't have that either :)
2007-08-12T22:35:42  <xorAxAx> there are so many indian languages ... its quite probable that thomas would pick the wrong one by trying sucha cheesy question :)
2007-08-12T22:35:52  <debarshi> xorAxAx: :-)
2007-08-12T22:37:06  <ThomasWaldmann> we could add some swabian i18n, too :))
2007-08-12T22:37:19  <xorAxAx> languages, not dialects
2007-08-12T22:37:43  <grzywacz> Why not?
2007-08-12T22:37:53  <grzywacz> Wesnoth has both en_en and en_gb, for instance. ;)
2007-08-12T22:38:06  <xorAxAx> "Assamese, Bengali, Bodo, Dogri, Gujarati, Hindi, Kannada, Kashmiri, Konkani, Maithili, Malayalam, Manipuri, Marathi, Nepali, Oriya, Punjabi, Sanskrit, Santali, Sindhi, Tamil, Telugu, Urdu" are the official languages
2007-08-12T22:38:26  <ThomasWaldmann> o.O
2007-08-12T22:38:28  <xorAxAx> grzywacz: well, regarding the india topic
2007-08-12T22:38:38  <xorAxAx> grzywacz: of course dialects is a choice for moin, yes
2007-08-12T22:38:46  <grzywacz> ok :)
2007-08-12T22:38:53  <xorAxAx> and polish as well :)
2007-08-12T22:39:31  <ThomasWaldmann> seems like they have lots of fun translating their "official" stuff to all these
2007-08-12T22:39:54  <xorAxAx> in london they do all stuff in at least 2 indian languages
2007-08-12T22:44:17  <debarshi> ThomasWaldmann: One my friends, doing a SoC for GNU, is currently interested in Moin Moin too. He may do a few translations, I guess.
2007-08-12T22:45:05  <ThomasWaldmann> We just have the i18n stuff on the master wiki, so people can share the effort.
2007-08-12T22:45:19  <ThomasWaldmann> it just needs someone to begin it :)
2007-08-12T22:45:46  <debarshi> ThomasWaldmann: URL?
2007-08-12T22:46:25  <ThomasWaldmann> http://moinmo.in/MoinDev/Translation
2007-08-12T22:46:36  <ThomasWaldmann> btw, note the .in domain :D
2007-08-12T22:46:39  <grzywacz> With less than 400 messages in 1.5, there's not much work to do...
2007-08-12T22:47:02  <grzywacz> s/4/6/
2007-08-12T22:47:24  <ThomasWaldmann> it's 1.6 there
2007-08-12T22:47:34  <grzywacz> ok
2007-08-12T22:47:52  <xorAxAx> ThomasWaldmann: see,after we got the domain, the number of indian fans increased :)
2007-08-12T22:48:23  <ThomasWaldmann> hehe
2007-08-12T22:48:23  <grzywacz> :D
2007-08-12T22:48:24  <debarshi> WHy the ".in" suffix?
2007-08-12T22:48:30  <grzywacz> moinmoIN?
2007-08-12T22:48:30  <grzywacz> ;>
2007-08-12T22:48:40  <debarshi> Ah! :-D
2007-08-12T22:49:06  <ThomasWaldmann> the old url was just too long
2007-08-12T22:49:18  <debarshi> ThomasWaldmann: What was that?
2007-08-12T22:49:27  <ThomasWaldmann> moinmoin.wikiwikiweb.de
2007-08-12T22:49:57  <grzywacz> yeah, finally I don't need to bookmark it ;)
2007-08-12T22:51:18  <debarshi> ThomasWaldmann: Yoy may know Rakesh (chacha_choudhury). He told me about his recent interest in Moin Moin. Hopefully he will do a bit of translation work. :-)
2007-08-12T22:52:41  <ThomasWaldmann> yeah, I've seen him on irc recently. Well, lets see what's after SOC. :)
2007-08-12T22:54:28  <debarshi> ThomasWaldmann: Any way. Give him a poke. He is very interested in Moin these days. I got to get some sleep now.
2007-08-12T22:54:34  <debarshi> Good night, all!
2007-08-12T22:54:57  <xorAxAx> good night debarshi and isnt it quite late in .in currently?
2007-08-12T22:55:07  <debarshi> xorAxAx: 02:30 hrs.
2007-08-12T22:55:25  <xorAxAx> ah, those 30 hour working days :)
2007-08-12T22:56:07  <debarshi> xorAxAx: Yes. These days with a full time day job, I often have to keep up till late. :-(
2007-08-12T22:56:31  <debarshi> Keep up the good work folks!
2007-08-12T22:57:47  <ThomasWaldmann> http://test17.wikiwikiweb.de/LinkMarkupCollection formatter weirdness? see the last 2 table rows.
2007-08-12T23:11:03  <CIA-14> moin: grzywacz@kolos.math.uni.lodz.pl * 2666:507ed8d9748a 1.7-jabber-knowak/ (5 files in 5 dirs): Merge main.
2007-08-12T23:11:19  <grzywacz> ThomasWaldmann: ok, works
2007-08-12T23:18:04  <grzywacz> ok, everything's fine. Off to bed now and see you in the morning.
2007-08-12T23:19:11  <DrFrasierCrane> grzywacz polak? :-)
2007-08-12T23:19:14  <DrFrasierCrane> hej
2007-08-12T23:19:17  <DrFrasierCrane> ja tez :D
2007-08-12T23:19:58  <CIA-14> moin: Ville-Pekka Vainio <vpivaini AT cs DOT helsinki DOT fi> * 2821:3f622540ffb4 1.7-maninfo-vpv/MoinMoin/script/import/manimport.py: PEP8 says no spaces around default argument assignment
2007-08-12T23:20:00  <CIA-14> moin: Ville-Pekka Vainio <vpivaini AT cs DOT helsinki DOT fi> * 2822:a853bc0c70aa 1.7-maninfo-vpv/MoinMoin/script/import/manimport.py: Fix docstrings as per PEP8
2007-08-12T23:20:01  <CIA-14> moin: Ville-Pekka Vainio <vpivaini AT cs DOT helsinki DOT fi> * 2823:3e0b9bc10072 1.7-maninfo-vpv/MoinMoin/script/import/manimport.py: Add man/info file excluding feature
2007-08-12T23:27:14  <CIA-14> moin: Ville-Pekka Vainio <vpivaini AT cs DOT helsinki DOT fi> * 2824:7ca346274603 1.7-maninfo-vpv/MoinMoin/script/import/manimport.py: fix an error in the previous commit
2007-08-12T23:38:34  * ThomasWaldmann .oO(s/\[\[/<</g s/\]\]/>>/g ...)
2007-08-12T23:48:46  <TheSheep> ThomasWaldmann: that must hurt
2007-08-12T23:50:01  <ThomasWaldmann> no, the [" hurts more X)
2007-08-12T23:51:16  <TheSheep> I mean thinking in all lines and angles...
2007-08-12T23:51:27  <TheSheep> poninty
2007-08-12T23:51:30  <TheSheep> pointy
2007-08-12T23:52:26  <DrFrasierCrane> ThomasWaldmann, I haven't had the time to examine MoinMoin as close as I would like yet, I'm writing gui stuff for Newton right now and some "backend abstractor" whatever that means ;-) anyway, I have a question, can one page have many categories ?
2007-08-12T23:54:57  <ThomasWaldmann> yes
2007-08-12T23:55:13  <ThomasWaldmann> categories are just Links
2007-08-12T23:56:01  <DrFrasierCrane> cool

MoinMoin: MoinMoinChat/Logs/moin-dev/2007-08-12 (last edited 2007-10-29 19:08:54 by localhost)