view_file.tmpl 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 = '{{.RawFileLink}}';
  56. context = context.substring(0, context.lastIndexOf("/"));
  57. renderer.image = function (href, title, text) {
  58. return `<img src="${context}/${href}"`
  59. }
  60. $("#ipython-notebook .nb-markdown-cell").each(function(i, markdown) {
  61. $(markdown).html(marked($(markdown).html(), {renderer: renderer}));
  62. });
  63. });
  64. </script>
  65. {{else if .ReadmeInList}}
  66. {{if .FileContent}}{{.FileContent | Str2html}}{{end}}
  67. {{else if not .IsTextFile}}
  68. <div class="view-raw ui center">
  69. {{if .IsImageFile}}
  70. <img src="{{EscapePound $.RawFileLink}}">
  71. {{else if .IsVideoFile}}
  72. <video controls src="{{EscapePound $.RawFileLink}}">
  73. <strong>{{.i18n.Tr "repo.video_not_supported_in_browser"}}</strong>
  74. </video>
  75. {{else if .IsPDFFile}}
  76. <iframe width="100%" height="600px" src="{{AppSubURL}}/plugins/pdfjs-1.4.20/web/viewer.html?file={{EscapePound $.RawFileLink}}"></iframe>
  77. {{else}}
  78. <a href="{{EscapePound $.RawFileLink}}" rel="nofollow" class="btn btn-gray btn-radius">{{.i18n.Tr "repo.file_view_raw"}}</a>
  79. {{end}}
  80. </div>
  81. {{else if .FileSize}}
  82. <table>
  83. <tbody>
  84. <tr>
  85. {{if .IsFileTooLarge}}
  86. <td><strong>{{.i18n.Tr "repo.file_too_large"}}</strong></td>
  87. {{else}}
  88. <td class="lines-num">{{.LineNums}}</td>
  89. <td class="lines-code"><pre><code class="{{.HighlightClass}}"><ol class="linenums">{{.FileContent}}</ol></code></pre></td>
  90. {{end}}
  91. </tr>
  92. </tbody>
  93. </table>
  94. {{end}}
  95. </div>
  96. </div>
  97. </div>
  98. <script>
  99. function submitDeleteForm() {
  100. var message = prompt("{{.i18n.Tr "repo.delete_confirm_message"}}\n\n{{.i18n.Tr "repo.delete_commit_summary"}}", "Delete '{{.TreeName}}'");
  101. if (message != null) {
  102. $("#delete-message").val(message);
  103. $("#delete-file-form").submit()
  104. }
  105. }
  106. </script>