Broadworks-OCIP

 view release on metacpan or  search on metacpan

ocip_html/OCISchemaGroup.xsd.html  view on Meta::CPAN


/******** Schema Document Properties Section ********/

/* Table displaying the namespaces declared in the schema */
table.namespaces th {
   background-color: #ccc;
}
table.namespaces td {
   background-color: #eee;
}
/* Target namespace of the schema */
span.targetNS {
   color: #06C;
   font-weight: bold;
}


/******** Schema Components' Sections ********/

/* Name of schema component */
.name {
   color: #F93; /* Orange */
}

/* Hierarchy table */
table.hierarchy {
   border: 2px solid #999; /* Gray */
}

/* XML Instance Representation table */
div.sample div.contents {
   border: 2px dashed black;
}

/* Schema Component Representation table */
div.schemaComponent div.contents {
   border: 2px black solid;
}


/******** Glossary Section ********/

/* Glossary Terms */
.glossaryTerm {
   color: #036; /* Blue */
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Printer-version styles */

@media print {

/* Ensures that controls are hidden when printing */
div#printerControls {
   visibility: hidden;
}
div#globalControls {
   visibility: hidden;
}
#legend {
   display: none;
}
#legendTOC {
   display: none;
}
#glossary {
   display: none;
}
#glossaryTOC {
   display: none;
}

}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Base styles */

/******** General ********/

/* Unordered lists */
ul {
   margin-left: 1.5em;
   margin-bottom: 0em;
}
/* Tables */
table {
   margin-top: 10px;
   margin-bottom: 10px;
   margin-left: 2px;
   margin-right: 2px;
}
table th, table td {
   font-size: 10pt;
   vertical-align: top;
   padding-top: 3px;
   padding-bottom: 3px;
   padding-left: 10px;
   padding-right: 10px;
}
table th {
   font-weight: bold;
   text-align: left;
}
/* Table displaying the properties of the schema components or the
   schema document itself */
table.properties {
   width: 90%;
}
table.properties th {
   width: 30%;
}
/* Boxes that can make its content appear and disappear*/
div.box {
   margin: 1em;
}
   /* Box caption */
div.box span.caption {
   font-weight: bold;
}
   /* Button to open and close the box */
div.box input.control {
   width: 1.4em;
   height: 1.4em;

ocip_html/OCISchemaGroup.xsd.html  view on Meta::CPAN

div.sample div.contents .inherited, div.sample div.contents .inherited a {
   color: #666; /* Dark gray */
}
   /* Elements and attributes added to or changed from base type */
div.sample div.contents .newFields {
   font-weight: bold;
}
   /* Other type of information */
div.sample div.contents .other, div.sample div.contents .other a {
   color: #369; /* Blue */
   font-style: italic;
}
   /* Link to open up window displaying documentation */
div.sample div.contents a.documentation {
   text-decoration: none;
   padding-left: 3px;
   padding-right: 3px;
   padding-top: 0px;
   padding-bottom: 0px;
   font-weight: bold;
   font-size: 11pt;
   background-color: #FFD;
   color: #069;
}
   /* Invert colors when hovering over link to open up window 
      displaying documentation */
div.sample div.contents a.documentation:hover {
   color: #FFD;
   background-color: #069;
}

/* Schema Component Representation table */
div.schemaComponent {
   width: 90%;
}
div.schemaComponent div.contents {
   font-family: Courier New, sans-serif;
   font-size: 10pt;
   padding: 5px;
}
   /* Syntax characters */
div.schemaComponent div.contents {
   color: #00f; /* blue */
}
   /* Element and attribute tags */
div.schemaComponent div.contents .scTag {
   color: #933; /* maroon */
}
   /* Element and attribute content */
div.schemaComponent div.contents .scContent, div.schemaComponent div.contents .scContent a {
   color: black;
   font-weight: bold;
}
   /* Comments */
div.schemaComponent div.contents .comment {
   color: #999; /* Light gray */
}

/******** Legend Section ********/

div#legend table, div#legend div {
   margin-bottom: 3px;
}
div#legend div.hint {
   color: #999; /* Light gray */
   width: 90%;
   margin-left: 1em;
   margin-bottom: 2em;
}


