├── .github └── workflows │ ├── binder-badge.yaml │ └── publish.yml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── apt.txt ├── environment.yml ├── jupyter_desktop ├── __init__.py └── share │ ├── tigervnc │ ├── bin │ │ ├── Xvnc │ │ ├── vncconfig │ │ ├── vncpasswd │ │ ├── vncserver │ │ ├── vncviewer │ │ └── x0vncserver │ ├── lib64 │ │ ├── swrast_dri.so │ │ └── xorg │ │ │ └── protocol.txt │ └── share │ │ ├── applications │ │ └── vncviewer.desktop │ │ ├── doc │ │ └── tigervnc-1.9.0 │ │ │ ├── LICENCE.TXT │ │ │ └── README.rst │ │ ├── icons │ │ └── hicolor │ │ │ ├── 16x16 │ │ │ └── apps │ │ │ │ └── tigervnc.png │ │ │ ├── 22x22 │ │ │ └── apps │ │ │ │ └── tigervnc.png │ │ │ ├── 24x24 │ │ │ └── apps │ │ │ │ └── tigervnc.png │ │ │ ├── 32x32 │ │ │ └── apps │ │ │ │ └── tigervnc.png │ │ │ ├── 48x48 │ │ │ └── apps │ │ │ │ └── tigervnc.png │ │ │ └── scalable │ │ │ └── apps │ │ │ └── tigervnc.svg │ │ ├── locale │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── eo │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── fur │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ └── tigervnc.mo │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── tigervnc.mo │ │ ├── man │ │ └── man1 │ │ │ ├── Xvnc.1 │ │ │ ├── vncconfig.1 │ │ │ ├── vncpasswd.1 │ │ │ ├── vncserver.1 │ │ │ ├── vncviewer.1 │ │ │ └── x0vncserver.1 │ │ └── usr │ │ └── local │ │ └── share │ │ └── vnc │ │ └── classes │ │ ├── README │ │ ├── VncViewer.jar │ │ ├── favicon.ico │ │ └── index.vnc │ ├── web │ ├── noVNC-1.2.0 │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ └── feature_request.md │ │ │ └── workflows │ │ │ │ ├── deploy.yml │ │ │ │ ├── lint.yml │ │ │ │ └── test.yml │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── AUTHORS │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── app │ │ │ ├── error-handler.js │ │ │ ├── images │ │ │ │ ├── alt.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── connect.svg │ │ │ │ ├── ctrl.svg │ │ │ │ ├── ctrlaltdel.svg │ │ │ │ ├── disconnect.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── error.svg │ │ │ │ ├── esc.svg │ │ │ │ ├── expander.svg │ │ │ │ ├── fullscreen.svg │ │ │ │ ├── handle.svg │ │ │ │ ├── handle_bg.svg │ │ │ │ ├── icons │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── novnc-120x120.png │ │ │ │ │ ├── novnc-144x144.png │ │ │ │ │ ├── novnc-152x152.png │ │ │ │ │ ├── novnc-16x16.png │ │ │ │ │ ├── novnc-192x192.png │ │ │ │ │ ├── novnc-24x24.png │ │ │ │ │ ├── novnc-32x32.png │ │ │ │ │ ├── novnc-48x48.png │ │ │ │ │ ├── novnc-60x60.png │ │ │ │ │ ├── novnc-64x64.png │ │ │ │ │ ├── novnc-72x72.png │ │ │ │ │ ├── novnc-76x76.png │ │ │ │ │ ├── novnc-96x96.png │ │ │ │ │ ├── novnc-icon-sm.svg │ │ │ │ │ └── novnc-icon.svg │ │ │ │ ├── info.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── power.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── tab.svg │ │ │ │ ├── toggleextrakeys.svg │ │ │ │ ├── warning.svg │ │ │ │ └── windows.svg │ │ │ ├── locale │ │ │ │ ├── README │ │ │ │ ├── cs.json │ │ │ │ ├── de.json │ │ │ │ ├── el.json │ │ │ │ ├── es.json │ │ │ │ ├── ja.json │ │ │ │ ├── ko.json │ │ │ │ ├── nl.json │ │ │ │ ├── pl.json │ │ │ │ ├── ru.json │ │ │ │ ├── sv.json │ │ │ │ ├── tr.json │ │ │ │ ├── zh_CN.json │ │ │ │ └── zh_TW.json │ │ │ ├── localization.js │ │ │ ├── sounds │ │ │ │ ├── CREDITS │ │ │ │ ├── bell.mp3 │ │ │ │ └── bell.oga │ │ │ ├── styles │ │ │ │ ├── Orbitron700.ttf │ │ │ │ ├── Orbitron700.woff │ │ │ │ └── base.css │ │ │ ├── ui.js │ │ │ └── webutil.js │ │ ├── core │ │ │ ├── base64.js │ │ │ ├── decoders │ │ │ │ ├── copyrect.js │ │ │ │ ├── hextile.js │ │ │ │ ├── raw.js │ │ │ │ ├── rre.js │ │ │ │ ├── tight.js │ │ │ │ └── tightpng.js │ │ │ ├── deflator.js │ │ │ ├── des.js │ │ │ ├── display.js │ │ │ ├── encodings.js │ │ │ ├── inflator.js │ │ │ ├── input │ │ │ │ ├── domkeytable.js │ │ │ │ ├── fixedkeys.js │ │ │ │ ├── gesturehandler.js │ │ │ │ ├── keyboard.js │ │ │ │ ├── keysym.js │ │ │ │ ├── keysymdef.js │ │ │ │ ├── util.js │ │ │ │ ├── vkeys.js │ │ │ │ └── xtscancodes.js │ │ │ ├── rfb.js │ │ │ ├── util │ │ │ │ ├── browser.js │ │ │ │ ├── cursor.js │ │ │ │ ├── element.js │ │ │ │ ├── events.js │ │ │ │ ├── eventtarget.js │ │ │ │ ├── int.js │ │ │ │ ├── logging.js │ │ │ │ ├── polyfill.js │ │ │ │ └── strings.js │ │ │ └── websock.js │ │ ├── docs │ │ │ ├── API-internal.md │ │ │ ├── API.md │ │ │ ├── EMBEDDING.md │ │ │ ├── LIBRARY.md │ │ │ ├── LICENSE.BSD-2-Clause │ │ │ ├── LICENSE.BSD-3-Clause │ │ │ ├── LICENSE.MPL-2.0 │ │ │ ├── LICENSE.OFL-1.1 │ │ │ ├── flash_policy.txt │ │ │ ├── links │ │ │ ├── notes │ │ │ ├── rfb_notes │ │ │ ├── rfbproto-3.3.pdf │ │ │ ├── rfbproto-3.7.pdf │ │ │ └── rfbproto-3.8.pdf │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── po │ │ │ ├── .eslintrc │ │ │ ├── Makefile │ │ │ ├── cs.po │ │ │ ├── de.po │ │ │ ├── el.po │ │ │ ├── es.po │ │ │ ├── ja.po │ │ │ ├── ko.po │ │ │ ├── nl.po │ │ │ ├── noVNC.pot │ │ │ ├── pl.po │ │ │ ├── po2js │ │ │ ├── ru.po │ │ │ ├── sv.po │ │ │ ├── tr.po │ │ │ ├── xgettext-html │ │ │ ├── zh_CN.po │ │ │ └── zh_TW.po │ │ ├── snap │ │ │ ├── hooks │ │ │ │ └── configure │ │ │ ├── local │ │ │ │ └── svc_wrapper.sh │ │ │ └── snapcraft.yaml │ │ ├── tests │ │ │ ├── .eslintrc │ │ │ ├── assertions.js │ │ │ ├── fake.websocket.js │ │ │ ├── karma-test-main.js │ │ │ ├── playback-ui.js │ │ │ ├── playback.js │ │ │ ├── test.base64.js │ │ │ ├── test.deflator.js │ │ │ ├── test.display.js │ │ │ ├── test.gesturehandler.js │ │ │ ├── test.helper.js │ │ │ ├── test.int.js │ │ │ ├── test.keyboard.js │ │ │ ├── test.localization.js │ │ │ ├── test.rfb.js │ │ │ ├── test.util.js │ │ │ ├── test.websock.js │ │ │ ├── test.webutil.js │ │ │ └── vnc_playback.html │ │ ├── utils │ │ │ ├── .eslintrc │ │ │ ├── README.md │ │ │ ├── b64-to-binary.pl │ │ │ ├── genkeysymdef.js │ │ │ ├── launch.sh │ │ │ ├── u2x11 │ │ │ ├── use_require.js │ │ │ ├── use_require_helpers.js │ │ │ └── validate │ │ ├── vendor │ │ │ ├── browser-es-module-loader │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ │ ├── babel-worker.js │ │ │ │ │ ├── browser-es-module-loader.js │ │ │ │ │ └── browser-es-module-loader.js.map │ │ │ │ ├── genworker.js │ │ │ │ ├── rollup.config.js │ │ │ │ └── src │ │ │ │ │ ├── babel-worker.js │ │ │ │ │ └── browser-es-module-loader.js │ │ │ ├── pako │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ │ ├── utils │ │ │ │ │ └── common.js │ │ │ │ │ └── zlib │ │ │ │ │ ├── adler32.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── crc32.js │ │ │ │ │ ├── deflate.js │ │ │ │ │ ├── gzheader.js │ │ │ │ │ ├── inffast.js │ │ │ │ │ ├── inflate.js │ │ │ │ │ ├── inftrees.js │ │ │ │ │ ├── messages.js │ │ │ │ │ ├── trees.js │ │ │ │ │ └── zstream.js │ │ │ └── promise.js │ │ ├── vnc.html │ │ └── vnc_lite.html │ └── novnc-vnc_lite.html.patch │ └── xstartup └── setup.py /.github/workflows/binder-badge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/.github/workflows/binder-badge.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft jupyter_desktop/share -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/README.md -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/apt.txt -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/environment.yml -------------------------------------------------------------------------------- /jupyter_desktop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/__init__.py -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/bin/Xvnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/bin/Xvnc -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/bin/vncconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/bin/vncconfig -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/bin/vncpasswd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/bin/vncpasswd -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/bin/vncserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/bin/vncserver -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/bin/vncviewer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/bin/vncviewer -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/bin/x0vncserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/bin/x0vncserver -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/lib64/swrast_dri.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/lib64/swrast_dri.so -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/lib64/xorg/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/lib64/xorg/protocol.txt -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/applications/vncviewer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/applications/vncviewer.desktop -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/doc/tigervnc-1.9.0/LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/doc/tigervnc-1.9.0/LICENCE.TXT -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/doc/tigervnc-1.9.0/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/doc/tigervnc-1.9.0/README.rst -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/icons/hicolor/16x16/apps/tigervnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/icons/hicolor/16x16/apps/tigervnc.png -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/icons/hicolor/22x22/apps/tigervnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/icons/hicolor/22x22/apps/tigervnc.png -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/icons/hicolor/24x24/apps/tigervnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/icons/hicolor/24x24/apps/tigervnc.png -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/icons/hicolor/32x32/apps/tigervnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/icons/hicolor/32x32/apps/tigervnc.png -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/icons/hicolor/48x48/apps/tigervnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/icons/hicolor/48x48/apps/tigervnc.png -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/icons/hicolor/scalable/apps/tigervnc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/icons/hicolor/scalable/apps/tigervnc.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/bg/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/bg/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/cs/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/cs/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/da/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/da/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/de/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/de/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/el/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/el/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/eo/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/eo/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/es/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/es/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/fi/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/fi/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/fr/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/fr/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/fur/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/fur/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/hu/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/hu/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/id/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/id/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/it/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/it/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/nl/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/nl/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/pl/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/pl/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/pt_BR/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/pt_BR/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/ru/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/ru/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/sk/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/sk/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/sr/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/sr/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/sv/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/sv/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/tr/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/tr/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/uk/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/uk/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/vi/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/vi/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/locale/zh_CN/LC_MESSAGES/tigervnc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/locale/zh_CN/LC_MESSAGES/tigervnc.mo -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/man/man1/Xvnc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/man/man1/Xvnc.1 -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/man/man1/vncconfig.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/man/man1/vncconfig.1 -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/man/man1/vncpasswd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/man/man1/vncpasswd.1 -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/man/man1/vncserver.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/man/man1/vncserver.1 -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/man/man1/vncviewer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/man/man1/vncviewer.1 -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/man/man1/x0vncserver.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/man/man1/x0vncserver.1 -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/usr/local/share/vnc/classes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/usr/local/share/vnc/classes/README -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/usr/local/share/vnc/classes/VncViewer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/usr/local/share/vnc/classes/VncViewer.jar -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/usr/local/share/vnc/classes/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/usr/local/share/vnc/classes/favicon.ico -------------------------------------------------------------------------------- /jupyter_desktop/share/tigervnc/share/usr/local/share/vnc/classes/index.vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/tigervnc/share/usr/local/share/vnc/classes/index.vnc -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/.eslintignore: -------------------------------------------------------------------------------- 1 | **/xtscancodes.js 2 | -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/.eslintrc -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/.github/workflows/lint.yml -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/.github/workflows/test.yml -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/.gitignore -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/AUTHORS -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/LICENSE.txt -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/README.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/error-handler.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/alt.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/clipboard.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/connect.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/ctrl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/ctrl.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/ctrlaltdel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/ctrlaltdel.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/disconnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/disconnect.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/drag.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/error.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/esc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/esc.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/expander.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/expander.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/fullscreen.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/handle.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/handle_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/handle_bg.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/Makefile -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-120x120.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-144x144.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-152x152.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-16x16.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-192x192.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-24x24.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-32x32.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-48x48.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-60x60.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-64x64.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-72x72.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-76x76.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-96x96.png -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-icon-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-icon-sm.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/icons/novnc-icon.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/info.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/keyboard.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/power.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/settings.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/tab.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/toggleextrakeys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/toggleextrakeys.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/warning.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/images/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/images/windows.svg -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/README -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/cs.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/de.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/el.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/es.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/ja.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/ko.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/nl.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/pl.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/ru.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/sv.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/tr.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/zh_CN.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/locale/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/locale/zh_TW.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/localization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/localization.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/sounds/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/sounds/CREDITS -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/sounds/bell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/sounds/bell.mp3 -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/sounds/bell.oga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/sounds/bell.oga -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/styles/Orbitron700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/styles/Orbitron700.ttf -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/styles/Orbitron700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/styles/Orbitron700.woff -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/styles/base.css -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/ui.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/app/webutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/app/webutil.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/base64.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/copyrect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/copyrect.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/hextile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/hextile.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/raw.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/rre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/rre.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/tight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/tight.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/tightpng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/decoders/tightpng.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/deflator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/deflator.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/des.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/des.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/display.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/encodings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/encodings.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/inflator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/inflator.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/input/domkeytable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/input/domkeytable.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/input/fixedkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/input/fixedkeys.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/input/gesturehandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/input/gesturehandler.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/input/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/input/keyboard.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/input/keysym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/input/keysym.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/input/keysymdef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/input/keysymdef.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/input/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/input/util.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/input/vkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/input/vkeys.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/input/xtscancodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/input/xtscancodes.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/rfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/rfb.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/util/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/util/browser.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/util/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/util/cursor.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/util/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/util/element.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/util/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/util/events.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/util/eventtarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/util/eventtarget.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/util/int.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/util/int.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/util/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/util/logging.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/util/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/util/polyfill.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/util/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/util/strings.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/core/websock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/core/websock.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/API-internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/API-internal.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/API.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/EMBEDDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/EMBEDDING.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/LIBRARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/LIBRARY.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/LICENSE.BSD-2-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/LICENSE.BSD-2-Clause -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/LICENSE.BSD-3-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/LICENSE.BSD-3-Clause -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/LICENSE.MPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/LICENSE.MPL-2.0 -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/LICENSE.OFL-1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/LICENSE.OFL-1.1 -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/flash_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/flash_policy.txt -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/links -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/notes -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/rfb_notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/rfb_notes -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/rfbproto-3.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/rfbproto-3.3.pdf -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/rfbproto-3.7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/rfbproto-3.7.pdf -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/docs/rfbproto-3.8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/docs/rfbproto-3.8.pdf -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/karma.conf.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/package.json -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/.eslintrc -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/Makefile -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/cs.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/de.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/el.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/es.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/ja.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/ko.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/nl.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/noVNC.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/noVNC.pot -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/pl.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/po2js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/po2js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/ru.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/sv.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/tr.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/xgettext-html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/xgettext-html -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/zh_CN.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/po/zh_TW.po -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/snap/hooks/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/snap/hooks/configure -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/snap/local/svc_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/snap/local/svc_wrapper.sh -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/snap/snapcraft.yaml -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/.eslintrc -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/assertions.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/fake.websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/fake.websocket.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/karma-test-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/karma-test-main.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/playback-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/playback-ui.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/playback.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.base64.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.deflator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.deflator.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.display.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.gesturehandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.gesturehandler.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.helper.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.int.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.int.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.keyboard.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.localization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.localization.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.rfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.rfb.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.util.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.websock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.websock.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/test.webutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/test.webutil.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/tests/vnc_playback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/tests/vnc_playback.html -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/utils/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/utils/.eslintrc -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/utils/README.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/utils/b64-to-binary.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/utils/b64-to-binary.pl -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/utils/genkeysymdef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/utils/genkeysymdef.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/utils/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/utils/launch.sh -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/utils/u2x11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/utils/u2x11 -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/utils/use_require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/utils/use_require.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/utils/use_require_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/utils/use_require_helpers.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/utils/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/utils/validate -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/README.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/dist/babel-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/dist/babel-worker.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/dist/browser-es-module-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/dist/browser-es-module-loader.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/dist/browser-es-module-loader.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/dist/browser-es-module-loader.js.map -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/genworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/genworker.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/rollup.config.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/src/babel-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/src/babel-worker.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/src/browser-es-module-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/browser-es-module-loader/src/browser-es-module-loader.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/LICENSE -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/README.md -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/utils/common.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/adler32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/adler32.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/constants.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/crc32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/crc32.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/deflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/deflate.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/gzheader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/gzheader.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/inffast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/inffast.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/inflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/inflate.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/inftrees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/inftrees.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/messages.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/trees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/trees.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/zstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/pako/lib/zlib/zstream.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vendor/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vendor/promise.js -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vnc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vnc.html -------------------------------------------------------------------------------- /jupyter_desktop/share/web/noVNC-1.2.0/vnc_lite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/noVNC-1.2.0/vnc_lite.html -------------------------------------------------------------------------------- /jupyter_desktop/share/web/novnc-vnc_lite.html.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/web/novnc-vnc_lite.html.patch -------------------------------------------------------------------------------- /jupyter_desktop/share/xstartup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/jupyter_desktop/share/xstartup -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvipanda/jupyter-desktop-server/HEAD/setup.py --------------------------------------------------------------------------------