Commit Graph

249 Commits

Author SHA1 Message Date
Grzegorz Bizon 07bcabb305 Improve wording related to deploy chatops command 2017-07-28 12:16:07 +02:00
Grzegorz Bizon e2f73c8685 Update docs regarding deploy chatops slash command 2017-07-28 11:09:12 +02:00
Oswaldo Ferreira e561b142fa Backport gitlab-ee!2456 2017-07-27 12:09:46 -04:00
Marcia Ramos 2dc2538d74 Docs new topic "user/index" 2017-07-26 08:02:11 +00:00
Jarka Kadlecova 6774a0378d Change docs to support paralel external and internal issue trackers 2017-07-24 08:14:06 +02:00
Marcia Ramos e97d10560f add screenshots 2017-07-20 19:53:37 -03:00
Marcia Ramos 84c96b4502 review troll powerup doc 2017-07-20 19:24:23 -03:00
Clement Ho 078b67f486 Add disclaimer about API scope 2017-07-20 16:04:39 -05:00
Clement Ho 319b74b67c Remove unnecessary html extension 2017-07-20 10:44:08 -05:00
Clement Ho 82e629eb28 Fix link 2017-07-20 10:41:02 -05:00
Clement Ho 684f1dcd83 Fix personal access token link 2017-07-20 10:38:28 -05:00
Clement Ho 1f9ab89d79 Add GitLab Trello Power-Up Documentation 2017-07-20 10:29:42 -05:00
Adam Niedzielski 9da3076944 Improve support for external issue references 2017-06-30 14:47:53 +02:00
Eric Eastwood ea090291bb Rename "Slash commands" to "Quick actions"
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/27070

Deprecate "chat commands" in favor of "slash commands"

We looked for things like:

 - `slash commmand`
 - `slash_command`
 - `slash-command`
 - `SlashCommand`
2017-06-15 09:01:56 -05:00
Kanchana Wickremasinghe 158b640e5e Update google.md 2017-06-08 11:51:44 +00:00
Maxime Besson 9326d89623
Allow manual bypass of auto_sign_in_with_provider
This commit lets a user bypass the automatic signin on the login form,
in order to login with a technical (admin, etc) account

Closes #3786

Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-02 20:00:11 +02:00
Cindy Pallares c13e093334 Add extra step in GHE import docs 2017-05-23 18:29:20 -05:00
Cindy Pallares 🦉 45e3658d05 Add docs on how to turn off SSL verification on GH oauth
In https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/323/ we added support
to disable SSL verification because attempting to import projects from a
self-signed GH Enterprise instance will fail with an SSL error.
2017-05-18 16:08:56 -05:00
Victor Wu 7dd00a98ce Improve Slack docs 2017-04-28 09:47:59 +00:00
Xiaogang Wen 4cbe05e802 Patch 15 2017-03-14 09:09:56 +00:00
Achilleas Pipinellis b87d5c883a Merge branch 'update_crowd_docs' into 'master'
Move and update Crowd authentication documentation

See merge request !9775
2017-03-08 07:26:01 +00:00
Drew Blessing 79bee6a2ec Move and update Crowd authentication documentation
Current docs did not include information on configuring the app
in Crowd. Also, moved the doc to the new administration/auth
directory.
2017-03-07 11:58:30 -06:00
Markus Koller c498289048 Implement OpenID Connect identity provider 2017-03-07 14:54:35 +01:00
Achilleas Pipinellis 983b90e467 Merge branch '27847-auth0-doc-typo' into 'master'
Fix typo in auth0.md doc

Closes #27847

See merge request !9059
2017-02-24 16:30:41 +00:00
Lukas Raska 510cd9315e Use persistent name identifier instead of transient in SAML2 documentation 2017-02-24 08:34:48 +01:00
Achilleas Pipinellis d2c640cd47 Change wording for LDAP doc that was moved to a new location
[ci skip]
2017-02-20 14:15:35 +01:00
Joe Marty d1e951c343 Adjust doc formatting 2017-02-13 12:54:57 -06:00
Joe Marty 6d756b2b6a Fix spelling errors in docs and changelog 2017-02-13 12:54:57 -06:00
Joe Marty 70f75ca108 Edit omniauth-oauth2-generic docs for style conformance 2017-02-13 12:54:57 -06:00
Joe Marty 93d4234efa Add omniauth-oauth2-generic strategy
- Allows configurable Single Sign On with most simple OAuth2 providers
- Adds documentation for the new strategy

