***[X-Scale] is now known as X-Scale
<davexunit>paroneayea: looking at your haunt patch finally <davexunit>(string-append "/" blog-prefix (site-post-slug site post) ".html") <davexunit>(string-append blog-prefix "/" (site-post-slug site post) ".html") <guile-guest8>just curious if anyone knows what theme that would be on the guile site in the examples? looks really nice. <davexunit>guile-guest8: I'm not sure if it corresponds to any particular named color scheme. <paroneayea>davexunit: probably, but I copied the style from blog.scm <paroneayea>davexunit: how about you fix both and push the patch? :) ***guile-guest8 is now known as ouano
<ouano>paroneayea: was that comment about copying the style from blog.scm about the color theme? <paroneayea>it might be nice to have a wrapper object around blogposts and etc <paroneayea>davexunit: that can be used to generate *both* the atom and the blog feeds <davexunit>would be easy for someone to write themselves, though. <davexunit>returning a site wouldn't be good, because a user needs to edit other things <paroneayea>it would allow someoen to have multiple blogs on a site <davexunit>you can make as many builders as you want and filter the posts list as necessary <paroneayea>davexunit: but you can only have one posts directory right? <davexunit>perhaps that could be changed, but currently I see no need to do so. <davexunit>distinguishing between multiple sites could be implemented currently by attaching new metadata <davexunit>and filtering based on that for each sub-blog <davexunit>unless there is something missing for filtering... there might be. that would need adding. <wingo>mark_weaver: did you have a chance to think about the wip-ports-refactor? <wingo>ACTION goes ahead with it, implementing more of the things i mentioned in the recent mail <paroneayea>it's more fun than doing the next things on my todo list ;) <Jookia>does guile have any good profiling tools? <ozzloy>is it possible to do html comments in sxml simple? <ozzloy>i tried (sxml->xml '(!--)) but that didn't work. did a bit of searching the web too <davexunit>just like you can't represent a Scheme comment in a Scheme sexp <ozzloy>i'm guessing there also isn't a way to output pretty-printed xml? <jmd>"pretty" and "xml" do not fit together in the same paragraph. <ozzloy>davexunit, where would i start with that? <davexunit>ozzloy: if you want comments and pretty printing, what you probably want is hand-written XML <davexunit>SXML is for serialization/deserialization for machines, not humans. <davexunit>ozzloy: take the source to sxml->xml and modify it <davexunit>you'd need to track things like indentation level and such <ozzloy>i don't want to hand write xml, no. i am writing html for a site. i want to have easter eggs in the html <ozzloy>i'd rather write sxml or something like it than xml <ozzloy><tag>this is the content of the tag "tag" and in case you've forgotten, here's a reminder of what tag this is in:</tag> <ozzloy>at least it doesn't do that with the start and stop indicators for the tag itself <ozzloy>open-starting"tag"tag tag close-starting"tag"tag tag content open-closing"tag"tag tag close-closing"tag"tag <rain1>you could make a copy of th elibrary and add a new tag to it <davexunit>it's easy to traverse them, pattern match, and do what you need <ozzloy>davexunit, what are you using for git.dthompson.us ? cgit? <ozzloy>it looks nice, did you style it specially? <ozzloy>i'm looking through the code right now to hide the autocompile message. i see there's a "turn-on-debugging?" and a "turn-off-debugging?" which are both boolean. what's up with that? why not just one boolean named something like "debugging?" <ozzloy>that makes me sad inside like this: T_T <ozzloy>gah! "(or turn-on-debugging? (and interactive? (not turn-off-debugging?)))" <paroneayea>davexunit: you didn't push the "fixed" version, right? <paroneayea>it looks like you pushed basically what I sent you <paroneayea>davexunit: want me to push you another patch, or do you want to do it? <turbopape>What's going on guys davexunit and paroneayea ? new version cooking up ? <sneek>turbopape, you have 1 message. <davexunit>turbopape: new release of Haunt, a static site generator, sometime soonish. <paroneayea>turbopape: I'm using it for 8sync's site design. <turbopape>amz3 tell me more about the js backend, please ? <ozzloy>rain1, oh, i didn't see your comment before ***M-TimePath is now known as TimePath
<paroneayea>wingo: it looks like your (ice-9 epoll) could be pretty easily separated from wip-ethreads <paroneayea>it doesn't look like it depends on the other stuff really?