@@ -3530,8 +3530,14 @@ Git = {
3530
3530
// zlib files contain a two byte header. (RFC 1950)
3531
3531
stripZlibHeader : function ( zlib ) {
3532
3532
return zlib . slice ( 2 )
3533
- }
3533
+ } ,
3534
3534
3535
+ escapeHTML : function ( s ) {
3536
+ return s
3537
+ . replace ( / & / g, '&' )
3538
+ . replace ( / < / g, '<' )
3539
+ . replace ( / > / g, '>' ) ;
3540
+ }
3535
3541
}
3536
3542
3537
3543
@@ -4788,16 +4794,18 @@ Git.Diff = function(file1, file2, options) {
4788
4794
str . push ( " <div class='diff'>" )
4789
4795
var diff = this
4790
4796
_ ( this . info ) . each ( function ( chunk ) {
4791
- // str.push("@ " + chunk.offset)
4792
4797
_ ( chunk . lines ) . each ( function ( line ) {
4793
- var truncatedLine = line . line . slice ( 0 , Git . Diff . MAX_LINE_CHARS )
4798
+ var truncatedLine = Git . escapeHTML ( line . line . slice ( 0 , Git . Diff . MAX_LINE_CHARS ) )
4794
4799
if ( line . type == "context" ) {
4795
- str . push ( "<pre class='context'>" + line . oldIndex . toString ( ) . rjust ( 2 , " " ) + " " + line . newIndex . toString ( ) . rjust ( 2 , " " ) + " " + truncatedLine + "</pre>" )
4800
+ var oldIx = line . oldIndex . toString ( ) . rjust ( 2 , " " )
4801
+ var newIx = line . newIndex . toString ( ) . rjust ( 2 , " " )
4802
+ str . push ( "<pre class='context'>" + oldIx + " " + newIx + " " + truncatedLine + "</pre>" )
4796
4803
} else if ( line . type == "added" ) {
4797
- str . push ( "<pre class='added'>" + " " + line . newIndex . toString ( ) . rjust ( 2 , " " ) + " +" + truncatedLine + "</pre>" )
4804
+ var newIx = line . newIndex . toString ( ) . rjust ( 2 , " " )
4805
+ str . push ( "<pre class='added'>" + " " + newIx + " +" + truncatedLine + "</pre>" )
4798
4806
} else if ( line . type == "removed" ) {
4799
- str . push ( "<pre class='removed'>" + line . oldIndex . toString ( ) . rjust ( 2 , " " ) + " -" + truncatedLine + "</pre> ")
4800
-
4807
+ var oldIx = line . oldIndex . toString ( ) . rjust ( 2 , " " )
4808
+ str . push ( "<pre class='removed'>" + oldIx + " -" + truncatedLine + "</pre>" )
4801
4809
}
4802
4810
} )
4803
4811
} )
0 commit comments