/[cvs]/jonen/ruby/CVSspam/cvsspam.rb
ViewVC logotype

Diff of /jonen/ruby/CVSspam/cvsspam.rb

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.12 by jonen, Sun Jan 19 01:42:21 2003 UTC revision 1.13 by jonen, Sun Jan 19 01:51:41 2003 UTC
# Line 746  end Line 746  end
746  if $subjectPrefix == nil  if $subjectPrefix == nil
747    $subjectPrefix = "[CVS #{Repository.array.join(',')}]"    $subjectPrefix = "[CVS #{Repository.array.join(',')}]"
748  end  end
749    
750  # HACK: put all file names at mail subject  # HACK: put all file names at mail subject
751  all_files = ""  all_files = ""
752  $fileEntries.each do |file|  $fileEntries.each do |file|
753    name = htmlEncode(file.name_after_common_prefix)    name = htmlEncode(file.name_after_common_prefix)
754    if all_files != ""    if all_files != ""
755      all_files = all_files + ";" + name      all_files = all_files + ";" + name + ":"
756    else    else
757      all_files = name      all_files = name + ":"
758    end    end
759  end  end
760    
761  mailSubject = "#{$subjectPrefix} #{all_files}: #{$mailSubject}"  mailSubject = "#{$subjectPrefix} #{all_files} #{$mailSubject}"
762  if mailSubject.length > $maxSubjectLength  if mailSubject.length > $maxSubjectLength
763    mailSubject = mailSubject[0, $maxSubjectLength]    mailSubject = mailSubject[0, $maxSubjectLength]
764  end  end

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed