Skip to content

Commit 69442f5

Browse files
committed
# Conflicts: # project/build.scala
2 parents cfe0696 + 8b2e9eb commit 69442f5

13 files changed

+97
-85
lines changed

src/main/scala/gitbucket/gist/controller/GistController.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ trait GistControllerBase extends ControllerBase {
6161
val files = getGistFiles(userName, repoName)
6262
val (fileName, source) = files.head
6363

64-
(gist, GistInfo(fileName, source, files.length, getForkedCount(userName, repoName), getCommentCount(userName, repoName)))
64+
(gist, GistInfo(fileName, getLines(source), files.length, getForkedCount(userName, repoName), getCommentCount(userName, repoName)))
6565
}
6666

6767
html.list(None, gists, page, page * Limit < count)
@@ -445,7 +445,7 @@ trait GistControllerBase extends ControllerBase {
445445
val repoName = gist.repositoryName
446446
val files = getGistFiles(userName, repoName, revision)
447447
val (fileName, source) = files.head
448-
(gist, GistInfo(fileName, source, files.length, getForkedCount(userName, repoName), getCommentCount(userName, repoName)))
448+
(gist, GistInfo(fileName, getLines(source), files.length, getForkedCount(userName, repoName), getCommentCount(userName, repoName)))
449449
}
450450

451451
val fullName = getAccountByUserName(userName).get.fullName

src/main/scala/gitbucket/gist/util/GistUtils.scala

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ object GistUtils {
3838
commitId
3939
}
4040

41+
def getLines(source: String): String = source.split("\n").take(10).mkString("\n")
42+
4143
def isGistFile(fileName: String): Boolean = fileName.matches("gistfile[0-9]+\\.txt")
4244

4345
def getTitle(fileName: String, repoName: String): String = if(isGistFile(fileName)) repoName else fileName

