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