summaryrefslogtreecommitdiff
path: root/gitlab/cli.py
Commit message (Collapse)AuthorAgeFilesLines
...
* implement group search in CLIGauvain Pocentek2016-01-091-5/+18
|
* CLI: fix the discovery of possible actionsGauvain Pocentek2016-01-081-2/+1
|
* python3: fix CLI error when arguments are missingGauvain Pocentek2015-12-311-2/+6
|
* Provide a create method for GitlabObject'sGauvain Pocentek2015-12-311-2/+1
| | | | | | Instead of using the constructor to do everything (get, list and create), we now provide a class method for each action. This should make code easier to read.
* Add the CLI -g short option for --gitlabGauvain Pocentek2015-12-301-1/+1
|
* Add a get method for GitlabObjectGauvain Pocentek2015-12-301-2/+2
| | | | | | | This change provides a way to implement GET for objects that don't support it, but support LIST. It is also a first step to a cleaner API.
* Use name as sort key to fix Python 3 TypeErrorColin D Bennett2015-12-231-1/+2
| | | | | | | | | Sort types explicitly by name to fix unorderable types TypeError in Python 3. The call to sort() on cli.py line 259 produced the error: TypeError: unorderable types: type() < type()
* Fix GET/POST for project filesGauvain Pocentek2015-09-191-4/+5
|
* hide the action attributeGauvain Pocentek2015-09-191-0/+1
|
* Provide a Gitlab.from_config methodGauvain Pocentek2015-08-211-56/+5
| | | | | It provides the Gitlab object creation from the ~/.python-gitlab.cfg, just like the CLI does.
* Fix the update/delete CLI subcommandsGauvain Pocentek2015-07-111-4/+15
| | | | | | Also update the testing tool to test these features. Closes #62
* fix delete and update CLI methodsGauvain Pocentek2015-07-111-2/+2
|
* remove executable flag on cli.pyGauvain Pocentek2015-05-151-0/+0
|
* update copyright dateGauvain Pocentek2015-05-141-1/+1
|
* CLI: remove wrong attributes from the verbose outputGauvain Pocentek2015-05-141-2/+6
| | | | These attributes comme from the command line arguments.
* CLI: provide a --config-file optionGauvain Pocentek2015-05-131-6/+15
|
* Move the CLI in the gitlab packageGauvain Pocentek2015-05-131-0/+357
Setup an console_script entry point to create the executable script.