nieuws: support image containers after article intro
[minimedit.git] / nieuws.inc.php
index 40313e4b868eaca401db2331b303ae17261015b4..a0fa821b93647356efe421eb9db95198ee997197 100644 (file)
@@ -78,16 +78,25 @@ class ArchiveArticle
        {
                $this->title;
                $rest = fread($this->file, filesize($this->page));
-               if ( preg_match('{\n<p>(<img [^>]*>)</p>}', $rest, $img, PREG_OFFSET_CAPTURE) ) {
-                       $this->img = $img[1][0];
+               if ( preg_match('{\n < (?: p | figure [^>]* ) > (<img\ [^>]*>) | \n <hr\ />}x', $rest, $img, PREG_OFFSET_CAPTURE) ) {
+                       if (isset($img[1])) {
+                               $this->img = $img[1][0];
+                       }
                        return substr($rest, 0, $img[0][1]);
                }
-               $this->img = NULL;
                return $rest;
        }
 
+       function teaser()
+       {
+               if (preg_match('{<p>(.*?)</p>}s', $this->body, $bodyp)) {
+                       return $bodyp[1];
+               }
+       }
+
        function img()
        {
+               $this->img = NULL;
                $this->body;
                return $this->img;
        }
@@ -113,9 +122,11 @@ function shownews($input, $limit = 1000)
                $article = new ArchiveArticle($filename);
                print '<article class="left">';
                if ($article->thumb) {
-                       $img = preg_replace('{(?<= \b src="/) [^"]* }x', $article->thumb, $article->img);
-                       $img = preg_replace('{(?= />$)}', ' class="left"', $img);
-                       print $img;
+                       $imgattr = ' class="left"';
+                       if (preg_match('{ (\s alt="[^"]+") }x', $article->img, $img)) {
+                               $imgattr .= $img[0];  # preserve alt value
+                       }
+                       printf('<img src="/%s"%s />', $article->thumb, $imgattr);
                }
                print '<div>';
                printf(