]> source.dussan.org Git - gitea.git/commitdiff
Organization level webhooks
authorUnknwon <joe2010xtmf@163.com>
Sun, 7 Sep 2014 23:39:26 +0000 (19:39 -0400)
committerUnknwon <joe2010xtmf@163.com>
Sun, 7 Sep 2014 23:39:26 +0000 (19:39 -0400)
README.md
README_ZH.md
cmd/dump.go
cmd/web.go
conf/app.ini
templates/org/settings/hooks.tmpl

index 689b0df4fa9ba0c204f910b4738f7e62d1462569..3115d3fc64a6d4b57f77a0f366ac3e346ac8a5b7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Gogs(Go Git Service) is a painless self-hosted Git Service written in Go.
 
 ![Demo](http://gowalker.org/public/gogs_demo.gif)
 
-##### Current version: 0.4.9 Beta
+##### Current version: 0.5.0 Beta
 
 ### NOTICES
 
@@ -35,7 +35,8 @@ The goal of this project is to make the easiest, fastest and most painless way t
 - Register/delete/rename account
 - Create/manage/delete organization with team management
 - Create/migrate/mirror/delete/watch/rename/transfer public/private repository
-- Repository viewer/release/issue tracker/webhooks
+- Repository viewer/release/issue tracker
+- Repository and Organization level webhooks
 - Add/remove repository collaborators
 - Gravatar and cache support
 - Mail service(register, issue)
index 401c8186c8fe49978911aa932d50f1a8d9674cfd..ef154d0e654e32b3270d1c55890a4398501ee608 100644 (file)
@@ -5,7 +5,7 @@ Gogs(Go Git Service) 是一个基于 Go 语言的自助 Git 服务。
 
 ![Demo](http://gowalker.org/public/gogs_demo.gif)
 
-##### 当前版本:0.4.9 Beta
+##### 当前版本:0.5.0 Beta
 
 ## 开发目的
 
@@ -26,7 +26,8 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自
 - 注册/删除/重命名 用户
 - 创建/管理/删除 组织以及团队管理功能
 - 创建/迁移/镜像/删除/关注/重命名/转移 公开/私有 仓库
-- 仓库 浏览/发布/工单管理/Web 钩子
+- 仓库 浏览/发布/工单管理
+- 仓库和组织级别 Web 钩子
 - 添加/删除 仓库协作者
 - Gravatar 以及缓存支持
 - 邮件服务(注册、Issue)
index 2a54db1a87196dcaf9b4fc84b70dcd78fc6eec2e..414912243c58e354cba65c86d9575e2fbc5f7d84 100644 (file)
@@ -24,16 +24,18 @@ var CmdDump = cli.Command{
        Description: `Dump compresses all related files and database into zip file.
 It can be used for backup and capture Gogs server image to send to maintainer`,
        Action: runDump,
-       Flags:  []cli.Flag{},
+       Flags: []cli.Flag{
+               cli.BoolFlag{"verbose, v", "show process details", ""},
+       },
 }
 
-func runDump(*cli.Context) {
+func runDump(ctx *cli.Context) {
        setting.NewConfigContext()
        models.LoadModelsConfig()
        models.SetEngine()
 
        log.Printf("Dumping local repositories...%s", setting.RepoRootPath)
-       zip.Verbose = false
+       zip.Verbose = ctx.Bool("verbose")
        defer os.Remove("gogs-repo.zip")
        if err := zip.PackTo(setting.RepoRootPath, "gogs-repo.zip", true); err != nil {
                log.Fatalf("Fail to dump local repositories: %v", err)
index 8182d7b561894519da11d6ee5aca138ecde7f112..e70380764392e49f5f0c0daa43f7a8bfbcb2395d 100644 (file)
@@ -69,9 +69,9 @@ func newMacaron() *macaron.Macaron {
                        SkipLogging: !setting.DisableRouterLog,
                },
        ))
-       if setting.EnableGzip {
-               m.Use(macaron.Gzip())
-       }
+       // if setting.EnableGzip {
+       //      m.Use(macaron.Gzip())
+       // }
        m.Use(macaron.Renderer(macaron.RenderOptions{
                Directory:  path.Join(setting.StaticRootPath, "templates"),
                Funcs:      []template.FuncMap{base.TemplateFuncs},
index c646160e50743b940d5a098f6c9dfb6b0feb2958..3e7e191c30ee5850a495df2066271cca1d6056e4 100644 (file)
@@ -29,7 +29,7 @@ KEY_FILE = custom/https/key.pem
 ; default is the path where Gogs is executed
 STATIC_ROOT_PATH =
 ; Application level GZIP support
-ENABLE_GZIP = false
+#ENABLE_GZIP = false
 
 [database]
 ; Either "mysql", "postgres" or "sqlite3", it's your choice
index 713cfeb45769720c95650172f50ce9e45aca4983..2f6ba630e6a07bf681a9b1c4426f074d0c50882d 100644 (file)
                           <ul class="panel-body setting-list">
                               <li>{{.i18n.Tr "org.settings.hooks_desc" | Str2html}}</li>
                               {{range .Webhooks}}
-                <li>
-                  {{if .IsActive}}
-                  <span class="left text-success"><i class="octicon octicon-check"></i></span>
-                  {{else}}
-                  <span class="left text-grey"><i class="octicon octicon-primitive-dot"></i></span>
-                  {{end}}
-                  <a class="link" href="{{$.OrgLink}}/settings/hooks/{{.Id}}">{{.Url}}</a>
-                  <a href="{{$.OrgLink}}/settings/hooks?remove={{.Id}}" class="text-red right"><i class="fa fa-times"></i></a>
-                              <a href="{{$.OrgLink}}/settings/hooks/{{.Id}}" class="text-blue right"><i class="fa fa-pencil"></i></a>
-                </li>
+                              <li>
+                                {{if .IsActive}}
+                                <span class="left text-success"><i class="octicon octicon-check"></i></span>
+                                {{else}}
+                                <span class="left text-grey"><i class="octicon octicon-primitive-dot"></i></span>
+                                {{end}}
+                                <a class="link" href="{{$.OrgLink}}/settings/hooks/{{.Id}}">{{.Url}}</a>
+                                <a href="{{$.OrgLink}}/settings/hooks?remove={{.Id}}" class="text-red right"><i class="fa fa-times"></i></a>
+                                <a href="{{$.OrgLink}}/settings/hooks/{{.Id}}" class="text-blue right"><i class="fa fa-pencil"></i></a>
+                              </li>
                               {{end}}
                           </ul>
                       </div>