mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
Merge branch 'master' of github.com:gogits/gogs
Conflicts: templates/issue/view.tmpl
This commit is contained in:
commit
743593f791
@ -854,6 +854,10 @@ html, body {
|
|||||||
min-width: 180px;
|
min-width: 180px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.commit-list .sha a {
|
||||||
|
font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
|
||||||
|
}
|
||||||
|
|
||||||
.guide-box pre, .guide-box .input-group {
|
.guide-box pre, .guide-box .input-group {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
@ -1119,7 +1123,7 @@ html, body {
|
|||||||
#issue .issue-head .info {
|
#issue .issue-head .info {
|
||||||
width: 99%;
|
width: 99%;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
padding-left: 64px;
|
padding-left: 74px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
border-bottom: 1px solid #CCC;
|
border-bottom: 1px solid #CCC;
|
||||||
@ -1169,6 +1173,21 @@ html, body {
|
|||||||
border-color: #CCC;
|
border-color: #CCC;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#issue .issue-head .info .btn {
|
||||||
|
margin-top: -8px;
|
||||||
|
margin-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#issue .issue-action {
|
||||||
|
padding-left: 8px;
|
||||||
|
color: #888;
|
||||||
|
width: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#issue-edit-title {
|
||||||
|
width: 60%;
|
||||||
|
}
|
||||||
|
|
||||||
/* wrapper and footer */
|
/* wrapper and footer */
|
||||||
|
|
||||||
#wrapper {
|
#wrapper {
|
||||||
|
@ -50,6 +50,14 @@ var Gogits = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
$.fn.extend({
|
||||||
|
toggleHide: function () {
|
||||||
|
$(this).addClass("hidden");
|
||||||
|
},
|
||||||
|
toggleShow: function () {
|
||||||
|
$(this).removeClass("hidden");
|
||||||
|
}
|
||||||
|
})
|
||||||
}(jQuery));
|
}(jQuery));
|
||||||
|
|
||||||
(function ($) {
|
(function ($) {
|
||||||
@ -352,7 +360,8 @@ function initRepository() {
|
|||||||
}());
|
}());
|
||||||
}
|
}
|
||||||
|
|
||||||
function initInstall(){
|
function initInstall() {
|
||||||
|
// database type change
|
||||||
$('#install-database').on("change", function () {
|
$('#install-database').on("change", function () {
|
||||||
var val = $(this).val();
|
var val = $(this).val();
|
||||||
if (val != "sqlite") {
|
if (val != "sqlite") {
|
||||||
@ -370,6 +379,35 @@ function initInstall(){
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function initIssue() {
|
||||||
|
// close button
|
||||||
|
(function () {
|
||||||
|
var $closeBtn = $('#issue-close-btn');
|
||||||
|
var $openBtn = $('#issue-open-btn');
|
||||||
|
$('#issue-reply-content').on("keyup", function () {
|
||||||
|
if ($(this).val().length) {
|
||||||
|
$closeBtn.text($closeBtn.data("text"));
|
||||||
|
$openBtn.text($openBtn.data("text"));
|
||||||
|
} else {
|
||||||
|
$closeBtn.text($closeBtn.data("origin"));
|
||||||
|
$openBtn.text($openBtn.data("origin"));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}());
|
||||||
|
|
||||||
|
// issue edit mode
|
||||||
|
(function () {
|
||||||
|
$("#issue-edit-btn").on("click", function () {
|
||||||
|
$('#issue h1.title,#issue .issue-main > .issue-content .content,#issue-edit-btn').toggleHide();
|
||||||
|
$('#issue-edit-title,#issue-edit-content,.issue-edit-cancel,.issue-edit-save').toggleShow();
|
||||||
|
});
|
||||||
|
$('.issue-edit-cancel').on("click", function () {
|
||||||
|
$('#issue h1.title,#issue .issue-main > .issue-content .content,#issue-edit-btn').toggleShow();
|
||||||
|
$('#issue-edit-title,#issue-edit-content,.issue-edit-cancel,.issue-edit-save').toggleHide();
|
||||||
|
})
|
||||||
|
}());
|
||||||
|
}
|
||||||
|
|
||||||
(function ($) {
|
(function ($) {
|
||||||
$(function () {
|
$(function () {
|
||||||
initCore();
|
initCore();
|
||||||
@ -383,8 +421,11 @@ function initInstall(){
|
|||||||
if ($('.repo-nav').length) {
|
if ($('.repo-nav').length) {
|
||||||
initRepository();
|
initRepository();
|
||||||
}
|
}
|
||||||
if($('#install-card').length){
|
if ($('#install-card').length) {
|
||||||
initInstall();
|
initInstall();
|
||||||
}
|
}
|
||||||
|
if ($('#issue').length) {
|
||||||
|
initIssue();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
@ -4,12 +4,16 @@
|
|||||||
{{template "repo/toolbar" .}}
|
{{template "repo/toolbar" .}}
|
||||||
<div id="body" class="container">
|
<div id="body" class="container">
|
||||||
<div id="issue">
|
<div id="issue">
|
||||||
<div id="issue-id" class="issue-whole">
|
<div id="issue-{issue.id}" class="issue-whole">
|
||||||
<div class="issue-head clearfix">
|
<div class="issue-head clearfix">
|
||||||
<div class="number pull-right">#{{.Issue.Index}}</div>
|
<div class="number pull-right">#{{.Issue.Index}}</div>
|
||||||
<a class="author pull-left" href="/user/{{.Issue.Poster.Name}}"><img class="avatar" src="{{.Issue.Poster.AvatarLink}}" alt="" width="30"/></a>
|
<a class="author pull-left" href="/user/{{.Issue.Poster.Name}}"><img class="avatar" src="{{.Issue.Poster.AvatarLink}}" alt="" width="30"/></a>
|
||||||
<h1 class="title pull-left">{{.Issue.Name}}</h1>
|
<h1 class="title pull-left">{{.Issue.Name}}</h1>
|
||||||
|
<input id="issue-edit-title" class="form-control input-lg pull-left hidden" type="text" value="{issue.title}" data-ajax-rel="issue-save"/>
|
||||||
<p class="info pull-left">
|
<p class="info pull-left">
|
||||||
|
<a class="btn btn-default pull-right issue-edit" href="#" id="issue-edit-btn">Edit</a>
|
||||||
|
<a class="btn btn-danger pull-right issue-edit-cancel hidden" href="#">Cancel</a>
|
||||||
|
<a class="btn btn-primary pull-right issue-edit-save hidden" href="#" data-ajax="{issue.save.link}" data-ajax-name="issue-save">Save</a>
|
||||||
<span class="status label label-{{if .Issue.IsClosed}}danger{{else}}success{{end}}">{{if .Issue.IsClosed}}Closed{{else}}Open{{end}}</span>
|
<span class="status label label-{{if .Issue.IsClosed}}danger{{else}}success{{end}}">{{if .Issue.IsClosed}}Closed{{else}}Open{{end}}</span>
|
||||||
<a href="/user/{{.Issue.Poster.Name}}" class="author"><strong>{{.Issue.Poster.Name}}</strong></a> opened this issue
|
<a href="/user/{{.Issue.Poster.Name}}" class="author"><strong>{{.Issue.Poster.Name}}</strong></a> opened this issue
|
||||||
<span class="time">{{TimeSince .Issue.Created}}</span> · {{.Issue.NumComments}} comments
|
<span class="time">{{TimeSince .Issue.Created}}</span> · {{.Issue.NumComments}} comments
|
||||||
@ -18,15 +22,21 @@
|
|||||||
<div class="issue-main">
|
<div class="issue-main">
|
||||||
<div class="panel panel-default issue-content">
|
<div class="panel panel-default issue-content">
|
||||||
<div class="panel-body markdown">
|
<div class="panel-body markdown">
|
||||||
|
<div class="content">
|
||||||
{{str2html .Issue.Content}}
|
{{str2html .Issue.Content}}
|
||||||
</div>
|
</div>
|
||||||
|
<textarea class="form-control hidden" name="content" id="issue-edit-content" rows="10" data-ajax-rel="issue-save">content</textarea>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{range .Comments}}
|
{{range .Comments}}
|
||||||
<div class="issue-child">
|
<div class="issue-child" id="issue-comment-{issue.comment.id}">
|
||||||
<a class="user pull-left" href="/user/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a>
|
<a class="user pull-left" href="/user/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a>
|
||||||
<div class="issue-content panel panel-default">
|
<div class="issue-content panel panel-default">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<a href="/user/{{.Poster.Name}}" class="user">{{.Poster.Name}}</a> commented <span class="time">{{TimeSince .Created}}</span>
|
<a href="/user/{{.Poster.Name}}" class="user">{{.Poster.Name}}</a> commented <span class="time">{{TimeSince .Created}}</span>
|
||||||
|
<a class="issue-comment-del pull-right issue-action" href="#" title="Edit Comment"><i class="fa fa-times-circle"></i></a>
|
||||||
|
<a class="issue-comment-edit pull-right issue-action" href="#" title="Remove Comment" data-url="{remove-link}"><i class="fa fa-edit"></i></a>
|
||||||
|
<span class="role label label-default pull-right">Owner</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body markdown">
|
<div class="panel-body markdown">
|
||||||
{{str2html .Content}}
|
{{str2html .Content}}
|
||||||
@ -52,7 +62,7 @@
|
|||||||
<div class="tab-pane" id="issue-textarea">
|
<div class="tab-pane" id="issue-textarea">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="hidden" value="{{.Issue.Index}}" name="issueIndex"/>
|
<input type="hidden" value="{{.Issue.Index}}" name="issueIndex"/>
|
||||||
<textarea class="form-control" name="content" id="issue-content" rows="10" placeholder="Write some content">{{.content}}</textarea>
|
<textarea class="form-control" name="content" id="issue-reply-content" rows="10" placeholder="Write some content">{{.content}}</textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-pane" id="issue-preview">preview</div>
|
<div class="tab-pane" id="issue-preview">preview</div>
|
||||||
@ -61,7 +71,9 @@
|
|||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="hidden" value="id" name="repo-id"/>
|
<input type="hidden" value="id" name="repo-id"/>
|
||||||
<button class="btn-success btn">Comment</button>
|
<button class="btn-default btn issue-open" id="issue-open-btn" data-origin="Open" data-text="Open & Comment">Open</button>
|
||||||
|
<button class="btn-default btn issue-close" id="issue-close-btn" data-origin="Close" data-text="Close & Comment">Close</button>
|
||||||
|
<button class="btn-success btn" id="issue-reply-btn">Comment</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user