summaryrefslogtreecommitdiff
path: root/gitlab
Commit message (Collapse)AuthorAgeFilesLines
* remove executable flag on cli.pyGauvain Pocentek2015-05-151-0/+0
|
* get ready for a 0.9 releaseGauvain Pocentek2015-05-151-1/+1
|
* update copyright dateGauvain Pocentek2015-05-142-3/+3
|
* 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
|
* Rename a few more private methodsGauvain Pocentek2015-05-131-15/+15
|
* Move the CLI in the gitlab packageGauvain Pocentek2015-05-131-0/+357
| | | | Setup an console_script entry point to create the executable script.
* Fix the tests when the host runs a web serverGauvain Pocentek2015-05-131-1/+12
|
* Projects can be updatedGauvain Pocentek2015-05-131-2/+3
| | | | | | Also fix the projects special listing (all, owned, ...) Closes #54
* use more pythonic names for some methodsGauvain Pocentek2015-05-123-128/+130
|
* make the tests passGauvain Pocentek2015-05-123-120/+216
|
* setup tox for py27 and py34 testsGauvain Pocentek2015-05-111-0/+0
|
* move the tests inside the packageGauvain Pocentek2015-05-112-0/+1001
|
* Deprecate some Gitlab object methodsGauvain Pocentek2015-05-111-14/+45
| | | | | | | | raw* methods should never have been exposed; replace them with _raw_* methods setCredentials and setToken are replaced with set_credentials and set_token
* gitlab is now a packageGauvain Pocentek2015-05-112-363/+1297
|
* Add a tox configuration fileGauvain Pocentek2015-05-111-43/+68
| | | | Run pep8 tests only for now, and fix pep8 errors.
* *clean import packageStefano Mandruzzato2015-05-011-7/+2
| | | | +add folder .idea to gitignore
* bug fixed on requiredArgumentsStefano Mandruzzato2015-04-271-21/+8
|
* remove "gitlab" of arguments because conflicts with "gitlab" attribute with ↵Stefano Mandruzzato2015-04-271-0/+3
| | | | GitlabObject class
* remove forgotten argumentmassimone882015-04-271-1/+0
|
* improvement argument required for each actionmassimone882015-04-271-9/+15
| | | | add try/catch for error of parsing of not gitlabObject
* implement argparse library for parsing the argumentsmassimone882015-04-271-223/+152
| | | | | create constans for action name clean the code
* "timeout" option is an int, not a boolGauvain Pocentek2015-02-071-2/+2
|
* CLI: support a timout optionGauvain Pocentek2014-10-261-1/+11
|
* Python 3 compatibility for cli-programMika Mäenpää2014-10-131-0/+2
|
* Update .sort to use key for Python 3.x.Amar Sood (tekacs)2014-10-051-7/+1
| | | | Rather than really dubious cmp function.
* update copyright yearsGauvain Pocentek2014-08-211-1/+1
|
* flake8 fixesGauvain Pocentek2014-08-211-25/+50
|
* support projects listing: search, all, ownedGauvain Pocentek2013-12-261-2/+46
|
* drop leftovers from local testsGauvain Pocentek2013-09-151-1/+1
|
* Implement Gitlab 6.1 new methodsGauvain Pocentek2013-09-141-1/+1
| | | | | - Project: tree, blob - ProjectCommit: diff, blob
* cli: support ssl_verify config optionGauvain Pocentek2013-08-261-1/+11
|
* manage project branch protection with the cmd lineGauvain Pocentek2013-06-291-0/+27
|
* rework the script code organizationGauvain Pocentek2013-06-291-97/+91
|
* rework the cmd line optionsGauvain Pocentek2013-06-291-12/+41
|
* make --verbose behave like --fancyGauvain Pocentek2013-06-291-1/+1
|
* fix parsing of optionsGauvain Pocentek2013-06-291-1/+1
|
* gitlab: make the current-user option workGauvain Pocentek2013-06-221-9/+12
|
* listing: list the --page and --per-page optionsGauvain Pocentek2013-06-221-0/+3
|
* gitlab: be less verbose by defaultGauvain Pocentek2013-06-221-5/+18
| | | | Provide a --fancy option to output more data on list/get/create queries.
* allow to use dash (-) instead of underscore (_) in attribute namesGauvain Pocentek2013-06-221-7/+7
|
* gitlab: autogenerate some docGauvain Pocentek2013-05-201-14/+95
|
* gitlab: update the object syntaxGauvain Pocentek2013-05-191-1/+4
|
* python 3 supportGauvain Pocentek2013-05-191-2/+5
|
* object creation: print the created objectGauvain Pocentek2013-05-191-0/+2
|
* gitlab: warn the user if an action cannot be performedGauvain Pocentek2013-05-191-0/+15
|
* Manually parse the argumentsGauvain Pocentek2013-05-181-64/+22
| | | | We can use a more common syntax (-- prefix for options) this way.
* provide a basic CLIGauvain Pocentek2013-05-181-0/+203