Further progress with blagh app, atom feeds and rss feeds are mostly working.

This commit is contained in:
uriel 2008-12-28 21:37:03 +01:00
parent 08d6044274
commit a7dadbf916
3 changed files with 227 additions and 17 deletions

View File

@ -5,35 +5,43 @@ fn blagh_init {
# Should not match sub-dirs!
if(! ~ $#blaghDirs 0) {
# && test -d / `{echo '-a -d '^$req_path^$blaghDirs}
blagh_uri=`{echo $req_path|sed 's/index\.(atom|rss)$//'}
blagh_url=$base_uri^$blagh_root_path
blagh_root=$sitedir^$blagh_uri
if(~ $req_path */[0-9][0-9][0-9][0-9]/ */[0-9][0-9][0-9][0-9]/[0-9][0-9]/ */[0-9][0-9][0-9][0-9]/[0-9][0-9]/[0-9][0-9]/*)
if(~ $req_path */[0-9][0-9][0-9][0-9]/ */[0-9][0-9][0-9][0-9]/[0-9][0-9]/ */[0-9][0-9][0-9][0-9]/[0-9][0-9]/[0-9][0-9]/)
status='Use default handler'
if not if(~ $req_path */index) {
if not if(~ $req_path */index */) {
app_body_handler='blagh_body'
#u=`{cleanname $baseuri^`{basename -d '/'^$uri}|sed 's,:/,://,'} # Sed recovers '/' in 'http:/' stripped by cleanname
u=`{cleanname $baseuri^$req_path'index}
u=$blagh_uri'index'
extraHeaders=$"extraHeaders ^ \
'<link rel="alternate" type="application/rss+xml" title="RSS" href="'$"u'.rss" />' ^ \
'<link rel="alternate" type="application/atom+xml" title="ATOM" href="'$"u'.atom" />'
'<link rel="alternate" type="application/rss+xml" title="RSS" href="'$"u'.rss" />
<link rel="alternate" type="application/atom+xml" title="ATOM" href="'$"u'.atom" />'
}
if not if(~ $req_path */index.atom)
app_body_handler='blagh_body'
if not if(~ $req_path */index.rss)
app_body_handler='blagh_body'
if not {
response_format=raw
if(~ $req_path */index.atom)
master_template=_apps/blagh/atom.tpl
if not if(~ $req_path */index.rss)
master_template=_apps/blagh/rss20.tpl
if not
dprint XXXX $req_path
}
}
status=()
}
fn blagh_body {
d=$sitedir$req_path^$blaghDirs^/./[0-9][0-9][0-9][0-9]/[0-9][0-9]/[0-9][0-9]/
posts=`{ls -F $d >[2]/dev/null | sed -n 's,/\./,/|/,; /\/$/p' | sort -r '-t|' +1 | sed 's,/+\|/+,/,'}
for(p in $posts)
show_post $p | $formatter
for(p in `{get_post_list $blagh_root^$blaghDirs}) {
l=`{echo -n $p|sed 's!'$sitedir^$req_path'!!'}
sed '1s!.*![&]('$l')!' < $p/index.md | $formatter
}
}
fn show_post {
l=`{echo $1 | sed 's|'$sitedir$req_path'||'}
sed '1s|.*|[&]('$l')|' < $1/index.md
fn get_post_list {
d=$*^/./[0-9][0-9][0-9][0-9]/[0-9][0-9]/[0-9][0-9]/
ls -F $d >[2]/dev/null | sed -n 's,/\./,/|/,; /\/$/p' | sort -r '-t|' +1 | sed 's,/+\|/+,/,'
}

141
lib/_apps/blagh/atom.tpl Normal file
View File

@ -0,0 +1,141 @@
Content-Type: application/atom+xml
<?xml version="1.0" encoding="utf-8"?>
<!-- TODO: See for more info:http://www.tbray.org/ongoing/When/200x/2005/07/27/Atomic-RSS -->
%{
dprint XXX
fn statpost {
f = $1
updated = `{/bin/date --rfc-3339'=seconds' -r $f |tr ' ' 'T'}
post_uri=$base_url^`{cleanname `{echo $f | sed -e 's!^'$sitedir'!!' -e 's/\.(md|tpl)$//g'}}
title=`{read $f}
# Not used: date=`{/bin/date -Rd `{basename $f |sed 's/(^[0-9\-]*).*/\1/; s/-[0-9]$//'}}
# TODO: use mtime(1) and ls(1) instead of lunix's stat(1)
stat=`{stat -c '%Y %U' $f}
#mdate=`{/bin/date -Rd `{mtime $f|awk '{print $1}' }} # Not used because it is unreliable
by=$stat(2)
ifs=() { summary=`{cat $f/index.md | crop_text 512 ... | $formatter } }
}
updated = `{/bin/date --rfc-3339'=seconds' |sed 's/ /T/'}
%}
<feed xmlns="http://www.w3.org/2005/Atom"
xmlns:thr="http://purl.org/syndication/thread/1.0">
<link rel="self" href="%($req_path%)"/>
<id>%($req_path%)</id>
<icon>/favicon.ico</icon>
<title>%($siteTitle%)</title>
<subtitle>%($siteSubTitle%)</subtitle>
<!-- <updated>2008-09-24T12:47:00-04:00</updated> -->
<updated>%($updated%)</updated>
<link href="."/>
%{
for(f in `{get_post_list $blagh_root$blaghDirs}) {
statpost $f
%}
<entry>
<!-- Maybe we should be smarter, see: http://diveintomark.org/archives/2004/05/28/howto-atom-id, example: <id>tag:intertwingly.net,2004:2899</id> -->
<id>%($post_uri%)</id>
<link href="%($post_uri%)"/>
<title>%($title%)</title>
<!-- <link rel="replies" href="2899.atom" thr:count="0"/> -->
<author>
<name>%($by%)</name>
</author>
<content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">
%($summary%)
</div></content>
<updated>%($updated%)</updated>
</entry>
% }
</feed>
% exit
<feed xmlns="http://www.w3.org/2005/Atom"
xmlns:thr="http://purl.org/syndication/thread/1.0">
<link rel="self" href="http://intertwingly.net/blog/index.atom"/>
<id>http://intertwingly.net/blog/index.atom</id>
<icon>../favicon.ico</icon>
<title>Sam Ruby</title>
<subtitle>Its just data</subtitle>
<author>
<name>Sam Ruby</name>
<email>rubys@intertwingly.net</email>
<uri>/blog/</uri>
</author>
<updated>2008-09-24T12:47:00-04:00</updated>
<link href="/blog/"/>
<link rel="license" href="http://creativecommons.org/licenses/BSD/"/>
<entry>
<id>tag:intertwingly.net,2004:2899</id>
<link href="/blog/2008/09/11/RubyConf-2008"/>
<link rel="replies" href="2899.atom" thr:count="0"/>
<title>RubyConf 2008</title>
<content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">
<p>My <a href="http://www.rubyconf.org/talks/14">proposal</a> has been accepted for <a href="http://www.rubyconf.org/talks">RubyConf 2008</a>.  Because of the presence of Ruby implementers, this is going to be a bit challenging as it will likely turn into two talks at once.  One sharing experiences with fellow developers concerning things they may need to watch out for, and another with language designers about the impact of their changes.  It also is likely to be true, as it was at <a href="http://intertwingly.net/blog/2008/07/24/Ruby-1-9-What-to-Expect">OSCON</a>, that there will be members of the audience who know way more about this subject than I do.</p>
<p>I had originally requested a slot on Saturday.  My current slot requires me to shave a day off of <a href="http://us.apachecon.com/c/acus2008/">ApacheCon</a>.  Ive again asked that the slot be changed, but even if it doesnt move, I can manage this.  At least we are only talking about a short hop from New Orleans to Orlando.</p>
</div></content>
<updated>2008-09-11T06:51:36-04:00</updated>
</entry>
<entry>
<id>tag:intertwingly.net,2004:2898</id>
<link href="/blog/2008/09/10/Small-Updates"/>
<link rel="replies" href="2898.atom" thr:count="8" thr:updated="2008-09-10T15:31:05-04:00"/>
<title>Small Updates</title>
<summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">
<p><a href="http://hublog.hubmed.org/archives/001744.html">Alf Eaton</a>: <em>Aside: if youre reading a Planet that contains HubLog, those posts will all jump to the top - sorry! (I wish Planets dealt better with small updates so I didnt have to worry about it).</em></p>
<p>I dont know what publishing software you use, but I see you provide an Atom feed, and Planet 2.0 and Venus both implement <a href="http://www.atomenabled.org/developers/syndication/atom-format-spec.php#element.updated">atom:updated</a> as specified in RFC 4287.</p>
</div></summary>
<content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">
<p><a href="http://hublog.hubmed.org/archives/001744.html"><cite>Alf Eaton</cite></a>: <em>Aside: if youre reading a Planet that contains HubLog, those posts will all jump to the top - sorry! (I wish Planets dealt better with small updates so I didnt have to worry about it).</em></p>
<p>I dont know what publishing software you use, but I see you provide an Atom feed, and Planet 2.0 and Venus both implement <a href="http://www.atomenabled.org/developers/syndication/atom-format-spec.php#element.updated">atom:updated</a> as specified in RFC 4287.</p>
<p>More specifically, if you have a minor update and leave the updated date alone, the posts will not jump to the top.  The next release of WordPress, for example, will contain the necessary hooks for a <a href="http://blog.ciarang.com/posts/wp-minor-edit/">plugin</a> to provide a simple checkbox for indicating that the change constitutes a minor edit.</p>
</div></content>
<updated>2008-09-10T10:18:47-04:00</updated>
</entry>
<entry>
<id>tag:intertwingly.net,2004:2897</id>
<link href="/blog/2008/09/07/SVG-via-CSS"/>
<link rel="replies" href="2897.atom" thr:count="10" thr:updated="2008-09-12T02:21:21-04:00"/>
<title>SVG via CSS</title>
<summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">
<p>Now that I have my weblog looking reasonably consistent between Gecko and WebKit based browsers, Ive taken another look at Opera.  Opera doesnt have support for border-radius, but does have support for background images in SVG, which can be <a href="http://dev.opera.com/articles/view/new-development-techniques-using-opera-k/">used to provide the same effect</a>.  My Nav Bar on <a href="http://rails.intertwingly.net/blog/">my test site</a> now employs this technique, and it requires two separate images: <a href="http://rails.intertwingly.net/stylesheets/rc-039-CCD.svg">039 on CCD</a> and <a href="http://rails.intertwingly.net/stylesheets/rc-CCD-FFF.svg">CCD on FFF</a>.</p>
<p>Frankly, my first reaction to this was mixed.  The pluses for SVG in CSS is that it doesnt require either adjusting your markup or JavaScript to achieve these effects, a desirable characteristic that generally the <a href="http://www.cssjuice.com/25-rounded-corners-techniques-with-css/">other techniques</a> dont share.</p>
</div></summary>
<content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">
<p>Now that I have my weblog looking reasonably consistent between Gecko and WebKit based browsers, Ive taken another look at Opera.  Opera doesnt have support for border-radius, but does have support for background images in SVG, which can be <a href="http://dev.opera.com/articles/view/new-development-techniques-using-opera-k/">used to provide the same effect</a>.  My Nav Bar on <a href="http://rails.intertwingly.net/blog/">my test site</a> now employs this technique, and it requires two separate images: <a href="http://rails.intertwingly.net/stylesheets/rc-039-CCD.svg">039 on CCD</a> and <a href="http://rails.intertwingly.net/stylesheets/rc-CCD-FFF.svg">CCD on FFF</a>.</p>
<p>Meanwhile, Robert OCallahan has been exploring <a href="http://weblogs.mozillazine.org/roc/archives/2008/06/applying_svg_ef.html">other ways</a> to integrate these technologies.</p>
</div></content>
<updated>2008-09-07T11:12:29-04:00</updated>
</entry>
</feed>

61
lib/_apps/blagh/rss20.tpl Normal file
View File

@ -0,0 +1,61 @@
Content-Type: text/xml; charset=utf-8
<?xml version="1.0" encoding="UTF-8"?>
%{
fn statpost {
f = $1
post_uri = `{echo $f | sed 's,^'$sitedir',,'}
title=`{basename $f | sed 's/^[0-9\-]*_(.*)\.md$/\1/; s/_/ /g' }
date=`{/bin/date -Rd `{basename $f |sed 's/(^[0-9\-]*).*/\1/; s/-[0-9]$//'}}
# TODO: use mtime(1) and ls(1) instead of lunix's stat(1)
stat=`{stat -c '%Y %U' $f}
#mdate=`{/bin/date -Rd $stat(1)} # Not used because it is unreliable
post_uri=$base_url^`{cleanname `{echo -n $post_uri | sed 's/\.(md|tpl)//g'}}
by=$stat(2)
ifs=() {
summary=`{awk -v max'='1024 '{
nc += 1 + length;
if(nc > max) {
print substr($0, 1, nc - max) "..."
exit
}
print
}' $f |fmt -j| sed 's/\]\]>/Fucking goddamn XML garbage/g'}
}
}
%}
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="%('http://'$site^$req_path%)" rel="self" type="application/rss+xml" />
<title>%($siteTitle%)</title>
<link>%($req_path%)</link>
<description>%($blogDesc%)</description>
<language>en-us</language>
<generator>Tom Duff's rc, and Kris Maglione's clever hackery</generator>
%{
# <webMaster>uriel99+rss@gmail.com (Uriel)</webMaster>
for(f in `{sortedBlogPostList $blogDirs}) {
statpost $f
# Hack to aproximate the last build date
#(use the mdate from last posted item)
# Commented out for now because maybe a wrong value is worse than no value
#if(~ $#last_build_date 0) {
#last_build_date='<lastBuildDate>'^$"mdate'</lastBuildDate>'
#echo $last_build_date
#}
%}
<item>
<title>%($title%)</title>
<author>%($by%)@noreply.cat-v.org (%($by%))</author>
<link>%($uri%)</link>
<guid isPermaLink="true">%($uri%)</guid>
<pubDate>%($date%)</pubDate>
<description><![CDATA[<pre>%($summary%)</pre>]]></description>
</item>
% }
</channel>
</rss>