You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
2.0 KiB
44 lines
2.0 KiB
Index: SVN-Notify-2.84/lib/SVN/Notify.pm |
|
--- SVN-Notify-2.84/lib/SVN/Notify.pm.orig 2008-09-24 06:41:21 +0200 |
|
+++ SVN-Notify-2.84/lib/SVN/Notify.pm 2008-09-24 20:43:29 +0200 |
|
@@ -1011,7 +1011,7 @@ |
|
my $exe = SVN::Notify->find_exe($exe_name); |
|
|
|
This method searches through the system path, as well as the extra directories |
|
-F</usr/local/bin> and F</usr/sbin> (because they're common paths for |
|
+F<@l_prefix@/bin> and F</usr/sbin> (because they're common paths for |
|
C<svnlook> and C<sendmail> for an executable file with the name C<$exe_name>. |
|
The first one it finds is returned with its full path. If none is found, |
|
C<find_exe()> returns undef. |
|
@@ -1025,7 +1025,7 @@ |
|
require Config; |
|
for my $path ( |
|
File::Spec->path, |
|
- qw(/usr/local/bin /usr/bin /usr/sbin), |
|
+ qw(@l_prefix@/bin /usr/bin /usr/sbin), |
|
'C:\\program files\\subversion\\bin', |
|
$Config::Config{installbin}, |
|
$Config::Config{installscript}, |
|
Index: SVN-Notify-2.84/lib/SVN/Notify/HTML.pm |
|
--- SVN-Notify-2.84/lib/SVN/Notify/HTML.pm.orig 2008-09-24 06:41:21 +0200 |
|
+++ SVN-Notify-2.84/lib/SVN/Notify/HTML.pm 2008-11-20 18:39:02 +0100 |
|
@@ -586,7 +586,7 @@ |
|
|
|
sub _css { |
|
return [ |
|
- q(#msg dl.meta { border: 1px #006 solid; background: #369; ), |
|
+ q(#msg dl.meta { border: 1px #003 solid; background: #669; ), |
|
qq(padding: 6px; color: #fff; }\n), |
|
qq(#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }\n), |
|
qq(#msg dt:after { content:':';}\n), |
|
@@ -621,8 +621,8 @@ |
|
qq(#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }\n), |
|
qq(#logmsg table th.Corner { text-align: left; }\n), |
|
qq(#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }\n), |
|
- q(#header, #footer { color: #fff; background: #636; ), |
|
- qq(border: 1px #300 solid; padding: 6px; }\n), |
|
+ q(#header, #footer { color: #fff; background: #669; ), |
|
+ qq(border: 1px #003 solid; padding: 6px; }\n), |
|
qq(#patch { width: 100%; }\n), |
|
]; |
|
}
|
|
|