1. 19 Apr, 2019 1 commit
  2. 14 Sep, 2018 1 commit
    • Nguyen Hai's avatar
      import zuul job settings from project-config · 4a4af0bc
      Nguyen Hai authored
      This is a mechanically generated patch to complete step 1 of moving
      the zuul job settings out of project-config and into each project
      repository.
      
      Because there will be a separate patch on each branch, the branch
      specifiers for branch-specific jobs have been removed.
      
      Because this patch is generated by a script, there may be some
      cosmetic changes to the layout of the YAML file(s) as the contents are
      normalized.
      
      See the python3-first goal document for details:
      https://governance.openstack.org/tc/goals/stein/python3-first.html
      
      Change-Id: I26655e5dc7bf72b86fb8b4e76306da68d2d0fd3a
      Story: #2002586
      Task: #24297
      4a4af0bc
  3. 12 Jun, 2017 2 commits
  4. 07 Jun, 2017 2 commits
    • Abhishek Kekane's avatar
      Downloading image with --progress fails · d25328da
      Abhishek Kekane authored
      Downloading image with --progress fails with "RequestIdProxy object is
      not an iterator". This is because to display download progress
      VerboseFileWrapper in progressbar requires object of IterableWithLength,
      but after support of returning request-id [1] to caller it returns
      RequestIdProxy object which is wrapped around IterableWithLength
      and response.
      
      To resolve this issue overridden next and __next__ methods in
      RequestIdProxy so that it can act as iterator for python 2.x
      and 3.x as well.
      
      [1] 610177a7
      
      Closes-Bug: #1670464
      Change-Id: I188e67c2487b7e4178ea246f02154bbcbc35a2b1
      (cherry picked from commit 60c06d52)
      d25328da
    • Abhishek Kekane's avatar
      Downloading image with --progress fails for python3 · 9e014efb
      Abhishek Kekane authored
      Downloading image with --progress fails for python3 with,
      TypeError: 'IterableWithLength' object is not an iterator. This
      is because IterableWithLength class does not implemented python3
      compatible __next__ method.
      
      Added __next__ method for python3 compatibility.
      
      Change-Id: Ic2114180fac26e9a60678f06612be733e8671bdb
      Closes-Bug: #1671365
      (cherry picked from commit bb2a5e94)
      9e014efb
  5. 15 May, 2017 1 commit
  6. 09 Mar, 2017 1 commit
  7. 24 Jan, 2017 2 commits
  8. 23 Jan, 2017 3 commits
  9. 20 Jan, 2017 1 commit
    • Ravi Jethani's avatar
      Add request id to returned objects · 610177a7
      Ravi Jethani authored
      
      
      Adding two classes RequestIdProxy and GeneratorProxy derived from
      wrapt.ObjectProxy to wrap objects returned from the API.
      
      GeneratorProxy class is used to wrap generator objects returned
      by cases like images.list() etc. whereas RequestIdProxy class is
      used to wrap non-generator object cases like images.create() etc.
      
      In all cases the returned object will have the same behavior as
      the wrapped(original) object. However now the returned objects
      will have an extra property 'request_ids' which is a list of
      exactly one request id.
      
      For generator cases the request_ids property will be an empty list
      until the underlying generator is invoked at-least once.
      
      Co-Authored-By: default avatarAbhishek Kekane <abhishek.kekane@nttdata.com>
      
      Closes-Bug: #1525259
      Blueprint: return-request-id-to-caller
      Change-Id: If8c0e0843270ff718a37ca2697afeb8da22aa3b1
      610177a7
  10. 19 Jan, 2017 1 commit
  11. 16 Jan, 2017 1 commit
  12. 13 Jan, 2017 1 commit
  13. 11 Jan, 2017 1 commit
    • Ian Cordasco's avatar
      Handle formatting of subcommand name in error output · 81039a1e
      Ian Cordasco authored
      On Python 2, decoding all arguments leads to the possibility that users
      that use the wrong command or mistype the name will see error output
      with a unicode string's representation instead of one without it. To
      avoid this we try and find the first non-option string in the argument
      list and replace it with an string that is not text only on Python 2. If
      we encoded the string at all times, then users installing glanceclient
      on Python 3 would see b'invalid-subcommand' instead. That's as bad as
      seeing u'invalid-subcommand' on Python 2.
      
      Closes-bug: 1533090
      Change-Id: I018769e159a607ebb233902cbeb13b95ca417190
      81039a1e
  14. 10 Jan, 2017 1 commit
  15. 16 Dec, 2016 1 commit
  16. 15 Dec, 2016 1 commit
  17. 14 Dec, 2016 1 commit
  18. 06 Dec, 2016 1 commit
  19. 05 Dec, 2016 1 commit
  20. 01 Dec, 2016 1 commit
    • Brian Rosmaita's avatar
      Add alt text for badges · 1505a47f
      Brian Rosmaita authored
      The RST image directive takes an alt parameter that's used to supply an
      alt attribute for the HTML image element that's generated during RST
      to HTML conversion.  The alt text is useful for accessibility purposes
      and is also displayed if the image source is unavailable when the HTML
      is generated.  Because of the latter point, we can't rely on the
      accessibility features of the SVG image, we need to maintain some info
      here in the README.rst file.
      
      Change-Id: I1ca4a4d84cbb87c696b98d2d1d14f9ef792fcff6
      1505a47f
  21. 25 Nov, 2016 1 commit
  22. 18 Nov, 2016 1 commit
  23. 15 Nov, 2016 1 commit
  24. 10 Nov, 2016 1 commit
    • Alexander Bashmakov's avatar
      Add support for community images · 20ab7b82
      Alexander Bashmakov authored
      This patch adds support for community images retrieval and
      creation in the Glance client.
      
      Depends-On: I94bc7708b291ce37319539e27b3e88c9a17e1a9f
      Change-Id: I81e83eab5a9d30643c354f0cb6df425cf7a7bae3
      20ab7b82
  25. 09 Nov, 2016 3 commits
  26. 08 Nov, 2016 1 commit
    • Abhishek Kekane's avatar
      Move old oslo-incubator code out of openstack/common · c2898998
      Abhishek Kekane authored
      As part of the first community-wide goal, teams were asked to
      remove the openstack/common package of their projects if one
      existed. This was a byproduct of the old oslo-incubator form
      of syncing common functionality.
      
      Package openstack/common/apiclient is moved to glanceclient/v1
      package as it is used by v1 api only.
      
      NOTE:
      Removed glanceclient/common/base.py as it is deprecated and not
      used anywhere.
      
      Closes-Bug: #1639487
      Change-Id: Ib3ac09743ce761ab0186e99e1c9de02517f89510
      c2898998
  27. 03 Nov, 2016 1 commit
  28. 22 Oct, 2016 1 commit
  29. 07 Oct, 2016 1 commit
  30. 06 Oct, 2016 1 commit
    • Andreas Jaeger's avatar
      Enable release notes translation · 5b5eeb48
      Andreas Jaeger authored
      Releasenote translation publishing is being prepared. 'locale_dirs'
      needs to be defined in conf.py to generate translated version of the
      release notes.
      
      Note that this repository might not get translated release notes - or
      no translations at all - but we add the entry here nevertheless to
      prepare for it.
      
      Change-Id: Ifad58c69d888e58cf1cc998bb1ddb409b4489490
      5b5eeb48
  31. 04 Oct, 2016 1 commit
  32. 30 Sep, 2016 2 commits