mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
Fix whitespace errors.
This commit is contained in:
@@ -51,7 +51,7 @@ guacamole.properties such that the authentication provider is available.
|
|||||||
contents of your settings.xml file is correct.
|
contents of your settings.xml file is correct.
|
||||||
|
|
||||||
2) Extract the .tar.gz file now present in the target/ directory, and
|
2) Extract the .tar.gz file now present in the target/ directory, and
|
||||||
place the .jar files in the extracted lib/ subdirectory in the library
|
place the .jar files in the extracted lib/ subdirectory in the library
|
||||||
directory specified in guacamole.properties.
|
directory specified in guacamole.properties.
|
||||||
|
|
||||||
You will likely need to do this as root.
|
You will likely need to do this as root.
|
||||||
@@ -86,8 +86,8 @@ guacamole.properties such that the authentication provider is available.
|
|||||||
|
|
||||||
When completed, this file should be placed in a common location such
|
When completed, this file should be placed in a common location such
|
||||||
that it can be referenced from guacamole.properties, like
|
that it can be referenced from guacamole.properties, like
|
||||||
/etc/guacamole/noauth-config.xml.
|
/etc/guacamole/noauth-config.xml.
|
||||||
|
|
||||||
4) Configure guacamole.properties
|
4) Configure guacamole.properties
|
||||||
|
|
||||||
An additional property is required by guacamole-auth-noauth which defines
|
An additional property is required by guacamole-auth-noauth which defines
|
||||||
@@ -112,6 +112,6 @@ guacamole.properties such that the authentication provider is available.
|
|||||||
|
|
||||||
Please report any bugs encountered by opening a new ticket at the Trac system
|
Please report any bugs encountered by opening a new ticket at the Trac system
|
||||||
hosted at:
|
hosted at:
|
||||||
|
|
||||||
http://guac-dev.org/trac/
|
http://guac-dev.org/trac/
|
||||||
|
|
||||||
|
@@ -47,7 +47,7 @@ import org.xml.sax.helpers.DefaultHandler;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* XML parser for the configuration file used by the NoAuth auth provider.
|
* XML parser for the configuration file used by the NoAuth auth provider.
|
||||||
*
|
*
|
||||||
* @author Laurent Meunier
|
* @author Laurent Meunier
|
||||||
*/
|
*/
|
||||||
public class NoAuthConfigContentHandler extends DefaultHandler {
|
public class NoAuthConfigContentHandler extends DefaultHandler {
|
||||||
@@ -70,7 +70,7 @@ public class NoAuthConfigContentHandler extends DefaultHandler {
|
|||||||
/**
|
/**
|
||||||
* Returns the a map of all available configurations as parsed from the
|
* Returns the a map of all available configurations as parsed from the
|
||||||
* XML file. This map is unmodifiable.
|
* XML file. This map is unmodifiable.
|
||||||
*
|
*
|
||||||
* @return A map of all available configurations.
|
* @return A map of all available configurations.
|
||||||
*/
|
*/
|
||||||
public Map<String, GuacamoleConfiguration> getConfigs() {
|
public Map<String, GuacamoleConfiguration> getConfigs() {
|
||||||
@@ -85,13 +85,13 @@ public class NoAuthConfigContentHandler extends DefaultHandler {
|
|||||||
|
|
||||||
// Add to map
|
// Add to map
|
||||||
configs.put(current, currentConfig);
|
configs.put(current, currentConfig);
|
||||||
|
|
||||||
// Reset state for next configuration
|
// Reset state for next configuration
|
||||||
currentConfig = null;
|
currentConfig = null;
|
||||||
current = null;
|
current = null;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -116,7 +116,7 @@ public class NoAuthenticationProvider extends SimpleAuthenticationProvider {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves the configuration file, as defined within guacamole.properties.
|
* Retrieves the configuration file, as defined within guacamole.properties.
|
||||||
*
|
*
|
||||||
* @return The configuration file, as defined within guacamole.properties.
|
* @return The configuration file, as defined within guacamole.properties.
|
||||||
* @throws GuacamoleException If an error occurs while reading the
|
* @throws GuacamoleException If an error occurs while reading the
|
||||||
* property.
|
* property.
|
||||||
|
Reference in New Issue
Block a user