├── .github └── workflows │ ├── release_w_artifacts_18.04.yml │ └── release_w_artifacts_20.04.yml ├── .hgignore ├── .rtfl ├── AUTHORS ├── COPYING ├── ChangeLog ├── Doxyfile ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README.md ├── autogen.sh ├── configure.ac ├── 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-example-screenshot.png ├── dw-fixed-positions.doc ├── dw-floats-01.png ├── dw-grows.doc ├── dw-images-and-backgrounds.doc ├── dw-interrupted-drawing-1.png ├── dw-interrupted-drawing-2.png ├── dw-interrupted-drawing-2.svg ├── 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-of-widget.png ├── dw-size-request-pos-01.html ├── dw-size-request-pos-01.png ├── dw-size-request-pos.doc ├── dw-stacking-context.doc ├── dw-style-box-model.png ├── dw-style-length-absolute.png ├── dw-style-length-percentage.png ├── dw-style-length-relative.png ├── dw-textblock-collapsing-spaces-1-1.png ├── dw-textblock-collapsing-spaces-1-2.png ├── dw-textblock-collapsing-spaces-2-1.png ├── dw-textblock-collapsing-spaces-2-2.png ├── dw-usage.doc ├── dw-viewport-with-scrollbar.png ├── dw-viewport-without-scrollbar.png ├── dw-widget-sizes.doc ├── fltk-problems.doc ├── index.doc ├── lout.doc ├── not-so-simple-container.png ├── not-so-simple-container.svg ├── rounding-errors.doc └── uml-legend.doc ├── dillo-install-hyphenation ├── dillorc ├── dist ├── Makefile.am ├── dillo.desktop └── icons │ ├── Makefile.am │ └── dillo.png ├── dlib ├── Makefile.am ├── dlib.c └── dlib.h ├── doc ├── Cookies.txt ├── Makefile.am ├── README ├── db1.png ├── db2.png ├── dillo.1.in ├── speeddial.html ├── speeddial_icons │ ├── 68k.png │ ├── Makefile.am │ ├── alterslash.png │ ├── dillo.png │ ├── kavin.png │ ├── liliputing.png │ ├── puppylinux.png │ ├── ted.png │ ├── wiby.png │ ├── wikipedia.png │ └── wttr.png └── user_help.html ├── dpi ├── Makefile.am ├── bookmarks.c ├── cookies.c ├── datauri.c ├── downloads.cc ├── dpiutil.c ├── dpiutil.h ├── file.c ├── ftp.c ├── hello.c └── vsource.c ├── dpid ├── Makefile.am ├── TODO ├── dpi.c ├── dpi.h ├── dpi_socket_dir.c ├── dpi_socket_dir.h ├── dpid.c ├── dpid.h ├── dpid_common.c ├── dpid_common.h ├── dpidc.c ├── dpidrc.in ├── main.c ├── misc_new.c └── misc_new.h ├── dpip ├── Makefile.am ├── dpip.c └── dpip.h ├── dw ├── Makefile.am ├── 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 ├── lout ├── Makefile.am ├── 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 ├── screenshots ├── main.jpg ├── media_playing.png └── speeddial.jpg ├── src ├── IO │ ├── IO.c │ ├── IO.h │ ├── Makefile.am │ ├── Url.h │ ├── about.c │ ├── dpi.c │ ├── http.c │ ├── iowatch.cc │ ├── iowatch.hh │ ├── mime.c │ ├── mime.h │ ├── proto.c │ ├── tls.c │ └── tls.h ├── Makefile.am ├── 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.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.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 └── test ├── Anna_Karenina_1.html ├── KHM1-shy.html ├── KHM1.html ├── KHM1b.html ├── KHM1c.html ├── Makefile.am ├── 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 ├── trie.cc ├── unicode_test.cc └── white-space.html /.github/workflows/release_w_artifacts_18.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/.github/workflows/release_w_artifacts_18.04.yml -------------------------------------------------------------------------------- /.github/workflows/release_w_artifacts_20.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/.github/workflows/release_w_artifacts_20.04.yml -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/.hgignore -------------------------------------------------------------------------------- /.rtfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/.rtfl -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/Doxyfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/configure.ac -------------------------------------------------------------------------------- /d_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/d_size.h -------------------------------------------------------------------------------- /devdoc/CCCwork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/CCCwork.txt -------------------------------------------------------------------------------- /devdoc/Cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/Cache.txt -------------------------------------------------------------------------------- /devdoc/Dillo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/Dillo.txt -------------------------------------------------------------------------------- /devdoc/Dpid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/Dpid.txt -------------------------------------------------------------------------------- /devdoc/HtmlParser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/HtmlParser.txt -------------------------------------------------------------------------------- /devdoc/IO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/IO.txt -------------------------------------------------------------------------------- /devdoc/Images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/Images.txt -------------------------------------------------------------------------------- /devdoc/NC_design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/NC_design.txt -------------------------------------------------------------------------------- /devdoc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/README -------------------------------------------------------------------------------- /devdoc/dw-changes.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-changes.doc -------------------------------------------------------------------------------- /devdoc/dw-example-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-example-screenshot.png -------------------------------------------------------------------------------- /devdoc/dw-fixed-positions.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-fixed-positions.doc -------------------------------------------------------------------------------- /devdoc/dw-floats-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-floats-01.png -------------------------------------------------------------------------------- /devdoc/dw-grows.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-grows.doc -------------------------------------------------------------------------------- /devdoc/dw-images-and-backgrounds.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-images-and-backgrounds.doc -------------------------------------------------------------------------------- /devdoc/dw-interrupted-drawing-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-interrupted-drawing-1.png -------------------------------------------------------------------------------- /devdoc/dw-interrupted-drawing-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-interrupted-drawing-2.png -------------------------------------------------------------------------------- /devdoc/dw-interrupted-drawing-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-interrupted-drawing-2.svg -------------------------------------------------------------------------------- /devdoc/dw-interrupted-drawing.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-interrupted-drawing.doc -------------------------------------------------------------------------------- /devdoc/dw-layout-views.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-layout-views.doc -------------------------------------------------------------------------------- /devdoc/dw-layout-widgets.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-layout-widgets.doc -------------------------------------------------------------------------------- /devdoc/dw-line-breaking.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-line-breaking.doc -------------------------------------------------------------------------------- /devdoc/dw-map.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-map.doc -------------------------------------------------------------------------------- /devdoc/dw-miscellaneous.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-miscellaneous.doc -------------------------------------------------------------------------------- /devdoc/dw-out-of-flow-floats.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-out-of-flow-floats.doc -------------------------------------------------------------------------------- /devdoc/dw-out-of-flow-positioned.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-out-of-flow-positioned.doc -------------------------------------------------------------------------------- /devdoc/dw-out-of-flow.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-out-of-flow.doc -------------------------------------------------------------------------------- /devdoc/dw-overview.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-overview.doc -------------------------------------------------------------------------------- /devdoc/dw-size-of-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-size-of-widget.png -------------------------------------------------------------------------------- /devdoc/dw-size-request-pos-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-size-request-pos-01.html -------------------------------------------------------------------------------- /devdoc/dw-size-request-pos-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-size-request-pos-01.png -------------------------------------------------------------------------------- /devdoc/dw-size-request-pos.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-size-request-pos.doc -------------------------------------------------------------------------------- /devdoc/dw-stacking-context.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-stacking-context.doc -------------------------------------------------------------------------------- /devdoc/dw-style-box-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-style-box-model.png -------------------------------------------------------------------------------- /devdoc/dw-style-length-absolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-style-length-absolute.png -------------------------------------------------------------------------------- /devdoc/dw-style-length-percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-style-length-percentage.png -------------------------------------------------------------------------------- /devdoc/dw-style-length-relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-style-length-relative.png -------------------------------------------------------------------------------- /devdoc/dw-textblock-collapsing-spaces-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-textblock-collapsing-spaces-1-1.png -------------------------------------------------------------------------------- /devdoc/dw-textblock-collapsing-spaces-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-textblock-collapsing-spaces-1-2.png -------------------------------------------------------------------------------- /devdoc/dw-textblock-collapsing-spaces-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-textblock-collapsing-spaces-2-1.png -------------------------------------------------------------------------------- /devdoc/dw-textblock-collapsing-spaces-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-textblock-collapsing-spaces-2-2.png -------------------------------------------------------------------------------- /devdoc/dw-usage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-usage.doc -------------------------------------------------------------------------------- /devdoc/dw-viewport-with-scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-viewport-with-scrollbar.png -------------------------------------------------------------------------------- /devdoc/dw-viewport-without-scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-viewport-without-scrollbar.png -------------------------------------------------------------------------------- /devdoc/dw-widget-sizes.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/dw-widget-sizes.doc -------------------------------------------------------------------------------- /devdoc/fltk-problems.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/fltk-problems.doc -------------------------------------------------------------------------------- /devdoc/index.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/index.doc -------------------------------------------------------------------------------- /devdoc/lout.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/lout.doc -------------------------------------------------------------------------------- /devdoc/not-so-simple-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/not-so-simple-container.png -------------------------------------------------------------------------------- /devdoc/not-so-simple-container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/not-so-simple-container.svg -------------------------------------------------------------------------------- /devdoc/rounding-errors.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/rounding-errors.doc -------------------------------------------------------------------------------- /devdoc/uml-legend.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/devdoc/uml-legend.doc -------------------------------------------------------------------------------- /dillo-install-hyphenation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dillo-install-hyphenation -------------------------------------------------------------------------------- /dillorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dillorc -------------------------------------------------------------------------------- /dist/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dist/Makefile.am -------------------------------------------------------------------------------- /dist/dillo.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dist/dillo.desktop -------------------------------------------------------------------------------- /dist/icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dist/icons/Makefile.am -------------------------------------------------------------------------------- /dist/icons/dillo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dist/icons/dillo.png -------------------------------------------------------------------------------- /dlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dlib/Makefile.am -------------------------------------------------------------------------------- /dlib/dlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dlib/dlib.c -------------------------------------------------------------------------------- /dlib/dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dlib/dlib.h -------------------------------------------------------------------------------- /doc/Cookies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/Cookies.txt -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/README -------------------------------------------------------------------------------- /doc/db1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/db1.png -------------------------------------------------------------------------------- /doc/db2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/db2.png -------------------------------------------------------------------------------- /doc/dillo.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/dillo.1.in -------------------------------------------------------------------------------- /doc/speeddial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial.html -------------------------------------------------------------------------------- /doc/speeddial_icons/68k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/68k.png -------------------------------------------------------------------------------- /doc/speeddial_icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/Makefile.am -------------------------------------------------------------------------------- /doc/speeddial_icons/alterslash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/alterslash.png -------------------------------------------------------------------------------- /doc/speeddial_icons/dillo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/dillo.png -------------------------------------------------------------------------------- /doc/speeddial_icons/kavin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/kavin.png -------------------------------------------------------------------------------- /doc/speeddial_icons/liliputing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/liliputing.png -------------------------------------------------------------------------------- /doc/speeddial_icons/puppylinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/puppylinux.png -------------------------------------------------------------------------------- /doc/speeddial_icons/ted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/ted.png -------------------------------------------------------------------------------- /doc/speeddial_icons/wiby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/wiby.png -------------------------------------------------------------------------------- /doc/speeddial_icons/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/wikipedia.png -------------------------------------------------------------------------------- /doc/speeddial_icons/wttr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/speeddial_icons/wttr.png -------------------------------------------------------------------------------- /doc/user_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/doc/user_help.html -------------------------------------------------------------------------------- /dpi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/Makefile.am -------------------------------------------------------------------------------- /dpi/bookmarks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/bookmarks.c -------------------------------------------------------------------------------- /dpi/cookies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/cookies.c -------------------------------------------------------------------------------- /dpi/datauri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/datauri.c -------------------------------------------------------------------------------- /dpi/downloads.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/downloads.cc -------------------------------------------------------------------------------- /dpi/dpiutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/dpiutil.c -------------------------------------------------------------------------------- /dpi/dpiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/dpiutil.h -------------------------------------------------------------------------------- /dpi/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/file.c -------------------------------------------------------------------------------- /dpi/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/ftp.c -------------------------------------------------------------------------------- /dpi/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/hello.c -------------------------------------------------------------------------------- /dpi/vsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpi/vsource.c -------------------------------------------------------------------------------- /dpid/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/Makefile.am -------------------------------------------------------------------------------- /dpid/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/TODO -------------------------------------------------------------------------------- /dpid/dpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpi.c -------------------------------------------------------------------------------- /dpid/dpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpi.h -------------------------------------------------------------------------------- /dpid/dpi_socket_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpi_socket_dir.c -------------------------------------------------------------------------------- /dpid/dpi_socket_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpi_socket_dir.h -------------------------------------------------------------------------------- /dpid/dpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpid.c -------------------------------------------------------------------------------- /dpid/dpid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpid.h -------------------------------------------------------------------------------- /dpid/dpid_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpid_common.c -------------------------------------------------------------------------------- /dpid/dpid_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpid_common.h -------------------------------------------------------------------------------- /dpid/dpidc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpidc.c -------------------------------------------------------------------------------- /dpid/dpidrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/dpidrc.in -------------------------------------------------------------------------------- /dpid/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/main.c -------------------------------------------------------------------------------- /dpid/misc_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/misc_new.c -------------------------------------------------------------------------------- /dpid/misc_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpid/misc_new.h -------------------------------------------------------------------------------- /dpip/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpip/Makefile.am -------------------------------------------------------------------------------- /dpip/dpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpip/dpip.c -------------------------------------------------------------------------------- /dpip/dpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dpip/dpip.h -------------------------------------------------------------------------------- /dw/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/Makefile.am -------------------------------------------------------------------------------- /dw/alignedtablecell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/alignedtablecell.cc -------------------------------------------------------------------------------- /dw/alignedtablecell.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/alignedtablecell.hh -------------------------------------------------------------------------------- /dw/alignedtextblock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/alignedtextblock.cc -------------------------------------------------------------------------------- /dw/alignedtextblock.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/alignedtextblock.hh -------------------------------------------------------------------------------- /dw/bullet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/bullet.cc -------------------------------------------------------------------------------- /dw/bullet.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/bullet.hh -------------------------------------------------------------------------------- /dw/core.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/core.hh -------------------------------------------------------------------------------- /dw/events.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/events.hh -------------------------------------------------------------------------------- /dw/findtext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/findtext.cc -------------------------------------------------------------------------------- /dw/findtext.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/findtext.hh -------------------------------------------------------------------------------- /dw/fltkcomplexbutton.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkcomplexbutton.cc -------------------------------------------------------------------------------- /dw/fltkcomplexbutton.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkcomplexbutton.hh -------------------------------------------------------------------------------- /dw/fltkcore.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkcore.hh -------------------------------------------------------------------------------- /dw/fltkflatview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkflatview.cc -------------------------------------------------------------------------------- /dw/fltkflatview.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkflatview.hh -------------------------------------------------------------------------------- /dw/fltkimgbuf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkimgbuf.cc -------------------------------------------------------------------------------- /dw/fltkimgbuf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkimgbuf.hh -------------------------------------------------------------------------------- /dw/fltkmisc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkmisc.cc -------------------------------------------------------------------------------- /dw/fltkmisc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkmisc.hh -------------------------------------------------------------------------------- /dw/fltkplatform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkplatform.cc -------------------------------------------------------------------------------- /dw/fltkplatform.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkplatform.hh -------------------------------------------------------------------------------- /dw/fltkpreview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkpreview.cc -------------------------------------------------------------------------------- /dw/fltkpreview.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkpreview.hh -------------------------------------------------------------------------------- /dw/fltkui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkui.cc -------------------------------------------------------------------------------- /dw/fltkui.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkui.hh -------------------------------------------------------------------------------- /dw/fltkviewbase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkviewbase.cc -------------------------------------------------------------------------------- /dw/fltkviewbase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkviewbase.hh -------------------------------------------------------------------------------- /dw/fltkviewport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkviewport.cc -------------------------------------------------------------------------------- /dw/fltkviewport.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/fltkviewport.hh -------------------------------------------------------------------------------- /dw/hyphenator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/hyphenator.cc -------------------------------------------------------------------------------- /dw/hyphenator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/hyphenator.hh -------------------------------------------------------------------------------- /dw/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/image.cc -------------------------------------------------------------------------------- /dw/image.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/image.hh -------------------------------------------------------------------------------- /dw/imgbuf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/imgbuf.hh -------------------------------------------------------------------------------- /dw/imgrenderer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/imgrenderer.cc -------------------------------------------------------------------------------- /dw/imgrenderer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/imgrenderer.hh -------------------------------------------------------------------------------- /dw/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/iterator.cc -------------------------------------------------------------------------------- /dw/iterator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/iterator.hh -------------------------------------------------------------------------------- /dw/layout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/layout.cc -------------------------------------------------------------------------------- /dw/layout.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/layout.hh -------------------------------------------------------------------------------- /dw/listitem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/listitem.cc -------------------------------------------------------------------------------- /dw/listitem.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/listitem.hh -------------------------------------------------------------------------------- /dw/oofawarewidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofawarewidget.cc -------------------------------------------------------------------------------- /dw/oofawarewidget.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofawarewidget.hh -------------------------------------------------------------------------------- /dw/oofawarewidget_iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofawarewidget_iterator.cc -------------------------------------------------------------------------------- /dw/ooffloatsmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/ooffloatsmgr.cc -------------------------------------------------------------------------------- /dw/ooffloatsmgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/ooffloatsmgr.hh -------------------------------------------------------------------------------- /dw/oofposabslikemgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofposabslikemgr.cc -------------------------------------------------------------------------------- /dw/oofposabslikemgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofposabslikemgr.hh -------------------------------------------------------------------------------- /dw/oofposabsmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofposabsmgr.cc -------------------------------------------------------------------------------- /dw/oofposabsmgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofposabsmgr.hh -------------------------------------------------------------------------------- /dw/oofposfixedmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofposfixedmgr.cc -------------------------------------------------------------------------------- /dw/oofposfixedmgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofposfixedmgr.hh -------------------------------------------------------------------------------- /dw/oofpositionedmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofpositionedmgr.cc -------------------------------------------------------------------------------- /dw/oofpositionedmgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofpositionedmgr.hh -------------------------------------------------------------------------------- /dw/oofposrelmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofposrelmgr.cc -------------------------------------------------------------------------------- /dw/oofposrelmgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/oofposrelmgr.hh -------------------------------------------------------------------------------- /dw/outofflowmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/outofflowmgr.cc -------------------------------------------------------------------------------- /dw/outofflowmgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/outofflowmgr.hh -------------------------------------------------------------------------------- /dw/platform.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/platform.hh -------------------------------------------------------------------------------- /dw/preview.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/preview.xbm -------------------------------------------------------------------------------- /dw/regardingborder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/regardingborder.cc -------------------------------------------------------------------------------- /dw/regardingborder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/regardingborder.hh -------------------------------------------------------------------------------- /dw/ruler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/ruler.cc -------------------------------------------------------------------------------- /dw/ruler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/ruler.hh -------------------------------------------------------------------------------- /dw/selection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/selection.cc -------------------------------------------------------------------------------- /dw/selection.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/selection.hh -------------------------------------------------------------------------------- /dw/simpletablecell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/simpletablecell.cc -------------------------------------------------------------------------------- /dw/simpletablecell.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/simpletablecell.hh -------------------------------------------------------------------------------- /dw/stackingcontextmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/stackingcontextmgr.cc -------------------------------------------------------------------------------- /dw/stackingcontextmgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/stackingcontextmgr.hh -------------------------------------------------------------------------------- /dw/style.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/style.cc -------------------------------------------------------------------------------- /dw/style.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/style.hh -------------------------------------------------------------------------------- /dw/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/table.cc -------------------------------------------------------------------------------- /dw/table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/table.hh -------------------------------------------------------------------------------- /dw/table_iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/table_iterator.cc -------------------------------------------------------------------------------- /dw/tablecell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/tablecell.cc -------------------------------------------------------------------------------- /dw/tablecell.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/tablecell.hh -------------------------------------------------------------------------------- /dw/textblock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/textblock.cc -------------------------------------------------------------------------------- /dw/textblock.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/textblock.hh -------------------------------------------------------------------------------- /dw/textblock_iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/textblock_iterator.cc -------------------------------------------------------------------------------- /dw/textblock_linebreaking.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/textblock_linebreaking.cc -------------------------------------------------------------------------------- /dw/tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/tools.cc -------------------------------------------------------------------------------- /dw/tools.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/tools.hh -------------------------------------------------------------------------------- /dw/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/types.cc -------------------------------------------------------------------------------- /dw/types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/types.hh -------------------------------------------------------------------------------- /dw/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/ui.cc -------------------------------------------------------------------------------- /dw/ui.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/ui.hh -------------------------------------------------------------------------------- /dw/view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/view.hh -------------------------------------------------------------------------------- /dw/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/widget.cc -------------------------------------------------------------------------------- /dw/widget.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/dw/widget.hh -------------------------------------------------------------------------------- /install-dpi-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/install-dpi-local -------------------------------------------------------------------------------- /lout/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/Makefile.am -------------------------------------------------------------------------------- /lout/container.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/container.cc -------------------------------------------------------------------------------- /lout/container.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/container.hh -------------------------------------------------------------------------------- /lout/debug.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/debug.hh -------------------------------------------------------------------------------- /lout/debug_rtfl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/debug_rtfl.hh -------------------------------------------------------------------------------- /lout/identity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/identity.cc -------------------------------------------------------------------------------- /lout/identity.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/identity.hh -------------------------------------------------------------------------------- /lout/misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/misc.cc -------------------------------------------------------------------------------- /lout/misc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/misc.hh -------------------------------------------------------------------------------- /lout/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/msg.h -------------------------------------------------------------------------------- /lout/object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/object.cc -------------------------------------------------------------------------------- /lout/object.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/object.hh -------------------------------------------------------------------------------- /lout/signal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/signal.cc -------------------------------------------------------------------------------- /lout/signal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/signal.hh -------------------------------------------------------------------------------- /lout/unicode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/unicode.cc -------------------------------------------------------------------------------- /lout/unicode.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/lout/unicode.hh -------------------------------------------------------------------------------- /screenshots/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/screenshots/main.jpg -------------------------------------------------------------------------------- /screenshots/media_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/screenshots/media_playing.png -------------------------------------------------------------------------------- /screenshots/speeddial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/screenshots/speeddial.jpg -------------------------------------------------------------------------------- /src/IO/IO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/IO.c -------------------------------------------------------------------------------- /src/IO/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/IO.h -------------------------------------------------------------------------------- /src/IO/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/Makefile.am -------------------------------------------------------------------------------- /src/IO/Url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/Url.h -------------------------------------------------------------------------------- /src/IO/about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/about.c -------------------------------------------------------------------------------- /src/IO/dpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/dpi.c -------------------------------------------------------------------------------- /src/IO/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/http.c -------------------------------------------------------------------------------- /src/IO/iowatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/iowatch.cc -------------------------------------------------------------------------------- /src/IO/iowatch.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/iowatch.hh -------------------------------------------------------------------------------- /src/IO/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/mime.c -------------------------------------------------------------------------------- /src/IO/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/mime.h -------------------------------------------------------------------------------- /src/IO/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/proto.c -------------------------------------------------------------------------------- /src/IO/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/tls.c -------------------------------------------------------------------------------- /src/IO/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/IO/tls.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/auth.c -------------------------------------------------------------------------------- /src/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/auth.h -------------------------------------------------------------------------------- /src/binaryconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/binaryconst.h -------------------------------------------------------------------------------- /src/bitvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/bitvec.c -------------------------------------------------------------------------------- /src/bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/bitvec.h -------------------------------------------------------------------------------- /src/bm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/bm.txt -------------------------------------------------------------------------------- /src/bookmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/bookmark.c -------------------------------------------------------------------------------- /src/bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/bookmark.h -------------------------------------------------------------------------------- /src/bw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/bw.c -------------------------------------------------------------------------------- /src/bw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/bw.h -------------------------------------------------------------------------------- /src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/cache.c -------------------------------------------------------------------------------- /src/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/cache.h -------------------------------------------------------------------------------- /src/capi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/capi.c -------------------------------------------------------------------------------- /src/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/capi.h -------------------------------------------------------------------------------- /src/chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/chain.c -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/chg -------------------------------------------------------------------------------- /src/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/colors.c -------------------------------------------------------------------------------- /src/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/colors.h -------------------------------------------------------------------------------- /src/cookies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/cookies.c -------------------------------------------------------------------------------- /src/cookies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/cookies.h -------------------------------------------------------------------------------- /src/css.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/css.cc -------------------------------------------------------------------------------- /src/css.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/css.hh -------------------------------------------------------------------------------- /src/cssparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/cssparser.cc -------------------------------------------------------------------------------- /src/cssparser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/cssparser.hh -------------------------------------------------------------------------------- /src/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/decode.c -------------------------------------------------------------------------------- /src/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/decode.h -------------------------------------------------------------------------------- /src/dgif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dgif.h -------------------------------------------------------------------------------- /src/dialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dialog.cc -------------------------------------------------------------------------------- /src/dialog.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dialog.hh -------------------------------------------------------------------------------- /src/dicache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dicache.c -------------------------------------------------------------------------------- /src/dicache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dicache.h -------------------------------------------------------------------------------- /src/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/digest.c -------------------------------------------------------------------------------- /src/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/digest.h -------------------------------------------------------------------------------- /src/dillo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dillo.cc -------------------------------------------------------------------------------- /src/djpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/djpeg.h -------------------------------------------------------------------------------- /src/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dns.c -------------------------------------------------------------------------------- /src/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dns.h -------------------------------------------------------------------------------- /src/doctree.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/doctree.hh -------------------------------------------------------------------------------- /src/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/domain.c -------------------------------------------------------------------------------- /src/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/domain.h -------------------------------------------------------------------------------- /src/domainrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/domainrc -------------------------------------------------------------------------------- /src/dpiapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dpiapi.c -------------------------------------------------------------------------------- /src/dpiapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dpiapi.h -------------------------------------------------------------------------------- /src/dpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/dpng.h -------------------------------------------------------------------------------- /src/findbar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/findbar.cc -------------------------------------------------------------------------------- /src/findbar.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/findbar.hh -------------------------------------------------------------------------------- /src/form.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/form.cc -------------------------------------------------------------------------------- /src/form.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/form.hh -------------------------------------------------------------------------------- /src/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/gif.c -------------------------------------------------------------------------------- /src/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/history.c -------------------------------------------------------------------------------- /src/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/history.h -------------------------------------------------------------------------------- /src/hsts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/hsts.c -------------------------------------------------------------------------------- /src/hsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/hsts.h -------------------------------------------------------------------------------- /src/hsts_preload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/hsts_preload -------------------------------------------------------------------------------- /src/html.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/html.cc -------------------------------------------------------------------------------- /src/html.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/html.hh -------------------------------------------------------------------------------- /src/html_charrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/html_charrefs.h -------------------------------------------------------------------------------- /src/html_common.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/html_common.hh -------------------------------------------------------------------------------- /src/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/image.cc -------------------------------------------------------------------------------- /src/image.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/image.hh -------------------------------------------------------------------------------- /src/imgbuf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/imgbuf.cc -------------------------------------------------------------------------------- /src/imgbuf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/imgbuf.hh -------------------------------------------------------------------------------- /src/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/jpeg.c -------------------------------------------------------------------------------- /src/keys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/keys.cc -------------------------------------------------------------------------------- /src/keys.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/keys.hh -------------------------------------------------------------------------------- /src/keysrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/keysrc -------------------------------------------------------------------------------- /src/klist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/klist.c -------------------------------------------------------------------------------- /src/klist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/klist.h -------------------------------------------------------------------------------- /src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/list.h -------------------------------------------------------------------------------- /src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/md5.c -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/menu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/menu.cc -------------------------------------------------------------------------------- /src/menu.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/menu.hh -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/msg.h -------------------------------------------------------------------------------- /src/nav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/nav.c -------------------------------------------------------------------------------- /src/nav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/nav.h -------------------------------------------------------------------------------- /src/paths.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/paths.cc -------------------------------------------------------------------------------- /src/paths.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/paths.hh -------------------------------------------------------------------------------- /src/pixmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/pixmaps.h -------------------------------------------------------------------------------- /src/plain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/plain.cc -------------------------------------------------------------------------------- /src/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/png.c -------------------------------------------------------------------------------- /src/prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/prefs.c -------------------------------------------------------------------------------- /src/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/prefs.h -------------------------------------------------------------------------------- /src/prefsparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/prefsparser.cc -------------------------------------------------------------------------------- /src/prefsparser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/prefsparser.hh -------------------------------------------------------------------------------- /src/srch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/srch -------------------------------------------------------------------------------- /src/styleengine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/styleengine.cc -------------------------------------------------------------------------------- /src/styleengine.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/styleengine.hh -------------------------------------------------------------------------------- /src/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/table.cc -------------------------------------------------------------------------------- /src/table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/table.hh -------------------------------------------------------------------------------- /src/timeout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/timeout.cc -------------------------------------------------------------------------------- /src/timeout.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/timeout.hh -------------------------------------------------------------------------------- /src/tipwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/tipwin.cc -------------------------------------------------------------------------------- /src/tipwin.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/tipwin.hh -------------------------------------------------------------------------------- /src/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/ui.cc -------------------------------------------------------------------------------- /src/ui.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/ui.hh -------------------------------------------------------------------------------- /src/uicmd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/uicmd.cc -------------------------------------------------------------------------------- /src/uicmd.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/uicmd.hh -------------------------------------------------------------------------------- /src/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/url.c -------------------------------------------------------------------------------- /src/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/url.h -------------------------------------------------------------------------------- /src/utf8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/utf8.cc -------------------------------------------------------------------------------- /src/utf8.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/utf8.hh -------------------------------------------------------------------------------- /src/web.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/web.cc -------------------------------------------------------------------------------- /src/web.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/web.hh -------------------------------------------------------------------------------- /src/xembed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/xembed.cc -------------------------------------------------------------------------------- /src/xembed.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/src/xembed.hh -------------------------------------------------------------------------------- /test/Anna_Karenina_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/Anna_Karenina_1.html -------------------------------------------------------------------------------- /test/KHM1-shy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/KHM1-shy.html -------------------------------------------------------------------------------- /test/KHM1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/KHM1.html -------------------------------------------------------------------------------- /test/KHM1b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/KHM1b.html -------------------------------------------------------------------------------- /test/KHM1c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/KHM1c.html -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/anchors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/anchors.html -------------------------------------------------------------------------------- /test/containers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/containers.cc -------------------------------------------------------------------------------- /test/cookies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/cookies.c -------------------------------------------------------------------------------- /test/dw_anchors_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_anchors_test.cc -------------------------------------------------------------------------------- /test/dw_border_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_border_test.cc -------------------------------------------------------------------------------- /test/dw_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_example.cc -------------------------------------------------------------------------------- /test/dw_find_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_find_test.cc -------------------------------------------------------------------------------- /test/dw_float_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_float_test.cc -------------------------------------------------------------------------------- /test/dw_image_background.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_image_background.cc -------------------------------------------------------------------------------- /test/dw_images_scaled.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_images_scaled.cc -------------------------------------------------------------------------------- /test/dw_images_scaled2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_images_scaled2.cc -------------------------------------------------------------------------------- /test/dw_images_simple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_images_simple.cc -------------------------------------------------------------------------------- /test/dw_imgbuf_mem_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_imgbuf_mem_test.cc -------------------------------------------------------------------------------- /test/dw_links.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_links.cc -------------------------------------------------------------------------------- /test/dw_links2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_links2.cc -------------------------------------------------------------------------------- /test/dw_lists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_lists.cc -------------------------------------------------------------------------------- /test/dw_resource_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_resource_test.cc -------------------------------------------------------------------------------- /test/dw_simple_container.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_simple_container.cc -------------------------------------------------------------------------------- /test/dw_simple_container.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_simple_container.hh -------------------------------------------------------------------------------- /test/dw_simple_container_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_simple_container_test.cc -------------------------------------------------------------------------------- /test/dw_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_table.cc -------------------------------------------------------------------------------- /test/dw_table_aligned.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_table_aligned.cc -------------------------------------------------------------------------------- /test/dw_ui_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/dw_ui_test.cc -------------------------------------------------------------------------------- /test/floats-and-absolute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/floats-and-absolute.html -------------------------------------------------------------------------------- /test/floats-and-margins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/floats-and-margins.html -------------------------------------------------------------------------------- /test/floats-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/floats-table.html -------------------------------------------------------------------------------- /test/floats-worm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/floats-worm.html -------------------------------------------------------------------------------- /test/floats1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/floats1.html -------------------------------------------------------------------------------- /test/floats2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/floats2.html -------------------------------------------------------------------------------- /test/floats3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/floats3.html -------------------------------------------------------------------------------- /test/floats4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/floats4.html -------------------------------------------------------------------------------- /test/floats5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/floats5.html -------------------------------------------------------------------------------- /test/form.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/form.cc -------------------------------------------------------------------------------- /test/form.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/form.hh -------------------------------------------------------------------------------- /test/hyph-de-1996.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/hyph-de-1996.pat -------------------------------------------------------------------------------- /test/hyph-en-us.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/hyph-en-us.pat -------------------------------------------------------------------------------- /test/hyphenate-nbsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/hyphenate-nbsp.html -------------------------------------------------------------------------------- /test/hyphens-etc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/hyphens-etc.html -------------------------------------------------------------------------------- /test/identity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/identity.cc -------------------------------------------------------------------------------- /test/lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/lang.html -------------------------------------------------------------------------------- /test/liang.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/liang.cc -------------------------------------------------------------------------------- /test/notsosimplevector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/notsosimplevector.cc -------------------------------------------------------------------------------- /test/shapes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/shapes.cc -------------------------------------------------------------------------------- /test/table-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/table-1.html -------------------------------------------------------------------------------- /test/table-h1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/table-h1.html -------------------------------------------------------------------------------- /test/table-narrow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/table-narrow.html -------------------------------------------------------------------------------- /test/trie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/trie.cc -------------------------------------------------------------------------------- /test/unicode_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/unicode_test.cc -------------------------------------------------------------------------------- /test/white-space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w00fpack/dilloNG/HEAD/test/white-space.html --------------------------------------------------------------------------------