mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
Merge 1.1.0 changes to master.
This commit is contained in:
@@ -20,8 +20,9 @@
|
|||||||
package org.apache.guacamole.form;
|
package org.apache.guacamole.form;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a time zone field. The field may contain only valid time zone IDs,
|
* Represents a time zone field. The field may contain only valid time zone
|
||||||
* as dictated by TimeZone.getAvailableIDs().
|
* identifiers, as defined by the IANA time zone database. Such identifiers are
|
||||||
|
* also valid Java time zone IDs as dictated by TimeZone.getAvailableIDs().
|
||||||
*/
|
*/
|
||||||
public class TimeZoneField extends Field {
|
public class TimeZoneField extends Field {
|
||||||
|
|
||||||
|
@@ -108,7 +108,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "timezone",
|
"name" : "timezone",
|
||||||
"type" : "TEXT"
|
"type" : "TIMEZONE"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "console",
|
"name" : "console",
|
||||||
|
@@ -96,7 +96,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "timezone",
|
"name" : "timezone",
|
||||||
"type" : "TEXT"
|
"type" : "TIMEZONE"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "server-alive-interval",
|
"name" : "server-alive-interval",
|
||||||
|
@@ -19,8 +19,9 @@
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Controller for time zone fields. Time zone fields use Java IDs as the
|
* Controller for time zone fields. Time zone fields use IANA time zone
|
||||||
* standard representation for each supported time zone.
|
* database identifiers as the standard representation for each supported time
|
||||||
|
* zone. These identifiers are also legal Java time zone IDs.
|
||||||
*/
|
*/
|
||||||
angular.module('form').controller('timeZoneFieldController', ['$scope', '$injector',
|
angular.module('form').controller('timeZoneFieldController', ['$scope', '$injector',
|
||||||
function timeZoneFieldController($scope, $injector) {
|
function timeZoneFieldController($scope, $injector) {
|
||||||
@@ -418,7 +419,6 @@ angular.module('form').controller('timeZoneFieldController', ['$scope', '$inject
|
|||||||
"Canada" : {
|
"Canada" : {
|
||||||
"Atlantic" : "Canada/Atlantic",
|
"Atlantic" : "Canada/Atlantic",
|
||||||
"Central" : "Canada/Central",
|
"Central" : "Canada/Central",
|
||||||
"East-Saskatchewan" : "Canada/East-Saskatchewan",
|
|
||||||
"Eastern" : "Canada/Eastern",
|
"Eastern" : "Canada/Eastern",
|
||||||
"Mountain" : "Canada/Mountain",
|
"Mountain" : "Canada/Mountain",
|
||||||
"Newfoundland" : "Canada/Newfoundland",
|
"Newfoundland" : "Canada/Newfoundland",
|
||||||
|
Reference in New Issue
Block a user