Channel #semsol: Logs

This is a public chat log generated from the #semsol IRC channel.

14:44:31 tobyink: yo, bengee, why never in #swig anymore?!
14:45:01 bengee: desperately trying to reduce distraction..
14:45:30 bengee: I do scan the logs daily, though
14:45:41 tobyink: #swig isn't a distraction from life. life is a distraction from 'swig.
14:45:48 bengee: heh
14:46:28 bengee: got your great RSS serializer and stuff still on my todo list
14:47:23 tobyink: I also have arc serialisers for "application/wddx" and "application/vnd.php.serialized" - though they're a bit dull - just wrappers around the JSON output.
14:48:08 tobyink: And I sent you the RDFa fixes right? Are they merged yet?
14:48:31 bengee: not yet, I'm afraid
14:48:39 tobyink: I'm using ARC in http://demiblog.org/ and don't want my copy to end up as a fork!
14:49:34 tobyink: (Which is kinda is right now as I've also had to patch ARC2_RemoteStore to cope with some of Jena/Joseki's quirks.
14:50:11 bengee: ah, interesting
14:50:25 bengee: I'm currently extending the remote store to work with the talis platform
14:52:04 tobyink: As I remember it, the Joseki changes I made were: all updates need to be submitted by POST rather than GET; and...
14:53:02 tobyink: ... all updates use the parameter "request=" instead of "query=". (Don't ask me why!)
14:53:47 tobyink: So in runQuery I've got: $mthd = in_array($qt, array('load', 'insert', 'delete', 'create', 'drop', 'clear')) ? 'POST' : 'GET';
14:54:14 tobyink: And for posted queries I've got: $reader->setMessageBody('request=' . rawurlencode($q) . $suffix);
14:54:32 tobyink: I think that's all that needed to be done.
14:55:32 bengee: interesting
14:56:28 bengee: and some tweaks to actually get clear/drop/create through the parser, I guess
14:56:51 tobyink: These quirks don't seem to be documented anywhere in the Jena documentation, and I was tearing my hair out for quite some time before I managed to figure out what was going wrong (with the help of people in #jena).
14:58:03 tobyink: Don't think I tweaked the parser, as I'm only using ->runQuery, not ->query.
14:58:35 bengee: ah, i see
14:59:07 tobyink: But "normal" people would probably want tweaks I suppose.