diff --git a/sys/include/html.h b/sys/include/html.h index 3e3f9ed19..57d227bf6 100644 --- a/sys/include/html.h +++ b/sys/include/html.h @@ -253,7 +253,6 @@ struct Ifloat int y; /* y coord of top */ uchar side; /* margin it floats to: ALleft or ALright */ uchar infloats; /* true if this has been added to a lay.floats */ - Ifloat* nextfloat; /* in list of floats */ }; diff --git a/sys/src/libhtml/build.c b/sys/src/libhtml/build.c index 50e5b1624..7b99d64a1 100644 --- a/sys/src/libhtml/build.c +++ b/sys/src/libhtml/build.c @@ -54,6 +54,7 @@ struct ItemSource int ntables; int nanchors; int nframes; + Formfield* curfield; Form* curform; Map* curmap; Table* tabstk; @@ -358,6 +359,7 @@ newitemsource(Docinfo* di) is->ntables = 0; is->nanchors = 0; is->nframes = 0; + is->curfield = nil; is->curform = nil; is->curmap = nil; is->tabstk = nil; @@ -365,6 +367,62 @@ newitemsource(Docinfo* di) return is; } +static void +linkitems(Docinfo *di, Item *it) +{ + Formfield *ff; + Tablecell *c; + Table *tt; + + while(it != nil){ + switch(it->tag) { + case Iimagetag: + /* link image to docinfo */ + ((Iimage*)it)->nextimage = di->images; + di->images = (Iimage*)it; + break; + case Iformfieldtag: + /* link formfield to form */ + ff = ((Iformfield*)it)->formfield; + if(ff != nil && ff->form != nil){ + for(ff = ff->form->fields; ff != nil; ff = ff->next){ + if(ff == ((Iformfield*)it)->formfield) + goto Next; + if(ff->next == nil) + break; + } + ((Iformfield*)it)->formfield->next = nil; + if(ff != nil){ + ff->next = ((Iformfield*)it)->formfield; + ff = ff->next; + } else { + ff = ((Iformfield*)it)->formfield; + ff->form->fields = ff; + } + linkitems(di, ff->image); + } + break; + case Itabletag: + /* link table to docinfo */ + tt = ((Itable*)it)->table; + if(tt == nil) + break; + tt->tabletok = nil; + tt->next = di->tables; + di->tables = tt; + linkitems(di, tt->caption); + for(c = tt->cells; c != nil; c = c->next) + linkitems(di, c->content); + break; + case Ifloattag: + linkitems(di, ((Ifloat*)it)->item); + break; + } + Next: + it = it->next; + } +} + static Item *getitems(ItemSource* is, uchar* data, int datalen); // Parse an html document and create a list of layout items. @@ -453,7 +511,6 @@ getitems(ItemSource* is, uchar* data, int datalen) Rune* script; Map* map; Form* frm; - Iimage* ii; Kidinfo* kd; Kidinfo* ks; Kidinfo* pks; @@ -693,19 +750,9 @@ getitems(ItemSource* is, uchar* data, int datalen) bg = makebackground(nil, acolorval(tok, Abgcolor, di->background.color)); bgurl = aurlval(tok, Abackground, nil, di->base); if(bgurl != nil) { - if(di->backgrounditem != nil){ - Iimage **ii; - for(ii=&di->images; *ii != nil; ii = &((*ii)->nextimage)){ - if(*ii == di->backgrounditem){ - *ii = di->backgrounditem->nextimage; - break; - } - } + if(di->backgrounditem != nil) freeitem(di->backgrounditem); - } di->backgrounditem = (Iimage*)newiimage(bgurl, nil, ALnone, 0, 0, 0, 0, 0, 0, nil); - di->backgrounditem->nextimage = di->images; - di->images = di->backgrounditem; } ps->curbg = bg; di->background = bg; @@ -902,8 +949,6 @@ getitems(ItemSource* is, uchar* data, int datalen) fprint(2, "warning: unexpected \n"); continue; } - // put fields back in input order - is->curform->fields = (Formfield*)_revlist((List*)is->curform->fields); is->curform = nil; break; @@ -1092,10 +1137,6 @@ getitems(ItemSource* is, uchar* data, int datalen) ps->skipwhite = 0; additem(ps, img, tok); } - if(!ps->skipping) { - ((Iimage*)img)->nextimage = di->images; - di->images = (Iimage*)img; - } ps->curanchor = oldcuranchor; break; @@ -1107,7 +1148,7 @@ getitems(ItemSource* is, uchar* data, int datalen) fprint(2, " not inside