in src/filter-j2.py [0:0]
def environmentName(value):
"""
Transforms the given Guacamole property to its corresponding environment
variable name.
:param value:
The property name to filter.
:return string:
The name of the environment variable that corresponds to the given
property.
"""
return value.upper().replace('-', '_')