2016-08-11 08:48:08 -04:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 17:56:10 -05:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository file editor edit">
|
2016-08-11 08:48:08 -04:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
2016-08-28 07:31:42 -04:00
|
|
|
<form class="ui edit form" method="post">
|
2016-08-11 08:48:08 -04:00
|
|
|
{{.CsrfTokenHtml}}
|
2016-08-15 02:02:14 -04:00
|
|
|
<input type="hidden" name="last_commit" value="{{.last_commit}}">
|
2020-08-29 17:32:46 -04:00
|
|
|
<input type="hidden" name="page_has_posted" value="{{.PageHasPosted}}">
|
2023-05-01 11:40:02 -04:00
|
|
|
<div class="repo-editor-header">
|
|
|
|
<div class="ui breadcrumb field{{if .Err_TreePath}} error{{end}}">
|
|
|
|
<a class="section" href="{{$.BranchLink}}">{{.Repository.Name}}</a>
|
|
|
|
{{$n := len .TreeNames}}
|
|
|
|
{{$l := Eval $n "-" 1}}
|
|
|
|
{{range $i, $v := .TreeNames}}
|
2023-08-15 20:08:23 -04:00
|
|
|
<div class="breadcrumb-divider">/</div>
|
2023-05-01 11:40:02 -04:00
|
|
|
{{if eq $i $l}}
|
2024-02-25 09:31:15 -05:00
|
|
|
<input id="file-name" maxlength="500" value="{{$v}}" placeholder="{{ctx.Locale.Tr "repo.editor.name_your_file"}}" data-editorconfig="{{$.EditorconfigJson}}" required autofocus>
|
2023-09-25 04:56:50 -04:00
|
|
|
<span data-tooltip-content="{{ctx.Locale.Tr "repo.editor.filename_help"}}">{{svg "octicon-info"}}</span>
|
2023-05-01 11:40:02 -04:00
|
|
|
{{else}}
|
|
|
|
<span class="section"><a href="{{$.BranchLink}}/{{index $.TreePaths $i | PathEscapeSegments}}">{{$v}}</a></span>
|
2016-08-11 08:48:08 -04:00
|
|
|
{{end}}
|
2023-05-01 11:40:02 -04:00
|
|
|
{{end}}
|
2023-09-25 08:42:40 -04:00
|
|
|
<span>{{ctx.Locale.Tr "repo.editor.or"}} <a href="{{$.BranchLink}}{{if not .IsNewFile}}/{{PathEscapeSegments .TreePath}}{{end}}">{{ctx.Locale.Tr "repo.editor.cancel_lower"}}</a></span>
|
2023-05-01 11:40:02 -04:00
|
|
|
<input type="hidden" id="tree_path" name="tree_path" value="{{.TreePath}}" required>
|
2016-08-11 08:48:08 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<div class="ui top attached tabular menu" data-write="write" data-preview="preview" data-diff="diff">
|
2023-09-25 08:42:40 -04:00
|
|
|
<a class="active item" data-tab="write">{{svg "octicon-code"}} {{if .IsNewFile}}{{ctx.Locale.Tr "repo.editor.new_file"}}{{else}}{{ctx.Locale.Tr "repo.editor.edit_file"}}{{end}}</a>
|
2023-09-25 04:56:50 -04:00
|
|
|
<a class="item" data-tab="preview" data-url="{{.Repository.Link}}/markup" data-context="{{.RepoLink}}/src/{{.BranchNameSubURL}}" data-markup-mode="file">{{svg "octicon-eye"}} {{ctx.Locale.Tr "preview"}}</a>
|
2023-03-26 01:25:41 -04:00
|
|
|
{{if not .IsNewFile}}
|
2023-09-25 04:56:50 -04:00
|
|
|
<a class="item" data-tab="diff" data-url="{{.RepoLink}}/_preview/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}" data-context="{{.BranchLink}}">{{svg "octicon-diff"}} {{ctx.Locale.Tr "repo.editor.preview_changes"}}</a>
|
2016-08-15 04:42:20 -04:00
|
|
|
{{end}}
|
2016-08-11 08:48:08 -04:00
|
|
|
</div>
|
|
|
|
<div class="ui bottom attached active tab segment" data-tab="write">
|
2023-11-22 04:14:16 -05:00
|
|
|
<textarea id="edit_area" name="content" class="gt-hidden" data-id="repo-{{.Repository.Name}}-{{.TreePath}}"
|
2023-03-24 02:12:23 -04:00
|
|
|
data-url="{{.Repository.Link}}/markup"
|
2016-08-11 08:48:08 -04:00
|
|
|
data-context="{{.RepoLink}}"
|
2023-03-24 02:12:23 -04:00
|
|
|
data-previewable-extensions="{{.PreviewableExtensions}}"
|
2024-01-27 13:02:51 -05:00
|
|
|
data-line-wrap-extensions="{{.LineWrapExtensions}}">{{.FileContent}}</textarea>
|
2020-08-04 15:56:37 -04:00
|
|
|
<div class="editor-loading is-loading"></div>
|
2016-08-11 08:48:08 -04:00
|
|
|
</div>
|
2021-05-07 04:43:41 -04:00
|
|
|
<div class="ui bottom attached tab segment markup" data-tab="preview">
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "loading"}}
|
2016-08-11 08:48:08 -04:00
|
|
|
</div>
|
2020-05-14 12:06:01 -04:00
|
|
|
<div class="ui bottom attached tab segment diff edit-diff" data-tab="diff">
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "loading"}}
|
2016-08-11 08:48:08 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-28 04:41:44 -04:00
|
|
|
{{template "repo/editor/commit_form" .}}
|
2016-08-11 08:48:08 -04:00
|
|
|
</form>
|
|
|
|
</div>
|
2023-04-24 07:08:59 -04:00
|
|
|
<div class="ui g-modal-confirm modal" id="edit-empty-content-modal">
|
2023-04-23 05:24:19 -04:00
|
|
|
<div class="header">
|
2023-03-20 21:42:02 -04:00
|
|
|
{{svg "octicon-file"}}
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "repo.editor.commit_empty_file_header"}}
|
2019-10-16 15:28:41 -04:00
|
|
|
</div>
|
|
|
|
<div class="center content">
|
2023-09-25 04:56:50 -04:00
|
|
|
<p>{{ctx.Locale.Tr "repo.editor.commit_empty_file_text"}}</p>
|
2019-10-16 15:28:41 -04:00
|
|
|
</div>
|
|
|
|
<div class="actions">
|
2023-09-18 18:05:31 -04:00
|
|
|
<button class="ui cancel button">
|
2023-03-20 21:42:02 -04:00
|
|
|
{{svg "octicon-x"}}
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "repo.editor.cancel"}}
|
2023-03-13 23:34:09 -04:00
|
|
|
</button>
|
2023-09-18 18:05:31 -04:00
|
|
|
<button class="ui primary ok button">
|
2023-03-20 21:42:02 -04:00
|
|
|
{{svg "fontawesome-save"}}
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "repo.editor.commit_changes"}}
|
2023-03-13 23:34:09 -04:00
|
|
|
</button>
|
2019-10-16 15:28:41 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-11 08:48:08 -04:00
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|