src/main/twirl/gitbucket/gist/commentedit.scala.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
@import context._
33
<span id="error-edit-content-@commentId" class="error"></span>
44
@gitbucket.core.helper.html.attached(userName, repoName){
5-
<textarea style="width: 635px; height: 100px;" id="edit-content-@commentId">@content</textarea>
5+
<textarea class="form-control" style="width: 635px; height: 100px;" id="edit-content-@commentId">@content</textarea>
66
}
77
<div>
8-
<input type="button" id="cancel-comment-@commentId" class="btn btn-small btn-danger" value="Cancel"/>
9-
<input type="button" id="update-comment-@commentId" class="btn btn-small pull-right" value="Update comment"/>
8+
<input type="button" id="cancel-comment-@commentId" class="btn btn-lg btn-danger" value="Cancel"/>
9+
<input type="button" id="update-comment-@commentId" class="btn btn-lg btn-default pull-right" value="Update comment"/>
1010
</div>
1111
<script>
1212
$(function(){

src/main/twirl/gitbucket/gist/commentform.scala.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
<hr/><br/>
66
<form method="POST" validate="true" action="@path/gist/@gist.userName/@gist.repositoryName/_comment">
77
<div class="issue-avatar-image">@avatar(loginAccount.get.userName, 48)</div>
8-
<div class="issue-comment-box">
9-
<div class="box-content">
8+
<div class="panel panel-default issue-comment-box">
9+
<div class="panel-body">
1010
@gitbucket.gist.html.commentpreview(
1111
gist = gist,
1212
content = "",
1313
style = "width: 635px; height: 100px; max-height: 150px;",
1414
elastic = true
1515
)
1616
<div style="text-align: right;">
17-
<input type="submit" class="btn btn-success" value="Comment"/>
17+
<input type="submit" class="btn btn-lg btn-success" value="Comment"/>
1818
</div>
1919
</div>
2020
</div>

src/main/twirl/gitbucket/gist/commentpreview.scala.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<div class="tab-content">
1616
<div class="tab-pane active" id="tab@uid">
1717
<span id="error-content" class="error"></span>
18-
<textarea id="content@uid" name="content" placeholder="@placeholder" @if(style.nonEmpty){style="@style"}>@content</textarea>
18+
<textarea id="content@uid" name="content" class="form-control" placeholder="@placeholder" @if(style.nonEmpty){style="@style"}>@content</textarea>
1919
</div>
2020
<div class="tab-pane" id="tab@(uid+1)">
2121
<div class="markdown-body" id="preview-area@uid">

src/main/twirl/gitbucket/gist/detail.scala.html

+15-13
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,23 @@
1616
@gist.description
1717
</div>
1818
@files.map { case (fileName, content) =>
19-
<div class="box-header">
20-
@fileName
21-
<div class="pull-right">
22-
<a href="@path/gist/@gist.userName/@gist.repositoryName/raw/@revision/@fileName" class="btn btn-mini">Raw</a>
19+
<div class="panel panel-default">
20+
<div class="panel-heading strong">
21+
@fileName
22+
<div class="pull-right">
23+
<a href="@path/gist/@gist.userName/@gist.repositoryName/raw/@revision/@fileName" class="btn btn-sm btn-default">Raw</a>
24+
</div>
2325
</div>
26+
@if(isRenderable(fileName)){
27+
<div class="panel-body markdown-body" style="padding-left: 16px; padding-right: 16px;">
28+
@renderMarkup(List(fileName), content, "master", gist.toRepositoryInfo, false, false, true)
29+
</div>
30+
} else {
31+
<div class="panel-body">
32+
<pre class="prettyprint linenums blob">@content</pre>
33+
</div>
34+
}
2435
</div>
25-
@if(isRenderable(fileName)){
26-
<div class="box-content-bottom markdown-body" style="padding-left: 16px; padding-right: 16px;">
27-
@renderMarkup(List(fileName), content, "master", gist.toRepositoryInfo, false, false, true)
28-
</div>
29-
} else {
30-
<div class="box-content-bottom">
31-
<pre class="prettyprint linenums blob">@content</pre>
32-
</div>
33-
}
3436
}
3537
@gitbucket.gist.html.commentlist(gist, comments, editable, gist.toRepositoryInfo)
3638
@gitbucket.gist.html.commentform(gist)

src/main/twirl/gitbucket/gist/edit.scala.html

+12-12
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@recent.map { gist =>
1313
<li style="float: left; width: 200px;">
1414
<i class="octicon octicon-gist" style="width: 24px; height: 24px;"></i>
15-
<div style="margin-left: 26px; font-size: 80%; position: relative; top: -24px; line-height: normal; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;">
15+
<div style="margin-left: 26px; font-size: 90%; position: relative; top: -24px; line-height: normal; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;">
1616
<a class="strong" href="@path/gist/@gist.userName/@gist.repositoryName">@gist.title</a><br>
1717
@if(gist.description.nonEmpty){
1818
<span class="muted">@gist.description</span>
@@ -24,7 +24,7 @@
2424
}
2525
</ul>
2626
<div class="pull-right">
27-
<a href="@path/gist/@context.loginAccount.get.userName" class="btn">Your Snippets</a>
27+
<a href="@path/gist/@context.loginAccount.get.userName" class="btn btn-default">Your Snippets</a>
2828
</div>
2929
</div>
3030
} else {
@@ -38,11 +38,11 @@
3838
}
3939
<div class="pull-right">
4040
@if(gist.get.isPrivate){
41-
<a href="@path/gist/@gist.get.userName/@gist.get.repositoryName/public" class="btn">Make public</a>
41+
<a href="@path/gist/@gist.get.userName/@gist.get.repositoryName/public" class="btn btn-default">Make public</a>
4242
} else {
43-
<a href="@path/gist/@gist.get.userName/@gist.get.repositoryName/secret" class="btn">Make secret</a>
43+
<a href="@path/gist/@gist.get.userName/@gist.get.repositoryName/secret" class="btn btn-default">Make secret</a>
4444
}
45-
<a href="@path/gist/@gist.get.userName/@gist.get.repositoryName/delete" class="btn" id="delete">Delete</a>
45+
<a href="@path/gist/@gist.get.userName/@gist.get.repositoryName/delete" class="btn btn-default" id="delete">Delete</a>
4646
</div>
4747
</div>
4848
<div class="muted" style="margin-top: -10px; margin-left: 30px;">
@@ -53,22 +53,22 @@
5353
</div>
5454
<hr style="margin-bottom: 20px;"/>
5555
<div class="container body">
56-
<form id="form" method="POST" action="#">
57-
<input type="text" name="description" id="description" style="width: 900px;" value="@gist.map(_.description)" placeholder="Snippet descriptions..."/>
56+
<form id="form" method="POST" action="#" class="form-inline">
57+
<input type="text" name="description" id="description" class="form-control input-lg" style="width: 900px; margin-bottom: 8px;" value="@gist.map(_.description)" placeholder="Snippet descriptions..."/>
5858
<div id="editors">
5959
@files.zipWithIndex.map { case ((fileName, content), i) =>
6060
@gitbucket.gist.html.editor(i, fileName, content)
6161
}
6262
</div>
6363
<div>
64-
<input type="button" value="Add file" class="btn" id="add_file">
64+
<input type="button" value="Add file" class="btn btn-lg btn-default" id="add_file">
6565
<div class="pull-right">
6666
@if(gist.isDefined){
67-
<a href="@path/gist/@gist.get.userName/@gist.get.repositoryName" class="btn">Cancel</a>
68-
<input type="submit" value="Update" class="btn btn-success submit_snippet" id="update_snippet">
67+
<a href="@path/gist/@gist.get.userName/@gist.get.repositoryName" class="btn btn-lg btn-default">Cancel</a>
68+
<input type="submit" value="Update" class="btn btn-lg btn-success submit_snippet" id="update_snippet">
6969
} else {
70-
<input type="submit" value="Create private Snippet" class="btn submit_snippet" id="create_private_snippet">
71-
<input type="submit" value="Create public Snippet" class="btn submit_snippet" id="create_public_snippet">
70+
<input type="submit" value="Create private Snippet" class="btn btn-lg btn-default submit_snippet" id="create_private_snippet">
71+
<input type="submit" value="Create public Snippet" class="btn btn-lg btn-default submit_snippet" id="create_public_snippet">
7272
}
7373
</div>
7474
</div>

src/main/twirl/gitbucket/gist/editor.scala.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<tr>
88
<th>
99
<div class="pull-right">
10-
<select id="wrap-@i" class="input-medium" style="margin-bottom: 0px; height: 26px; padding: 0px;">
10+
<select id="wrap-@i" class="form-control input-medium" style="margin-bottom: 0px; height: 26px; padding: 0px;">
1111
<optgroup label="Line Wrap Mode">
1212
<option value="false">No wrap</option>
1313
<option value="true">Soft wrap</option>
1414
</optgroup>
1515
</select>
1616
</div>
17-
<input type="text" id="fileName-@i" name="fileName-@i" class="input-medium" value="@fileName" placeholder="Name this file..." style="margin-bottom: 0px;">
17+
<input type="text" id="fileName-@i" name="fileName-@i" class="form-control input-medium" value="@fileName" placeholder="Name this file..." style="margin-bottom: 0px;">
1818
</th>
1919
</tr>
2020
<tr>

src/main/twirl/gitbucket/gist/forks.scala.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@avatar(forkedGist.userName, 20)
1616
<a href="@path/gist/@forkedGist.userName/@forkedGist.repositoryName">@forkedGist.userName</a>
1717
<div class="pull-right">
18-
<a href="@path/gist/@forkedGist.userName/@forkedGist.repositoryName" class="btn btn-small">View Fork</a>
18+
<a href="@path/gist/@forkedGist.userName/@forkedGist.repositoryName" class="btn btn-sm btn-default">View Fork</a>
1919
</div>
2020
</div>
2121
}

src/main/twirl/gitbucket/gist/header.scala.html

+13-9
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,21 @@
1313
}
1414
<div class="pull-right">
1515
@if(editable){
16-
<a href="@path/gist/@gist.userName/@gist.repositoryName/edit" class="btn btn-small">Edit</a>
17-
<a href="@path/gist/@gist.userName/@gist.repositoryName/delete" class="btn btn-small" id="delete">Delete</a>
16+
<a href="@path/gist/@gist.userName/@gist.repositoryName/edit" class="btn btn-default">Edit</a>
17+
<a href="@path/gist/@gist.userName/@gist.repositoryName/delete" class="btn btn-default" id="delete">Delete</a>
1818
}
1919
@if(gist.originUserName.isEmpty){
20-
<div class="input-prepend" style="margin-bottom: 0px;">
21-
@if(loginAccount.isEmpty){
22-
<a title="You must be signed in to fork a repository" href="@path/signin?redirect=@urlEncode(s"${path}/gist/${gist.userName}/${gist.repositoryName}")" class="btn btn-small">Fork</a>
23-
} else {
24-
<a id="fork-link" href="javascript:void(0);" class="btn btn-small">Fork</a>
25-
}
26-
<span class="add-on count"><a href="@path/gist/@gist.userName/@gist.repositoryName/forks">@forkedCount</a></span>
20+
<div class="input-group pull-right">
21+
<span class="fork">
22+
<span class="input-group-btn">
23+
@if(loginAccount.isEmpty){
24+
<a title="You must be signed in to fork a repository" href="@path/signin?redirect=@urlEncode(s"${path}/gist/${gist.userName}/${gist.repositoryName}")" class="btn btn-default">Fork</a>
25+
} else {
26+
<a id="fork-link" href="javascript:void(0);" class="btn btn-default">Fork</a>
27+
}
28+
</span>
29+
<span class="count"><a href="@path/gist/@gist.userName/@gist.repositoryName/forks">@forkedCount</a></span>
30+
</span>
2731
</div>
2832
@if(loginAccount.isDefined){
2933
<form id="fork-form" method="post" action="@path/gist/@gist.userName/@gist.repositoryName/fork">

src/main/twirl/gitbucket/gist/list.scala.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@avatar(gistUser.get.userName, 24)
1515
<span class="strong">@gistUser.get.fullName</span>
1616
<div class="pull-right">
17-
<a href="@path/@gistUser.get.userName" class="btn">@gistUser.get.userName on GitBucket</a>
17+
<a href="@path/@gistUser.get.userName" class="btn btn-default">@gistUser.get.userName on GitBucket</a>
1818
</div>
1919
</div>
2020
<div class="muted" style="margin-top: -10px; margin-left: 30px;">
@@ -59,14 +59,14 @@
5959
@renderMarkup(List(gistInfo.fileName), gistInfo.source, "master", gist.toRepositoryInfo, false, false, false)
6060
</div>
6161
} else {
62-
<pre class="list-code box-content prettyprint linenums">@Html(gistInfo.source)</pre>
62+
<pre class="list-code box-content prettyprint linenums">@gistInfo.source</pre>
6363
}
6464
</div>
6565
</div>
6666
}
6767
<div class="btn-group">
68-
<button class="btn" onclick="location.href='?page=@{page - 1}'"@if(page <= 1){ disabled="true"}>Newer</button>
69-
<button class="btn" onclick="location.href='?page=@{page + 1}'"@if(!hasNext){ disabled="true"}>Older</button>
68+
<button class="btn btn-default" onclick="location.href='?page=@{page - 1}'"@if(page <= 1){ disabled="true"}>Newer</button>
69+
<button class="btn btn-default" onclick="location.href='?page=@{page + 1}'"@if(!hasNext){ disabled="true"}>Older</button>
7070
</div>
7171
</div>
7272
}

