/[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.5 by jonen, Sat Jan 18 23:58:36 2003 UTC revision 1.10 by jonen, Sun Jan 19 01:30:23 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    $fileEntries.each do |file|  # HACK: put all file names at mail subject
750      unless file.repository == $subjectPrefix  $fileEntries.each do |file|
751        last_repository = file.repository    name = htmlEncode(file.name_after_common_prefix)
752        file = #{htmlEncode(last_repository.common_prefix)}    if defined? all_files
753        all_files = all_files + " " + file      all_files = all_files + ";" + name
754      end    else
755        all_files = name
756    end    end
757  mailSubject = all_files  end
758  mailSubject = "#{$subjectPrefix} #{$mailSubject}"  
759    mailSubject = "#{$subjectPrefix} #{all_files} #{$mailSubject}"
760  if mailSubject.length > $maxSubjectLength  if mailSubject.length > $maxSubjectLength
761    mailSubject = mailSubject[0, $maxSubjectLength]    mailSubject = mailSubject[0, $maxSubjectLength]
762  end  end
# Line 854  HEAD Line 856  HEAD
856        end        end
857        lastPath = thisPath        lastPath = thisPath
858      end      end
859        if all_files == nil
860          all_files = name
861        else
862          all_files = all_files + " " + name
863        end
864      if file.addition?      if file.addition?
865        name = "<span id=\"added\">#{name}</span>"        name = "<span id=\"added\">#{name}</span>"
866      elsif file.removal?      elsif file.removal?
# Line 895  HEAD Line 902  HEAD
902        mail.print("<td align=\"center\">#{viewcvsFile(file.path,file.fromVer)} #{viewcvsDiff(file)} #{viewcvsFile(file.path,file.toVer)}</td>")        mail.print("<td align=\"center\">#{viewcvsFile(file.path,file.fromVer)} #{viewcvsDiff(file)} #{viewcvsFile(file.path,file.toVer)}</td>")
903      end      end
904    
905      mail.puts("</tr>")      mail.puts("</tr>")    
906    end    end
907      
908    if $fileEntries.size>1    if $fileEntries.size>1
909      # give total number of lines added/removed accross all files      # give total number of lines added/removed accross all files
910      mail.print("<tr><td>&nbsp;</td>")      mail.print("<tr><td>&nbsp;</td>")
# Line 964  HEAD Line 972  HEAD
972    mail.puts("</body></html>")    mail.puts("</body></html>")
973    
974  end  end
975    

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.10

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