summaryrefslogtreecommitdiffstats
path: root/src/main/distrib
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2013-05-15 15:55:19 -0400
committerJames Moger <james.moger@gitblit.com>2013-05-15 15:55:19 -0400
commit366bec6ae90ef4adadb5df0e2e9232ba7b954f8e (patch)
tree98a2a382ce70ef4b2d9427779914c79340598621 /src/main/distrib
parentdf550007fe30a0f9ac0a650b8587932848e70d33 (diff)
downloadgitblit-366bec6ae90ef4adadb5df0e2e9232ba7b954f8e.tar.gz
gitblit-366bec6ae90ef4adadb5df0e2e9232ba7b954f8e.zip
Allow client apps to specify a minimum required access permission
Diffstat (limited to 'src/main/distrib')
-rw-r--r--src/main/distrib/data/clientapps.json24
1 files changed, 18 insertions, 6 deletions
diff --git a/src/main/distrib/data/clientapps.json b/src/main/distrib/data/clientapps.json
index 0c83d107..12d14b18 100644
--- a/src/main/distrib/data/clientapps.json
+++ b/src/main/distrib/data/clientapps.json
@@ -4,7 +4,7 @@
"title": "Git",
"description": "a fast, open-source, distributed VCS",
"legal": "released under the GPLv2 open source license",
- "command": "git clone {0}",
+ "command": "git clone ${repoUrl}",
"productUrl": "http://git-scm.com",
"icon": "git-black_32x32.png",
"isActive": true
@@ -14,7 +14,7 @@
"title": "syntevo SmartGit/Hg\u2122",
"description": "a Git client for Windows, Mac, & Linux",
"legal": "\u00a9 2013 syntevo GmbH. All rights reserved.",
- "cloneUrl": "smartgit://cloneRepo/{0}",
+ "cloneUrl": "smartgit://cloneRepo/${repoUrl}",
"productUrl": "http://www.syntevo.com/smartgithg",
"platforms": [ "windows", "macintosh", "linux" ],
"icon": "smartgithg_32x32.png",
@@ -25,7 +25,7 @@
"title": "Atlassian SourceTree\u2122",
"description": "a free Git client for Windows or Mac",
"legal": "\u00a9 2013 Atlassian. All rights reserved.",
- "cloneUrl": "sourcetree://cloneRepo/{0}",
+ "cloneUrl": "sourcetree://cloneRepo/${repoUrl}",
"productUrl": "http://sourcetreeapp.com",
"platforms": [ "windows", "macintosh" ],
"icon": "sourcetree_32x32.png",
@@ -36,7 +36,7 @@
"title": "fournova Tower\u2122",
"description": "a Git client for Mac",
"legal": "\u00a9 2013 fournova Software GmbH. All rights reserved.",
- "cloneUrl": "gittower://openRepo/{0}",
+ "cloneUrl": "gittower://openRepo/${repoUrl}",
"productUrl": "http://www.git-tower.com",
"platforms": [ "macintosh" ],
"icon": "tower_32x32.png",
@@ -47,7 +47,7 @@
"title": "GitHub\u2122 for Macintosh",
"description": "a free Git client for Mac OS X",
"legal": "\u00a9 2013 GitHub. All rights reserved.",
- "cloneUrl": "github-mac://openRepo/{0}",
+ "cloneUrl": "github-mac://openRepo/${repoUrl}",
"productUrl": "http://mac.github.com",
"platforms": [ "macintosh" ],
"isActive": false
@@ -57,9 +57,21 @@
"title": "GitHub\u2122 for Windows",
"description": "a free Git client for Windows",
"legal": "\u00a9 2013 GitHub. All rights reserved.",
- "cloneUrl": "github-windows://openRepo/{0}",
+ "cloneUrl": "github-windows://openRepo/${repoUrl}",
"productUrl": "http://windows.github.com",
"platforms": [ "windows" ],
"isActive": false
+ },
+ {
+ "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",
+ "productUrl": "http://sparkleshare.org",
+ "platforms": [ "windows", "macintosh", "linux" ],
+ "icon": "sparkleshare_32x32.png",
+ "minimumPermission" : "RW+",
+ "isActive": false
}
] \ No newline at end of file