1. 19 Apr, 2019 1 commit
  2. 03 Sep, 2018 2 commits
    • Doug Hellmann's avatar
      import zuul job settings from project-config · 5f517ead
      Doug Hellmann 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: I26b5fa54cecc439a5645de6b7c2d869a1a238ced
      Story: #2002586
      Task: #24314
      5f517ead
    • Akihiro Motoki's avatar
      Fix gate errors · 06ddc184
      Akihiro Motoki authored
      - Skip pip install if no requirements is specified
      
      Note that this commit cherry-picks only the change against
      tox_install.sh from the corresponding stable/queens commit.
      
      Change-Id: I044a52f78d8eec86f0ad615bedfc517258ba1894
      (cherry picked from commit c8d4de9a)
      06ddc184
  3. 13 Dec, 2017 1 commit
    • Monty Taylor's avatar
      Align tox_install.sh with other projects · 77a585cf
      Monty Taylor authored
      The tox_install.sh here behaves a bit differently than the others, which
      is causing some problems when trying to rework some of the shared gate jobs.
      
      Align it to the form used in other repos.
      
      Change-Id: I3d2b391fba9be6290eb245924014134fbdde717a
      (cherry picked from commit d9ce89b6)
      77a585cf
  4. 29 Aug, 2017 3 commits
  5. 14 Aug, 2017 2 commits
  6. 11 Aug, 2017 4 commits
  7. 10 Aug, 2017 2 commits
  8. 09 Aug, 2017 2 commits
    • Akihiro Motoki's avatar
      Ensure log messages are not translated · 66c1e460
      Akihiro Motoki authored
      This is VPNaaS dashboard version of the horizon patch
      https://review.openstack.org/#/c/455635/.
      The horizon patch was merged before VPNaaS dashboard split out,
      but unfortunately I failed to import the change.
      
      The following describes the rational of this change
      (quoted from the horizon change).
      ----
      Previously translated messages are included in log messages
      and it was determined what language is chosen by users.
      It makes difficult for operators to understand log messgaes.
      
      This commit tries to use English messages for all log messages.
      The following policies are applied based on the past discussions
      in the bug 1406333 and related reviews.
      
      - English messages are used for log messages.
      - log messages include exception messages if possible
        to help operators identify what happens.
      - Use ID rather than name for log messages
        as ID is much more unique compared to name.
      - LOG.debug() in success code path are deleted.
        We don't log success messages in most places and API calls to
        back-end services can be logged from python bindings.
      
      Change-Id: I1a37b7ccbfa29cd83456931f7864ad9ce31aa570
      Closes-Bug: #1406333
      66c1e460
    • Akihiro Motoki's avatar
      Translation import · a0346b3b
      Akihiro Motoki authored
      These translations are generated from horizon stable/ocata translation
      by using gettext msgmerge command. As of now, there are several fuzzy
      and untranslated strings due to the changes in Pike cycle.
      
      The current status are as follows:
      
      $ for f in **/*.po; do msgfmt -v --statistics -o /dev/null $f; done
      cs/LC_MESSAGES/django.po: 137 translated messages, 13 fuzzy translations, 5 untranslated messages.
      de/LC_MESSAGES/django.po: 142 translated messages, 12 fuzzy translations, 1 untranslated message.
      en_AU/LC_MESSAGES/django.po: 153 translated messages, 2 untranslated messages.
      en_GB/LC_MESSAGES/django.po: 153 translated messages, 2 untranslated messages.
      es/LC_MESSAGES/django.po: 135 translated messages, 13 fuzzy translations, 7 untranslated messages.
      fr/LC_MESSAGES/django.po: 139 translated messages, 13 fuzzy translations, 3 untranslated messages.
      id/LC_MESSAGES/django.po: 142 translated messages, 12 fuzzy translations, 1 untranslated message.
      it/LC_MESSAGES/django.po: 136 translated messages, 13 fuzzy translations, 6 untranslated messages.
      ja/LC_MESSAGES/django.po: 155 translated messages.
      ko_KR/LC_MESSAGES/django.po: 142 translated messages, 12 fuzzy translations, 1 untranslated message.
      pl_PL/LC_MESSAGES/django.po: 133 translated messages, 17 fuzzy translations, 5 untranslated messages.
      pt_BR/LC_MESSAGES/django.po: 138 translated messages, 13 fuzzy translations, 4 untranslated messages.
      ru/LC_MESSAGES/django.po: 139 translated messages, 13 fuzzy translations, 3 untranslated messages.
      tr_TR/LC_MESSAGES/django.po: 130 translated messages, 17 fuzzy translations, 8 untranslated messages.
      zh_CN/LC_MESSAGES/django.po: 142 translated messages, 12 fuzzy translations, 1 untranslated message.
      zh_TW/LC_MESSAGES/django.po: 139 translated messages, 12 fuzzy translations, 4 untranslated messages.
      
      Change-Id: I1f145cbadf2e840242ce122f0e8b6048bee6de22
      a0346b3b
  9. 06 Aug, 2017 1 commit
  10. 05 Aug, 2017 1 commit
    • Akihiro Motoki's avatar
      Translation import for ja · 72a412a7
      Akihiro Motoki authored
      neutron-vpnaas-dashboard is not an official project, so we cannot
      use translate.openstack.org and the automated translation job
      of OpenStack infra does nothing. We need to import translation manually.
      This commit import ja translation. Translation import for other languages
      will be coming in a later patch as ja translation has been reviewed,
      but translations in other languages need to be reviewed after uploading
      and need to be decided whether they want to be imported.
      
      Change-Id: Iab8bb2545661fd2663ee5290b441e48e45503753
      72a412a7
  11. 03 Aug, 2017 1 commit
    • YAMAMOTO Takashi's avatar
      tox_install: Don't leave IFS set · 4f780b1c
      YAMAMOTO Takashi authored
      When running "tox -e docs" in my environment, git clone fails with
      "Too many arguments."  It seems ":" in "https://" is affected by IFS.
      
      1. In tox_install.sh, IFS is set to ":". It affects the current
        execution environment and can have undesirable side effects later.
        It's safer to restore it.  (This commit fixes this.)
      
      2. Otoh, the particular symptom above seems like a bug in a version
        of bash I happen to have.
      
        bash-3.2$ bash --version
        GNU bash, version 3.2.57(1)-release (x86_64-apple-darwin14)
        Copyright (C) 2007 Free Software Foundation, Inc.
        bash-3.2$ IFS=:
        bash-3.2$ echo a:b
        a:b
        bash-3.2$ echo a:b$x
        a b
        bash-3.2$
      
      Closes-Bug: #1708147
      Change-Id: Icf515dc2ee7e2da2a6b0efa6c6e8cbb45c78da46
      4f780b1c
  12. 27 Jul, 2017 1 commit
  13. 06 Jul, 2017 1 commit
  14. 05 Jul, 2017 1 commit
  15. 28 Jun, 2017 2 commits
  16. 27 Jun, 2017 1 commit
  17. 22 Jun, 2017 2 commits
  18. 20 Jun, 2017 1 commit
  19. 31 May, 2017 1 commit
  20. 21 May, 2017 1 commit
  21. 20 May, 2017 9 commits