2006-08-16T00:14:30 <ThomasWaldmann> YOU HAVE TABS IN YOUR SRC
2006-08-16T00:15:22 <ThomasWaldmann> and you still don't use vim and the plugin I recommended
2006-08-16T00:15:45 <Kepplar> a) im using eric, it should have sorted it
2006-08-16T00:15:51 <ThomasWaldmann> if you did, that kind of errors would jump in your face
2006-08-16T00:15:55 <Kepplar> and b) anything on irc i tend to forget anyway ;)
2006-08-16T00:16:01 <xorAxAx> hehe
2006-08-16T00:16:36 <Kepplar> can you give me a clue with regards to what file still has problems?
2006-08-16T00:16:54 <xorAxAx> there is a make target that checks for tabs
2006-08-16T00:17:18 <xorAxAx> make check-tabs
2006-08-16T00:17:33 <Kepplar> nice
2006-08-16T00:17:50 <Kepplar> 1 tab ;)
2006-08-16T00:20:29 <ThomasWaldmann> well, I guess you have to find that bug yourself (digging through all those levels you know better than I do).
2006-08-16T00:21:36 <ThomasWaldmann> but current_rev() never should return None (at least not on an existing item, that has revisions)
2006-08-16T00:21:52 <Kepplar> first thing Im going to do after soc is getdocumenation upto speed, i just havent had the time with the deadline
2006-08-16T00:22:18 <Kepplar> no i agree with you
2006-08-16T00:27:09 <Kepplar> str_location = str_location.replace(self.ITEM_NAME_PATTERN, item_name)
2006-08-16T00:27:09 <Kepplar> TypeError: expected a character buffer object
2006-08-16T00:27:11 <Kepplar> strange
2006-08-16T00:27:16 <Kepplar> this bug suddently appears
2006-08-16T00:27:21 <Kepplar> ive justput exception in and tested it
2006-08-16T00:27:35 <Kepplar> str_location,ITEM_NAME_PATTERN and item_name are all strings
2006-08-16T00:27:50 <xorAxAx> either self.ITEM_NAME_PATTERN or item_name is not
2006-08-16T00:27:57 <xorAxAx> presumely None somewhere
2006-08-16T00:28:05 <Kepplar> no tested that
2006-08-16T00:29:20 <xorAxAx> then put a "print type(str_location),..." there
2006-08-16T00:29:43 <Kepplar> raise Exception, (str_location+self.ITEM_NAME_PATTERN+item_name)
2006-08-16T00:29:44 <Kepplar> Exception: testwiki/data/pages/#$ItemName$##$ItemName$#AutoCreatedMoinMoinTemporaryTestPage
2006-08-16T00:29:54 <Kepplar> k
2006-08-16T00:30:34 <xorAxAx> use type()
2006-08-16T00:30:47 <xorAxAx> i dont know your __unicode__, __repr__ nor __str__ methods
2006-08-16T00:31:17 <Kepplar> bah i can't concat type outputs
2006-08-16T00:31:57 <ThomasWaldmann> def __str__(self):
2006-08-16T00:31:57 <ThomasWaldmann> abstract
2006-08-16T00:31:58 <Kepplar> raise Exception, (type(str_location), type(self.ITEM_NAME_PATTERN), type(item_name))
2006-08-16T00:32:01 <Kepplar> Exception: (<type 'str'>, <type 'str'>, <type 'str'>)
2006-08-16T00:32:17 <Kepplar> ThomasWaldmann: hmm?
2006-08-16T00:34:59 <ThomasWaldmann> that's either "pass" or "raise NotImplementedError"
2006-08-16T00:35:16 <Kepplar> I'm guesssing thats ItemRevision?
2006-08-16T00:35:33 <Kepplar> or StorageProxy?
2006-08-16T00:35:59 <Kepplar> if so it should be abstract - if not you're right.
2006-08-16T00:36:02 <xorAxAx> ThomasWaldmann: pass is as worse (returning none)
2006-08-16T00:36:21 <Kepplar> xorAxAx: ^^ any idea, it says its string:|
2006-08-16T00:36:36 <Kepplar> oh
2006-08-16T00:36:37 <Kepplar> ignore
2006-08-16T00:38:27 <ThomasWaldmann> Kepplar: you have blanks between function names and (
2006-08-16T00:38:38 <Kepplar> Yes i know about PEP8
2006-08-16T00:38:55 <Kepplar> If you want it done, then I'm going to have to not follow it as closely
2006-08-16T00:40:04 <Kepplar> after the deadline sure thing
2006-08-16T00:42:15 <Kepplar> i think i found the bug which is root problem to all of these bugs
2006-08-16T00:43:16 <ThomasWaldmann> "The root of all evil" (tm)
2006-08-16T00:45:32 <mvirkkil> yay. Finally closing in on gettin all the docbook->moin pieces workin together \o/
2006-08-16T07:57:16 <mvirkkil> Is anyone here familiar with parsing huge documents with the domlette api?
2006-08-16T07:58:46 <mvirkkil> Even medium sized documents as the one generated from A_complete_book in the testwiki are taking approximately a minute to parse.
2006-08-16T07:59:33 <mvirkkil> The conversion in it self, using a combination of xpath+dom and external xsl-templates is fast.
2006-08-16T08:00:40 <mvirkkil> but just getting the dom-tree takes ages on my not-extremely-old computer
2006-08-16T08:01:15 <mvirkkil> hmm. I should probably see if the cpu is busy, because if it isn't it could be something fixeable.
2006-08-16T08:01:34 <mvirkkil> I guess that'll have to wait till I get off from work.
2006-08-16T08:33:57 * ThomasWaldmann reinstalls inmodified lighttpd
2006-08-16T10:11:53 <ThomasWaldmann> something's broken with locking
2006-08-16T10:11:55 <ThomasWaldmann> [Wed Aug 16 08:08:09 2006] Can't acquire read lock in /org/org.linuxwiki.de/data/pages/hwinfo/cache/__lock__
2006-08-16T10:12:11 <ThomasWaldmann> such stuff is about 1/min
2006-08-16T10:12:52 <ThomasWaldmann> directory and rights seem to be ok (1.5 branch code running there)
2006-08-16T10:20:52 <ThomasWaldmann> lowering the sleep values from 0.25 to 0.1 doesnt help
2006-08-16T10:55:20 <xorAxAx> you would have to increase it
2006-08-16T12:36:58 <Kepplar> moin
2006-08-16T17:14:13 <ThomasWaldmann> xorAxAx: no, if you increase it, it tries less often. increasing the total wait time maybe would help.
2006-08-16T17:14:31 <xorAxAx> hmm, ok
2006-08-16T17:23:28 <xorAxAx> ThomasWaldmann: furthermore i dont see how calling listen 2 times should work ... maybe i have some time to fix it
2006-08-16T22:18:59 * xorAxAx integrated preliminary mime type handling in sync
2006-08-16T22:19:08 <xorAxAx> now i am only waiting for item based storage :)
2006-08-16T22:25:24 <xorAxAx> hmm, i should have thought about renames earlier :)
2006-08-16T22:56:19 <Kepplar> o/
2006-08-16T23:13:58 * xorAxAx wonders when the storage repo is in sane (exactly one head) state again
MoinMoin: MoinMoinChat/Logs/moin-dev/2006-08-16 (last edited 2007-10-29 19:21:47 by localhost)