aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslene <vslene@gmail.com>2014-03-20 23:37:38 +0800
committerslene <vslene@gmail.com>2014-03-20 23:37:38 +0800
commit88eaa68763ffabb0ad8e1fdcbc8060c7aae37455 (patch)
tree7636a2e170373fb6470b8996a2b4957573e581a4
parentef3c0b215df8429af9bc03a559259c77be32907c (diff)
parent1a0d7c54a2abecbe5335ca374fd8a345c2e7d3fd (diff)
downloadgitea-88eaa68763ffabb0ad8e1fdcbc8060c7aae37455.tar.gz
gitea-88eaa68763ffabb0ad8e1fdcbc8060c7aae37455.zip
Merge branch 'master' of github.com:gogits/gogs
-rw-r--r--gogs.go2
-rw-r--r--models/repo.go4
-rwxr-xr-xpublic/css/gogs.css8
-rw-r--r--public/js/app.js35
-rw-r--r--templates/repo/nav.tmpl14
5 files changed, 55 insertions, 8 deletions
diff --git a/gogs.go b/gogs.go
index 385b74217b..d32e3908c9 100644
--- a/gogs.go
+++ b/gogs.go
@@ -20,7 +20,7 @@ import (
// Test that go1.1 tag above is included in builds. main.go refers to this definition.
const go11tag = true
-const APP_VER = "0.1.1.0320.1"
+const APP_VER = "0.1.2.0320.1"
func init() {
base.AppVer = APP_VER
diff --git a/models/repo.go b/models/repo.go
index 4b6dedaf90..052341ff6e 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -411,6 +411,10 @@ func DeleteRepository(userId, repoId int64, userName string) (err error) {
session.Rollback()
return err
}
+ if _, err = session.Delete(&Watch{RepoId: repoId}); err != nil {
+ session.Rollback()
+ return err
+ }
if err = session.Commit(); err != nil {
session.Rollback()
return err
diff --git a/public/css/gogs.css b/public/css/gogs.css
index d1b1e155a8..f88b396397 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -445,7 +445,7 @@ html, body {
padding: 0;
}
-#gogs-repo-watching .dropdown-menu .dropdown-item:hover .dropdown-header {
+#gogs-repo-watching .dropdown-menu .dropdown-item:hover .dropdown-header, #gogs-repo-watching .dropdown-item .dropdown-header.text-primary {
color: rgb(65, 131, 196);
cursor: pointer;
}
@@ -678,7 +678,7 @@ html, body {
}
.file-content .file-body.file-code .lines-num span {
- font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
line-height: 1.6;
padding: 0 8px 0 10px;
cursor: pointer;
@@ -783,6 +783,10 @@ html, body {
width: 120px;
}
+.commit-list .author {
+ min-width: 180px;
+}
+
.guide-box pre, .guide-box .input-group {
margin-top: 20px;
margin-bottom: 30px;
diff --git a/public/js/app.js b/public/js/app.js
index 555410329b..9a5a0d68ad 100644
--- a/public/js/app.js
+++ b/public/js/app.js
@@ -181,6 +181,7 @@ function initUserSetting() {
}
function initRepository() {
+ // guide box script
(function () {
var $guide = $('.guide-box');
if ($guide.length) {
@@ -197,6 +198,40 @@ function initRepository() {
// todo copy to clipboard
}
})();
+
+ // watching script
+ (function () {
+ var $watch = $('#gogs-repo-watching'),
+ watchLink = $watch.data("watch"),
+ unwatchLink = $watch.data("unwatch");
+ $watch.on('click', '.to-watch',function () {
+ if ($watch.hasClass("watching")) {
+ return false;
+ }
+ $.get(watchLink, function (json) {
+ if (json.ok) {
+ $watch.find('.text-primary').removeClass('text-primary');
+ $watch.find('.to-watch h4').addClass('text-primary');
+ $watch.find('.fa-eye-slash').removeClass('fa-eye-slash').addClass('fa-eye');
+ $watch.removeClass("no-watching").addClass("watching");
+ }
+ });
+ return false;
+ }).on('click', '.to-unwatch', function () {
+ if ($watch.hasClass("no-watching")) {
+ return false;
+ }
+ $.get(unwatchLink, function (json) {
+ if (json.ok) {
+ $watch.find('.text-primary').removeClass('text-primary');
+ $watch.find('.to-unwatch h4').addClass('text-primary');
+ $watch.find('.fa-eye').removeClass('fa-eye').addClass('fa-eye-slash');
+ $watch.removeClass("watching").addClass("no-watching");
+ }
+ });
+ return false;
+ });
+ })();
}
(function ($) {
diff --git a/templates/repo/nav.tmpl b/templates/repo/nav.tmpl
index e8685b08bc..718c429a2b 100644
--- a/templates/repo/nav.tmpl
+++ b/templates/repo/nav.tmpl
@@ -13,20 +13,24 @@
<span class="caret"></span>
</button>
</div>
- <div class="btn-group {{if .IsRepositoryWatching}}watching{{end}}" id="gogs-repo-watching">
+ <div class="btn-group {{if .IsRepositoryWatching}}watching{{else}}no-watching{{end}}" id="gogs-repo-watching" data-watch="/{{.SignedUser.Name}}/{{.Repository.Name}}/action/watch" data-unwatch="/{{.SignedUser.Name}}/{{.Repository.Name}}/action/unwatch">
+ {{if .IsRepositoryWatching}}
<button type="button" class="btn btn-default"><i class="fa fa-eye fa-lg fa-m"></i></button>
+ {{else}}
+ <button type="button" class="btn btn-default"><i class="fa fa-eye-slash fa-lg fa-m"></i></button>
+ {{end}}
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
</button>
<div class="dropdown-menu" role="menu">
- <div class="dropdown-item text-left" data-val="not-watching">
- <h4 role="presentation" class="dropdown-header">Not Watching</h4>
+ <div class="dropdown-item text-left to-unwatch">
+ <h4 role="presentation" class="dropdown-header {{if not .IsRepositoryWatching}}text-primary{{end}}">Not Watching</h4>
<p class="description">You only receive notifications for conversations in which you participate or are @mentioned.</p>
<p class="divider"></p>
</div>
- <div class="dropdown-item text-left" data-val="watching">
- <h4 role="presentation" class="dropdown-header">Watching</h4>
+ <div class="dropdown-item text-left to-watch">
+ <h4 role="presentation" class="dropdown-header {{if .IsRepositoryWatching}}text-primary{{end}}">Watching</h4>
<p class="description">You receive notifications for all conversations in this repository.</p>
</div>
</div>