src/main/twirl/gitbucket/gist/menu.scala.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<strong id="repository-url-proto">HTTP</strong> <span class="mute">clone URL</span>
4545
</div>
4646
@helper.html.copy("repository-url-copy", repositoryUrl.httpUrl){
47-
<input type="text" value="@repositoryUrl.httpUrl" id="repository-url" readonly>
47+
<input type="text" value="@repositoryUrl.httpUrl" id="repository-url" class="form-control input-sm" readonly>
4848
}
4949
@if(settings.ssh && loginAccount.isDefined){
5050
<div class="small">
@@ -53,12 +53,12 @@
5353
}
5454
<div style="margin-top: 10px;">
5555
<a href="@path/gist/@{gist.userName}/@{gist.repositoryName}/download/@{gist.repositoryName}.zip"
56-
class="btn btn-small" style="width: 147px;"><i class="icon-download-alt"></i>Download ZIP</a>
56+
class="btn btn-default" style="width: 170px;"><i class="icon-download-alt"></i>Download ZIP</a>
5757
</div>
5858
@*
5959
<div style="margin-top: 10px;">
6060
<a href="@path/gist/@{gist.userName}/@{gist.repositoryName}/download/@{gist.repositoryName}.tar.gz"
61-
class="btn btn-small" style="width: 147px;"><i class="icon-download-alt"></i>Download TAR.GZ</a>
61+
class="btn btn-small" style="width: 170px;"><i class="icon-download-alt"></i>Download TAR.GZ</a>
6262
</div>
6363
*@
6464
</div>

