Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt WebKit
  4. QWebFrame::toHtml() is encoding <> automatically!

QWebFrame::toHtml() is encoding <> automatically!

Scheduled Pinned Locked Moved Qt WebKit
2 Posts 2 Posters 1.2k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    c0debreak
    wrote on last edited by
    #1

    Below is a testing php script,

    @<?php
    echo $_GET['abc'], "<br/>";
    echo htmlentities($_GET['abc']);
    ?>@

    If I retrieve the contents of that page with chromium browser, showing the source code reveals contents like this:

    @<><br/>& lt;& gt;@ (Remove the "space")

    But with QWebFrame::toHtml(), all <> are encoded, and I got:

    @<html><head></head><body>& lt;& gt;<br>& lt;& gt; </body></html>@
    (Remove the space!)

    So clearly createMarkup encoded them, can I stop that behavior?

    1 Reply Last reply
    0
    • raven-worxR Offline
      raven-worxR Offline
      raven-worx
      Moderators
      wrote on last edited by
      #2

      according to QWebFrame's implementation there is no way ... at least with the toHtml()-method.

      --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
      If you have a question please use the forum so others can benefit from the solution in the future

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved