osd-contiki/apps/webbrowser/html-strings.c
Oliver Schmidt c7b8bac006 Reorganized web page attribute data handling.
- Up to now the web browser used several fixed size arrays to hold the various types attribute data of the web page. This turned out to be way to inflexible for any non-trivial web page. Therefore now all attribute data is stored in a single buffer one after the other as they arrive from the parser only occupying the memory actually needed. This allows for pages with many links with rather short URLs as well as pages with few link with long URLs as well as pages with several simple forms as well as pages with one form with many form inputs.

- Using the actual web page buffer to hold the text buffers of text entry fields was in general a cool idea but in reality it  is often necessary to enter text longer than the size of the text entry field. Therefore the text buffer is now stored in the new unified attribute data buffer.

- Splitting up the process of canonicalizing a link URL and actually navigating to the resulting URL allowed to get rid of the 'tmpurl' buffer used during form submit. Now the form action is canonicalized like a usual link, then the form input name/value pairs are written right into the 'url' buffer and afterwards the navigation is triggered.

- Support for the 'render states' was completely removed. The only actually supported render state was centered output. The new unified attribute buffer would have complicated enumerating all widgets added to the page in order to adjust their position. Therefore I decided to drop the whole feature as the <center> tag is barely used anymore and newer center attributes are to hard to parse.
2013-03-06 16:29:36 +01:00

106 lines
2.5 KiB
C

const char html_slasha[4] =
/* "/a\0" */
{0x2f, 0x61, 00, };
const char html_slashdiv[6] =
/* "/div\0" */
{0x2f, 0x64, 0x69, 0x76, 00, };
const char html_slashform[7] =
/* "/form\0" */
{0x2f, 0x66, 0x6f, 0x72, 0x6d, 00, };
const char html_slashh[4] =
/* "/h\0" */
{0x2f, 0x68, 00, };
const char html_slashscript[9] =
/* "/script\0" */
{0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 00, };
const char html_slashselect[9] =
/* "/select\0" */
{0x2f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 00, };
const char html_slashstyle[8] =
/* "/style\0" */
{0x2f, 0x73, 0x74, 0x79, 0x6c, 0x65, 00, };
const char html_a[3] =
/* "a\0" */
{0x61, 00, };
const char html_body[6] =
/* "body\0" */
{0x62, 0x6f, 0x64, 0x79, 00, };
const char html_br[4] =
/* "br\0" */
{0x62, 0x72, 00, };
const char html_form[6] =
/* "form\0" */
{0x66, 0x6f, 0x72, 0x6d, 00, };
const char html_frame[7] =
/* "frame\0" */
{0x66, 0x72, 0x61, 0x6d, 0x65, 00, };
const char html_h1[4] =
/* "h1\0" */
{0x68, 0x31, 00, };
const char html_h2[4] =
/* "h2\0" */
{0x68, 0x32, 00, };
const char html_h3[4] =
/* "h3\0" */
{0x68, 0x33, 00, };
const char html_h4[4] =
/* "h4\0" */
{0x68, 0x34, 00, };
const char html_img[5] =
/* "img\0" */
{0x69, 0x6d, 0x67, 00, };
const char html_input[7] =
/* "input\0" */
{0x69, 0x6e, 0x70, 0x75, 0x74, 00, };
const char html_li[4] =
/* "li\0" */
{0x6c, 0x69, 00, };
const char html_p[3] =
/* "p\0" */
{0x70, 00, };
const char html_script[8] =
/* "script\0" */
{0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 00, };
const char html_select[8] =
/* "select\0" */
{0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 00, };
const char html_style[7] =
/* "style\0" */
{0x73, 0x74, 0x79, 0x6c, 0x65, 00, };
const char html_tr[4] =
/* "tr\0" */
{0x74, 0x72, 00, };
const char html_href[6] =
/* "href\0" */
{0x68, 0x72, 0x65, 0x66, 00, };
const char html_alt[5] =
/* "alt\0" */
{0x61, 0x6c, 0x74, 00, };
const char html_src[5] =
/* "src\0" */
{0x73, 0x72, 0x63, 00, };
const char html_type[6] =
/* "type\0" */
{0x74, 0x79, 0x70, 0x65, 00, };
const char html_submit[8] =
/* "submit\0" */
{0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 00, };
const char html_value[7] =
/* "value\0" */
{0x76, 0x61, 0x6c, 0x75, 0x65, 00, };
const char html_action[8] =
/* "action\0" */
{0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 00, };
const char html_name[6] =
/* "name\0" */
{0x6e, 0x61, 0x6d, 0x65, 00, };
const char html_text[6] =
/* "text\0" */
{0x74, 0x65, 0x78, 0x74, 00, };
const char html_size[6] =
/* "size\0" */
{0x73, 0x69, 0x7a, 0x65, 00, };
const char html_image[7] =
/* "image\0" */
{0x69, 0x6d, 0x61, 0x67, 0x65, 00, };