You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding (for example) tags AAA and BBB CCC to an AutoTimer via OpenWebif saves correctly to autotimer.xml as
<tag>AAA</tag>
<tag>BBB CCC</tag>
However, the e2tags are ingested by OpenWebif as AAA%20BBB%20CCC -> AAA BBB CCC.
/autotimer/src/AutoTimerConfiguration.py:
# Tags
if webif and timer.tags:
extend((' <e2tags>', stringToXML(' '.join(timer.tags)), '</e2tags>\n'))
else:
for tag in timer.tags:
extend((' <tag>', stringToXML(tag), '</tag>\n'))
The text was updated successfully, but these errors were encountered:
wedebe
added a commit
to wedebe/enigma2-plugins
that referenced
this issue
Mar 22, 2021
Output space-separated tags correctly (oe-alliance#418)
This change outputs autotimer tags individually instead of providing a space-separated list which splits space-separated tags incorrectly.
`<e2tags>` is kept so as not to break existing consumers.
Output space-separated tags correctly (#418)
This change outputs autotimer tags individually instead of providing a space-separated list which splits space-separated tags incorrectly.
`<e2tags>` is kept so as not to break existing consumers.
Adding (for example) tags
AAA
andBBB CCC
to an AutoTimer via OpenWebif saves correctly toautotimer.xml
asHowever, the
e2tags
are ingested by OpenWebif asAAA%20BBB%20CCC
->AAA BBB CCC
./autotimer/src/AutoTimerConfiguration.py
:The text was updated successfully, but these errors were encountered: