From ca4d98678c20e4033fdaca09ecbbf0f5952e0b84 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Mon, 09 Jun 2014 14:10:51 -0400 Subject: [PATCH] Add repository and user/team lifecycle listener extension points --- src/main/distrib/data/clientapps.json | 37 ++++++++++++++++++++++++++++++++----- 1 files changed, 32 insertions(+), 5 deletions(-) diff --git a/src/main/distrib/data/clientapps.json b/src/main/distrib/data/clientapps.json index 12d14b1..b5c25f1 100644 --- a/src/main/distrib/data/clientapps.json +++ b/src/main/distrib/data/clientapps.json @@ -10,6 +10,17 @@ "isActive": true }, { + "name": "Barnum", + "title": "Barnum", + "description": "a command-line Git companion for Gitblit Tickets", + "legal": "released under the Apache 2.0 License", + "command": "pt clone ${repoUrl}", + "productUrl": "http://barnum.gitblit.com", + "transports": [ "ssh" ], + "icon": "barnum_32x32.png", + "isActive": false + }, + { "name": "SmartGit/Hg", "title": "syntevo SmartGit/Hg\u2122", "description": "a Git client for Windows, Mac, & Linux", @@ -18,7 +29,7 @@ "productUrl": "http://www.syntevo.com/smartgithg", "platforms": [ "windows", "macintosh", "linux" ], "icon": "smartgithg_32x32.png", - "isActive": false + "isActive": true }, { "name": "SourceTree", @@ -44,13 +55,15 @@ }, { "name": "GitHub", - "title": "GitHub\u2122 for Macintosh", + "title": "GitHub\u2122 for Mac", "description": "a free Git client for Mac OS X", "legal": "\u00a9 2013 GitHub. All rights reserved.", "cloneUrl": "github-mac://openRepo/${repoUrl}", "productUrl": "http://mac.github.com", + "transports": [ "http", "https" ], "platforms": [ "macintosh" ], - "isActive": false + "icon": "github_32x32.png", + "isActive": true }, { "name": "GitHub", @@ -59,19 +72,33 @@ "legal": "\u00a9 2013 GitHub. All rights reserved.", "cloneUrl": "github-windows://openRepo/${repoUrl}", "productUrl": "http://windows.github.com", + "transports": [ "http", "https" ], "platforms": [ "windows" ], - "isActive": false + "icon": "github_32x32.png", + "isActive": true }, { "name": "SparkleShare", "title": "SparkleShare\u2122", "description": "an open source collaboration and sharing tool", "legal": "released under the GPLv3 open source license", - "cloneUrl": "sparkleshare://inviteRepo/${baseUrl}/sparkleshare/${repoUrl}.xml", + "cloneUrl": "sparkleshare://addProject/${baseUrl}/sparkleshare/${username}@${repository}.xml", "productUrl": "http://sparkleshare.org", + "transports": [ "ssh" ], "platforms": [ "windows", "macintosh", "linux" ], "icon": "sparkleshare_32x32.png", "minimumPermission" : "RW+", "isActive": false + }, + { + "name": "TortoiseGit", + "title": "TortoiseGit", + "description": "Windows Shell Interface to Git", + "legal": "released under the GPLv2 open source license", + "cloneUrl": "tgit://clone/${repoUrl}", + "productUrl": "http://www.tortoisegit.org", + "platforms": [ "windows" ], + "icon": "tortoise32.png", + "isActive": true } ] \ No newline at end of file -- Gitblit v1.9.1