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
Fix #9343: warn when using HTML instead of IFrame #11350
Conversation
def __init__(self, data=None, url=None, filename=None, metadata=None): | ||
if data and "<iframe " in data and "</iframe>" in data: | ||
warnings.warn("Consider using IPython.display.IFrame instead") | ||
super(HTML, self).__init__(data=data, url=url, filename=filename, metadata=metadata) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're py3 only, so now you can just use super()
@mock.patch('warnings.warn') | ||
def test_encourage_iframe_over_html(m_warn): | ||
display.HTML('<br />') | ||
m_warn.assert_not_called() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I would have use assert_warns
, but that looks good !
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn’t know about that one, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had a look at the link that you posted, it seems specific to pytest, which IPython doesn't use. Did you mean to send this link? Let me know if I misunderstood something.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, yes, sorry, and this I just get confused between test runners.
@@ -666,6 +666,11 @@ def _repr_pretty_(self, pp, cycle): | |||
|
|||
class HTML(TextDisplayObject): | |||
|
|||
def __init__(self, data=None, url=None, filename=None, metadata=None): | |||
if data and "<iframe " in data and "</iframe>" in data: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wondering if we should use startswith
and endswith
that are more efficient and likely more correct, but that looks good.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I had the same thought. There’s a difference between rendering a single iframe vs rendering HTML with an iframe in it. Startswith would be a better idea. We could also account for case differences because HTML is case insensitive.
Let me know if you’d like those changes, or if things are fine as they are.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Up to you. I'll reopen the linked issue add link to this section for further improvements.
Thanks ! |
Hi everyone, I am having trouble on this , I need to use '<iframe srcdoc =' , any suggestions on how to bypass this warning ? |
No description provided.