summaryrefslogtreecommitdiff
path: root/docs/gl_objects/templates.rst
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-12-01 01:04:53 +0100
committerGitHub <noreply@github.com>2021-12-01 01:04:53 +0100
commit8d76826fa64460e504acc5924f859f8dbc246b42 (patch)
tree083fefada982c795e2415092794db429abb0c184 /docs/gl_objects/templates.rst
parent5a1678f43184bd459132102cc13cf8426fe0449d (diff)
parent86ab04e54ea4175f10053decfad5086cda7aa024 (diff)
downloadgitlab-master.tar.gz
Merge pull request #1723 from python-gitlab/jlvillal/dead_mastermaster
Close-out `master` branch
Diffstat (limited to 'docs/gl_objects/templates.rst')
-rw-r--r--docs/gl_objects/templates.rst114
1 files changed, 0 insertions, 114 deletions
diff --git a/docs/gl_objects/templates.rst b/docs/gl_objects/templates.rst
deleted file mode 100644
index f939e5f..0000000
--- a/docs/gl_objects/templates.rst
+++ /dev/null
@@ -1,114 +0,0 @@
-#########
-Templates
-#########
-
-You can request templates for different type of files:
-
-* License files
-* .gitignore files
-* GitLab CI configuration files
-* Dockerfiles
-
-License templates
-=================
-
-Reference
----------
-
-* v4 API:
-
- + :class:`gitlab.v4.objects.License`
- + :class:`gitlab.v4.objects.LicenseManager`
- + :attr:`gitlab.Gitlab.licenses`
-
-* GitLab API: https://docs.gitlab.com/ce/api/templates/licenses.html
-
-Examples
---------
-
-List known license templates::
-
- licenses = gl.licenses.list()
-
-Generate a license content for a project::
-
- license = gl.licenses.get('apache-2.0', project='foobar', fullname='John Doe')
- print(license.content)
-
-.gitignore templates
-====================
-
-Reference
----------
-
-* v4 API:
-
- + :class:`gitlab.v4.objects.Gitignore`
- + :class:`gitlab.v4.objects.GitignoreManager`
- + :attr:`gitlab.Gitlab.gitignores`
-
-* GitLab API: https://docs.gitlab.com/ce/api/templates/gitignores.html
-
-Examples
---------
-
-List known gitignore templates::
-
- gitignores = gl.gitignores.list()
-
-Get a gitignore template::
-
- gitignore = gl.gitignores.get('Python')
- print(gitignore.content)
-
-GitLab CI templates
-===================
-
-Reference
----------
-
-* v4 API:
-
- + :class:`gitlab.v4.objects.Gitlabciyml`
- + :class:`gitlab.v4.objects.GitlabciymlManager`
- + :attr:`gitlab.Gitlab.gitlabciymls`
-
-* GitLab API: https://docs.gitlab.com/ce/api/templates/gitlab_ci_ymls.html
-
-Examples
---------
-
-List known GitLab CI templates::
-
- gitlabciymls = gl.gitlabciymls.list()
-
-Get a GitLab CI template::
-
- gitlabciyml = gl.gitlabciymls.get('Pelican')
- print(gitlabciyml.content)
-
-Dockerfile templates
-====================
-
-Reference
----------
-
-* v4 API:
-
- + :class:`gitlab.v4.objects.Dockerfile`
- + :class:`gitlab.v4.objects.DockerfileManager`
- + :attr:`gitlab.Gitlab.gitlabciymls`
-
-* GitLab API: Not documented.
-
-Examples
---------
-
-List known Dockerfile templates::
-
- dockerfiles = gl.dockerfiles.list()
-
-Get a Dockerfile template::
-
- dockerfile = gl.dockerfiles.get('Python')
- print(dockerfile.content)