2016-08-11 14:48:08 +02:00
|
|
|
{{template "base/head" .}}
|
2016-08-28 13:31:42 +02:00
|
|
|
<div class="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}}">
|
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}}">
|
2016-08-11 14:48:08 +02:00
|
|
|
<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}}
|
2016-08-31 01:18:40 +02:00
|
|
|
<input id="file-name" value="{{$v}}" placeholder="{{$.i18n.Tr "repo.editor.name_your_file"}}" data-ec-url-prefix="{{$.EditorconfigURLPrefix}}" required autofocus>
|
2016-08-28 13:31:42 +02:00
|
|
|
<span class="octicon octicon-info poping up" data-content="{{$.i18n.Tr "repo.editor.filename_help"}}" data-position="bottom center" data-variation="tiny inverted"></span>
|
2016-08-11 14:48:08 +02:00
|
|
|
{{else}}
|
2017-06-22 17:30:47 +02:00
|
|
|
<span class="section"><a href="{{EscapePound $.BranchLink}}/{{index $.TreePaths $i | EscapePound}}">{{$v}}</a></span>
|
2016-08-11 14:48:08 +02:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2016-08-28 13:31:42 +02:00
|
|
|
<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 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">
|
2016-08-28 13:31:42 +02:00
|
|
|
<a class="active item" data-tab="write"><i class="octicon octicon-code"></i> {{if .IsNewFile}}{{.i18n.Tr "repo.editor.new_file"}}{{else}}{{.i18n.Tr "repo.editor.edit_file"}}{{end}}</a>
|
2016-08-15 10:42:20 +02:00
|
|
|
{{if not .IsNewFile}}
|
2017-10-30 03:04:25 +01:00
|
|
|
<a class="item" data-tab="preview" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}/src/{{.BranchNameSubURL}}" data-preview-file-modes="{{.PreviewableFileModes}}"><i class="octicon octicon-eye"></i> {{.i18n.Tr "repo.release.preview"}}</a>
|
2016-08-28 13:31:42 +02:00
|
|
|
<a class="item" data-tab="diff" data-url="{{.RepoLink}}/_preview/{{.BranchName}}/{{.TreePath}}" data-context="{{.BranchLink}}"><i class="octicon octicon-diff"></i> {{.i18n.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">
|
2016-08-25 06:35:03 +02:00
|
|
|
<textarea id="edit_area" name="content" data-id="repo-{{.Repository.Name}}-{{.TreePath}}"
|
2016-08-11 14:48:08 +02:00
|
|
|
data-url="{{AppSubUrl}}/api/v1/markdown"
|
|
|
|
data-context="{{.RepoLink}}"
|
2016-08-12 11:29:29 +02:00
|
|
|
data-markdown-file-exts="{{.MarkdownFileExts}}"
|
2016-08-11 14:48:08 +02:00
|
|
|
data-line-wrap-extensions="{{.LineWrapExtensions}}">
|
|
|
|
{{.FileContent}}</textarea required>
|
|
|
|
</div>
|
|
|
|
<div class="ui bottom attached tab segment markdown" data-tab="preview">
|
|
|
|
{{.i18n.Tr "repo.release.loading"}}
|
|
|
|
</div>
|
|
|
|
<div class="ui bottom attached tab segment diff" data-tab="diff">
|
|
|
|
{{.i18n.Tr "repo.release.loading"}}
|
|
|
|
</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>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|