[Bug 76] gcjwebplugin AppletViewer HTML parsing: incorrect value for width/height attribute "100%"

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Mon Dec 3 16:23:44 PST 2007


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=76





------- Comment #2 from jarkko.lietolahti at jab.fi  2007-12-04 00:23 -------
In gcjwebplugin.cc there's a code block that could be suitable for doing the
transformation from 100% --> real value. 

It seems to have all the required information present.

gcjwebplugin.cc
  // The last plugin window width sent to us by the browser.
  guint32 window_width;
  // The last plugin window height sent to us by the browser.
  guint32 window_height;


// Build up the applet tag string that we'll send to the applet
// viewer.
static gchar*
plugin_create_applet_tag (int16 argc, char* argn[], char* argv[])
{

...

   else if (!g_ascii_strcasecmp (argn[i], "width"))
        {
          gchar* width = g_strdup_printf ("WIDTH=\"%s\" ", argv[i]);
          applet_tag = g_strconcat (applet_tag, width, NULL);
          g_free (width);
          width = NULL;
        }

Just check if argv[i] ends in % and do little calculation and voila.
And same thing for the height.


-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the distro-pkg-dev mailing list