Skip to content

ncm-metaconfig: generic: Fix wrapping and indentation in pan #1797

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ bind "/software/components/metaconfig/services/{/a/b/c}/contents" = metaconfig_g

"/software/components/metaconfig/services/{/a/b/c}" = create('metaconfig/generic/multiline',
"contents", list("first", "second", "third"),
);
);
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ bind "/software/components/metaconfig/services/{/a/b/c}/contents" = metaconfig_g

"/software/components/metaconfig/services/{/a/b/c}" = create('metaconfig/generic/multiline',
"contents", list("first", "second", "third"),
);
);
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ prefix "contents/{variable1['some.value']}";
"dictwithdigit" = dict(
"DIGIT10", "abc",
"DIGIT20", "def",
"DIGIT50", "METACONFIG_PHP_CODE_some php code doing something"
);
"DIGIT50", "METACONFIG_PHP_CODE_some php code doing something",
);
"null" = 'METACONFIG_PHP_NULL';
"dictlist" = dict(
"abc", list('def', 'METACONFIG_PHP_NULL'),
"def", list('ghi'),
);
);
"listbool" = list(true, false);
"mixeddict" = dict(
'METACONFIG_PHP_FIRSTELEMENT', 'whatisthis',
'something', 'else',
'METACONFIG_PHP_LASTELEMENT', 'howdoesitevenwork',
);
);
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ bind "/software/components/metaconfig/services/{/a/b/c}/contents" = metaconfig_g

"/software/components/metaconfig/services/{/a/b/c}" = create('metaconfig/generic/string',
"contents", "a very long string\nwith\nnarbitrarysomething\nno eol newline in value",
);
);
Loading