summaryrefslogtreecommitdiffstats
path: root/templates/repo/editor
diff options
context:
space:
mode:
Diffstat (limited to 'templates/repo/editor')
-rw-r--r--templates/repo/editor/cherry_pick.tmpl30
-rw-r--r--templates/repo/editor/commit_form.tmpl82
-rw-r--r--templates/repo/editor/delete.tmpl13
-rw-r--r--templates/repo/editor/diff_preview.tmpl11
-rw-r--r--templates/repo/editor/edit.tmpl74
-rw-r--r--templates/repo/editor/patch.tmpl57
-rw-r--r--templates/repo/editor/upload.tmpl33
7 files changed, 300 insertions, 0 deletions
diff --git a/templates/repo/editor/cherry_pick.tmpl b/templates/repo/editor/cherry_pick.tmpl
new file mode 100644
index 0000000..f9c9eef
--- /dev/null
+++ b/templates/repo/editor/cherry_pick.tmpl
@@ -0,0 +1,30 @@
+{{template "base/head" .}}
+<div role="main" aria-label="{{.Title}}" class="page-content repository file editor edit">
+ {{template "repo/header" .}}
+ <div class="ui container">
+ {{template "base/alert" .}}
+ <form class="ui edit form" method="post" action="{{.RepoLink}}/_cherrypick/{{.SHA}}/{{.BranchName | PathEscapeSegments}}">
+ {{.CsrfTokenHtml}}
+ <input type="hidden" name="last_commit" value="{{.last_commit}}">
+ <input type="hidden" name="page_has_posted" value="true">
+ <input type="hidden" name="revert" value="{{if eq .CherryPickType "revert"}}true{{else}}false{{end}}">
+ <div class="repo-editor-header">
+ <div class="ui breadcrumb field {{if .Err_TreePath}}error{{end}}">
+ {{$shaurl := printf "%s/commit/%s" $.RepoLink (PathEscape .SHA)}}
+ {{$shalink := HTMLFormat `<a class="ui primary sha label" href="%s">%s</a>` $shaurl (ShortSha .SHA)}}
+ {{if eq .CherryPickType "revert"}}
+ {{ctx.Locale.Tr "repo.editor.revert" $shalink}}
+ {{else}}
+ {{ctx.Locale.Tr "repo.editor.cherry_pick" $shalink}}
+ {{end}}
+ <a class="section" href="{{$.RepoLink}}">{{.Repository.FullName}}</a>
+ <div class="breadcrumb-divider">:</div>
+ <a class="section" href="{{$.BranchLink}}">{{.BranchName}}</a>
+ <span>{{ctx.Locale.Tr "repo.editor.or"}} <a href="{{$shaurl}}">{{ctx.Locale.Tr "repo.editor.cancel_lower"}}</a></span>
+ </div>
+ </div>
+ {{template "repo/editor/commit_form" .}}
+ </form>
+ </div>
+</div>
+{{template "base/footer" .}}
diff --git a/templates/repo/editor/commit_form.tmpl b/templates/repo/editor/commit_form.tmpl
new file mode 100644
index 0000000..9f81b1d
--- /dev/null
+++ b/templates/repo/editor/commit_form.tmpl
@@ -0,0 +1,82 @@
+<div class="commit-form-wrapper">
+ {{ctx.AvatarUtils.Avatar .SignedUser 48 "commit-avatar"}}
+ <div class="commit-form">
+ <h3>{{- if .CanCommitToBranch.WillSign}}
+ <span title="{{ctx.Locale.Tr "repo.signing.will_sign" .CanCommitToBranch.SigningKey}}">{{svg "octicon-lock" 24}}</span>
+ {{ctx.Locale.Tr "repo.editor.commit_signed_changes"}}
+ {{- else}}
+ <span title="{{ctx.Locale.Tr (printf "repo.signing.wont_sign.%s" .CanCommitToBranch.WontSignReason)}}">{{svg "octicon-unlock" 24}}</span>
+ {{ctx.Locale.Tr "repo.editor.commit_changes"}}
+ {{- end}}</h3>
+ <div class="field">
+ <input name="commit_summary" maxlength="100" placeholder="{{if .PageIsDelete}}{{ctx.Locale.Tr "repo.editor.delete" .TreePath}}{{else if .PageIsUpload}}{{ctx.Locale.Tr "repo.editor.upload_files_to_dir" .TreePath}}{{else if .IsNewFile}}{{ctx.Locale.TrString "repo.editor.add_tmpl"}}{{else if .PageIsPatch}}{{ctx.Locale.Tr "repo.editor.patch"}}{{else}}{{ctx.Locale.Tr "repo.editor.update" .TreePath}}{{end}}" value="{{.commit_summary}}" autofocus>
+ </div>
+ <div class="field">
+ <textarea name="commit_message" placeholder="{{ctx.Locale.Tr "repo.editor.commit_message_desc"}}" rows="5">{{.commit_message}}</textarea>
+ </div>
+ <div class="inline field">
+ <div class="ui checkbox">
+ <input name="signoff" type="checkbox">
+ <label>{{ctx.Locale.Tr "repo.editor.signoff_desc"}}</label>
+ </div>
+ </div>
+ <div class="quick-pull-choice js-quick-pull-choice">
+ <div class="field">
+ <div class="ui radio checkbox {{if not .CanCommitToBranch.CanCommitToBranch}}disabled{{end}}">
+ <input type="radio" class="js-quick-pull-choice-option" name="commit_choice" value="direct" button_text="{{ctx.Locale.Tr "repo.editor.commit_changes"}}" {{if eq .commit_choice "direct"}}checked{{end}}>
+ <label>
+ {{svg "octicon-git-commit"}}
+ {{ctx.Locale.Tr "repo.editor.commit_directly_to_this_branch" .BranchName}}
+ {{if not .CanCommitToBranch.CanCommitToBranch}}
+ <div class="ui visible small warning message">
+ {{ctx.Locale.Tr "repo.editor.no_commit_to_branch"}}
+ <ul>
+ {{if not .CanCommitToBranch.UserCanPush}}<li>{{ctx.Locale.Tr "repo.editor.user_no_push_to_branch"}}</li>{{end}}
+ {{if and .CanCommitToBranch.RequireSigned (not .CanCommitToBranch.WillSign)}}<li>{{ctx.Locale.Tr "repo.editor.require_signed_commit"}}</li>{{end}}
+ </ul>
+ </div>
+ {{end}}
+ </label>
+ </div>
+ </div>
+ {{if not .Repository.IsEmpty}}
+ <div class="field">
+ <div class="ui radio checkbox">
+ {{if .CanCreatePullRequest}}
+ <input type="radio" class="js-quick-pull-choice-option" name="commit_choice" value="commit-to-new-branch" button_text="{{ctx.Locale.Tr "repo.editor.propose_file_change"}}" {{if eq .commit_choice "commit-to-new-branch"}}checked{{end}}>
+ {{else}}
+ <input type="radio" class="js-quick-pull-choice-option" name="commit_choice" value="commit-to-new-branch" button_text="{{ctx.Locale.Tr "repo.editor.commit_changes"}}" {{if eq .commit_choice "commit-to-new-branch"}}checked{{end}}>
+ {{end}}
+ <label>
+ {{svg "octicon-git-pull-request"}}
+ {{if .CanCreatePullRequest}}
+ {{ctx.Locale.Tr "repo.editor.create_new_branch"}}
+ {{else}}
+ {{ctx.Locale.Tr "repo.editor.create_new_branch_np"}}
+ {{end}}
+ </label>
+ </div>
+ </div>
+ <div class="quick-pull-branch-name {{if not (eq .commit_choice "commit-to-new-branch")}}tw-hidden{{end}}">
+ <div class="new-branch-name-input field {{if .Err_NewBranchName}}error{{end}}">
+ {{svg "octicon-git-branch"}}
+ <input type="text" name="new_branch_name" maxlength="100" value="{{.new_branch_name}}" class="input-contrast tw-mr-1 js-quick-pull-new-branch-name" placeholder="{{ctx.Locale.Tr "repo.editor.new_branch_name_desc"}}" {{if eq .commit_choice "commit-to-new-branch"}}required{{end}} title="{{ctx.Locale.Tr "repo.editor.new_branch_name"}}">
+ <span class="text-muted js-quick-pull-normalization-info"></span>
+ </div>
+ </div>
+ {{end}}
+ </div>
+ <div class="field {{if .Err_CommitMailID}}error{{end}}">
+ <label for="commit_mail_id">Commit email</label>
+ <select class="ui selection dropdown" name="commit_mail_id">
+ {{range .CommitMails}}
+ <option{{if eq $.DefaultCommitMail .Email}} selected="selected"{{end}} value="{{.ID}}">{{.Email}}</option>
+ {{end}}
+ </select>
+ </div>
+ </div>
+ <button id="commit-button" type="submit" class="ui primary button">
+ {{if eq .commit_choice "commit-to-new-branch"}}{{ctx.Locale.Tr "repo.editor.propose_file_change"}}{{else}}{{ctx.Locale.Tr "repo.editor.commit_changes"}}{{end}}
+ </button>
+ <a class="ui button red" href="{{$.BranchLink}}/{{PathEscapeSegments .TreePath}}">{{ctx.Locale.Tr "repo.editor.cancel"}}</a>
+</div>
diff --git a/templates/repo/editor/delete.tmpl b/templates/repo/editor/delete.tmpl
new file mode 100644
index 0000000..2c0c2fc
--- /dev/null
+++ b/templates/repo/editor/delete.tmpl
@@ -0,0 +1,13 @@
+{{template "base/head" .}}
+<div role="main" aria-label="{{.Title}}" class="page-content repository file editor delete">
+ {{template "repo/header" .}}
+ <div class="ui container">
+ {{template "base/alert" .}}
+ <form class="ui form" method="post">
+ {{.CsrfTokenHtml}}
+ <input type="hidden" name="last_commit" value="{{.last_commit}}">
+ {{template "repo/editor/commit_form" .}}
+ </form>
+ </div>
+</div>
+{{template "base/footer" .}}
diff --git a/templates/repo/editor/diff_preview.tmpl b/templates/repo/editor/diff_preview.tmpl
new file mode 100644
index 0000000..e2e922b
--- /dev/null
+++ b/templates/repo/editor/diff_preview.tmpl
@@ -0,0 +1,11 @@
+<div class="diff-file-box">
+ <div class="ui attached table segment">
+ <div class="file-body file-code code-diff code-diff-unified unicode-escaped">
+ <table>
+ <tbody>
+ {{template "repo/diff/section_unified" dict "file" .File "root" $}}
+ </tbody>
+ </table>
+ </div>
+ </div>
+</div>
diff --git a/templates/repo/editor/edit.tmpl b/templates/repo/editor/edit.tmpl
new file mode 100644
index 0000000..71cecf1
--- /dev/null
+++ b/templates/repo/editor/edit.tmpl
@@ -0,0 +1,74 @@
+{{template "base/head" .}}
+<div role="main" aria-label="{{.Title}}" class="page-content repository file editor edit">
+ {{template "repo/header" .}}
+ <div class="ui container">
+ {{template "base/alert" .}}
+ <form class="ui edit form" method="post">
+ {{.CsrfTokenHtml}}
+ <input type="hidden" name="last_commit" value="{{.last_commit}}">
+ <input type="hidden" name="page_has_posted" value="{{.PageHasPosted}}">
+ <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}}
+ <div class="breadcrumb-divider">/</div>
+ {{if eq $i $l}}
+ <input id="file-name" maxlength="255" value="{{$v}}" placeholder="{{ctx.Locale.Tr "repo.editor.name_your_file"}}" data-editorconfig="{{$.EditorconfigJson}}" required autofocus>
+ <span data-tooltip-content="{{ctx.Locale.Tr "repo.editor.filename_help"}}">{{svg "octicon-info"}}</span>
+ {{else}}
+ <span class="section"><a href="{{$.BranchLink}}/{{index $.TreePaths $i | PathEscapeSegments}}">{{$v}}</a></span>
+ {{end}}
+ {{end}}
+ <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>
+ <input type="hidden" id="tree_path" name="tree_path" value="{{.TreePath}}" required>
+ </div>
+ </div>
+ <div class="field">
+ <div class="ui top attached tabular menu" data-write="write" data-preview="preview" data-diff="diff">
+ <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>
+ <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>
+ {{if not .IsNewFile}}
+ <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>
+ {{end}}
+ </div>
+ <div class="ui bottom attached active tab segment" data-tab="write">
+ <textarea id="edit_area" name="content" class="tw-hidden" data-id="repo-{{.Repository.Name}}-{{.TreePath}}"
+ data-url="{{.Repository.Link}}/markup"
+ data-context="{{.RepoLink}}"
+ data-previewable-extensions="{{.PreviewableExtensions}}"
+ data-line-wrap-extensions="{{.LineWrapExtensions}}">{{.FileContent}}</textarea>
+ <div class="editor-loading is-loading"></div>
+ </div>
+ <div class="ui bottom attached tab segment markup" data-tab="preview">
+ {{ctx.Locale.Tr "loading"}}
+ </div>
+ <div class="ui bottom attached tab segment diff edit-diff" data-tab="diff">
+ <div class="tw-p-16"></div>
+ </div>
+ </div>
+ {{template "repo/editor/commit_form" .}}
+ </form>
+ </div>
+ <div class="ui g-modal-confirm modal" id="edit-empty-content-modal">
+ <div class="header">
+ {{svg "octicon-file"}}
+ {{ctx.Locale.Tr "repo.editor.commit_empty_file_header"}}
+ </div>
+ <div class="center content">
+ <p>{{ctx.Locale.Tr "repo.editor.commit_empty_file_text"}}</p>
+ </div>
+ <div class="actions">
+ <button class="ui cancel button">
+ {{svg "octicon-x"}}
+ {{ctx.Locale.Tr "repo.editor.cancel"}}
+ </button>
+ <button class="ui primary ok button">
+ {{svg "fontawesome-save"}}
+ {{ctx.Locale.Tr "repo.editor.commit_changes"}}
+ </button>
+ </div>
+ </div>
+</div>
+{{template "base/footer" .}}
diff --git a/templates/repo/editor/patch.tmpl b/templates/repo/editor/patch.tmpl
new file mode 100644
index 0000000..1f046a8
--- /dev/null
+++ b/templates/repo/editor/patch.tmpl
@@ -0,0 +1,57 @@
+{{template "base/head" .}}
+<div role="main" aria-label="{{.Title}}" class="page-content repository file editor edit">
+ {{template "repo/header" .}}
+ <div class="ui container">
+ {{template "base/alert" .}}
+ <form class="ui edit form" method="post" action="{{.RepoLink}}/_diffpatch/{{.BranchName | PathEscapeSegments}}">
+ {{.CsrfTokenHtml}}
+ <input type="hidden" name="last_commit" value="{{.last_commit}}">
+ <input type="hidden" name="page_has_posted" value="{{.PageHasPosted}}">
+ <div class="repo-editor-header">
+ <div class="ui breadcrumb field {{if .Err_TreePath}}error{{end}}">
+ {{ctx.Locale.Tr "repo.editor.patching"}}
+ <a class="section" href="{{$.RepoLink}}">{{.Repository.FullName}}</a>
+ <div class="breadcrumb-divider">:</div>
+ <a class="section" href="{{$.BranchLink}}">{{.BranchName}}</a>
+ <span>{{ctx.Locale.Tr "repo.editor.or"}} <a href="{{$.BranchLink}}">{{ctx.Locale.Tr "repo.editor.cancel_lower"}}</a></span>
+ <input type="hidden" id="tree_path" name="tree_path" value="patch" required>
+ <input id="file-name" maxlength="500" type="hidden" value="diff.patch">
+ </div>
+ </div>
+ <div class="field">
+ <div class="ui top attached tabular menu" data-write="write">
+ <a class="active item" data-tab="write">{{svg "octicon-code" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.editor.new_patch"}}</a>
+ </div>
+ <div class="ui bottom attached active tab segment" data-tab="write">
+ <textarea id="edit_area" name="content" class="tw-hidden" data-id="repo-{{.Repository.Name}}-patch"
+ data-context="{{.RepoLink}}"
+ data-line-wrap-extensions="{{.LineWrapExtensions}}">
+{{.FileContent}}</textarea>
+ <div class="editor-loading is-loading"></div>
+ </div>
+ </div>
+ {{template "repo/editor/commit_form" .}}
+ </form>
+ </div>
+
+ <div class="ui g-modal-confirm modal" id="edit-empty-content-modal">
+ <div class="header">
+ {{svg "octicon-file"}}
+ {{ctx.Locale.Tr "repo.editor.commit_empty_file_header"}}
+ </div>
+ <div class="center content">
+ <p>{{ctx.Locale.Tr "repo.editor.commit_empty_file_text"}}</p>
+ </div>
+ <div class="actions">
+ <button class="ui cancel button">
+ {{svg "octicon-x"}}
+ {{ctx.Locale.Tr "repo.editor.cancel"}}
+ </button>
+ <button class="ui primary ok button">
+ {{svg "fontawesome-save"}}
+ {{ctx.Locale.Tr "repo.editor.commit_changes"}}
+ </button>
+ </div>
+ </div>
+</div>
+{{template "base/footer" .}}
diff --git a/templates/repo/editor/upload.tmpl b/templates/repo/editor/upload.tmpl
new file mode 100644
index 0000000..5725020
--- /dev/null
+++ b/templates/repo/editor/upload.tmpl
@@ -0,0 +1,33 @@
+{{template "base/head" .}}
+<div role="main" aria-label="{{.Title}}" class="page-content repository file editor upload">
+ {{template "repo/header" .}}
+ <div class="ui container">
+ {{template "base/alert" .}}
+ <form class="ui comment form" method="post">
+ {{.CsrfTokenHtml}}
+ <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}}
+ <div class="breadcrumb-divider">/</div>
+ {{if eq $i $l}}
+ <input type="text" id="file-name" maxlength="255" value="{{$v}}" placeholder="{{ctx.Locale.Tr "repo.editor.add_subdir"}}" autofocus>
+ <span data-tooltip-content="{{ctx.Locale.Tr "repo.editor.filename_help"}}">{{svg "octicon-info"}}</span>
+ {{else}}
+ <span class="section"><a href="{{$.BranchLink}}/{{index $.TreePaths $i | PathEscapeSegments}}">{{$v}}</a></span>
+ {{end}}
+ {{end}}
+ <span>{{ctx.Locale.Tr "repo.editor.or"}} <a href="{{$.BranchLink}}{{if not .IsNewFile}}/{{.TreePath | PathEscapeSegments}}{{end}}">{{ctx.Locale.Tr "repo.editor.cancel_lower"}}</a></span>
+ <input type="hidden" id="tree_path" name="tree_path" value="{{.TreePath}}" required>
+ </div>
+ </div>
+ <div class="field">
+ {{template "repo/upload" .}}
+ </div>
+ {{template "repo/editor/commit_form" .}}
+ </form>
+ </div>
+</div>
+{{template "base/footer" .}}