GUACAMOLE-381: Add definitions for "disable-copy" and "disable-paste" connection parameters.

This commit is contained in:
Michael Jumper
2019-02-19 12:38:12 -08:00
parent 8f27896dca
commit e99b207a58
13 changed files with 101 additions and 4 deletions

View File

@@ -147,6 +147,22 @@
]
},
{
"name" : "clipboard",
"fields" : [
{
"name" : "disable-copy",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "disable-paste",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},
{
"name" : "device-redirection",
"fields" : [

View File

@@ -67,6 +67,22 @@
]
},
{
"name" : "clipboard",
"fields" : [
{
"name" : "disable-copy",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "disable-paste",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},
{
"name" : "session",
"fields" : [
@@ -80,6 +96,7 @@
}
]
},
{
"name" : "behavior",
"fields" : [

View File

@@ -71,6 +71,22 @@
]
},
{
"name" : "clipboard",
"fields" : [
{
"name" : "disable-copy",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "disable-paste",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},
{
"name" : "behavior",
"fields" : [

View File

@@ -59,6 +59,16 @@
"name" : "clipboard-encoding",
"type" : "ENUM",
"options" : [ "", "ISO8859-1", "UTF-8", "UTF-16", "CP1252" ]
},
{
"name" : "disable-copy",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "disable-paste",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},