Closes #26744
2017-02-13 12:54:57 -06:00
Achilleas Pipinellis 1352a80f90 Fix markdown link in Omniauth docs
[ci skip]
2017-02-09 08:55:09 +01:00
Achilleas Pipinellis ad85eccc18 Mention reconfigure/restart in omniauth docs
[ci skip]
2017-02-09 08:38:25 +01:00
Reb 0d53ce9eb8 Fix typo in auth0.md doc
Removed spurious character from Omnibus example
2017-02-08 04:00:20 +00:00
Achilleas Pipinellis a6ac23250a Move project services to new location under Integrations 2017-02-03 20:28:47 +01:00
Rémy Coutable 4b7e8f2570 Merge branch '25851-document-token-scopes' into 'master'
Add documentation around OAuth/Personal Access Token scopes.

Closes #25851

See merge request !8226
2017-01-20 12:16:08 +00:00
Timothy Andrew 63e8dc8a76
Add documentation around OAuth/Personal Access Token scopes. 2017-01-19 14:05:06 +05:30
Nick Thomas 66ccf2d9f6 Document the `auto_link_ldap_user` setting 2017-01-13 12:20:38 -05:00
Horacio Sanson f986b4c4e5 Add support for PlantUML diagrams in Asciidoc.
This MR enables rendering of PlantUML diagrams in Asciidoc documents. To add a
PlantUML diagram all we need is to include a plantuml block like:

```
[plantuml, id="myDiagram", width="100px", height="100px"]
--
bob -> alice : ping
alice -> bob : pong
--
```

The plantuml block is substituted by an HTML img element with *src* pointing to
an external PlantUML server.

This MR also add a PlantUML integration section to the Administrator -> Settings
page to configure the PlantUML rendering service and to enable/disable it.

Closes: #17603
2017-01-12 10:04:52 +00:00
Z.J. van de Weg 4b203877bd List all commands
[ci skip]
2016-12-22 19:12:17 +01:00
Stan Hu ffe78adf04 Update Bitbucket callback URL documentation
Closes #25950

[ci skip]
2016-12-21 13:51:17 -08:00
Alex 6e186b76bb Added support for Authentiq oauth provider 2016-12-21 10:51:10 +02:00
Valery Sizov 5b0ebbe5b4 Add Wiki import to BB importer 2016-12-19 20:48:08 +02:00
Achilleas Pipinellis 27f271ee1e Refactor Bitbucket import docs 2016-12-16 14:54:23 +01:00
Valery Sizov 468d575fc7 Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into bitbucket-oauth2 2016-12-14 12:36:27 +02:00
Valery Sizov 89cc2064a2 Update documentation for BitBucket 2016-12-08 14:41:15 +02:00
Sean McGivern c1f3cbb549 NIGNX -> Nginx
This shouldn't be in all caps, and it should be spelled correctly!
2016-12-05 14:37:44 +00:00
Lee Matos 8b3ab222c3 Fixing typo & Clarifying Key name 2016-11-29 13:07:42 +01:00
Achilleas Pipinellis 3341a9d80c Add missing JIRA file that redirects to the new location
[ci skip]
2016-11-24 11:01:56 +01:00
Achilleas Pipinellis 448c19aab1 Merge branch 'patch-1' into 'master'
Update github.md

Hi, I ran into a few pitfalls while I enabled OmniAuth to be able to migrate repos from github to my omnibus-gitlab instance today, so here are my findings:

These docs state thate the default authorization callback URL is `'${YOUR_DOMAIN}/import/github/callback'`, but the screenshot only shows `'${YOUR_DOMAIN}'`, which works, so I removed the ambiguity.

When editing `gitlab_rails['omniauth_providers']` for github.com, you have to omit the `"url" => "https://github.com/",` part, otherwise it won't work (OmniAuth will stay deactivated). This is backed by the configuration details of the "from-source-installation" which also omits the url in the `yml` file.

After changing the `gitlab.rb` file, `sudo gitlab-ctl reconfigure` needs to be run, which is missing in the docs.

Following the updated version of this documentation I was able to enable OmniAuth.

If anything I edited is wrong, please correct me, as I don't know how the "from-source-installations" would react to my changes.

Best regards,
Florian

See merge request !4072
2016-11-22 20:26:58 +00:00
Achilleas Pipinellis af1dabe805 Reduce size of images from 25MB to 13MB using pngquant
Took it from https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/3232

[ci skip]
2016-11-22 19:53:43 +01:00