]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Separate authors by commas, avoid space at the end. 2193/head
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Sat, 13 Feb 2016 22:01:37 +0000 (16:01 -0600)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Sun, 14 Feb 2016 19:22:57 +0000 (13:22 -0600)
doc/doxygen/scripts/code-gallery.pl

index 8f37c3732c825a79afa082627acef39ace2494c4..f83aa6fdbce1d854469ad6a27366b7b3abc342fe 100644 (file)
@@ -39,9 +39,14 @@ foreach my $gallery (sort @ARGV)
     open AUTHOR, "<$gallery_dir/$gallery/doc/author";
     my $authors;
     while (my $line = <AUTHOR>) {
-        $authors .= $line;
+        chop $line;
+        $authors .= $line . ", ";
     }
 
+    # remove trailing whitespaces, as well as the trailing comma
+    chop $authors;
+    $authors =~ s/,$//;
+
     $gallery_underscore    =~ s/-/_/;
     print "  <dt><b>\@ref code_gallery_${gallery_underscore} \"$gallery\"</b> (by $authors)</dt>\n";
     print "    <dd>\n";

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.