developer_guide:voicexml_references:elements:meta

no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


developer_guide:voicexml_references:elements:meta [2015/10/27 21:38] (current) – created borja
Line 1: Line 1:
 +====== < meta > ======
  
 +===== Description =====
 +
 +The < meta > element specifies general information about the VoiceXML application.
 +
 +===== Syntax =====
 +
 +<code>
 +<meta
 +name="String"
 +content="String"
 +http-equiv="String"/>
 +</code>
 +
 +===== Attributes =====
 +
 +|name|The name attribute is the name of the meta-data property.  This attribute is required (specifically either name or http-equiv).|
 +|content|The content attribute is the value of the meta-data property.  This attribute is required.|
 +|http-equiv|The http-equiv attribute is the name of an HTTP response header.  This attribute is required (specifically either name or http-equiv).|
 +|application|The application attribute defines name of the application for billing purposes.|
 +|Meta-data Properties|The application meta-data property defines the name of the application for billing purposes.|
 +|callrequest|The call request meta-data property defines if the application will accept or decline incoming calls.  If the value is decline, then the application will decline incoming calls. Otherwise, the application accepts incoming calls.|
 +|maintainer|The maintainer meta-data property is the email address that log files will be sent to.|
 +
 +===== Parents =====
 +
 +<code>
 +<vxml>
 +</code>
 +
 +===== Children =====
 +
 +<code>
 +None.
 +</code>
 +
 +===== Extensions =====
 +
 +<code>
 +None.
 +</code>
 +
 +===== Limitations/Restrictions =====
 +
 +<code>
 +None.
 +</code>
 +
 +===== Example Code =====
 +
 +Meta information:
 +<code>
 +<?xml version="1.0"?>
 +<vxml version="2.0" xmlns="http://www.w3.org/2001/vxml">
 + <meta name="maintainer" content="jpdoe@anycompany.example.com"/>
 + <form>
 +  <block>  
 +   <prompt>Hello</prompt> 
 +  </block>
 + </form>  
 +</vxml>
 +</code>
 +
 +Meta specifies an HTTP response header:
 +<code>
 +<?xml version="1.0"?>
 +<vxml version="2.0" xmlns="http://www.w3.org/2001/vxml">
 + <meta http-equiv="Expires" content="0"/> 
 + <meta http-equiv="Date" content="Thu, 12 Dec 2000 23:27:21 GMT"/> 
 + <form>
 +  <block>  
 +   <prompt>Hello</prompt> 
 +  </block>
 + </form>  
 +</vxml>
 +</code>
  • developer_guide/voicexml_references/elements/meta.txt
  • Last modified: 2015/10/27 21:38
  • by borja