gitextract_l67l6en_/ ├── AUTHORS ├── COPYING ├── ChangeLog ├── Doxyfile ├── Makefile ├── Makefile.options ├── Makefile.options.Linux ├── Makefile.options.Linux.Wayland ├── Makefile.options.MacOS ├── Makefile.options.OpenBSD ├── NEWS ├── README ├── README.md ├── bm.txt ├── config.h ├── d_size.h ├── devdoc/ │ ├── CCCwork.txt │ ├── Cache.txt │ ├── Dillo.txt │ ├── Dpid.txt │ ├── HtmlParser.txt │ ├── IO.txt │ ├── Images.txt │ ├── NC_design.txt │ ├── README │ ├── dw-changes.doc │ ├── dw-fixed-positions.doc │ ├── dw-grows.doc │ ├── dw-images-and-backgrounds.doc │ ├── dw-interrupted-drawing.doc │ ├── dw-layout-views.doc │ ├── dw-layout-widgets.doc │ ├── dw-line-breaking.doc │ ├── dw-map.doc │ ├── dw-miscellaneous.doc │ ├── dw-out-of-flow-floats.doc │ ├── dw-out-of-flow-positioned.doc │ ├── dw-out-of-flow.doc │ ├── dw-overview.doc │ ├── dw-size-request-pos-01.html │ ├── dw-size-request-pos.doc │ ├── dw-stacking-context.doc │ ├── dw-usage.doc │ ├── dw-widget-sizes.doc │ ├── fltk-problems.doc │ ├── index.doc │ ├── lout.doc │ ├── rounding-errors.doc │ └── uml-legend.doc ├── dillo-install-hyphenation ├── dillorc ├── dist/ │ ├── Makefile │ └── dillo-plus.desktop ├── dlib/ │ ├── Makefile │ ├── dlib.c │ └── dlib.h ├── doc/ │ ├── Cookies.txt │ ├── Makefile │ ├── README │ ├── manpage.1.in │ └── user_help.html ├── dpi/ │ ├── Makefile │ ├── bookmarks.c │ ├── cookies.c │ ├── datauri.c │ ├── datauri.c.orig │ ├── downloads.cc │ ├── dpiutil.c │ ├── dpiutil.h │ ├── file.c │ ├── fileutil.c │ ├── fileutil.h │ ├── ftp.c │ ├── gemini.c │ ├── gopher.c │ ├── hello.c │ ├── man.c │ ├── vsource.c │ └── zip.c ├── dpid/ │ ├── Makefile │ ├── TODO │ ├── dpi.c │ ├── dpi.h │ ├── dpi_socket_dir.c │ ├── dpi_socket_dir.h │ ├── dpid-plus.c │ ├── dpid-plus.h │ ├── dpid_common.c │ ├── dpid_common.h │ ├── dpidc-plus.c │ ├── dpidrc.in │ ├── main.c │ ├── main.c.orig │ ├── misc_new.c │ └── misc_new.h ├── dpip/ │ ├── Makefile │ ├── dpip.c │ └── dpip.h ├── dw/ │ ├── Makefile │ ├── alignedtablecell.cc │ ├── alignedtablecell.hh │ ├── alignedtextblock.cc │ ├── alignedtextblock.hh │ ├── bullet.cc │ ├── bullet.hh │ ├── core.hh │ ├── events.hh │ ├── findtext.cc │ ├── findtext.hh │ ├── fltkcomplexbutton.cc │ ├── fltkcomplexbutton.hh │ ├── fltkcore.hh │ ├── fltkflatview.cc │ ├── fltkflatview.hh │ ├── fltkimgbuf.cc │ ├── fltkimgbuf.hh │ ├── fltkmisc.cc │ ├── fltkmisc.hh │ ├── fltkplatform.cc │ ├── fltkplatform.hh │ ├── fltkpreview.cc │ ├── fltkpreview.hh │ ├── fltkui.cc │ ├── fltkui.hh │ ├── fltkviewbase.cc │ ├── fltkviewbase.hh │ ├── fltkviewport.cc │ ├── fltkviewport.hh │ ├── hyphenator.cc │ ├── hyphenator.hh │ ├── image.cc │ ├── image.hh │ ├── imgbuf.hh │ ├── imgrenderer.cc │ ├── imgrenderer.hh │ ├── iterator.cc │ ├── iterator.hh │ ├── layout.cc │ ├── layout.hh │ ├── listitem.cc │ ├── listitem.hh │ ├── oofawarewidget.cc │ ├── oofawarewidget.hh │ ├── oofawarewidget_iterator.cc │ ├── ooffloatsmgr.cc │ ├── ooffloatsmgr.hh │ ├── oofposabslikemgr.cc │ ├── oofposabslikemgr.hh │ ├── oofposabsmgr.cc │ ├── oofposabsmgr.hh │ ├── oofposfixedmgr.cc │ ├── oofposfixedmgr.hh │ ├── oofpositionedmgr.cc │ ├── oofpositionedmgr.hh │ ├── oofposrelmgr.cc │ ├── oofposrelmgr.hh │ ├── outofflowmgr.cc │ ├── outofflowmgr.hh │ ├── platform.hh │ ├── preview.xbm │ ├── regardingborder.cc │ ├── regardingborder.hh │ ├── ruler.cc │ ├── ruler.hh │ ├── selection.cc │ ├── selection.hh │ ├── simpletablecell.cc │ ├── simpletablecell.hh │ ├── stackingcontextmgr.cc │ ├── stackingcontextmgr.hh │ ├── style.cc │ ├── style.hh │ ├── table.cc │ ├── table.hh │ ├── table_iterator.cc │ ├── tablecell.cc │ ├── tablecell.hh │ ├── textblock.cc │ ├── textblock.hh │ ├── textblock_iterator.cc │ ├── textblock_linebreaking.cc │ ├── tools.cc │ ├── tools.hh │ ├── types.cc │ ├── types.hh │ ├── ui.cc │ ├── ui.hh │ ├── view.hh │ ├── widget.cc │ └── widget.hh ├── install-dpi-local ├── install-sh ├── lout/ │ ├── Makefile │ ├── container.cc │ ├── container.hh │ ├── debug.hh │ ├── debug_rtfl.hh │ ├── identity.cc │ ├── identity.hh │ ├── misc.cc │ ├── misc.hh │ ├── msg.h │ ├── object.cc │ ├── object.hh │ ├── signal.cc │ ├── signal.hh │ ├── unicode.cc │ └── unicode.hh ├── pkgs/ │ └── obsd/ │ ├── +DESC │ ├── +REQUIRING │ ├── Makefile │ └── gen_contents.sh ├── src/ │ ├── IO/ │ │ ├── IO.c │ │ ├── IO.h │ │ ├── Makefile │ │ ├── Url.h │ │ ├── about.c │ │ ├── dpi.c │ │ ├── http.c │ │ ├── iowatch.cc │ │ ├── iowatch.hh │ │ ├── mime.c │ │ ├── mime.h │ │ ├── proto.c │ │ ├── tls.c │ │ └── tls.h │ ├── Makefile │ ├── auth.c │ ├── auth.h │ ├── binaryconst.h │ ├── bitvec.c │ ├── bitvec.h │ ├── bm.txt │ ├── bookmark.c │ ├── bookmark.h │ ├── bw.c │ ├── bw.h │ ├── cache.c │ ├── cache.h │ ├── capi.c │ ├── capi.h │ ├── chain.c │ ├── chain.h │ ├── chg │ ├── colors.c │ ├── colors.h │ ├── cookies.c │ ├── cookies.h │ ├── css.cc │ ├── css.hh │ ├── cssparser.cc │ ├── cssparser.hh │ ├── decode.c │ ├── decode.h │ ├── dgif.h │ ├── dialog.cc │ ├── dialog.hh │ ├── dicache.c │ ├── dicache.h │ ├── digest.c │ ├── digest.h │ ├── dillo-plus.cc │ ├── djpeg.h │ ├── dns.c │ ├── dns.h │ ├── doctree.hh │ ├── domain.c │ ├── domain.h │ ├── domainrc │ ├── dpiapi.c │ ├── dpiapi.h │ ├── dpng.h │ ├── findbar.cc │ ├── findbar.hh │ ├── form.cc │ ├── form.hh │ ├── gif.c │ ├── history.c │ ├── history.h │ ├── hsts.c │ ├── hsts.h │ ├── hsts_preload │ ├── html.cc │ ├── html.hh │ ├── html_charrefs.h │ ├── html_common.hh │ ├── image.cc │ ├── image.hh │ ├── imgbuf.cc │ ├── imgbuf.hh │ ├── jpeg.c │ ├── keys.cc │ ├── keys.hh │ ├── keysrc │ ├── klist.c │ ├── klist.h │ ├── list.h │ ├── md5.c │ ├── md5.h │ ├── menu.cc │ ├── menu.hh │ ├── misc.c │ ├── misc.h │ ├── msg.h │ ├── nav.c │ ├── nav.h │ ├── paths.cc │ ├── paths.hh │ ├── pixmaps.alt.h │ ├── pixmaps.h │ ├── pixmaps_classic.h │ ├── plain.cc │ ├── png.c │ ├── prefs.c │ ├── prefs.h │ ├── prefsparser.cc │ ├── prefsparser.hh │ ├── srch │ ├── styleengine.cc │ ├── styleengine.hh │ ├── table.cc │ ├── table.hh │ ├── timeout.cc │ ├── timeout.hh │ ├── tipwin.cc │ ├── tipwin.hh │ ├── ui.cc │ ├── ui.hh │ ├── uicmd.cc │ ├── uicmd.hh │ ├── url.c │ ├── url.h │ ├── utf8.cc │ ├── utf8.hh │ ├── web.cc │ ├── web.hh │ ├── xembed.cc │ └── xembed.hh ├── style.css ├── style.css.orig.full ├── style_reader_mode.css ├── test/ │ ├── Anna_Karenina_1.html │ ├── KHM1-shy.html │ ├── KHM1.html │ ├── KHM1b.html │ ├── KHM1c.html │ ├── Makefile │ ├── anchors.html │ ├── containers.cc │ ├── cookies.c │ ├── dw_anchors_test.cc │ ├── dw_border_test.cc │ ├── dw_example.cc │ ├── dw_find_test.cc │ ├── dw_float_test.cc │ ├── dw_image_background.cc │ ├── dw_images_scaled.cc │ ├── dw_images_scaled2.cc │ ├── dw_images_simple.cc │ ├── dw_imgbuf_mem_test.cc │ ├── dw_links.cc │ ├── dw_links2.cc │ ├── dw_lists.cc │ ├── dw_resource_test.cc │ ├── dw_simple_container.cc │ ├── dw_simple_container.hh │ ├── dw_simple_container_test.cc │ ├── dw_table.cc │ ├── dw_table_aligned.cc │ ├── dw_ui_test.cc │ ├── floats-and-absolute.html │ ├── floats-and-margins.html │ ├── floats-table.html │ ├── floats-worm.html │ ├── floats1.html │ ├── floats2.html │ ├── floats3.html │ ├── floats4.html │ ├── floats5.html │ ├── form.cc │ ├── form.hh │ ├── hyph-de-1996.pat │ ├── hyph-en-us.pat │ ├── hyphenate-nbsp.html │ ├── hyphens-etc.html │ ├── identity.cc │ ├── lang.html │ ├── liang.cc │ ├── notsosimplevector.cc │ ├── shapes.cc │ ├── table-1.html │ ├── table-h1.html │ ├── table-narrow.html │ ├── table-thead-tfoot.html │ ├── trie.cc │ ├── unicode_test.cc │ └── white-space.html └── test_files/ └── page.gmi