GUAC-1172: Comply with newly-adopted JavaScript coding style.

This commit is contained in:
Michael Jumper
2015-06-22 12:41:11 -07:00
parent 88a3f12a8b
commit 4ec407b6b6
3 changed files with 13 additions and 13 deletions

View File

@@ -320,7 +320,7 @@ Guacamole.Client = function(tunnel) {
* An output stream which will write blobs to the named output stream * An output stream which will write blobs to the named output stream
* of the given object. * of the given object.
*/ */
this.createObjectOutputStream = function(index, mimetype, name) { this.createObjectOutputStream = function createObjectOutputStream(index, mimetype, name) {
// Allocate index // Allocate index
var streamIndex = stream_indices.next(); var streamIndex = stream_indices.next();
@@ -331,7 +331,7 @@ Guacamole.Client = function(tunnel) {
// Override sendEnd() of stream to automatically free index // Override sendEnd() of stream to automatically free index
var oldEnd = stream.sendEnd; var oldEnd = stream.sendEnd;
stream.sendEnd = function() { stream.sendEnd = function freeStreamIndex() {
oldEnd(); oldEnd();
stream_indices.free(streamIndex); stream_indices.free(streamIndex);
delete output_streams[streamIndex]; delete output_streams[streamIndex];
@@ -353,7 +353,7 @@ Guacamole.Client = function(tunnel) {
* @param {String} name * @param {String} name
* The name of the input stream to request. * The name of the input stream to request.
*/ */
this.requestObjectInputStream = function(index, name) { this.requestObjectInputStream = function requestObjectInputStream(index, name) {
// Do not send requests if not connected // Do not send requests if not connected
if (!isConnected()) if (!isConnected())
@@ -645,7 +645,7 @@ Guacamole.Client = function(tunnel) {
}, },
"body": function(parameters) { "body" : function handleBody(parameters) {
// Get object // Get object
var objectIndex = parseInt(parameters[0]); var objectIndex = parseInt(parameters[0]);
@@ -863,7 +863,7 @@ Guacamole.Client = function(tunnel) {
}, },
"filesystem": function(parameters) { "filesystem" : function handleFilesystem(parameters) {
var objectIndex = parseInt(parameters[0]); var objectIndex = parseInt(parameters[0]);
var name = parameters[1]; var name = parameters[1];
@@ -1118,7 +1118,7 @@ Guacamole.Client = function(tunnel) {
}, },
"undefine": function(parameters) { "undefine" : function handleUndefine(parameters) {
// Get object // Get object
var objectIndex = parseInt(parameters[0]); var objectIndex = parseInt(parameters[0]);

View File

@@ -32,7 +32,7 @@ var Guacamole = Guacamole || {};
* @param {Guacamole.InputStream} stream * @param {Guacamole.InputStream} stream
* The stream that JSON will be read from. * The stream that JSON will be read from.
*/ */
Guacamole.JSONReader = function(stream) { Guacamole.JSONReader = function guacamoleJSONReader(stream) {
/** /**
* Reference to this Guacamole.JSONReader. * Reference to this Guacamole.JSONReader.
@@ -64,7 +64,7 @@ Guacamole.JSONReader = function(stream) {
* @return {Number} * @return {Number}
* The current length of this Guacamole.JSONReader. * The current length of this Guacamole.JSONReader.
*/ */
this.getLength = function() { this.getLength = function getLength() {
return json.length; return json.length;
}; };
@@ -76,7 +76,7 @@ Guacamole.JSONReader = function(stream) {
* The contents of this Guacamole.JSONReader, as parsed from the JSON * The contents of this Guacamole.JSONReader, as parsed from the JSON
* contents of the input stream. * contents of the input stream.
*/ */
this.getJSON = function() { this.getJSON = function getJSON() {
return JSON.parse(json); return JSON.parse(json);
}; };
@@ -93,7 +93,7 @@ Guacamole.JSONReader = function(stream) {
}; };
// Simply call onend when end received // Simply call onend when end received
stringReader.onend = function() { stringReader.onend = function onend() {
if (guacReader.onend) if (guacReader.onend)
guacReader.onend(); guacReader.onend();
}; };

View File

@@ -33,7 +33,7 @@ var Guacamole = Guacamole || {};
* @param {Number} index * @param {Number} index
* The index of this object. * The index of this object.
*/ */
Guacamole.Object = function(client, index) { Guacamole.Object = function guacamoleObject(client, index) {
/** /**
* Reference to this Guacamole.Object. * Reference to this Guacamole.Object.
@@ -163,7 +163,7 @@ Guacamole.Object = function(client, index) {
* and its mimetype as its two only arguments. If the onbody handler of * and its mimetype as its two only arguments. If the onbody handler of
* this object is overridden, this callback will not be invoked. * this object is overridden, this callback will not be invoked.
*/ */
this.requestInputStream = function(name, bodyCallback) { this.requestInputStream = function requestInputStream(name, bodyCallback) {
// Queue body callback if provided // Queue body callback if provided
if (bodyCallback) if (bodyCallback)
@@ -189,7 +189,7 @@ Guacamole.Object = function(client, index) {
* An output stream which will write blobs to the named output stream * An output stream which will write blobs to the named output stream
* of this object. * of this object.
*/ */
this.createOutputStream = function(mimetype, name) { this.createOutputStream = function createOutputStream(mimetype, name) {
return client.createObjectOutputStream(guacObject.index, mimetype, name); return client.createObjectOutputStream(guacObject.index, mimetype, name);
}; };