public
Description: The Git TextMate Bundle
Homepage: http://tim.theenchanter.com/
Clone URL: git://github.com/timcharper/git-tmbundle.git
Fix spelling: 'uncomitted' -> 'uncommitted'
henrik (author)
Mon Apr 28 03:28:54 -0700 2008
commit  9c745070b035937798c9546d09c569ae75ff3d36
tree    a5b80906c96d09481674fc1436cd0e350c9716b3
parent  cac609ff1040cba9dc74f0c33c6151f5ea84e35e
...
48
49
50
51
52
53
 
 
 
...
48
49
50
 
 
51
52
53
54
0
@@ -48,5 +48,6 @@ git clone git://gitorious.org/git-tmbundle/mainline.git Git.tmbundle
0
 * <b>Geoff Cheshire</b> - Textile'd the README to make it look good on GitHub.
0
 * <b>Martin Kühl</b> - Patch to allow committing into a git repository that's not the project root.
0
 * <b>Diego Barros</b> - new config options, usability improvements
0
-* <b>Thomas Aylott</b> - Git commit langauge folding
0
-* <b>Michael Sheets</b> - Usability improvements
0
\ No newline at end of file
0
+* <b>Thomas Aylott</b> - Git commit language folding
0
+* <b>Michael Sheets</b> - Usability improvements
0
+* <b>Henrik Nyh</b> - Spelling
...
3
4
5
6
 
7
8
9
...
16
17
18
19
 
20
21
22
...
3
4
5
 
6
7
8
9
...
16
17
18
 
19
20
21
22
0
@@ -3,7 +3,7 @@ class DiffController < ApplicationController
0
   def diff
0
     show_diff_title unless params[:layout].to_s=="false"
0
     @rev = params[:rev]
0
- @title = params[:title] || "Uncomitted changes"
0
+ @title = params[:title] || "Uncommitted changes"
0
     params[:context_lines] = git.config["git-tmbundle.log.context-lines"] if git.config["git-tmbundle.log.context-lines"]
0
     render("_diff_results", :locals => {:diff_results => git.diff(params)})
0
   end
0
@@ -16,7 +16,7 @@ class DiffController < ApplicationController
0
         git.paths(:fallback => :current_file, :unique => true)
0
       end
0
     base = git.git_base
0
- puts "<h2>Uncomitted Changes for ‘#{htmlize(paths.map{|path| shorten(path, base)} * ', ')}’</h2>"
0
+ puts "<h2>Uncommitted Changes for ‘#{htmlize(paths.map{|path| shorten(path, base)} * ', ')}’</h2>"
0
     open_in_tm_link
0
     
0
     paths.each do |path|
...
48
49
50
51
 
52
53
54
...
48
49
50
 
51
52
53
54
0
@@ -48,7 +48,7 @@ index 18a505b..af13ba3 100644
0
 @@ -15,7 +15,7 @@ base = git.nca(paths)
0
  Formatters::Diff.new(base) do |f|
0
    paths.each do |path|
0
- f.header("Uncomitted Changes for ‘#{htmlize(shorten(path, base))}’")
0
+ f.header("Uncommitted Changes for ‘#{htmlize(shorten(path, base))}’")
0
 - f.content(git.diff(path, base))
0
 + f.content(git.diff_file(ENV["TM_PROJECT_DIRECTORY"], base))
0
    end

Comments

    No one has commented yet.