]> sipb.mit.edu Git - ikiwiki.git/commitdiff
When inlining HTML pages, render enclosures.
authorAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>
Tue, 19 Feb 2013 00:34:20 +0000 (19:34 -0500)
committerAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>
Wed, 20 Feb 2013 01:22:47 +0000 (20:22 -0500)
t/podcast.t
t/tinypodcast/fancy.mdwn [new file with mode: 0644]
templates/inlinepage.tmpl

index 3125a7e55d79d4a1ae253effbfe5a634ec2c7d60..235c2e7685f8add7a8216ba7f49740d9124b30cb 100755 (executable)
@@ -9,7 +9,7 @@ BEGIN {
                        "XML::Feed and/or HTML::Parser not available"};
        }
        else {
-               eval q{use Test::More tests => 81};
+               eval q{use Test::More tests => 89};
        }
 }
 
@@ -125,6 +125,36 @@ sub single_page_html {
        ok(! system("rm -rf $tmp $statedir"), q{teardown});
 }
 
+sub inlined_pages_html {
+       my @command = (qw(./ikiwiki.out -plugin inline));
+       push @command, qw(-underlaydir=underlays/basewiki);
+       push @command, qw(-set underlaydirbase=underlays -templatedir=templates);
+       push @command, qw(t/tinypodcast), "$tmp/out";
+
+       ok(! system("mkdir $tmp"),
+               q{setup});
+       ok(! system(@command),
+               q{build});
+
+       my $html = "$tmp/out/fancy/index.html";
+       my $contents = _extract_html_content($html, 'content');
+       like($contents, qr/has content and an/m,
+               q{html body text from pianopost});
+       like($contents, qr/has content and only one/m,
+               q{html body text from attempted_multiple_enclosures});
+       my $enclosures = _extract_html_content($html, 'inlineenclosure');
+       like($enclosures, qr/this episode/m,
+               q{html enclosure});
+       my ($href) = _extract_html_links($html, 'piano.mp3');
+       ok(-f $href,
+               q{html enclosure from pianopost exists});
+       ($href) = _extract_html_links($html, 'walter.ogg');
+       ok(-f $href,
+               q{html enclosure from attempted_multiple_enclosures exists});
+
+       ok(! system("rm -rf $tmp $statedir"), q{teardown});
+}
+
 sub _extract_html_content {
        my ($file, $desired_id, $desired_tag) = @_;
        $desired_tag = 'div' unless defined $desired_tag;
@@ -141,11 +171,6 @@ sub _extract_html_content {
                        my ($dtext) = @_;
                        $content .= $dtext;
                }, "dtext");
-
-               $self->handler(end  => sub {
-                       my ($tag, $self) = @_;
-                       $self->eof if $tag eq $desired_tag;
-               }, "tagname,self");
        }, "tagname,self,attr");
 
        $p->parse_file($file) || die $!;
@@ -172,3 +197,4 @@ sub _extract_html_links {
 
 simple_podcast();
 single_page_html();
+inlined_pages_html();
diff --git a/t/tinypodcast/fancy.mdwn b/t/tinypodcast/fancy.mdwn
new file mode 100644 (file)
index 0000000..290f4c2
--- /dev/null
@@ -0,0 +1 @@
+[[!inline pages="pianopost or attempted_multiple_enclosures"]]
index b0b53d0416db76d2dc24bb606c5e86755dee93ef..cf0b6037e24a8f40b2d115e8ccbd42e597e3874b 100644 (file)
 <TMPL_VAR CONTENT>
 <TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF>
 
+<TMPL_IF HTML5><section id="inlineenclosure"><TMPL_ELSE><div id="inlineenclosure"></TMPL_IF>
+<TMPL_IF ENCLOSURE>
+<a href="<TMPL_VAR ENCLOSURE>">Download this episode</a>
+</TMPL_IF>
+<TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF>
+
 <TMPL_IF HTML5><footer class="inlinefooter"><TMPL_ELSE><div class="inlinefooter"></TMPL_IF>
 
 <span class="pagedate">