[X2Go-Commits] [x2gohtmlclient] branch master updated (3662281 -> 115a7e3)

git-admin at x2go.org git-admin at x2go.org
Wed Jun 23 18:17:28 CEST 2021


This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch master
in repository x2gohtmlclient.

      from  3662281   Improve JSON parsing.
       new  81f273e   Rename folders to make project resemble a bit more to a Javascript code project.
       new  44ec403   src/x2godomcontroller.js: Use asset_path variable for all loaded / referenced asset files.
       new  a8bd0bb   Use absolute /assets/.../ paths in all references.
       new  daa86a2   x2gokdriveclient.html: Expect this file in folder '/x2go/' of the VirtualHost.
       new  bb29bcd   src/x2gokdrivehtmlclient.js: Don't confuse syntax highlighters by putting unterminated quotes into comments.
       new  361c5ca   minify.sh: Adjust, so that a minified and a non-minified .js file results from this script.
       new  fe08529   dist/.placeholder: Keep empty dist/ directory in Git.
       new  15c77be   package.json: Add sample package.json file.
       new  1762f32   conf/nginx/: Add Nginx configuration files (http-no-SSL support only for now).
       new  634eb4c   src/x2gohtmlclient.js: Switch to ws:// (unencrypted) for a start, SSL support for the complete package will be re-introduced soon.
       new  f6fa5dd   index.html: White-space only cleanup (drop TABs).
       new  115a7e3   debian/: Initial packaging draft.

The 12 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../nginx/sites-available/x2gohtmlclient-demo.conf |  22 +++
 conf/nginx/snippets/libjs-x2goclient.conf          |  29 ++++
 conf/nginx/snippets/x2gohtmlclient-css.conf        |   9 ++
 conf/nginx/snippets/x2gohtmlclient-rpc.conf        |   6 +
 conf/nginx/snippets/x2gohtmlclient-wswrapper.conf  |  18 +++
 {CSS => css}/x2gostyle.css                         |   0
 debian/changelog                                   |   6 +
 debian/compat                                      |   1 +
 debian/control                                     |  64 ++++++++
 debian/copyright                                   |  32 ++++
 debian/libjs-x2goclient.dirs                       |   1 +
 debian/libjs-x2goclient.install                    |   8 +
 debian/rules                                       |  22 +++
 debian/source/format                               |   1 +
 debian/x2gohtmlclient.install                      |   8 +
 dist/.placeholder                                  |   0
 {src => img/backgrounds/svg}/x2gobg.svg            |   0
 {src => img/buttons/png}/attach.png                | Bin
 {src => img/buttons/png}/clip_close.png            | Bin
 {src => img/buttons/png}/clip_copy_close.png       | Bin
 {src => img/buttons/png}/clip_from.png             | Bin
 {src => img/buttons/png}/clip_to.png               | Bin
 {src => img/buttons/png}/detach.png                | Bin
 {src => img/buttons/png}/stop.png                  | Bin
 {src => img/buttons/png}/suspend.png               | Bin
 src/morph_attach.svg => img/buttons/svg/attach.svg |   0
 .../buttons/svg/clip_close.svg                     |   0
 .../buttons/svg/clip_copy_close.svg                |   0
 .../buttons/svg/copy_from.svg                      |   0
 .../buttons/svg/copy_to.svg                        |   0
 src/morph_detach.svg => img/buttons/svg/detach.svg |   0
 src/morph_stop.svg => img/buttons/svg/stop.svg     |   0
 .../buttons/svg/suspend.svg                        |   0
 index.html                                         | 172 ++++++++++-----------
 minify.sh                                          |   3 +-
 package.json                                       |  25 +++
 src/x2godomcontroller.js                           |   8 +-
 src/x2gohtmlclient.js                              |   2 +-
 src/x2gokdrivehtmlclient.js                        |   4 +-
 x2gokdriveclient.html                              |  14 +-
 40 files changed, 354 insertions(+), 101 deletions(-)
 create mode 100644 conf/nginx/sites-available/x2gohtmlclient-demo.conf
 create mode 100644 conf/nginx/snippets/libjs-x2goclient.conf
 create mode 100644 conf/nginx/snippets/x2gohtmlclient-css.conf
 create mode 100644 conf/nginx/snippets/x2gohtmlclient-rpc.conf
 create mode 100644 conf/nginx/snippets/x2gohtmlclient-wswrapper.conf
 rename {CSS => css}/x2gostyle.css (100%)
 create mode 100644 debian/changelog
 create mode 100644 debian/compat
 create mode 100644 debian/control
 create mode 100644 debian/copyright
 create mode 100644 debian/libjs-x2goclient.dirs
 create mode 100644 debian/libjs-x2goclient.install
 create mode 100755 debian/rules
 create mode 100644 debian/source/format
 create mode 100644 debian/x2gohtmlclient.install
 create mode 100644 dist/.placeholder
 rename {src => img/backgrounds/svg}/x2gobg.svg (100%)
 rename {src => img/buttons/png}/attach.png (100%)
 rename {src => img/buttons/png}/clip_close.png (100%)
 rename {src => img/buttons/png}/clip_copy_close.png (100%)
 rename {src => img/buttons/png}/clip_from.png (100%)
 rename {src => img/buttons/png}/clip_to.png (100%)
 rename {src => img/buttons/png}/detach.png (100%)
 rename {src => img/buttons/png}/stop.png (100%)
 rename {src => img/buttons/png}/suspend.png (100%)
 rename src/morph_attach.svg => img/buttons/svg/attach.svg (100%)
 rename src/morph_clip_close.svg => img/buttons/svg/clip_close.svg (100%)
 rename src/morph_clip_copy_close.svg => img/buttons/svg/clip_copy_close.svg (100%)
 rename src/morph_copy_from.svg => img/buttons/svg/copy_from.svg (100%)
 rename src/morph_copy_to.svg => img/buttons/svg/copy_to.svg (100%)
 rename src/morph_detach.svg => img/buttons/svg/detach.svg (100%)
 rename src/morph_stop.svg => img/buttons/svg/stop.svg (100%)
 rename src/morph_suspend.svg => img/buttons/svg/suspend.svg (100%)
 create mode 100644 package.json

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gohtmlclient.git


More information about the x2go-commits mailing list