commit | 7be9861d562abc762d65a4efd7cf49b493d70206 | [log] [tgz] |
---|---|---|
author | Pawel Wieczorek <p.wieczorek2@samsung.com> | Thu Apr 30 17:04:51 2020 +0200 |
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | Fri May 08 07:22:19 2020 +0000 |
tree | d0a340c18d5f1bedc71b7aff33456a0585cef0e9 | |
parent | 937fe44cefb6a749ad39e2e332881b0cf32b7cf1 [diff] |
Exclude code location from code base URL Python method str.format allows easy templating using substitutions identified by braces ('{' and '}'). Using two levels of nested substitutions can be achieved by doubling braces ("{{" and "}}"). Hound configuration creator script was supposed to use two levels of nested substitutions and still leave braced components within the templated string for further substitution by the Hound tool. This would require using multitude of braces which would decrease readability significantly. This is why code location template is appended to the code base URL at the latest. If there will be need for more levels of nested templates, this code shall be further refactored to use only named fields, str.format_map() (available in Python 3.2+) and SafeDict, e.g. >>> class SafeDict(dict): ... def __missing__(self, key): ... return '{' + key + '}' ... which would leave braced components within the processed template in case given key is missing. Issue-ID: ONAPARC-579 Change-Id: I420d076867aa891edb2a945a8cd58e168c892ac3 Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Responsible for the integration framework / automated tools, code and scripts, best practice guidance related to cross-project Continuous System Integration Testing (CSIT), and delivery of the ONAP project.
See https://wiki.onap.org/display/DW/Integration+Project for additional details.
See respective directories for additional details about each sub-project.