2016-08-11 14:48:08 +02:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 05:00:14 +01:00
|
|
|
<div class="page-content repository file editor edit">
|
2016-08-11 14:48:08 +02:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
2016-08-28 13:31:42 +02:00
|
|
|
<form class="ui edit form" method="post">
|
2016-08-11 14:48:08 +02:00
|
|
|
{{.CsrfTokenHtml}}
|
2016-08-15 08:02:14 +02:00
|
|
|
<input type="hidden" name="last_commit" value="{{.last_commit}}">
|
2020-08-29 23:32:46 +02:00
|
|
|
<input type="hidden" name="page_has_posted" value="{{.PageHasPosted}}">
|
2016-08-11 14:48:08 +02:00
|
|
|
<div class="ui secondary menu">
|
2016-08-15 10:42:20 +02:00
|
|
|
<div class="fitted item treepath">
|
2016-08-25 06:35:03 +02:00
|
|
|
<div class="ui breadcrumb field {{if .Err_TreePath}}error{{end}}">
|
2021-11-16 19:18:25 +01:00
|
|
|
<a class="section" href="{{$.BranchLink}}">{{.Repository.Name}}</a>
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$n := len .TreeNames}}
|
|
|
|
{{$l := Subtract $n 1}}
|
2016-08-11 14:48:08 +02:00
|
|
|
{{range $i, $v := .TreeNames}}
|
|
|
|
<div class="divider"> / </div>
|
|
|
|
{{if eq $i $l}}
|
2022-06-27 22:58:46 +02:00
|
|
|
<input id="file-name" value="{{$v}}" placeholder="{{$.locale.Tr "repo.editor.name_your_file"}}" data-editorconfig="{{$.Editorconfig}}" required autofocus>
|
|
|
|
<span class="tooltip" data-content="{{$.locale.Tr "repo.editor.filename_help"}}" data-position="bottom center">{{svg "octicon-info"}}</span>
|
2016-08-11 14:48:08 +02:00
|
|
|
{{else}}
|
2021-11-16 19:18:25 +01:00
|
|
|
<span class="section"><a href="{{$.BranchLink}}/{{index $.TreePaths $i | PathEscapeSegments}}">{{$v}}</a></span>
|
2016-08-11 14:48:08 +02:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2022-06-27 22:58:46 +02:00
|
|
|
<span>{{.locale.Tr "repo.editor.or"}} <a href="{{$.BranchLink}}{{if not .IsNewFile}}/{{PathEscapeSegments .TreePath}}{{end}}">{{.locale.Tr "repo.editor.cancel_lower"}}</a></span>
|
2016-08-25 06:35:03 +02:00
|
|
|
<input type="hidden" id="tree_path" name="tree_path" value="{{.TreePath}}" required>
|
2016-08-11 14:48:08 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<div class="ui top attached tabular menu" data-write="write" data-preview="preview" data-diff="diff">
|
2022-06-27 22:58:46 +02:00
|
|
|
<a class="active item" data-tab="write">{{svg "octicon-code"}} {{if .IsNewFile}}{{.locale.Tr "repo.editor.new_file"}}{{else}}{{.locale.Tr "repo.editor.edit_file"}}{{end}}</a>
|
2016-08-15 10:42:20 +02:00
|
|
|
{{if not .IsNewFile}}
|
2022-06-27 22:58:46 +02:00
|
|
|
<a class="item" data-tab="preview" data-url="{{.Repository.HTMLURL}}/markdown" data-context="{{.RepoLink}}/src/{{.BranchNameSubURL}}" data-preview-file-modes="{{.PreviewableFileModes}}" data-markdown-mode="gfm">{{svg "octicon-eye"}} {{.locale.Tr "preview"}}</a>
|
|
|
|
<a class="item" data-tab="diff" data-url="{{.RepoLink}}/_preview/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}" data-context="{{.BranchLink}}">{{svg "octicon-diff"}} {{.locale.Tr "repo.editor.preview_changes"}}</a>
|
2016-08-15 10:42:20 +02:00
|
|
|
{{end}}
|
2016-08-11 14:48:08 +02:00
|
|
|
</div>
|
|
|
|
<div class="ui bottom attached active tab segment" data-tab="write">
|
2020-11-14 04:57:34 +01:00
|
|
|
<textarea id="edit_area" name="content" class="hide" data-id="repo-{{.Repository.Name}}-{{.TreePath}}"
|
2022-04-08 06:22:10 +02:00
|
|
|
data-url="{{.Repository.HTMLURL}}/markdown"
|
2016-08-11 14:48:08 +02:00
|
|
|
data-context="{{.RepoLink}}"
|
2016-08-12 11:29:29 +02:00
|
|
|
data-markdown-file-exts="{{.MarkdownFileExts}}"
|
2019-10-16 21:28:41 +02:00
|
|
|
data-line-wrap-extensions="{{.LineWrapExtensions}}">
|
2018-04-20 02:25:15 +02:00
|
|
|
{{.FileContent}}</textarea>
|
2020-08-04 21:56:37 +02:00
|
|
|
<div class="editor-loading is-loading"></div>
|
2016-08-11 14:48:08 +02:00
|
|
|
</div>
|
2021-05-07 10:43:41 +02:00
|
|
|
<div class="ui bottom attached tab segment markup" data-tab="preview">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "loading"}}
|
2016-08-11 14:48:08 +02:00
|
|
|
</div>
|
2020-05-14 18:06:01 +02:00
|
|
|
<div class="ui bottom attached tab segment diff edit-diff" data-tab="diff">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "loading"}}
|
2016-08-11 14:48:08 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-28 10:41:44 +02:00
|
|
|
{{template "repo/editor/commit_form" .}}
|
2016-08-11 14:48:08 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2019-10-16 21:28:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
<div class="ui small basic modal" id="edit-empty-content-modal">
|
|
|
|
<div class="ui icon header">
|
|
|
|
<i class="file icon"></i>
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "repo.editor.commit_empty_file_header"}}
|
2019-10-16 21:28:41 +02:00
|
|
|
</div>
|
|
|
|
<div class="center content">
|
2022-06-27 22:58:46 +02:00
|
|
|
<p>{{.locale.Tr "repo.editor.commit_empty_file_text"}}</p>
|
2019-10-16 21:28:41 +02:00
|
|
|
</div>
|
|
|
|
<div class="actions">
|
|
|
|
<div class="ui red basic cancel inverted button">
|
|
|
|
<i class="remove icon"></i>
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "repo.editor.cancel"}}
|
2019-10-16 21:28:41 +02:00
|
|
|
</div>
|
|
|
|
<div class="ui green basic ok inverted button">
|
|
|
|
<i class="save icon"></i>
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "repo.editor.commit_changes"}}
|
2019-10-16 21:28:41 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2016-08-11 14:48:08 +02:00
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|