Re: Development Idea - Guacamole VDI?

2020-09-01 Thread Mark Nolan
We (a company I am associated with) use guacamole as the basis for a virtual classroom. Our current set up works like this: - VMs are hosted on GCP. They are GCE instances in a region convenient for the class we are running. We run classes all round the world. - We run multiple guacamole

Re: [GitHub] [guacamole-client] mike-jumper commented on a change in pull request #428: GUACAMOLE-827: If the FileReader object is busy, don't continue with …

2019-07-20 Thread Mark Nolan
There are load (success) and loadend (all outcomes) events that fire when the whole file has been read. A quick check suggests they have full cross-browser support. Would they work? Mark. . On Sat, 20 Jul 2019, 07:56 GitBox, wrote: > mike-jumper commented on a change in pull request #428:

When it says "connection selection menu"...

2019-06-23 Thread Mark Nolan
... does it mean the list of connections on the home page after logging in? https://github.com/apache/guacamole-client/pull/417 If so, is it possible to make this functionality configurable since, in my set up, that host may not actually be running and the user may need to start it before

Re: [apache/guacamole-client] GUACAMOLE-304: Expand connection link to encompass entire hover area. (#253)

2019-06-18 Thread Mark Nolan
Yes, fair comment! This business of adding extensions is fraught with difficulty ;) You're right about using inline-block. My preferred solution would be to use flexbox, but that probably doesn't have quite high enough browser support for the project (96%). I can fix my extension by floating my

Re: Auth Provider from 0.9.14 does not work with 1.0.0

2019-06-18 Thread Mark Nolan
:30 AM Mark Nolan wrote: > > > There were no other errors at all! > > > > For a moment I was very excited that I might have forgotten to update > that > > dependency, but I hadn't been that stupid (wouldn't have been the first > > time!). I didn't kn

Re: AngularJS issue upgrading authentication provider from 0.9.14 to 1.0.0

2019-06-18 Thread Mark Nolan
Perfect! I was actually quite happy with the interpolation binding (fixing the identifier on each line) and had no idea it wasn't allowed! Many thanks, M. . On Tue, 18 Jun 2019 at 19:45, Mike Jumper wrote: > On Tue, Jun 18, 2019 at 11:14 AM Mark Nolan wrote: > > > ... >

AngularJS issue upgrading authentication provider from 0.9.14 to 1.0.0

2019-06-18 Thread Mark Nolan
I am getting multiple parse errors from AngularJS. I know 1.0.0 upgraded AngularJS and I'm off to look through the notes now, but if anyone knows what causes this, you could save me a lot of time! Everything I know about AngularJS I have learned by looking at what Guacamole does or through

Re: Auth Provider from 0.9.14 does not work with 1.0.0

2019-06-18 Thread Mark Nolan
the namespace appears to have changed. When I resolve all my other issues, I'll take a look at that. Thanks, Mark. . On Mon, 17 Jun 2019 at 21:44, Mike Jumper wrote: > On Sun, Jun 16, 2019 at 7:02 PM Mark Nolan wrote: > > > I have an authentication provider that was working perfectly

Auth Provider from 0.9.14 does not work with 1.0.0

2019-06-16 Thread Mark Nolan
I have an authentication provider that was working perfectly with 0.9.14. I have updated it to work with 1.0.0, but have got stuck and need some suggestions. I can see everything loading. I can see my UserContext being returned and my Resource as well. I know they are not null. However, no

AuthenticatedUser and entity_id

2019-06-16 Thread Mark Nolan
I'm in the process of updating an extension that we have that builds on the MySQL authentication provider. To save me a load of investigation, can someone tell me whether AuthenticatedUser now holds the entity_id, or does it still have the user_id? Thanks, M. .

Eclipse flags Maven errors on client 1.1.0

2019-06-14 Thread Mark Nolan
If I clone client 1.1.0, Eclipse flags the jdbc mysql, sqlserver and postgresql poms with an error that I have pasted at the end. I don't use Eclipse to build guacamole client as it has other issues with some of the maven plugins, but I always pay attention to errors, just in case. It is entirely

Re: How to implement content security policy?

2018-09-19 Thread Mark Nolan
elaborate on the custom > filter? Do you have any examples for the CSP so I can use for the Guacamole? > > Thanks > > > > > > On Wednesday, September 19, 2018, 9:35:57 AM EDT, Mark Nolan < > mano...@gmail.com> wrote: > > Difficult to know wh

Re: Docker Guacamole - Destination files get removed

2018-08-28 Thread Mark Nolan
Why are you adding them? If you have changed the guacamole app (including dependencies), you should build a war and deploy it properly. If you need them for an extension, you can either bundle them in the extension jar file using the maven dependency plugin (as guacamole does, see the guacamole

Re: Guacamole home environment variable

2018-07-16 Thread Mark Nolan
r my container to be able to > inherit the contents of the host's /opt/guacamole-home directory, I should > have a volume. So if I take those lines out where the volume gets > referenced, and just define the environment variable, it won't work. Did I > understand you correctly? > &g

Re: Keeping Guacamole docker image up to date

2018-06-17 Thread Mark Nolan
, Nick Couchman wrote: > On Sun, Jun 17, 2018 at 12:51 PM Mark Nolan wrote: > > > Looks good. I think the https connector will take a little more work, > > though! > > M > > > > Ah, yes - I zeroed in on the web context part and conveniently ignored that &g

Re: Keeping Guacamole docker image up to date

2018-06-17 Thread Mark Nolan
g 1.0.0 release, but maybe for a quick > minor release after that. > > -Nick > > On Sun, Jun 17, 2018 at 09:49 Mark Nolan wrote: > > > On a slightly different tack, but still relevant to keeping images up to > > date, we always have to customize the image to declare

Re: Keeping Guacamole docker image up to date

2018-06-17 Thread Mark Nolan
On a slightly different tack, but still relevant to keeping images up to date, we always have to customize the image to declare the https connector and because we want to serve guacamole from the root context. Is there a preferred approach to this? Is it something that would be useful to others?

Re: Question about isLoaded in homeController.js

2018-05-15 Thread Mark Nolan
<vn...@apache.org> wrote: > On Tue, May 15, 2018 at 2:35 PM, Mark Nolan <mano...@gmail.com> wrote: > > > guacamole/src/main/webapp/app/home/controllers/homeController.js > > > > > > I see that there is an item added to the $scope: > > > > $sc

Question about isLoaded in homeController.js

2018-05-15 Thread Mark Nolan
guacamole/src/main/webapp/app/home/controllers/homeController.js I see that there is an item added to the $scope: $scope.rootConnectionGroups = null; This variable is used throughout the code. The isLoaded method checks a different variable: $scope.isLoaded = function isLoaded() {

Extension session resource

2018-05-09 Thread Mark Nolan
I'm new to guacamole. Hopefully I have understood this correctly. I want to create an extension that exposes a RESTful resource. Eventually, the resource will connect to the Google Cloud Platform API to allow some users to start and stop the host that provides a particular connection. Currently