view_file.tmpl 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <div id="file-content" class="{{TabSizeClass .Editorconfig .FileName}}">
  2. <h4 class="ui top attached header" id="{{if .ReadmeExist}}repo-readme{{else}}repo-read-file{{end}}">
  3. {{if .ReadmeExist}}
  4. <i class="octicon octicon-book"></i>
  5. {{if .ReadmeInList}}
  6. <strong>{{.FileName}}</strong>
  7. {{else}}
  8. <strong>{{.FileName}}</strong> <span class="text grey normal">{{FileSize .FileSize}}</span>
  9. {{end}}
  10. {{else}}
  11. <i class="file text outline icon ui left"></i>
  12. <strong>{{.FileName}}</strong> <span class="text grey normal">{{FileSize .FileSize}}</span>
  13. {{end}}
  14. {{if not .ReadmeInList}}
  15. <div class="ui right file-actions">
  16. <div class="ui buttons">
  17. {{if not .IsViewCommit}}
  18. <a class="ui button" href="{{.RepoLink}}/src/{{.CommitID}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_permalink"}}</a>
  19. {{end}}
  20. <a class="ui button" href="{{.RepoLink}}/commits/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_history"}}</a>
  21. <a class="ui button" href="{{EscapePound $.RawFileLink}}">{{.i18n.Tr "repo.file_raw"}}</a>
  22. </div>
  23. {{if .Repository.CanEnableEditor}}
  24. {{if .CanEditFile}}
  25. <a href="{{.RepoLink}}/_edit/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}"><i class="octicon octicon-pencil btn-octicon poping up" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted"></i></a>
  26. {{else}}
  27. <i class="octicon octicon-pencil btn-octicon poping up disabled" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted"></i>
  28. {{end}}
  29. {{if .CanDeleteFile}}
  30. <a href="{{.RepoLink}}/_delete/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}"><i class="octicon octicon-trashcan btn-octicon btn-octicon-danger poping up" data-content="{{.DeleteFileTooltip}}" data-position="bottom center" data-variation="tiny inverted"></i></a>
  31. {{else}}
  32. <i class="octicon octicon-trashcan btn-octicon poping up disabled" data-content="{{.DeleteFileTooltip}}" data-position="bottom center" data-variation="tiny inverted"></i>
  33. {{end}}
  34. {{end}}
  35. </div>
  36. {{end}}
  37. </h4>
  38. <div class="ui attached table segment">
  39. <div id="{{if .IsIPythonNotebook}}ipython-notebook{{end}}" class="file-view {{if .IsMarkdown}}markdown{{else if .IsIPythonNotebook}}ipython-notebook{{else if .ReadmeInList}}plain-text{{else if and .IsTextFile}}code-view{{end}} has-emoji">
  40. {{if .IsMarkdown}}
  41. {{if .FileContent}}{{.FileContent | Str2html}}{{end}}
  42. {{else if .IsIPythonNotebook}}
  43. <script>
  44. var rendered = null;
  45. $.getJSON("{{.RawFileLink}}", null, function(notebook_json) {
  46. var notebook = nb.parse(notebook_json);
  47. rendered = notebook.render();
  48. $("#ipython-notebook").append(rendered);
  49. $("#ipython-notebook code").each(function(i, block) {
  50. $(block).addClass("py").addClass("python");
  51. hljs.highlightBlock(block);
  52. });
  53. // Overwrite image method to append proper prefix to the source URL
  54. var renderer = new marked.Renderer();
  55. var context = '{{.TreeLink}}'.replace('/src/', '/raw/');
  56. renderer.image = function (href, title, text) {
  57. return `<img src="${context}/${href}"`
  58. }
  59. $("#ipython-notebook .nb-markdown-cell").each(function(i, markdown) {
  60. $(markdown).html(marked($(markdown).html(), {renderer: renderer}));
  61. });
  62. });
  63. </script>
  64. {{else if .ReadmeInList}}
  65. {{if .FileContent}}{{.FileContent | Str2html}}{{end}}
  66. {{else if not .IsTextFile}}
  67. <div class="view-raw ui center">
  68. {{if .IsImageFile}}
  69. <img src="{{EscapePound $.RawFileLink}}">
  70. {{else if .IsVideoFile}}
  71. <video controls src="{{EscapePound $.RawFileLink}}">
  72. <strong>{{.i18n.Tr "repo.video_not_supported_in_browser"}}</strong>
  73. </video>
  74. {{else if .IsPDFFile}}
  75. <iframe width="100%" height="600px" src="{{AppSubURL}}/plugins/pdfjs-1.4.20/web/viewer.html?file={{EscapePound $.RawFileLink}}"></iframe>
  76. {{else}}
  77. <a href="{{EscapePound $.RawFileLink}}" rel="nofollow" class="btn btn-gray btn-radius">{{.i18n.Tr "repo.file_view_raw"}}</a>
  78. {{end}}
  79. </div>
  80. {{else if .FileSize}}
  81. <table>
  82. <tbody>
  83. <tr>
  84. {{if .IsFileTooLarge}}
  85. <td><strong>{{.i18n.Tr "repo.file_too_large"}}</strong></td>
  86. {{else}}
  87. <td class="lines-num">{{.LineNums}}</td>
  88. <td class="lines-code"><pre><code class="{{.HighlightClass}}"><ol class="linenums">{{.FileContent}}</ol></code></pre></td>
  89. {{end}}
  90. </tr>
  91. </tbody>
  92. </table>
  93. {{end}}
  94. </div>
  95. </div>
  96. </div>
  97. <script>
  98. function submitDeleteForm() {
  99. var message = prompt("{{.i18n.Tr "repo.delete_confirm_message"}}\n\n{{.i18n.Tr "repo.delete_commit_summary"}}", "Delete '{{.TreeName}}'");
  100. if (message != null) {
  101. $("#delete-message").val(message);
  102. $("#delete-file-form").submit()
  103. }
  104. }
  105. </script>