From ab7f0835ba6011768f772e9c545a69ceb7b49f0c Mon Sep 17 00:00:00 2001 From: yackob03 Date: Mon, 2 Dec 2013 19:13:18 -0500 Subject: [PATCH] Rename web hooks to webhooks universally. --- static/js/controllers.js | 2 +- static/partials/guide.html | 4 ++-- static/partials/repo-admin.html | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/static/js/controllers.js b/static/js/controllers.js index 4d02f0571..26813c3b9 100644 --- a/static/js/controllers.js +++ b/static/js/controllers.js @@ -593,7 +593,7 @@ function RepoAdminCtrl($scope, Restangular, $routeParams, $rootScope) { permissionsFetch.get().then(function(resp) { $rootScope.title = 'Settings - ' + namespace + '/' + name; $rootScope.description = 'Administrator settings for ' + namespace + '/' + name + - ': Permissions, web hooks and other settings'; + ': Permissions, webhooks and other settings'; $scope.permissions[kind] = resp.permissions; checkLoading(); }, function() { diff --git a/static/partials/guide.html b/static/partials/guide.html index 49124aa1d..dab919920 100644 --- a/static/partials/guide.html +++ b/static/partials/guide.html @@ -94,9 +94,9 @@ Email: my@email.com -

Using push web hooks Requires Admin Access

+

Using push webhooks Requires Admin Access

- A repository can have one or more push web hooks setup, which will be invoked whenever a successful push occurs. Web hooks can be managed from the repository's admin interface. + A repository can have one or more push webhooks setup, which will be invoked whenever a successful push occurs. Webhooks can be managed from the repository's admin interface.

A web hook will be invoked as an HTTP POST to the specified URL, with a JSON body describing the push:

diff --git a/static/partials/repo-admin.html b/static/partials/repo-admin.html
index eda830d97..a3fb0e43e 100644
--- a/static/partials/repo-admin.html
+++ b/static/partials/repo-admin.html
@@ -20,7 +20,7 @@