/******** Glossary Section ********/

/* Glossary Terms */
.glossaryTerm {
   font-weight: bold;
}


/******** Footer ********/

.footer {
   font-size: 8pt;
}
</style>
<script type="text/javascript">
<!--
/* IDs of XML Instance Representation boxes */
var xiBoxes = new Array('type_GroupAccessDeviceAddRequest14_xibox', 'type_GroupAccessDeviceCustomTagAddRequest_xibox', 'type_GroupAccessDeviceCustomTagDeleteListRequest_xibox', 'type_GroupAccessDeviceCustomTagGetListRequest_xibox', 'type_GroupAccessD...
/* IDs of Schema Component Representation boxes */
var scBoxes = new Array('schema_scbox', 'type_GroupAccessDeviceAddRequest14_scbox', 'type_GroupAccessDeviceCustomTagAddRequest_scbox', 'type_GroupAccessDeviceCustomTagDeleteListRequest_scbox', 'type_GroupAccessDeviceCustomTagGetListRequest_scbox', 't...

/**
 * Can get the ID of the button controlling
 * a collapseable box by concatenating
 * this string onto the ID of the box itself.
 */
var B_SFIX = "_button";

/**
 * Counter of documentation windows
 * Used to give each window a unique name
 */
var windowCount = 0;

/**
 * Returns an element in the current HTML document.
 * 
 * @param elementID Identifier of HTML element
 * @return               HTML element object
 */
function getElementObject(elementID) {
    var elemObj = null;
    if (document.getElementById) {
        elemObj = document.getElementById(elementID);
    }
    return elemObj;
}             

/**
 * Closes a collapseable box.
 * 
 * @param boxObj       Collapseable box
 * @param buttonObj Button controlling box

ocip_html/OCISchemaGroup.xsd.html  view on Meta::CPAN

 * @param boxList Array of box IDs
 */
function expandAll(boxList) {
  var idx;
  for (idx = 0; idx < boxList.length; idx++) {
     var boxObj = getElementObject(boxList[idx]);
     var buttonObj = getElementObject(boxList[idx]+B_SFIX);
     openBox(boxObj, buttonObj);
  }
}

/**
 * Makes all the control buttons of boxes appear.
 * 
 * @param boxList Array of box IDs
 */
function viewControlButtons(boxList) {
    var idx;
    for (idx = 0; idx < boxList.length; idx++) {
        buttonObj = getElementObject(boxList[idx]+B_SFIX);
        if (buttonObj != null) {
            buttonObj.style.display = "inline";
        }
    }
}

/**
 * Makes all the control buttons of boxes disappear.
 * 
 * @param boxList Array of box IDs
 */
function hideControlButtons(boxList) {
    var idx;
    for (idx = 0; idx < boxList.length; idx++) {
        buttonObj = getElementObject(boxList[idx]+B_SFIX);
        if (buttonObj != null) {
            buttonObj.style.display = "none";
        }
    }
}

/**
 * Sets the page for either printing mode
 * or viewing mode. In printing mode, the page
 * is made to be more readable when printing it out.
 * In viewing mode, the page is more browsable.
 *
 * @param isPrinterVersion If true, display in
 *                                 printing mode; otherwise, 
 *                                 in viewing mode
 */
function displayMode(isPrinterVersion) {
    var obj;
    if (isPrinterVersion) {
        // Hide global control buttons
        obj = getElementObject("globalControls");
        if (obj != null) {
            obj.style.visibility = "hidden";
        }
        // Hide Legend
        obj = getElementObject("legend");
        if (obj != null) {
            obj.style.display = "none";
        }
        obj = getElementObject("legendTOC");
        if (obj != null) {
            obj.style.display = "none";
        }
        // Hide Glossary
        obj = getElementObject("glossary");
        if (obj != null) {
            obj.style.display = "none";
        }
        obj = getElementObject("glossaryTOC");
        if (obj != null) {
            obj.style.display = "none";
        }

        // Expand all XML Instance Representation tables
        expandAll(xiBoxes);
        // Expand all Schema Component Representation tables
        expandAll(scBoxes);

        // Hide Control buttons
        hideControlButtons(xiBoxes);
        hideControlButtons(scBoxes);
    } else {
        // View global control buttons
        obj = getElementObject("globalControls");
        if (obj != null) {
            obj.style.visibility = "visible";
        }
        // View Legend
        obj = getElementObject("legend");
        if (obj != null) {
            obj.style.display = "block";
        }
        obj = getElementObject("legendTOC");
        if (obj != null) {
            obj.style.display = "block";
        }
        // View Glossary
        obj = getElementObject("glossary");
        if (obj != null) {
            obj.style.display = "block";
        }
        obj = getElementObject("glossaryTOC");
        if (obj != null) {
            obj.style.display = "block";
        }

        // Expand all XML Instance Representation tables
        expandAll(xiBoxes);
        // Collapse all Schema Component Representation tables
        collapseAll(scBoxes);

        // View Control buttons
        viewControlButtons(xiBoxes);
        viewControlButtons(scBoxes);
    }
}

/**
 * Opens up a window displaying the documentation
 * of a schema component in the XML Instance
 * Representation table.
 * 
 * @param compDesc      Description of schema component 
 * @param compName      Name of schema component 
 * @param docTextArray Array containing the paragraphs 
 *                           of the new document
 */
function viewDocumentation(compDesc, compName, docTextArray) {
  var width = 400;
  var height = 200;
  var locX = 100;
  var locY = 200;

  /* Generate content */
  var actualText = "<html>";
  actualText += "<head><title>";
  actualText += compDesc;
  if (compName != '') {
     actualText += ": " + compName;
  }
  actualText += "</title></head>";
  actualText += "<body bgcolor=\"#FFFFEE\">";
  // Title
  actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 12pt; font-weight: bold; letter-spacing:1px;\">";
  actualText += compDesc;
  if (compName != '') {
     actualText += ": <span style=\"color:#006699\">" + compName + "</span>";
  }
  actualText += "</p>";
  // Documentation
  var idx;
  for (idx = 0; idx < docTextArray.length; idx++) {
     actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 10pt;\">" + docTextArray[idx] + "</p>";

ocip_html/OCISchemaGroup.xsd.html  view on Meta::CPAN

</li>
<li>
<a href="#type_GroupSessionAdmissionControlGroupGetRequest19sp1">Complex Type: <strong>GroupSessionAdmissionControlGroupGetRequest19sp1</strong>
</a>
</li>
<li>
<a href="#type_GroupSessionAdmissionControlGroupGetResponse19sp1">Complex Type: <strong>GroupSessionAdmissionControlGroupGetResponse19sp1</strong>
</a>
</li>
<li>
<a href="#type_GroupSessionAdmissionControlGroupModifyRequest">Complex Type: <strong>GroupSessionAdmissionControlGroupModifyRequest</strong>
</a>
</li>
<li>
<a href="#type_GroupSessionAdmissionControlModifyRequest">Complex Type: <strong>GroupSessionAdmissionControlModifyRequest</strong>
</a>
</li>
<li>
<a href="#type_GroupShInterfaceGetUserListRequest">Complex Type: <strong>GroupShInterfaceGetUserListRequest</strong>
</a>
</li>
<li>
<a href="#type_GroupShInterfaceGetUserListResponse">Complex Type: <strong>GroupShInterfaceGetUserListResponse</strong>
</a>
</li>
<li>
<a href="#type_GroupTrunkGroupGetAvailableDetailListRequest">Complex Type: <strong>GroupTrunkGroupGetAvailableDetailListRequest</strong>
</a>
</li>
<li>
<a href="#type_GroupTrunkGroupGetAvailableDetailListResponse">Complex Type: <strong>GroupTrunkGroupGetAvailableDetailListResponse</strong>
</a>
</li>
<li>
<a href="#type_ReplacementCustomContactDirectoryEntryList">Complex Type: <strong>ReplacementCustomContactDirectoryEntryList</strong>
</a>
</li>
<li>
<a href="#type_ShInterfaceUserListEntry">Complex Type: <strong>ShInterfaceUserListEntry</strong>
</a>
</li>
<li>
<a href="#type_DepartmentCallingLineIdName">Simple Type: <strong>DepartmentCallingLineIdName</strong>
</a>
</li>
<li>
<a href="#type_GroupDigitCollectionSettingLevel">Simple Type: <strong>GroupDigitCollectionSettingLevel</strong>
</a>
</li>
<li>
<a href="#type_GroupFeatureAccessCodeLevel">Simple Type: <strong>GroupFeatureAccessCodeLevel</strong>
</a>
</li>
<li>
<a href="#type_GroupUserLimit">Simple Type: <strong>GroupUserLimit</strong>
</a>
</li>
</ul>
</li>
</ul>
<ul style="margin-top: 0em" id="legendTOC">
<li>
<a href="#Legend">Legend</a>
</li>
</ul>
<ul style="margin-top: 0em" id="glossaryTOC">
<li>
<a href="#Glossary">Glossary</a>
</li>
</ul>
<div style="text-align: right; clear: both;">
<a href="#top">top</a>
</div>
<hr />
<h2>
<a name="SchemaProperties">Schema Document Properties</a>
</h2>
<table class="properties">
<tr>
<th>
<a href="#term_TargetNS" title="Look up 'Target Namespace' in glossary">Target Namespace</a>
</th>
<td>None</td>
</tr>
<tr>
<th>Element and Attribute Namespaces</th>
<td>
<ul>
<li>Global element and attribute declarations belong to this schema's target namespace.</li>
<li>By default, local element declarations belong to this schema's target namespace.</li>
<li>By default, local attribute declarations belong to this schema's target namespace.</li>
</ul>
</td>
</tr>
<tr>
<th>Schema Composition</th>
<td>
<ul>
<li>This schema imports schema(s) from the following namespace(s):<ul>
<li>
<em>C</em> (at <a href="OCISchemaBASE.xsd.html" title="Jump to schema documentation for 'OCISchemaBASE.xsd'.">OCISchemaBASE.xsd</a>)</li>
</ul>
</li>
<li>This schema includes components from the following schema document(s):<ul>
<li>
<a href="OCISchemaDataTypes.xsd.html" title="Jump to schema documentation for 'OCISchemaDataTypes.xsd'.">OCISchemaDataTypes.xsd</a>
</li>
<li>
<a href="OCISchemaSearchCriteria.xsd.html" title="Jump to schema documentation for 'OCISchemaSearchCriteria.xsd'.">OCISchemaSearchCriteria.xsd</a>
</li>
</ul>
</li>
</ul>
</td>
</tr>
</table>
<h3>Declared Namespaces</h3>
<table class="namespaces">
<tr>
<th>Prefix</th>
<th>Namespace</th>

ocip_html/OCISchemaGroup.xsd.html  view on Meta::CPAN

<table class="hierarchy">
<tr>
<th>Parent type:</th>
<td>
<span class="type">
<a title="Find out namespace of 'xs' prefix" href="#ns_xs">xs</a>:int</span> (derivation method: restriction)</td>
</tr>
<tr>
<th>Sub-types:</th>
<td>None</td>
</tr>
</table>
<table class="properties">
<tr>
<th>Name</th>
<td>GroupUserLimit</td>
</tr>
<tr>
<th>Content</th>
<td>
<ul>
<li>Base XSD Type: int</li>
</ul>
<ul>
<li>1 &lt;= <em xmlns="http://www.w3.org/1999/xhtml">value</em> &lt;= 999999</li>
</ul>
</td>
</tr>
<tr xmlns="">
<th>Documentation</th>
<td>
        Configured maximum number of users in a group.
      </td>
</tr>
<th>Application Data</th>
<td>
      </td>
</tr>
</table>
<div class="schemaComponent box">
<div>
<input style="display: none" onclick="switchState('type_GroupUserLimit_scbox'); return false;" class="control" id="type_GroupUserLimit_scbox_button" type="button" /> <span class="caption">Schema Component Representation</span>
</div>
<div class="contents" id="type_GroupUserLimit_scbox">
<div style="margin-left: 0em">&lt;<span class="scTag">xs:simpleType</span> <span class="scTag">name</span>="<span class="scContent">GroupUserLimit</span>"&gt;<div style="margin-left: 1.5em">&lt;<span class="scTag">xs:restriction</span> <span class="s...
<span class="type">
<a title="Find out namespace of 'xs' prefix" href="#ns_xs">xs</a>:int</span>
</span>"&gt;<div style="margin-left: 1.5em">&lt;<span class="scTag">xs:minInclusive</span> <span class="scTag">value</span>="<span class="scContent">1</span>"/&gt;</div>
<div style="margin-left: 1.5em">&lt;<span class="scTag">xs:maxInclusive</span> <span class="scTag">value</span>="<span class="scContent">999999</span>"/&gt;</div>&lt;/<span class="scTag">xs:restriction</span>&gt;</div>&lt;/<span class="scTag">xs:simp...
</div>
<script type="text/javascript">
<!--
setState('type_GroupUserLimit_scbox', false);
// -->
</script>
</div>
<div style="text-align: right; clear: both;">
<a href="#top">top</a>
</div>
<hr />
<div id="legend">
<h2>
<a name="Legend">Legend</a>
</h2>
<div style="float: left; width: 15em;">
<h3 style="margin-bottom: 0px;">Complex Type:</h3>
<div style="margin-left: 0em;" class="hint">Schema Component Type</div>
</div>
<div style="float: left; width: 15em;">
<h3 style="margin-bottom: 0px;">
<span class="name">AusAddress</span>
</h3>
<div style="margin-left: 0em;" class="hint">Schema Component Name</div>
</div>
<table style="clear : both" class="hierarchy">
<tr>
<th>Parent type:</th>
<td>
<span style="color: #0000FF; text-decoration:underline;" class="type">Address</span> (derivation method: extension)</td>
</tr>
<tr>
<th>Sub-types:</th>
<td>
<ul>
<li>
<span style="color: #0000FF; text-decoration:underline;" class="type">QLDAddress</span> (by restriction)</li>
</ul>
</td>
</tr>
</table>
<div class="hint">If this schema component is a type definition, its type hierarchy is shown in a gray-bordered box.</div>
<table class="properties">
<tr>
<th>Name</th>
<td>AusAddress</td>
</tr>
<tr>
<th>
<a href="#term_Abstract" title="Look up 'Abstract' in glossary">Abstract</a>
</th>
<td>no</td>
</tr>
</table>
<div class="hint">The table above displays the properties of this schema component.</div>
<div class="sample box">
<div>
<span class="caption">XML Instance Representation</span>
</div>
<div class="contents">
<span style="margin-left: 0em">&lt;...</span>
<span class="newFields">
<span> country="<span class="fixed">Australia</span>"</span>
</span>&gt; <br />
<span class="inherited" style="margin-left: 1.5em">&lt;unitNo&gt; <span class="type">string</span> &lt;/unitNo&gt; <span class="occurs">[0..1]</span>
</span>
<br />
<span class="inherited" style="margin-left: 1.5em">&lt;houseNo&gt; <span class="type">string</span> &lt;/houseNo&gt; <span class="occurs">[1]</span>
</span>
<br />
<span class="inherited" style="margin-left: 1.5em">&lt;street&gt; <span class="type">string</span> &lt;/street&gt; <span class="occurs">[1]</span>
</span>



( run in 0.417 second using v1.01-cache-2.11-cpan-13bb782fe5a )