├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── README-xtermjs.md ├── README.md ├── configure.ac ├── doc ├── DomTerm.icns ├── DomTerm.texi ├── domterm1.svg ├── domterm2.ico ├── domterm2.svg ├── domterm48.png ├── help │ ├── domterm-attach.adoc │ ├── domterm-browse.adoc │ ├── domterm-hcat.adoc │ ├── domterm-imgcat.adoc │ ├── domterm-is-domterm.adoc │ ├── domterm-list.adoc │ ├── domterm-new.adoc │ ├── domterm-window-specifier.adoc │ ├── domterm.adoc │ └── qtdomterm.adoc ├── images │ ├── domterm-1.png │ ├── domterm-2.png │ ├── domterm-panes-1.png │ ├── domterm-panes-2.png │ ├── domterm-polygon-1.png │ ├── domterm-sh-svg.png │ ├── dropdown-gnome.png │ ├── dt-atom1.png │ ├── dt-findtext1.png │ ├── dt-findtext2.png │ ├── dt-fish1.png │ ├── dt-gnuplot1.png │ ├── dt-graphemes.png │ ├── dt-help1.png │ ├── dt-lineedit1.png │ ├── dt-linkhover.png │ ├── dt-pretty1.png │ ├── dt-sixel.png │ ├── dt-viewmode1.png │ ├── dt-viewselect1.png │ ├── emacs-in-firefox-1.png │ ├── pyplot.png │ ├── python-error.png │ ├── python-pandas.png │ ├── python-pretty1.png │ └── python-repl.png ├── ldomterm.man ├── misc │ └── dt-prettynested-saved.html └── style │ ├── docbook-to-html.xsl │ └── domterm.xsl ├── domterm-jar-manifest ├── domterm.appdata.xml ├── domterm.desktop ├── domterm.spec ├── dt-wry ├── Cargo.toml.in ├── rustfmt.toml └── src │ └── main.rs ├── electron-nodepty ├── README.md ├── logging.js ├── main.js ├── package.json ├── preload.js ├── renderer.js └── settings.js ├── electron ├── main.js ├── package.json └── preload.js ├── hlib ├── FileSaver.js ├── browserkeymap.js ├── closure-externs.js ├── commands.js ├── domterm-client.js ├── domterm-core.css ├── domterm-default.css ├── domterm-findtext.js ├── domterm-layout.css ├── domterm-layout.js ├── domterm-menus.js ├── domterm-overlays.js ├── domterm-parser.js ├── domterm-standard.css ├── domterm-utils.js ├── domterm-version.js.in ├── domterm.js ├── dt-combined.patch ├── goldenlayout.js ├── goldenlayout │ ├── css │ │ ├── goldenlayout-base.css │ │ └── themes │ │ │ ├── goldenlayout-dark-theme.css │ │ │ ├── goldenlayout-light-theme.css │ │ │ ├── goldenlayout-soda-theme.css │ │ │ └── goldenlayout-translucent-theme.css │ └── img │ │ ├── lm_close_black.png │ │ ├── lm_close_white.png │ │ ├── lm_maximise_black.png │ │ ├── lm_maximise_white.png │ │ ├── lm_minimize_black.png │ │ ├── lm_minimize_white.png │ │ ├── lm_popin_black.png │ │ ├── lm_popin_white.png │ │ ├── lm_popout_black.png │ │ └── lm_popout_white.png ├── jsMenus.css ├── jsMenus.js ├── macos-traffic-lights.css ├── mark.es6.js ├── screenfull.js ├── settings-manager.js ├── sixel-decode.js ├── terminal.js ├── unicode │ ├── tiny-inflate │ │ └── index.mjs │ ├── uc-properties.js │ └── unicode-trie │ │ ├── index.mjs │ │ └── swap.mjs └── xterminal.js ├── lws-term ├── LICENSE ├── Makefile.am ├── command-connect.cc ├── command-connect.h ├── commands.cc ├── frontends.cc ├── help.cc ├── http.cc ├── junzip.c ├── junzip.h ├── nlohmann │ └── json.hpp ├── option-names.h ├── protocol.cc ├── server.cc ├── server.h ├── settings.cc ├── utils.cc ├── utils.h ├── version.h.in ├── whereami.c └── whereami.h ├── manifest.json ├── native ├── dt-libclip.cc ├── preloads.cc ├── pty │ ├── apue.h │ ├── error.c │ ├── pty.c │ ├── pty_fork.c │ └── pty_fork.h ├── webview.cc └── webview.h ├── org └── domterm │ ├── Backend.java │ ├── ClassBackend.java │ ├── DomHttpServer.java │ ├── ProcessBackend.java │ ├── javafx │ ├── Main.java │ ├── RunClass.java │ ├── RunProcess.java │ ├── WebTerminal.java │ ├── WebTerminalApp.java │ └── WebWriter.java │ ├── pty │ ├── PTY.java │ ├── PtyBackend.java │ └── RunPty.java │ ├── util │ ├── DomTermErrorStream.java │ ├── DomTermErrorWriter.java │ ├── PrintNested.java │ ├── StringBufferedWriter.java │ ├── StyleSheets.java │ ├── Utf8WriterOutputStream.java │ ├── Util.java │ └── WTDebug.java │ └── websocket │ └── DomServer.java ├── package.json ├── qtdomterm.appdata.xml ├── qtdomterm.desktop ├── qtdomterm ├── LICENSE ├── Makefile.am ├── autotroll.m4 ├── backend.cpp ├── backend.h ├── browserapplication.cpp ├── browserapplication.h ├── browsermainwindow.cpp ├── browsermainwindow.h ├── dt_version.h.in ├── main.cpp ├── processoptions.h ├── savepagedialog.cpp ├── savepagedialog.h ├── savepagedialog.ui ├── webview.cpp └── webview.h ├── repl-client.html.in ├── tests ├── 24-bit-color.sh ├── 256-colors.sh ├── Makefile.am ├── UTF-8-width.exp ├── UTF-8.txt ├── colors_and_formatting.sh ├── grapheme-widths.exp ├── grapheme-widths.sh ├── t24.exp ├── test-bash-rc.sh ├── test-defs.sh ├── test-view1.sh ├── test-wrap1.sh ├── vtest-1-a.exp ├── vtest-1-b.exp ├── vtest-1-c.exp ├── vtest-1-d.exp ├── vtest-1-e.exp ├── vtest-1-f.exp ├── vtest-11-6-6-3-a.exp ├── vtest-11-6-6-3-b.exp ├── vtest-11-6-6-3-c.exp ├── vtest-11-6-6-3-d.exp ├── vtest-11-6-6-3-e.exp ├── vtest-11-6-6-3-f.exp ├── vtest-11-6-6-3-g.exp ├── vtest-11-6-6-3-h.exp ├── vtest-11-6-6-3-i.exp ├── vtest-11-6-6-3-j.exp ├── vtest-11-6-6-3-k.exp ├── vtest-11-6-6-3-l.exp ├── vtest-11-6-6-3-m.exp ├── vtest-11-6-6-3-n.exp ├── vtest-11-6-6-3-o.exp └── vtest-11-6-6-3-p.exp ├── tools ├── bash-preexec.sh ├── domterm.ti ├── python │ ├── README │ └── domterm │ │ ├── matplot.py │ │ └── utils.py ├── shell-integration.bash ├── shell-integration.fish ├── shell-integration.zsh └── wrap-saved ├── util ├── dtstyle ├── hcat ├── imgcat ├── jdomterm ├── macOS.plist.in └── svgcat ├── web └── style │ ├── domterm-1col.css │ ├── domterm-l.css │ ├── domterm-r.css │ ├── dt-manual.js │ ├── kawa.css │ └── utils.js ├── webapp └── background.js ├── websocketterm ├── ReplServer.java └── WebSocketServer.java ├── wsdomterm-jar-manifest └── xulapp ├── application.ini ├── chrome.manifest ├── defaults └── preferences │ └── prefs.js └── domterm.xul /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/Makefile.am -------------------------------------------------------------------------------- /README-xtermjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/README-xtermjs.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/DomTerm.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/DomTerm.icns -------------------------------------------------------------------------------- /doc/DomTerm.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/DomTerm.texi -------------------------------------------------------------------------------- /doc/domterm1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/domterm1.svg -------------------------------------------------------------------------------- /doc/domterm2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/domterm2.ico -------------------------------------------------------------------------------- /doc/domterm2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/domterm2.svg -------------------------------------------------------------------------------- /doc/domterm48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/domterm48.png -------------------------------------------------------------------------------- /doc/help/domterm-attach.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/domterm-attach.adoc -------------------------------------------------------------------------------- /doc/help/domterm-browse.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/domterm-browse.adoc -------------------------------------------------------------------------------- /doc/help/domterm-hcat.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/domterm-hcat.adoc -------------------------------------------------------------------------------- /doc/help/domterm-imgcat.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/domterm-imgcat.adoc -------------------------------------------------------------------------------- /doc/help/domterm-is-domterm.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/domterm-is-domterm.adoc -------------------------------------------------------------------------------- /doc/help/domterm-list.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/domterm-list.adoc -------------------------------------------------------------------------------- /doc/help/domterm-new.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/domterm-new.adoc -------------------------------------------------------------------------------- /doc/help/domterm-window-specifier.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/domterm-window-specifier.adoc -------------------------------------------------------------------------------- /doc/help/domterm.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/domterm.adoc -------------------------------------------------------------------------------- /doc/help/qtdomterm.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/help/qtdomterm.adoc -------------------------------------------------------------------------------- /doc/images/domterm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/domterm-1.png -------------------------------------------------------------------------------- /doc/images/domterm-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/domterm-2.png -------------------------------------------------------------------------------- /doc/images/domterm-panes-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/domterm-panes-1.png -------------------------------------------------------------------------------- /doc/images/domterm-panes-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/domterm-panes-2.png -------------------------------------------------------------------------------- /doc/images/domterm-polygon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/domterm-polygon-1.png -------------------------------------------------------------------------------- /doc/images/domterm-sh-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/domterm-sh-svg.png -------------------------------------------------------------------------------- /doc/images/dropdown-gnome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dropdown-gnome.png -------------------------------------------------------------------------------- /doc/images/dt-atom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-atom1.png -------------------------------------------------------------------------------- /doc/images/dt-findtext1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-findtext1.png -------------------------------------------------------------------------------- /doc/images/dt-findtext2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-findtext2.png -------------------------------------------------------------------------------- /doc/images/dt-fish1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-fish1.png -------------------------------------------------------------------------------- /doc/images/dt-gnuplot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-gnuplot1.png -------------------------------------------------------------------------------- /doc/images/dt-graphemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-graphemes.png -------------------------------------------------------------------------------- /doc/images/dt-help1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-help1.png -------------------------------------------------------------------------------- /doc/images/dt-lineedit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-lineedit1.png -------------------------------------------------------------------------------- /doc/images/dt-linkhover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-linkhover.png -------------------------------------------------------------------------------- /doc/images/dt-pretty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-pretty1.png -------------------------------------------------------------------------------- /doc/images/dt-sixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-sixel.png -------------------------------------------------------------------------------- /doc/images/dt-viewmode1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-viewmode1.png -------------------------------------------------------------------------------- /doc/images/dt-viewselect1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/dt-viewselect1.png -------------------------------------------------------------------------------- /doc/images/emacs-in-firefox-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/emacs-in-firefox-1.png -------------------------------------------------------------------------------- /doc/images/pyplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/pyplot.png -------------------------------------------------------------------------------- /doc/images/python-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/python-error.png -------------------------------------------------------------------------------- /doc/images/python-pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/python-pandas.png -------------------------------------------------------------------------------- /doc/images/python-pretty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/python-pretty1.png -------------------------------------------------------------------------------- /doc/images/python-repl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/images/python-repl.png -------------------------------------------------------------------------------- /doc/ldomterm.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/ldomterm.man -------------------------------------------------------------------------------- /doc/misc/dt-prettynested-saved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/misc/dt-prettynested-saved.html -------------------------------------------------------------------------------- /doc/style/docbook-to-html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/style/docbook-to-html.xsl -------------------------------------------------------------------------------- /doc/style/domterm.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/doc/style/domterm.xsl -------------------------------------------------------------------------------- /domterm-jar-manifest: -------------------------------------------------------------------------------- 1 | Main-Class: org.domterm.javafx.Main 2 | -------------------------------------------------------------------------------- /domterm.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/domterm.appdata.xml -------------------------------------------------------------------------------- /domterm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/domterm.desktop -------------------------------------------------------------------------------- /domterm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/domterm.spec -------------------------------------------------------------------------------- /dt-wry/Cargo.toml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/dt-wry/Cargo.toml.in -------------------------------------------------------------------------------- /dt-wry/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/dt-wry/rustfmt.toml -------------------------------------------------------------------------------- /dt-wry/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/dt-wry/src/main.rs -------------------------------------------------------------------------------- /electron-nodepty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron-nodepty/README.md -------------------------------------------------------------------------------- /electron-nodepty/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron-nodepty/logging.js -------------------------------------------------------------------------------- /electron-nodepty/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron-nodepty/main.js -------------------------------------------------------------------------------- /electron-nodepty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron-nodepty/package.json -------------------------------------------------------------------------------- /electron-nodepty/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron-nodepty/preload.js -------------------------------------------------------------------------------- /electron-nodepty/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron-nodepty/renderer.js -------------------------------------------------------------------------------- /electron-nodepty/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron-nodepty/settings.js -------------------------------------------------------------------------------- /electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron/main.js -------------------------------------------------------------------------------- /electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron/package.json -------------------------------------------------------------------------------- /electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/electron/preload.js -------------------------------------------------------------------------------- /hlib/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/FileSaver.js -------------------------------------------------------------------------------- /hlib/browserkeymap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/browserkeymap.js -------------------------------------------------------------------------------- /hlib/closure-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/closure-externs.js -------------------------------------------------------------------------------- /hlib/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/commands.js -------------------------------------------------------------------------------- /hlib/domterm-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-client.js -------------------------------------------------------------------------------- /hlib/domterm-core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-core.css -------------------------------------------------------------------------------- /hlib/domterm-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-default.css -------------------------------------------------------------------------------- /hlib/domterm-findtext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-findtext.js -------------------------------------------------------------------------------- /hlib/domterm-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-layout.css -------------------------------------------------------------------------------- /hlib/domterm-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-layout.js -------------------------------------------------------------------------------- /hlib/domterm-menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-menus.js -------------------------------------------------------------------------------- /hlib/domterm-overlays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-overlays.js -------------------------------------------------------------------------------- /hlib/domterm-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-parser.js -------------------------------------------------------------------------------- /hlib/domterm-standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-standard.css -------------------------------------------------------------------------------- /hlib/domterm-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-utils.js -------------------------------------------------------------------------------- /hlib/domterm-version.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm-version.js.in -------------------------------------------------------------------------------- /hlib/domterm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/domterm.js -------------------------------------------------------------------------------- /hlib/dt-combined.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/dt-combined.patch -------------------------------------------------------------------------------- /hlib/goldenlayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout.js -------------------------------------------------------------------------------- /hlib/goldenlayout/css/goldenlayout-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/css/goldenlayout-base.css -------------------------------------------------------------------------------- /hlib/goldenlayout/css/themes/goldenlayout-dark-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/css/themes/goldenlayout-dark-theme.css -------------------------------------------------------------------------------- /hlib/goldenlayout/css/themes/goldenlayout-light-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/css/themes/goldenlayout-light-theme.css -------------------------------------------------------------------------------- /hlib/goldenlayout/css/themes/goldenlayout-soda-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/css/themes/goldenlayout-soda-theme.css -------------------------------------------------------------------------------- /hlib/goldenlayout/css/themes/goldenlayout-translucent-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/css/themes/goldenlayout-translucent-theme.css -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_close_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_close_black.png -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_close_white.png -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_maximise_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_maximise_black.png -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_maximise_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_maximise_white.png -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_minimize_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_minimize_black.png -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_minimize_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_minimize_white.png -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_popin_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_popin_black.png -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_popin_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_popin_white.png -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_popout_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_popout_black.png -------------------------------------------------------------------------------- /hlib/goldenlayout/img/lm_popout_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/goldenlayout/img/lm_popout_white.png -------------------------------------------------------------------------------- /hlib/jsMenus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/jsMenus.css -------------------------------------------------------------------------------- /hlib/jsMenus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/jsMenus.js -------------------------------------------------------------------------------- /hlib/macos-traffic-lights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/macos-traffic-lights.css -------------------------------------------------------------------------------- /hlib/mark.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/mark.es6.js -------------------------------------------------------------------------------- /hlib/screenfull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/screenfull.js -------------------------------------------------------------------------------- /hlib/settings-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/settings-manager.js -------------------------------------------------------------------------------- /hlib/sixel-decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/sixel-decode.js -------------------------------------------------------------------------------- /hlib/terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/terminal.js -------------------------------------------------------------------------------- /hlib/unicode/tiny-inflate/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/unicode/tiny-inflate/index.mjs -------------------------------------------------------------------------------- /hlib/unicode/uc-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/unicode/uc-properties.js -------------------------------------------------------------------------------- /hlib/unicode/unicode-trie/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/unicode/unicode-trie/index.mjs -------------------------------------------------------------------------------- /hlib/unicode/unicode-trie/swap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/unicode/unicode-trie/swap.mjs -------------------------------------------------------------------------------- /hlib/xterminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/hlib/xterminal.js -------------------------------------------------------------------------------- /lws-term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/LICENSE -------------------------------------------------------------------------------- /lws-term/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/Makefile.am -------------------------------------------------------------------------------- /lws-term/command-connect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/command-connect.cc -------------------------------------------------------------------------------- /lws-term/command-connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/command-connect.h -------------------------------------------------------------------------------- /lws-term/commands.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/commands.cc -------------------------------------------------------------------------------- /lws-term/frontends.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/frontends.cc -------------------------------------------------------------------------------- /lws-term/help.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/help.cc -------------------------------------------------------------------------------- /lws-term/http.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/http.cc -------------------------------------------------------------------------------- /lws-term/junzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/junzip.c -------------------------------------------------------------------------------- /lws-term/junzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/junzip.h -------------------------------------------------------------------------------- /lws-term/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/nlohmann/json.hpp -------------------------------------------------------------------------------- /lws-term/option-names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/option-names.h -------------------------------------------------------------------------------- /lws-term/protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/protocol.cc -------------------------------------------------------------------------------- /lws-term/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/server.cc -------------------------------------------------------------------------------- /lws-term/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/server.h -------------------------------------------------------------------------------- /lws-term/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/settings.cc -------------------------------------------------------------------------------- /lws-term/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/utils.cc -------------------------------------------------------------------------------- /lws-term/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/utils.h -------------------------------------------------------------------------------- /lws-term/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/version.h.in -------------------------------------------------------------------------------- /lws-term/whereami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/whereami.c -------------------------------------------------------------------------------- /lws-term/whereami.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/lws-term/whereami.h -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/manifest.json -------------------------------------------------------------------------------- /native/dt-libclip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/native/dt-libclip.cc -------------------------------------------------------------------------------- /native/preloads.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/native/preloads.cc -------------------------------------------------------------------------------- /native/pty/apue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/native/pty/apue.h -------------------------------------------------------------------------------- /native/pty/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/native/pty/error.c -------------------------------------------------------------------------------- /native/pty/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/native/pty/pty.c -------------------------------------------------------------------------------- /native/pty/pty_fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/native/pty/pty_fork.c -------------------------------------------------------------------------------- /native/pty/pty_fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/native/pty/pty_fork.h -------------------------------------------------------------------------------- /native/webview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/native/webview.cc -------------------------------------------------------------------------------- /native/webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/native/webview.h -------------------------------------------------------------------------------- /org/domterm/Backend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/Backend.java -------------------------------------------------------------------------------- /org/domterm/ClassBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/ClassBackend.java -------------------------------------------------------------------------------- /org/domterm/DomHttpServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/DomHttpServer.java -------------------------------------------------------------------------------- /org/domterm/ProcessBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/ProcessBackend.java -------------------------------------------------------------------------------- /org/domterm/javafx/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/javafx/Main.java -------------------------------------------------------------------------------- /org/domterm/javafx/RunClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/javafx/RunClass.java -------------------------------------------------------------------------------- /org/domterm/javafx/RunProcess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/javafx/RunProcess.java -------------------------------------------------------------------------------- /org/domterm/javafx/WebTerminal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/javafx/WebTerminal.java -------------------------------------------------------------------------------- /org/domterm/javafx/WebTerminalApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/javafx/WebTerminalApp.java -------------------------------------------------------------------------------- /org/domterm/javafx/WebWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/javafx/WebWriter.java -------------------------------------------------------------------------------- /org/domterm/pty/PTY.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/pty/PTY.java -------------------------------------------------------------------------------- /org/domterm/pty/PtyBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/pty/PtyBackend.java -------------------------------------------------------------------------------- /org/domterm/pty/RunPty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/pty/RunPty.java -------------------------------------------------------------------------------- /org/domterm/util/DomTermErrorStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/util/DomTermErrorStream.java -------------------------------------------------------------------------------- /org/domterm/util/DomTermErrorWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/util/DomTermErrorWriter.java -------------------------------------------------------------------------------- /org/domterm/util/PrintNested.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/util/PrintNested.java -------------------------------------------------------------------------------- /org/domterm/util/StringBufferedWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/util/StringBufferedWriter.java -------------------------------------------------------------------------------- /org/domterm/util/StyleSheets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/util/StyleSheets.java -------------------------------------------------------------------------------- /org/domterm/util/Utf8WriterOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/util/Utf8WriterOutputStream.java -------------------------------------------------------------------------------- /org/domterm/util/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/util/Util.java -------------------------------------------------------------------------------- /org/domterm/util/WTDebug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/util/WTDebug.java -------------------------------------------------------------------------------- /org/domterm/websocket/DomServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/org/domterm/websocket/DomServer.java -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/package.json -------------------------------------------------------------------------------- /qtdomterm.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm.appdata.xml -------------------------------------------------------------------------------- /qtdomterm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm.desktop -------------------------------------------------------------------------------- /qtdomterm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/LICENSE -------------------------------------------------------------------------------- /qtdomterm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/Makefile.am -------------------------------------------------------------------------------- /qtdomterm/autotroll.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/autotroll.m4 -------------------------------------------------------------------------------- /qtdomterm/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/backend.cpp -------------------------------------------------------------------------------- /qtdomterm/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/backend.h -------------------------------------------------------------------------------- /qtdomterm/browserapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/browserapplication.cpp -------------------------------------------------------------------------------- /qtdomterm/browserapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/browserapplication.h -------------------------------------------------------------------------------- /qtdomterm/browsermainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/browsermainwindow.cpp -------------------------------------------------------------------------------- /qtdomterm/browsermainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/browsermainwindow.h -------------------------------------------------------------------------------- /qtdomterm/dt_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/dt_version.h.in -------------------------------------------------------------------------------- /qtdomterm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/main.cpp -------------------------------------------------------------------------------- /qtdomterm/processoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/processoptions.h -------------------------------------------------------------------------------- /qtdomterm/savepagedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/savepagedialog.cpp -------------------------------------------------------------------------------- /qtdomterm/savepagedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/savepagedialog.h -------------------------------------------------------------------------------- /qtdomterm/savepagedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/savepagedialog.ui -------------------------------------------------------------------------------- /qtdomterm/webview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/webview.cpp -------------------------------------------------------------------------------- /qtdomterm/webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/qtdomterm/webview.h -------------------------------------------------------------------------------- /repl-client.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/repl-client.html.in -------------------------------------------------------------------------------- /tests/24-bit-color.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/24-bit-color.sh -------------------------------------------------------------------------------- /tests/256-colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/256-colors.sh -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/UTF-8-width.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/UTF-8-width.exp -------------------------------------------------------------------------------- /tests/UTF-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/UTF-8.txt -------------------------------------------------------------------------------- /tests/colors_and_formatting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/colors_and_formatting.sh -------------------------------------------------------------------------------- /tests/grapheme-widths.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/grapheme-widths.exp -------------------------------------------------------------------------------- /tests/grapheme-widths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/grapheme-widths.sh -------------------------------------------------------------------------------- /tests/t24.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/t24.exp -------------------------------------------------------------------------------- /tests/test-bash-rc.sh: -------------------------------------------------------------------------------- 1 | PS1='\#$ ' 2 | -------------------------------------------------------------------------------- /tests/test-defs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/test-defs.sh -------------------------------------------------------------------------------- /tests/test-view1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/test-view1.sh -------------------------------------------------------------------------------- /tests/test-wrap1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/test-wrap1.sh -------------------------------------------------------------------------------- /tests/vtest-1-a.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-1-a.exp -------------------------------------------------------------------------------- /tests/vtest-1-b.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-1-b.exp -------------------------------------------------------------------------------- /tests/vtest-1-c.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-1-c.exp -------------------------------------------------------------------------------- /tests/vtest-1-d.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-1-d.exp -------------------------------------------------------------------------------- /tests/vtest-1-e.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-1-e.exp -------------------------------------------------------------------------------- /tests/vtest-1-f.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-1-f.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-a.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-a.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-b.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-b.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-c.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-c.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-d.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-d.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-e.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-e.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-f.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-f.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-g.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-g.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-h.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-h.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-i.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-i.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-j.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-j.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-k.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-k.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-l.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-l.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-m.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-m.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-n.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-n.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-o.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-o.exp -------------------------------------------------------------------------------- /tests/vtest-11-6-6-3-p.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tests/vtest-11-6-6-3-p.exp -------------------------------------------------------------------------------- /tools/bash-preexec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tools/bash-preexec.sh -------------------------------------------------------------------------------- /tools/domterm.ti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tools/domterm.ti -------------------------------------------------------------------------------- /tools/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tools/python/README -------------------------------------------------------------------------------- /tools/python/domterm/matplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tools/python/domterm/matplot.py -------------------------------------------------------------------------------- /tools/python/domterm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tools/python/domterm/utils.py -------------------------------------------------------------------------------- /tools/shell-integration.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tools/shell-integration.bash -------------------------------------------------------------------------------- /tools/shell-integration.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tools/shell-integration.fish -------------------------------------------------------------------------------- /tools/shell-integration.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tools/shell-integration.zsh -------------------------------------------------------------------------------- /tools/wrap-saved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/tools/wrap-saved -------------------------------------------------------------------------------- /util/dtstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/util/dtstyle -------------------------------------------------------------------------------- /util/hcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/util/hcat -------------------------------------------------------------------------------- /util/imgcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/util/imgcat -------------------------------------------------------------------------------- /util/jdomterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/util/jdomterm -------------------------------------------------------------------------------- /util/macOS.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/util/macOS.plist.in -------------------------------------------------------------------------------- /util/svgcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/util/svgcat -------------------------------------------------------------------------------- /web/style/domterm-1col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/web/style/domterm-1col.css -------------------------------------------------------------------------------- /web/style/domterm-l.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/web/style/domterm-l.css -------------------------------------------------------------------------------- /web/style/domterm-r.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/web/style/domterm-r.css -------------------------------------------------------------------------------- /web/style/dt-manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/web/style/dt-manual.js -------------------------------------------------------------------------------- /web/style/kawa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/web/style/kawa.css -------------------------------------------------------------------------------- /web/style/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/web/style/utils.js -------------------------------------------------------------------------------- /webapp/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/webapp/background.js -------------------------------------------------------------------------------- /websocketterm/ReplServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/websocketterm/ReplServer.java -------------------------------------------------------------------------------- /websocketterm/WebSocketServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/websocketterm/WebSocketServer.java -------------------------------------------------------------------------------- /wsdomterm-jar-manifest: -------------------------------------------------------------------------------- 1 | Main-Class: org.domterm.websocket.DomServer 2 | -------------------------------------------------------------------------------- /xulapp/application.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/xulapp/application.ini -------------------------------------------------------------------------------- /xulapp/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/xulapp/chrome.manifest -------------------------------------------------------------------------------- /xulapp/defaults/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/xulapp/defaults/preferences/prefs.js -------------------------------------------------------------------------------- /xulapp/domterm.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerBothner/DomTerm/HEAD/xulapp/domterm.xul --------------------------------------------------------------------------------