Discuss w/ upstream #mediawiki why {{#if parser function fails #42
Labels
No labels
agile
anacondawebui
arm
blockerfe
Closed As
Duplicate
Closed As
Fixed
Closed As
Invalid
Closed As
Wontfix
Closed As
Worksforme
coreos
criteria
defect
easyfix
enhancement
iot
meeting
meta
onboarding call
proventesters
retrospective
silverblue
sponsor
test cases
test days
wiki
Backlog Status
Needs Review
Backlog Status
Ready
chore
documentation
points
01
points
02
points
03
points
05
points
08
points
13
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Sprint Status
Blocked
Sprint Status
Done
Sprint Status
In Progress
Sprint Status
Review
Sprint Status
To Do
Technical Debt
Work Item
Bug
Work Item
Epic
Work Item
Spike
Work Item
Task
Work Item
User Story
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
quality/tickets#42
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
From ticket#29, it appears that the {{#if...}} parser function is not working on our wiki. Need to figure out why.
For example, see https://publictest6.fedoraproject.org/wiki/Template:Testresult2
{{{
{{#if: {{{1|}}} |{{bz{{!}}{{{1}}}}}}}
}}}
This fails because of upstream mediawiki bug https://bugzilla.wikimedia.org/show_bug.cgi?id=2257
I have fixed the template [https://fedoraproject.org/wiki/Template:Result Template:Result] to work around the problem for now. Basically, I needed to change the ref tags from ...
{{{
{{{1}}}
}}}
to ...
{{{
{{#tag:ref|{{{1}}} }}
}}}