2016-08-11 12:48:08 +00:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 22:56:10 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository file editor edit">
|
2016-08-11 12:48:08 +00:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
2016-08-28 11:31:42 +00:00
|
|
|
<form class="ui edit form" method="post">
|
2016-08-11 12:48:08 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
2016-08-15 06:02:14 +00:00
|
|
|
<input type="hidden" name="last_commit" value="{{.last_commit}}">
|
2020-08-29 21:32:46 +00:00
|
|
|
<input type="hidden" name="page_has_posted" value="{{.PageHasPosted}}">
|
2023-05-01 15:40:02 +00: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-16 00:08:23 +00:00
|
|
|
<div class="breadcrumb-divider">/</div>
|
2023-05-01 15:40:02 +00:00
|
|
|
{{if eq $i $l}}
|
2024-04-15 19:08:31 +00:00
|
|
|
<input id="file-name" maxlength="255" value="{{$v}}" placeholder="{{ctx.Locale.Tr "repo.editor.name_your_file"}}" data-editorconfig="{{$.EditorconfigJson}}" required autofocus>
|
2023-09-25 08:56:50 +00:00
|
|
|
<span data-tooltip-content="{{ctx.Locale.Tr "repo.editor.filename_help"}}">{{svg "octicon-info"}}</span>
|
2023-05-01 15:40:02 +00:00
|
|
|
{{else}}
|
|
|
|
<span class="section"><a href="{{$.BranchLink}}/{{index $.TreePaths $i | PathEscapeSegments}}">{{$v}}</a></span>
|
2016-08-11 12:48:08 +00:00
|
|
|
{{end}}
|
2023-05-01 15:40:02 +00:00
|
|
|
{{end}}
|
2023-09-25 12:42:40 +00: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 15:40:02 +00:00
|
|
|
<input type="hidden" id="tree_path" name="tree_path" value="{{.TreePath}}" required>
|
2016-08-11 12:48:08 +00: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 12:42:40 +00: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 08:56:50 +00: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 05:25:41 +00:00
|
|
|
{{if not .IsNewFile}}
|
2024-03-07 07:28:33 +00:00
|
|
|
<a class="item" data-tab="diff" hx-params="context,content" hx-vals='{"context":"{{.BranchLink}}"}' hx-include="#edit_area" hx-swap="innerHTML" hx-target=".tab[data-tab='diff']" hx-indicator=".tab[data-tab='diff']" hx-post="{{.RepoLink}}/_preview/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">{{svg "octicon-diff"}} {{ctx.Locale.Tr "repo.editor.preview_changes"}}</a>
|
2016-08-15 08:42:20 +00:00
|
|
|
{{end}}
|
2016-08-11 12:48:08 +00:00
|
|
|
</div>
|
|
|
|
<div class="ui bottom attached active tab segment" data-tab="write">
|
2024-03-24 18:23:38 +00:00
|
|
|
<textarea id="edit_area" name="content" class="tw-hidden" data-id="repo-{{.Repository.Name}}-{{.TreePath}}"
|
2023-03-24 06:12:23 +00:00
|
|
|
data-url="{{.Repository.Link}}/markup"
|
2016-08-11 12:48:08 +00:00
|
|
|
data-context="{{.RepoLink}}"
|
2023-03-24 06:12:23 +00:00
|
|
|
data-previewable-extensions="{{.PreviewableExtensions}}"
|
2024-01-27 18:02:51 +00:00
|
|
|
data-line-wrap-extensions="{{.LineWrapExtensions}}">{{.FileContent}}</textarea>
|
2020-08-04 19:56:37 +00:00
|
|
|
<div class="editor-loading is-loading"></div>
|
2016-08-11 12:48:08 +00:00
|
|
|
</div>
|
2021-05-07 08:43:41 +00:00
|
|
|
<div class="ui bottom attached tab segment markup" data-tab="preview">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "loading"}}
|
2016-08-11 12:48:08 +00:00
|
|
|
</div>
|
2020-05-14 16:06:01 +00:00
|
|
|
<div class="ui bottom attached tab segment diff edit-diff" data-tab="diff">
|
2024-03-07 07:28:33 +00:00
|
|
|
<div class="tw-p-16"></div>
|
2016-08-11 12:48:08 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-28 08:41:44 +00:00
|
|
|
{{template "repo/editor/commit_form" .}}
|
2016-08-11 12:48:08 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2023-04-24 11:08:59 +00:00
|
|
|
<div class="ui g-modal-confirm modal" id="edit-empty-content-modal">
|
2023-04-23 09:24:19 +00:00
|
|
|
<div class="header">
|
2023-03-21 01:42:02 +00:00
|
|
|
{{svg "octicon-file"}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.editor.commit_empty_file_header"}}
|
2019-10-16 19:28:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="center content">
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "repo.editor.commit_empty_file_text"}}</p>
|
2019-10-16 19:28:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="actions">
|
2023-09-18 22:05:31 +00:00
|
|
|
<button class="ui cancel button">
|
2023-03-21 01:42:02 +00:00
|
|
|
{{svg "octicon-x"}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.editor.cancel"}}
|
2023-03-14 03:34:09 +00:00
|
|
|
</button>
|
2023-09-18 22:05:31 +00:00
|
|
|
<button class="ui primary ok button">
|
2023-03-21 01:42:02 +00:00
|
|
|
{{svg "fontawesome-save"}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.editor.commit_changes"}}
|
2023-03-14 03:34:09 +00:00
|
|
|
</button>
|
2019-10-16 19:28:41 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-11 12:48:08 +00:00
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|