|
|
|
@ -45,41 +45,35 @@
|
|
|
|
|
<tr>
|
|
|
|
|
{{if $entry.IsSubModule}}
|
|
|
|
|
<td>
|
|
|
|
|
<span class="truncate">
|
|
|
|
|
{{svg "octicon-file-submodule" 16}}
|
|
|
|
|
{{$refURL := $commit.RefURL AppUrl $.Repository.FullName}}
|
|
|
|
|
{{if $refURL}}
|
|
|
|
|
<a href="{{$refURL}}">{{$entry.Name}}</a> @ <a href="{{$refURL}}/commit/{{$commit.RefID}}">{{ShortSha $commit.RefID}}</a>
|
|
|
|
|
{{else}}
|
|
|
|
|
{{$entry.Name}} @ {{ShortSha $commit.RefID}}
|
|
|
|
|
{{end}}
|
|
|
|
|
</span>
|
|
|
|
|
{{svg "octicon-file-submodule" 16}}
|
|
|
|
|
{{$refURL := $commit.RefURL AppUrl $.Repository.FullName}}
|
|
|
|
|
{{if $refURL}}
|
|
|
|
|
<a href="{{$refURL}}">{{$entry.Name}}</a> @ <a href="{{$refURL}}/commit/{{$commit.RefID}}">{{ShortSha $commit.RefID}}</a>
|
|
|
|
|
{{else}}
|
|
|
|
|
{{$entry.Name}} @ {{ShortSha $commit.RefID}}
|
|
|
|
|
{{end}}
|
|
|
|
|
</td>
|
|
|
|
|
{{else}}
|
|
|
|
|
<td class="name four wide">
|
|
|
|
|
<span class="truncate">
|
|
|
|
|
{{if $entry.IsDir}}
|
|
|
|
|
{{$subJumpablePathName := $entry.GetSubJumpablePathName}}
|
|
|
|
|
{{$subJumpablePath := SubJumpablePath $subJumpablePathName}}
|
|
|
|
|
{{svg "octicon-file-directory" 16}}
|
|
|
|
|
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $subJumpablePathName}}" title="{{$subJumpablePathName}}">
|
|
|
|
|
{{if eq (len $subJumpablePath) 2}}
|
|
|
|
|
<span class="jumpable-path">{{index $subJumpablePath 0}}</span>{{index $subJumpablePath 1}}
|
|
|
|
|
{{else}}
|
|
|
|
|
{{index $subJumpablePath 0}}
|
|
|
|
|
{{end}}
|
|
|
|
|
</a>
|
|
|
|
|
{{else}}
|
|
|
|
|
{{svg (printf "octicon-%s" (EntryIcon $entry)) 16}}
|
|
|
|
|
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $entry.Name}}" title="{{$entry.Name}}">{{$entry.Name}}</a>
|
|
|
|
|
{{end}}
|
|
|
|
|
</span>
|
|
|
|
|
{{if $entry.IsDir}}
|
|
|
|
|
{{$subJumpablePathName := $entry.GetSubJumpablePathName}}
|
|
|
|
|
{{$subJumpablePath := SubJumpablePath $subJumpablePathName}}
|
|
|
|
|
{{svg "octicon-file-directory" 16}}
|
|
|
|
|
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $subJumpablePathName}}" title="{{$subJumpablePathName}}">
|
|
|
|
|
{{if eq (len $subJumpablePath) 2}}
|
|
|
|
|
<span class="jumpable-path">{{index $subJumpablePath 0}}</span>{{index $subJumpablePath 1}}
|
|
|
|
|
{{else}}
|
|
|
|
|
{{index $subJumpablePath 0}}
|
|
|
|
|
{{end}}
|
|
|
|
|
</a>
|
|
|
|
|
{{else}}
|
|
|
|
|
{{svg (printf "octicon-%s" (EntryIcon $entry)) 16}}
|
|
|
|
|
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $entry.Name}}" title="{{$entry.Name}}">{{$entry.Name}}</a>
|
|
|
|
|
{{end}}
|
|
|
|
|
</td>
|
|
|
|
|
{{end}}
|
|
|
|
|
<td class="message nine wide">
|
|
|
|
|
<span class="truncate">
|
|
|
|
|
<a href="{{$.RepoLink}}/commit/{{$commit.ID}}" title="{{$commit.Summary}}">{{$commit.Summary | RenderEmoji}}</a>
|
|
|
|
|
</span>
|
|
|
|
|
<a href="{{$.RepoLink}}/commit/{{$commit.ID}}" title="{{$commit.Summary}}">{{$commit.Summary | RenderEmoji}}</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="text right age three wide">{{TimeSince $commit.Committer.When $.Lang}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|