mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 03:26:07 +10:00
Merge branch 'doc-readme-for-site' into 'master'
Doc-readme-for-site New readme files for doc.gitlab.com I also but the links for the api readme at the top.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
## The GitLab Documentation covers the following subjects
|
||||
|
||||
+ [API](api/README.md)
|
||||
+ [Development](development/README.md)
|
||||
+ [Install](install/README.md)
|
||||
+ [Integration](external-issue-tracker/README.md)
|
||||
+ [Legal](legal/README.md)
|
||||
+ [Markdown](markdown/markdown.md)
|
||||
+ [Permissions](permissions/permissions.md)
|
||||
+ [Public access](public_access/public_access.md)
|
||||
+ [Raketasks](raketasks/README.md)
|
||||
+ [Release](release/README.md)
|
||||
+ [Security](security/README.md)
|
||||
+ [System hooks](system_hooks/system_hooks.md)
|
||||
+ [Update](update/README.md)
|
||||
+ [Web hooks](web_hooks/web_hooks.md)
|
||||
+ [Workflow](workflow/workflow.md)
|
||||
+26
-27
@@ -1,5 +1,31 @@
|
||||
# GitLab API
|
||||
|
||||
## End-points
|
||||
|
||||
+ [Users](users.md)
|
||||
+ [Session](session.md)
|
||||
+ [Projects](projects.md)
|
||||
+ [Project Snippets](project_snippets.md)
|
||||
+ [Repositories](repositories.md)
|
||||
+ [Repository Files](repository_files.md)
|
||||
+ [Commits](commits.md)
|
||||
+ [Merge Requests](merge_requests.md)
|
||||
+ [Issues](issues.md)
|
||||
+ [Milestones](milestones.md)
|
||||
+ [Notes](notes.md)
|
||||
+ [Deploy Keys](deploy_keys.md)
|
||||
+ [System Hooks](system_hooks.md)
|
||||
+ [Groups](groups.md)
|
||||
|
||||
## Clients
|
||||
|
||||
+ [php-gitlab-api](https://github.com/m4tthumphrey/php-gitlab-api) - PHP
|
||||
+ [Ruby Wrapper](https://github.com/NARKOZ/gitlab) - Ruby
|
||||
+ [python-gitlab](https://github.com/Itxaka/python-gitlab) - Python
|
||||
+ [java-gitlab-api](https://github.com/timols/java-gitlab-api) - Java
|
||||
|
||||
## Introduction
|
||||
|
||||
All API requests require authentication. You need to pass a `private_token` parameter by url or header. If passed as header, the header name must be "PRIVATE-TOKEN" (capital and with dash instead of underscore). You can find or reset your private token in your profile.
|
||||
|
||||
If no, or an invalid, `private_token` is provided then an error message will be returned with status code 401:
|
||||
@@ -117,30 +143,3 @@ Issue
|
||||
|
||||
So if you want to get issue with api you use `http://host/api/v3/.../issues/:id.json`
|
||||
But when you want to create a link to web page - use `http:://host/project/issues/:iid.json`
|
||||
|
||||
|
||||
|
||||
## Contents
|
||||
|
||||
+ [Users](users.md)
|
||||
+ [Session](session.md)
|
||||
+ [Projects](projects.md)
|
||||
+ [Project Snippets](project_snippets.md)
|
||||
+ [Repositories](repositories.md)
|
||||
+ [Repository Files](repository_files.md)
|
||||
+ [Commits](commits.md)
|
||||
+ [Merge Requests](merge_requests.md)
|
||||
+ [Issues](issues.md)
|
||||
+ [Milestones](milestones.md)
|
||||
+ [Notes](notes.md)
|
||||
+ [Deploy Keys](deploy_keys.md)
|
||||
+ [System Hooks](system_hooks.md)
|
||||
+ [Groups](groups.md)
|
||||
|
||||
|
||||
## Clients
|
||||
|
||||
+ [php-gitlab-api](https://github.com/m4tthumphrey/php-gitlab-api) - PHP
|
||||
+ [Ruby Wrapper](https://github.com/NARKOZ/gitlab) - Ruby
|
||||
+ [python-gitlab](https://github.com/Itxaka/python-gitlab) - Python
|
||||
+ [java-gitlab-api](https://github.com/timols/java-gitlab-api) - Java
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
+ [Architecture](architecture.md)
|
||||
+ [Shell commands](shell_commands.md)
|
||||
@@ -0,0 +1,4 @@
|
||||
+ [Installation](installation.md)
|
||||
+ [Requirements](requirements.md)
|
||||
+ [Structure](structure.md)
|
||||
+ [Database MySQL](database_mysql.md)
|
||||
@@ -0,0 +1,2 @@
|
||||
+ [Corporate contributor license agreement](corporate_contributor_license_agreement.md)
|
||||
+ [Individual contributor license agreement](individual_contributor_license_agreement.md)
|
||||
@@ -0,0 +1,6 @@
|
||||
+ [Backup restore](backup_restore.md)
|
||||
+ [Cleanup](cleanup.md)
|
||||
+ [Features](features.md)
|
||||
+ [Maintenance](maintenance.md)
|
||||
+ [User management](user_management.md)
|
||||
+ [Web hooks](web_hooks.md)
|
||||
@@ -0,0 +1,2 @@
|
||||
+ [Monthly](monthly.md)
|
||||
+ [Security](security.md)
|
||||
@@ -0,0 +1,2 @@
|
||||
+ [Password length limits](password_length_limits.md)
|
||||
+ [Rack attack](rack_attack.md)
|
||||
@@ -0,0 +1,5 @@
|
||||
+ [The indivual upgrade guides](https://gitlab.com/gitlab-org/gitlab-ce/tree/master/doc/update)
|
||||
+ [Uprader](upgrader.md)
|
||||
+ [Ruby](ruby.md)
|
||||
+ [Patch versions](patch_versions.md)
|
||||
+ [MySQL to Postgress](mysql_to_postgress.md)
|
||||
Reference in New Issue
Block a user