/[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.4 by jonen, Sat Jan 18 23:54:58 2003 UTC revision 1.12 by jonen, Sun Jan 19 01:42:21 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  all_files = ""
751        last_repository = file.repository  $fileEntries.each do |file|
752        file = #{htmlEncode(last_repository.common_prefix)}    name = htmlEncode(file.name_after_common_prefix)
753        all_files = all_files + " " + file    if all_files != ""
754      end      all_files = all_files + ";" + name
755      else
756        all_files = name
757    end    end
758  mailSubject = "#{$subjectPrefix} all_files #{$mailSubject}"  end
759    
760    mailSubject = "#{$subjectPrefix} #{all_files}: #{$mailSubject}"
761  if mailSubject.length > $maxSubjectLength  if mailSubject.length > $maxSubjectLength
762    mailSubject = mailSubject[0, $maxSubjectLength]    mailSubject = mailSubject[0, $maxSubjectLength]
763  end  end
# Line 853  HEAD Line 857  HEAD
857        end        end
858        lastPath = thisPath        lastPath = thisPath
859      end      end
860        if all_files == nil
861          all_files = name
862        else
863          all_files = all_files + " " + name
864        end
865      if file.addition?      if file.addition?
866        name = "<span id=\"added\">#{name}</span>"        name = "<span id=\"added\">#{name}</span>"
867      elsif file.removal?      elsif file.removal?
# Line 894  HEAD Line 903  HEAD
903        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>")
904      end      end
905    
906      mail.puts("</tr>")      mail.puts("</tr>")    
907    end    end
908      
909    if $fileEntries.size>1    if $fileEntries.size>1
910      # give total number of lines added/removed accross all files      # give total number of lines added/removed accross all files
911      mail.print("<tr><td>&nbsp;</td>")      mail.print("<tr><td>&nbsp;</td>")
# Line 963  HEAD Line 973  HEAD
973    mail.puts("</body></html>")    mail.puts("</body></html>")
974    
975  end  end
976    

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

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