Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Intro

The Ryzom ingame browser is currently build on LibWWW. It supports the major html tags, however not all!

...


    <INPUT>   (<input type="image|button|submit|text|checkbox|hidden" alt="tooltip" name="" src="" value="" size="" checked="checked">)
        name = "value0"                        // The name of the form input
        type = "text"                        // Type of form input. Can be button, text, image, hidden or checkbox.
        src = "button.gif"                    // If type==image, The image filename, see <IMG>for restrictions
        size = "100"                        // If type==text, The edit box width in pixels
        checked = "anything"                // If type==checkbox, the checkbox will be checked
        value = "value"                        // Use for hidden
        alt = "uiGo"                        // Tooltip text (not localized, CI18N string id) used for buttons (type == image or type == checkbox)
        global_color                        // global color flag. If set, the button bitmap will be modulated by the interface global color.
        z_btn_tmpl="template_name"            // (deprecated, use z_input_tmpl instead) if type==button, used to specify the ryzom interface template to use for the button, this allow to customize each button (NB : the template must exist in the client xml files)
        z_input_tmpl="template_name"        // if type==button|text|checkbox, used to specify the ryzom interface template to use for the widget, this allow to customize each widget (NB : the template must exist in the client xml files)
        z_input_width="template_name"        // if type==button|text|checkbox, used to specify the minimal witdh of the widget (cool to line up widget)

    <TEXTAREA>
        name = "value0"                        // The name of the form input
        cols = "10"                            // Number of text columns
        z_input_tmpl="template_name"        // if type==button|text|checkbox, used to specify the ryzom interface template to use for the widget, this allow to customize each widget (NB : the template must exist in the client xml files)
        z_input_width="template_name"        // if type==button|text|checkbox, used to specify the minimal witdh of the widget (cool to line up widget)

    <SELECT name="selectName">                // a combo box that return selected value in 'selecteName' var
        <OPTION    value = "valueName" [selected="selected"]>content</OPTION> // one or more option element with optionnaly one haveing the 'selected' attribute
    </SELECT>        

Tables

<TABLE>                                    // Table
    width = "100"                        // Fixed width
    width = "50%"                        // Variable width
    height = "15"                        // Fixed height
    border = "1"                        // Border width (can't be colored, always transparent)
    cellspacing = "1"                    // Cell spacing width (can't be colored, always transparent)
    cellpadding = "1"                    // Cell padding width (can't be colored, always transparent)
    bgcolor    = "#RRGGBB[AA]"                // Cell background color and optional alpha
    align = "left"                        // Cell horizontal alignment (left, center or right)
    valign = "top"                        // Cell vertical alignment (top, middle or bottom)
    nowrap                                // Don't wrap he text
    <TR>
        bgcolor    = "#RRGGBB[AA]"                // Cell background color and optional alpha
        align = "left"                        // Cell horizontal alignment (left, center or right)
        valign = "top"                        // Cell vertical alignment (top, middle or bottom)
        nowrap                                // Don't wrap he text
        <TD>  (eq <td style="background-repeat:;background-scale:;background-image:url();" width="" height="">)
            width = "100"                        // Fixed width
            width = "50%"                        // Variable width
            height = "15"                        // Fixed height
            bgcolor    = "#RRGGBB[AA]"                // Cell background color and optional alpha
            align = "left"                        // Cell horizontal alignment (left, center or right)
            valign = "top"                        // Cell vertical alignment (top, middle or bottom)
            nowrap                                // Don't wrap he text

Special

...

<LUA>luascript</LUA>                    // execute the enclosed lua script immediately. NB : this is NOT like javascript, you can't affect the page content or detect button event.

...

<object type="" data="" id="" vlaue="" standby=""> trused domain only -> application/ryzom-data 

 

Shortcomings

  • There seems to be no Bold <b> or <strong> working, this can be solved by using a font size or h*.
  • They say that the <i> tag should work, however it renders <NotExisting:> instead of making the text italic.