Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mkexp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package Registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esmenv
mkexp
Commits
6ecf87d0
Commit
6ecf87d0
authored
1 year ago
by
Karl-Hermann Wieners
Browse files
Options
Downloads
Patches
Plain Diff
mkexp: always expand id for extended namelist groups
parent
b0c69d5e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mkexp
+12
-0
12 additions, 0 deletions
mkexp
with
12 additions
and
0 deletions
mkexp
+
12
−
0
View file @
6ecf87d0
...
...
@@ -222,6 +222,8 @@ def format_namelist(section, group=None, default_value=''):
if
not
line
:
line
=
''
line
=
re
.
sub
(
r
'
^#
'
,
'
!
'
,
line
)
# TODO next line needed to pass tests but questionable.
# See 'Replace id placeholder in namelist groups' below
value
=
eval
(
repr
(
value
).
replace
(
'
%{id}
'
,
group_ident
))
lines
.
write
(
'
'
*
base_indent
+
key
+
'
=
'
+
format_value
(
value
,
indent
)
+
...
...
@@ -583,6 +585,16 @@ for subjob, subconfig in jobs_config.items():
job_config
[
'
VARIABLES_
'
]
=
var_list
for
namelist
,
groups
in
job_config
[
'
namelists
'
].
items
():
if
isinstance
(
groups
,
dict
):
# Replace id placeholder in namelist groups
for
group_id
,
group
in
groups
.
items
():
group_base
,
group_ident
=
expconfig
.
section_key_info
(
group_id
)
if
group_ident
:
for
key
in
group
.
scalars
:
value_repr
=
repr
(
group
[
key
])
if
'
%{id}
'
in
value_repr
:
group
[
key
]
=
eval
(
value_repr
.
replace
(
'
%{id}
'
,
group_ident
))
# Skip hidden namelists
if
is_set
(
groups
.
get
(
'
.hide
'
)):
continue
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment