Skip to content

Remove stray spacing in twig#2596

Merged
tvdijen merged 1 commit intomasterfrom
dv_fix_stray_spaces_twig01
Feb 18, 2026
Merged

Remove stray spacing in twig#2596
tvdijen merged 1 commit intomasterfrom
dv_fix_stray_spaces_twig01

Conversation

@dnmvisser
Copy link
Copy Markdown
Collaborator

the HTML table that is displayed after successfully authenticating has a lot of stray whitespacing in the attrvalue of elements:

<tr class="even">
        <td class="attrname"> <samp>urn:oid:2.5.4.42</samp></td>

    <td class="attrvalue">
                        Dick Visser                    </td>
</tr>
<tr class="odd">
        <td class="attrname"> <samp>urn:oid:0.9.2342.19200300.100.1.3</samp></td>

    <td class="attrvalue">
                        dick.visser@geant.org                    </td>
</tr>

If the DOM is parsed by functional tests, then those fail. This patches cleans it up a bit:

<tr class="even">
    <td class="attrname"><samp>urn:oid:2.5.4.42</samp></td>
    <td class="attrvalue">Dick Visser</td>
</tr>
<tr class="odd">
    <td class="attrname"><samp>urn:oid:0.9.2342.19200300.100.1.3</samp></td>
    <td class="attrvalue">dick.visser@geant.org</td>
</tr>

@tvdijen tvdijen merged commit 5b29918 into master Feb 18, 2026
30 of 32 checks passed
@tvdijen tvdijen deleted the dv_fix_stray_spaces_twig01 branch February 18, 2026 17:27
tvdijen pushed a commit that referenced this pull request Feb 18, 2026
tvdijen pushed a commit that referenced this pull request Feb 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants