]> git.refcnt.org Git - lugs.git/blobdiff - lreminder/reminder.pl
lreminder: use explicit quoting for here-docs
[lugs.git] / lreminder / reminder.pl
index 81d898ef98f75362215bcc0e298381a3175324c1..31ab0739140eda050d5685092e98271baece16a7 100755 (executable)
@@ -15,7 +15,7 @@
 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #
 # Author: Steven Schubiger <stsc@refcnt.org>
-# Last modified: Wed Jul 16 16:17:32 CEST 2014
+# Last modified: Mon Dec 29 19:06:34 CET 2014
 
 use strict;
 use warnings;
@@ -37,7 +37,7 @@ use Text::Wrap::Smart::XS qw(fuzzy_wrap);
 use URI ();
 use WWW::Mechanize ();
 
-my $VERSION = '0.45';
+my $VERSION = '0.49';
 
 #-----------------------
 # Start of configuration
@@ -57,7 +57,7 @@ my $Config = {
 #---------------------
 
 my $dbh  = DBI->connect("dbi:mysql(RaiseError=>1):$Config->{dbase_name}", $Config->{dbase_user}, $Config->{dbase_pass});
-my $file = (URI->new($Config->{events_url})->path_segments)[-1];
+my $file = File::Spec->catfile('tmp', (URI->new($Config->{events_url})->path_segments)[-1]);
 
 my ($test, $run) = (false, false);
 
@@ -110,11 +110,8 @@ sub init
                 rewrite => '$TEXT - $HREF',
                 fields  => [ qw(location more) ],
             } ],
-            'br' => [ {
-                rewrite => '',
-                fields  => [ qw(more) ],
-            } ],
         },
+        purge_tags => [ qw(location responsible more) ],
         strip_text => [ 'mailto:' ],
     });
     unlink $file;
@@ -189,7 +186,7 @@ sub send_mail
 
     my $month_name = $month_names{$month};
 
-my $message = (<<MSG);
+my $message = (<<"MSG");
 Wann:\t$wday, $simple_day. $month_name $year, $time Uhr
 Was :\t$title
 Wo  :\t$location
@@ -241,7 +238,7 @@ sub info_string
     $modified =~ s/(?<=\b) (?:\d{2}\:?){3} (?=\b)//x;
     $modified =~ s/\s+/ /g;
 
-    my $info = <<EOT;
+    my $info = <<"EOT";
 -- 
 running $script v$VERSION - last modified: $modified
 EOT