diff options
author | Unknwon <u@gogs.io> | 2016-08-24 21:35:03 -0700 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-08-24 21:35:03 -0700 |
commit | f8a48ffaad481ee9eaa8a42e0e7d64c12c90ef86 (patch) | |
tree | 21ee3e7965c77c16fcdaa209f01cebae6a809625 /templates | |
parent | 67fb0fe6a5783f772abfb5438a154435dafff4de (diff) | |
download | gitea-f8a48ffaad481ee9eaa8a42e0e7d64c12c90ef86.tar.gz gitea-f8a48ffaad481ee9eaa8a42e0e7d64c12c90ef86.zip |
Web editor: improve code quality
Diffstat (limited to 'templates')
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/repo/editor/edit.tmpl | 16 | ||||
-rw-r--r-- | templates/repo/home.tmpl | 1 |
3 files changed, 10 insertions, 9 deletions
diff --git a/templates/.VERSION b/templates/.VERSION index 16cc0b999a..98448cd5a0 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.84.0824
\ No newline at end of file +0.9.85.0824
\ No newline at end of file diff --git a/templates/repo/editor/edit.tmpl b/templates/repo/editor/edit.tmpl index f1115ace57..f6a2393110 100644 --- a/templates/repo/editor/edit.tmpl +++ b/templates/repo/editor/edit.tmpl @@ -8,7 +8,7 @@ <input type="hidden" name="last_commit" value="{{.last_commit}}"> <div class="ui secondary menu"> <div class="fitted item treepath"> - <div class="ui breadcrumb field {{if .Err_Filename}}error{{end}}"> + <div class="ui breadcrumb field {{if .Err_TreePath}}error{{end}}"> <a class="section" href="{{EscapePound $.BranchLink}}">{{.Repository.Name}}</a> {{ $n := len .TreeNames}} {{ $l := Subtract $n 1}} @@ -22,8 +22,8 @@ {{end}} {{end}} <!-- <button class="clipboard-tree-name octicon octicon-clippy poping up" type="button" data-content="{{.i18n.Tr "repo.copy_file_path_to_clipboard"}}" data-position="bottom center" data-variation="tiny inverted"></button> --> - <span class="repo-edit-file-cancel">{{.i18n.Tr "repo.or"}} <a href="{{EscapePound $.BranchLink}}{{if not .IsNewFile}}/{{EscapePound $.TreeName}}{{end}}">{{.i18n.Tr "repo.cancel_lower"}}</a></span> - <input type="hidden" id="tree-name" name="tree_name" value="{{.TreeName}}" required> + <span class="repo-edit-file-cancel">{{.i18n.Tr "repo.or"}} <a href="{{EscapePound $.BranchLink}}{{if not .IsNewFile}}/{{EscapePound .TreePath}}{{end}}">{{.i18n.Tr "repo.cancel_lower"}}</a></span> + <input type="hidden" id="tree_path" name="tree_path" value="{{.TreePath}}" required> </div> </div> </div> @@ -32,11 +32,11 @@ <a class="active item" data-tab="write"><i class="octicon octicon-code"></i> {{if .IsNewFile}}{{.i18n.Tr "repo.new_file"}}{{else}}{{.i18n.Tr "repo.edit_file"}}{{end}}</a> {{if not .IsNewFile}} <a class="item" data-tab="preview" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}" data-preview-file-modes="{{.PreviewableFileModes}}"><i class="octicon octicon-eye"></i> {{.i18n.Tr "repo.release.preview"}}</a> - <a class="item" data-tab="diff" data-url="{{.RepoLink}}/_preview/{{.BranchName}}/{{.TreeName}}" data-context="{{.BranchLink}}"><i class="octicon octicon-diff"></i> {{.i18n.Tr "repo.preview_changes"}}</a> + <a class="item" data-tab="diff" data-url="{{.RepoLink}}/_preview/{{.BranchName}}/{{.TreePath}}" data-context="{{.BranchLink}}"><i class="octicon octicon-diff"></i> {{.i18n.Tr "repo.preview_changes"}}</a> {{end}} </div> <div class="ui bottom attached active tab segment" data-tab="write"> - <textarea id="edit_area" name="content" data-id="repo-{{.Repository.Name}}-{{.TreeName}}" + <textarea id="edit_area" name="content" data-id="repo-{{.Repository.Name}}-{{.TreePath}}" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}" data-markdown-file-exts="{{.MarkdownFileExts}}" @@ -55,7 +55,7 @@ <div class="commit-form"> <h3>{{.i18n.Tr "repo.commit_changes"}}</h3> <div class="field"> - <input name="commit_summary" placeholder="{{if .IsNewFile}}{{.i18n.Tr "repo.add"}} '{{.TreeName}}/<filename>'{{else}}{{.i18n.Tr "repo.update"}} '{{.TreeName}}'{{end}}" value="{{.commit_summary}}"> + <input name="commit_summary" placeholder="{{if .IsNewFile}}{{.i18n.Tr "repo.add"}} '{{.TreePath}}/<filename>'{{else}}{{.i18n.Tr "repo.update"}} '{{.TreePath}}'{{end}}" value="{{.commit_summary}}"> </div> <div class="field"> <textarea name="commit_message" placeholder="{{.i18n.Tr "repo.default_commit_message"}}" rows="5">{{.commit_message}}</textarea> @@ -80,7 +80,7 @@ </div> </div> <div class="quick-pull-branch-name {{if not (eq .commit_choice "commit-to-new-branch")}}hide{{end}}"> - <div class="new-branch-name-input{{if .Err_Branchname}} error{{end}}"> + <div class="new-branch-name-input{{if .Err_NewBranchName}} error{{end}}"> <i class="octicon octicon-git-branch" height="16" width="10"></i> <input type="text" name="new_branch_name" value="{{.new_branch_name}}" class="form-control input-contrast mr-2 js-quick-pull-new-branch-name" placeholder="New branch nameā¦"> <span class="text-muted js-quick-pull-normalization-info"></span> @@ -91,7 +91,7 @@ <button type="submit" class="ui green button"> {{.i18n.Tr "repo.commit_changes"}} </button> - <a class="ui button red" href="{{EscapePound $.BranchLink}}/{{EscapePound $.TreeName}}">{{.i18n.Tr "repo.cancel"}}</a> + <a class="ui button red" href="{{EscapePound $.BranchLink}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.cancel"}}</a> </div> </form> </div> diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 3f2e54c033..bba5827744 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -2,6 +2,7 @@ <div class="repository file list"> {{template "repo/header" .}} <div class="ui container"> + {{template "base/alert" .}} <p id="repo-desc"> {{if .Repository.DescriptionHtml}}<span class="description has-emoji">{{.Repository.DescriptionHtml}}</span>{{else}}<span class="no-description text-italic">{{.i18n.Tr "repo.no_desc"}}</span>{{end}} <a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a> |