Showing 8 changed files with 8 additions and 8 deletions
+1 -1
templates/blame.html.ep
... ...
@@ -58,7 +58,7 @@
58 58
   <!-- Blame page -->
59 59
   <div class="container">
60 60
     %= include '/include/project_header';
61
-    %= include '/include/code_menu', display => 'files';
61
+    %= include '/include/branch_select', display => 'files';
62 62
     %= include '/include/page_path', type => 'blob', Path => $file;
63 63
     <div class="text-right" style="margin-bottom:10px">
64 64
       Newer
+1 -1
templates/blob.html.ep
... ...
@@ -45,7 +45,7 @@
45 45
 
46 46
   <div class="container">
47 47
     %= include '/include/project_header';
48
-    %= include '/include/code_menu', display => 'files';
48
+    %= include '/include/branch_select', display => 'files';
49 49
     %= include '/include/page_path', type => 'blob', Path => $file;
50 50
         
51 51
     <div class="border-gray" style="margin-bottom:20px">
+1 -1
templates/commit.html.ep
... ...
@@ -50,7 +50,7 @@
50 50
 
51 51
   <div class="container">
52 52
     %= include '/include/project_header';
53
-    %= include '/include/code_menu', display => 'commits';
53
+    %= include '/include/branch_select', display => 'commits';
54 54
 
55 55
     <div class="bk-blue-light border-gray" style="border-bottom:none;padding:10px;border-top-left-radius:5px;border-top-right-radius:5px">
56 56
       <div class="row">
+1 -1
templates/commits.html.ep
... ...
@@ -126,7 +126,7 @@
126 126
           % my $commits = $commits_date->{$date};
127 127
           
128 128
           <div class="bk-blue-light border-blue radius-top" style="padding:5px 8px;color:#3a505b">
129
-            <b><%= $date %></b>
129
+            <b>Commits on <%= $date %></b>
130 130
           </div>
131 131
           % my $num = 0;
132 132
           % for my $commit (sort {$b->{author_epoch} <=> $a->{author_epoch}} @$commits) {
+1 -1
templates/compare.html.ep
... ...
@@ -96,7 +96,7 @@
96 96
 
97 97
   <div class="container">
98 98
     %= include '/include/project_header';
99
-    %= include '/include/code_menu', display => 'files';
99
+    %= include '/include/branch_select', display => 'files';
100 100
     
101 101
     <h2>Compare View</h2>
102 102
     <div class="well" style="padding:9px 10px 9px 10px;margin-bottom:5px;position:relative">
+1 -1
templates/submodule.html.ep
... ...
@@ -47,7 +47,7 @@
47 47
 
48 48
   <div class="container">
49 49
     %= include '/include/project_header';
50
-    %= include '/include/code_menu', display => 'files';
50
+    %= include '/include/branch_select', display => 'files';
51 51
     %= include '/include/page_path', type => 'blob', Path => $file;
52 52
         
53 53
     <div class="border-gray bk-gray-light" style="padding:5px; border-bottom:none">
+1 -1
templates/tree.html.ep
... ...
@@ -37,7 +37,7 @@
37 37
 
38 38
   <div class="container">
39 39
     %= include '/include/project_header';
40
-    %= include '/include/code_menu', display => 'files';
40
+    %= include '/include/branch_select', display => 'files';
41 41
     %= include '/include/page_path', type => 'tree', Path => $dir;
42 42
     %= include '/include/tree';
43 43
     
+1 -1
xt/basic.t
... ...
@@ -203,7 +203,7 @@ note 'History page';
203 203
   {
204 204
     # Page access
205 205
     $t->get_ok("/$user/$project/commits/b1/README");
206
-    $t->content_like(qr/History for/);
206
+    $t->content_like(qr/Commits on/);
207 207
     
208 208
     # Content
209 209
     $t->content_like(qr/first commit/);