src/main/twirl/gitbucket/gist/revisions.scala.html

+36-32
Original file line numberDiff line numberDiff line change
@@ -26,40 +26,44 @@
2626
<div>
2727
@diffs.zipWithIndex.map { case (diff, i) =>
2828
<table class="table table-bordered">
29-
<tr>
30-
<th style="font-weight: normal; line-height: 27px;" class="box-header">
31-
@diff.changeType match {
32-
case ChangeType.ADD => {
33-
<span class="diffstat">
34-
<i class="octicon octicon-diff-added"></i>
35-
</span> @diff.newPath
29+
<thead>
30+
<tr>
31+
<th style="font-weight: normal; line-height: 27px;" class="box-header">
32+
@diff.changeType match {
33+
case ChangeType.ADD => {
34+
<span class="diffstat">
35+
<i class="octicon octicon-diff-added"></i>
36+
</span> @diff.newPath
37+
}
38+
case ChangeType.MODIFY => {
39+
<span class="diffstat">
40+
<i class="octicon octicon-diff-modified"></i>
41+
</span> @diff.newPath
42+
}
43+
case ChangeType.DELETE => {
44+
<span class="diffstat">
45+
<i class="octicon octicon-diff-removed"></i>
46+
</span> @diff.oldPath
47+
}
48+
case _ => {
49+
}
3650
}
37-
case ChangeType.MODIFY => {
38-
<span class="diffstat">
39-
<i class="octicon octicon-diff-modified"></i>
40-
</span> @diff.newPath
51+
</th>
52+
</tr>
53+
</thead>
54+
<tbody>
55+
<tr>
56+
<td style="padding: 0;">
57+
@if(diff.newContent != None || diff.oldContent != None){
58+
<div id="[email protected](0, 7)-@i"></div>
59+
<textarea id="[email protected](0, 7)-@i" style="display: none;">@diff.newContent.getOrElse("")</textarea>
60+
<textarea id="[email protected](0, 7)-@i" style="display: none;">@diff.oldContent.getOrElse("")</textarea>
61+
} else {
62+
Not supported
4163
}
42-
case ChangeType.DELETE => {
43-
<span class="diffstat">
44-
<i class="octicon octicon-diff-removed"></i>
45-
</span> @diff.oldPath
46-
}
47-
case _ => {
48-
}
49-
}
50-
</th>
51-
</tr>
52-
<tr>
53-
<td style="padding: 0;">
54-
@if(diff.newContent != None || diff.oldContent != None){
55-
<div id="[email protected](0, 7)-@i"></div>
56-
<textarea id="[email protected](0, 7)-@i" style="display: none;">@diff.newContent.getOrElse("")</textarea>
57-
<textarea id="[email protected](0, 7)-@i" style="display: none;">@diff.oldContent.getOrElse("")</textarea>
58-
} else {
59-
Not supported
60-
}
61-
</td>
62-
</tr>
64+
</td>
65+
</tr>
66+
</tbody>
6367
</table>
6468
}
6569
</div>

0 commit comments

Comments
 (0)