Liyang HU - 2003-01-06

Logged In: YES
user_id=36015

This is /not/ going to be trivial to implement, if I decide
to do it at all... I'm just not convinced it's all that
useful given the difficulty/annoyingness of implementation!
The existing design is ill-suited to do what you're after,
I'm afraid, so it's either very ugly hacks or a complete
overhaul. (Neither of which I'm willing to undertake at the
minute...)

Why can't you keep the encoded parts you have as is, wait
for the rest to come through and decode the whole thing at once?

If you have the encoded parts as separate files (i.e. one
file per article posted), then you can pass them through
yydecode one by one, so it doesn't get any chance to
assemble them. You'll need to use yydecode as a filter, to
prevent it from seeking to the `correct' place in the output
file, thus:

yydecode < encoded.part4 > decoded.part4

I'm sure this can all be automated with a simple shell script...

(Patches would be accepted though. ^_-)