1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

escapeHTML

This commit is contained in:
Rodrigo Estebanez 2013-06-03 14:14:54 +02:00
parent d809e146a9
commit befd61b1fd

View file

@ -5,13 +5,12 @@ module Fog
class Real
def configure_vm_customization_script(vmdata)
# The customization script cannot exceed 1500 characters.
edit_uri = vmdata[:href]
body = <<EOF
<GuestCustomizationSection xmlns="http://www.vmware.com/vcloud/v1.5" xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml" href="https://zone01.bluelock.com/api/vApp/vm-cc8e27be-f18c-4263-87c5-58a9297bac5b/guestCustomizationSection/" ovf:required="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schemas.dmtf.org/ovf/envelope/1 http://schemas.dmtf.org/ovf/envelope/1/dsp8023_1.1.0.xsd http://www.vmware.com/vcloud/v1.5 http://zone01.bluelock.com/api/v1.5/schema/master.xsd">
<ovf:Info>Specifies Guest OS Customization Settings</ovf:Info>
<Enabled>true</Enabled>
<CustomizationScript>#{vmdata[:CustomizationScript]}</CustomizationScript>
<CustomizationScript>#{CGI.escapeHTML(vmdata[:CustomizationScript])}</CustomizationScript>
<ComputerName>#{vmdata[:ComputerName]}</ComputerName>
<Link rel="edit" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml" href="#{edit_uri}"/>