diff options
author | Ewan Edwards <eedwards@perforce.com> | 2015-01-30 10:24:45 -0800 |
---|---|---|
committer | Ewan Edwards <eedwards@perforce.com> | 2015-01-30 10:24:45 -0800 |
commit | e6e337088bbb4736983119928b6b6b451bd3ef20 (patch) | |
tree | b4052034e51615b85f7f09ca71012a398638a3d9 /doc/customization | |
parent | c47328948b5fff218c68279260a57ab6b03e7423 (diff) | |
download | gitlab-ce-e6e337088bbb4736983119928b6b6b451bd3ef20.tar.gz |
Make all non-config/non-operational mentions of URL consistently
capitalized.
Make the plural version consistently "URLs".
Fix an instance where the article "the" before URL was missing.
Diffstat (limited to 'doc/customization')
-rw-r--r-- | doc/customization/libravatar.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/customization/libravatar.md b/doc/customization/libravatar.md index 4dffd3027a9..ee57fdc6590 100644 --- a/doc/customization/libravatar.md +++ b/doc/customization/libravatar.md @@ -16,7 +16,7 @@ the configuration options as follows: ```yml gravatar: enabled: true - # gravatar urls: possible placeholders: %{hash} %{size} %{email} + # gravatar URLs: possible placeholders: %{hash} %{size} %{email} plain_url: "http://cdn.libravatar.org/avatar/%{hash}?s=%{size}&d=identicon" ``` @@ -25,14 +25,14 @@ the configuration options as follows: ```yml gravatar: enabled: true - # gravatar urls: possible placeholders: %{hash} %{size} %{email} + # gravatar URLs: possible placeholders: %{hash} %{size} %{email} ssl_url: "https://seccdn.libravatar.org/avatar/%{hash}?s=%{size}&d=identicon" ``` ## Self-hosted -If you are [running your own libravatar service](http://wiki.libravatar.org/running_your_own/) the url will be different in the configuration -but the important part is to provide the same placeholders so GitLab can parse the url correctly. +If you are [running your own libravatar service](http://wiki.libravatar.org/running_your_own/) the URL will be different in the configuration +but the important part is to provide the same placeholders so GitLab can parse the URL correctly. For example, you host a service on `http://libravatar.example.com` the `plain_url` you need to supply in `gitlab.yml` is @@ -65,5 +65,5 @@ Run `sudo gitlab-ctl reconfigure` for changes to take effect. [Libravatar supports different sets](http://wiki.libravatar.org/api/) of `missing images` for emails not found on the Libravatar service. -In order to use a different set other than `identicon`, replace `&d=identicon` portion of the url with another supported set. -For example, you can use `retro` set in which case url would look like: `plain_url: "http://cdn.libravatar.org/avatar/%{hash}?s=%{size}&d=retro"` +In order to use a different set other than `identicon`, replace `&d=identicon` portion of the URL with another supported set. +For example, you can use `retro` set in which case the URL would look like: `plain_url: "http://cdn.libravatar.org/avatar/%{hash}?s=%{size}&d=retro"` |