-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHUD_HMIS_xsd_Element_Sources.html
454 lines (414 loc) · 23.6 KB
/
HUD_HMIS_xsd_Element_Sources.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Schema documentation for component Sources</title>
<link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
<!--
var propertiesBoxes= new Array('properties_Sources');
var sourceBoxes= new Array('source_Sources');
var instanceBoxes= new Array('instance_Sources');
var diagramBoxes= new Array('diagram_Sources');
var annotationBoxes= new Array('annotations_Sources');
var modelBoxes= new Array('model_Sources');
var button_prefix = 'button_';
/**
* 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;
}
/**
* Switches the state of a collapseable box, e.g.
* if it's opened, it'll be closed, and vice versa.
*
* @param boxID Identifier of box
*/
function switchState(boxID) {
var boxObj = getElementObject(boxID);
var buttonObj = getElementObject(button_prefix + boxID);
if (boxObj == null || buttonObj == null) {
// Box or button not found
} else if (boxObj.style.display == "none") {
// Box is closed, so open it
openBox(boxObj, buttonObj);
} else if (boxObj.style.display == "block") {
// Box is opened, so close it
closeBox(boxObj, buttonObj);
}
}
/**
* Opens a collapseable box.
*
* @param boxObj Collapseable box
* @param buttonObj Button controlling box
*/
function openBox(boxObj, buttonObj) {
if (boxObj == null || buttonObj == null) {
// Box or button not found
} else {
// Change 'display' CSS property of box
boxObj.style.display = "block";
// Change text of button
if (boxObj.style.display == "block") {
buttonObj.src = "img/btM.gif";
}
}
}
/**
* Closes a collapseable box.
*
* @param boxObj Collapseable box
* @param buttonObj Button controlling box
*/
function closeBox(boxObj, buttonObj) {
if (boxObj == null || buttonObj == null) {
// Box or button not found
} else {
// Change 'display' CSS property of box
boxObj.style.display = "none";
// Change text of button
if (boxObj.style.display == "none") {
buttonObj.src = "img/btP.gif";
}
}
}
function switchStateForAll(buttonObj, boxList) {
if (buttonObj == null) {
// button not found
} else if (buttonObj.value == "+") {
// Expand all
expandAll(boxList);
buttonObj.value = "-";
} else if (buttonObj.value == "-") {
// Collapse all
collapseAll(boxList);
buttonObj.value = "+";
}
}
/**
* Closes all boxes in a given list.
*
* @param boxList Array of box IDs
*/
function collapseAll(boxList) {
var idx;
for (idx = 0; idx < boxList.length; idx++) {
var boxObj = getElementObject(boxList[idx]);
var buttonObj = getElementObject(button_prefix + boxList[idx]);
closeBox(boxObj, buttonObj);
}
}
/**
* Open all boxes in a given list.
*
* @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(button_prefix + boxList[idx]);
openBox(boxObj, buttonObj);
}
}
/**
* Update the message presented in the title of the html page.
* - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'"
* - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'"
* - If no split we always present: "Documentation for 'MainSchema.xsd'"
*/
function updatePageTitle(message) {
top.document.title = message;
}
/**
* Finds an HTML element by its ID and makes it floatable over the normal content.
*
* @param x_displacement The difference in pixels to the right side of the window from
* the left side of the element.
* @param y_displacement The difference in pixels to the right side of the window from
* the top of the element.
*/
function findAndFloat(id, x_displacement, y_displacement){
var element = getElementObject(id);
window[id + "_obj"] = element;
if(document.layers) {
element.style = element;
}
element.current_y = y_displacement;
element.first_time = true;
element.floatElement = function(){
// It may be closed by an user action.
// Target X and Y coordinates.
var x, y;
var myWidth = 0, myHeight = 0;
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
x = myWidth - x_displacement;
var ns = (navigator.appName.indexOf("Netscape") != -1);
y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ?
document.documentElement.scrollTop : document.body.scrollTop;
y = y + y_displacement;
// The current y is the current coordinate of the floating element.
// This should be at the limit the y target coordinate.
this.current_y += (y - this.current_y)/1.25;
// Add the pixels constant after the values
// and move the element.
var px = document.layers ? "" : "px";
this.style.left = x + px;
this.style.top = this.current_y + px;
setTimeout(this.id + "_obj.floatElement()", 100);
}
element.floatElement();
return element;
}
/**
* Finds an HTML element by its ID and makes it floatable over the normal content.
*
* @param x_displacement The difference in pixels to the right side of the window from
* the left side of the element.
* @param y_displacement The difference in pixels to the right side of the window from
* the top of the element.
*/
function selectTOCGroupBy(id, isChunked, indexFileLocation, indexFileNamespace, indexFileComponent){
if (!isChunked) {
var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type');
// Make all the tabs invisible.
for (i = 0; i < 3; i++){
var tab = getElementObject(selectIds[i]);
tab.style.display = 'none';
}
var selTab = getElementObject(id);
selTab.style.display = 'block';
} else {
if (id == 'toc_group_by_namespace') {
parent.indexFrame.location = indexFileNamespace;
} else if (id == 'toc_group_by_location') {
parent.indexFrame.location = indexFileLocation;
} else if (id == 'toc_group_by_component_type') {
parent.indexFrame.location = indexFileComponent;
}
}
}
//--></script></head>
<body>
<div id="global_controls" class="globalControls" style="position:absolute;right:0;">
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<h3>Showing:</h3>
<table>
<tr>
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, annotationBoxes);" class="control" /></span><span class="globalControlName">Annotations</span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, diagramBoxes);" class="control" /></span><span class="globalControlName">Diagrams</span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, instanceBoxes);" class="control" /></span><span class="globalControlName">Instances</span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, modelBoxes);" class="control" /></span><span class="globalControlName">Model </span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, propertiesBoxes);" class="control" /></span><span class="globalControlName">Properties </span></td>
</tr>
<tr>
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, sourceBoxes);" class="control" /></span><span class="globalControlName">Source</span></td>
</tr>
</table>
<div align="right"><span><input type="button" onclick="getElementObject('global_controls').style.display = 'none';" value="Close" /></span></div>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
</div><a id="Sources"></a><div class="componentTitle">Element <span class="qname">Sources</span></div>
<table class="rt">
<tr>
<td class="rt_cornerTopLeft"></td>
<td class="rt_lineTop"></td>
<td class="rt_cornerTopRight"></td>
</tr>
<tr>
<td class="rt_lineLeft"></td>
<td class="rt_content">
<table class="component">
<tbody>
<tr>
<td class="firstColumn"><b>Namespace</b></td>
<td>http://www.hudhdx.info/Resources/Vendors/6_1_1/HUD_HMIS.xsd</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Annotations</b></div>
<div class="floatRight"><input id="button_annotations_Sources" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Sources');" class="control" /></div>
</td>
<td>
<div id="annotations_Sources" style="display:block">
<div class="annotation">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tT">XML Root element. A description of what software provider and organization are sending this XML information. Many sources can be grouped together into one XML file.</span></pre></td>
</tr>
</table>
</div>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Diagram</b></div>
<div class="floatRight"><input id="button_diagram_Sources" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Sources');" class="control" /></div>
</td>
<td class="diagram">
<div id="diagram_Sources" style="display:block"><img alt="Diagram" border="0" src="img/HUD_HMIS_xsd_Element_Sources.jpeg" usemap="#HUD_HMIS_xsd_Element_Sources" /><map name="HUD_HMIS_xsd_Element_Sources" id="HUD_HMIS_xsd_Element_Sources">
<area alt="HUD_HMIS_xsd_Complex_Type_sources.tmp#http___www.hudhdx.info_Resources_Vendors_6_1_1_HUD_HMIS.xsd_sources_Source" href="HUD_HMIS_xsd_Complex_Type_sources.html#http___www.hudhdx.info_Resources_Vendors_6_1_1_HUD_HMIS.xsd_sources_Source" coords="287,40,418,80" />
<area alt="HUD_HMIS_xsd_Complex_Type_sources.tmp#http___www.hudhdx.info_Resources_Vendors_6_1_1_HUD_HMIS.xsd_sources" href="HUD_HMIS_xsd_Complex_Type_sources.html#http___www.hudhdx.info_Resources_Vendors_6_1_1_HUD_HMIS.xsd_sources" coords="187,3,308,25" /></map></div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Type</b></td>
<td><b><a href="HUD_HMIS_xsd_Complex_Type_sources.html#http___www.hudhdx.info_Resources_Vendors_6_1_1_HUD_HMIS.xsd_sources" target="mainFrame" title="http://www.hudhdx.info/Resources/Vendors/6_1_1/HUD_HMIS.xsd" onclick="updatePageTitle('Schema documentation for component sources')">sources</a></b></td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Properties</b></div>
<div class="floatRight"><input id="button_properties_Sources" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Sources');" class="control" /></div>
</td>
<td>
<div id="properties_Sources" style="display:block">
<table class="propertiesTable">
<tr>
<td class="firstColumn" style="white-space: nowrap;">content</td>
<td><b>complex</b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Sources" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Sources');" class="control" /></div>
</td>
<td>
<div id="model_Sources" style="display:block">
<table>
<tr>
<td colspan="2"><b><a href="HUD_HMIS_xsd_Complex_Type_sources.html#http___www.hudhdx.info_Resources_Vendors_6_1_1_HUD_HMIS.xsd_sources_Source" target="mainFrame" title="http://www.hudhdx.info/Resources/Vendors/6_1_1/HUD_HMIS.xsd" onclick="updatePageTitle('Schema documentation for component Source+')">Source+</a></b></td>
</tr>
<tr>
<td colspan="2"><b><a href="HUD_HMIS_xsd_Main_schema_HUD_HMIS_xsd.html#HUD_HMIS.xsd" target="mainFrame" title="http://www.hudhdx.info/Resources/Vendors/6_1_1/HUD_HMIS.xsd" onclick="updatePageTitle('Schema documentation for component Default Open Content')">Default Open Content</a></b></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn"><b>Children</b></td>
<td><b><a href="HUD_HMIS_xsd_Complex_Type_sources.html#http___www.hudhdx.info_Resources_Vendors_6_1_1_HUD_HMIS.xsd_sources_Source" target="mainFrame" title="http://www.hudhdx.info/Resources/Vendors/6_1_1/HUD_HMIS.xsd" onclick="updatePageTitle('Schema documentation for component Source')">Source</a></b></td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Instance</b></div>
<div class="floatRight"><input id="button_instance_Sources" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_Sources');" class="control" /></div>
</td>
<td>
<div id="instance_Sources" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tEl"><Sources</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"http://www.hudhdx.info/Resources/Vendors/6_1_1/HUD_HMIS.xsd"</span><span class="tEl">></span><span class="tI">
</span><span class="tEl"><Source</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,unbounded}</span><span class="tEl"></Source></span><span class="tI">
</span><span class="tEl"></Sources></span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td class="firstColumn">
<div class="floatLeft"><b>Source</b></div>
<div class="floatRight"><input id="button_source_Sources" type="image" src="img/btM.gif" value="-" onclick="switchState('source_Sources');" class="control" /></div>
</td>
<td>
<div id="source_Sources" style="display:block">
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
<tr>
<td width="100%"><pre><span class="tEl"><xs:element</span><span class="tAN"> name=</span><span class="tAV">"Sources"</span><span class="tAN"> type=</span><span class="tAV">"hmis:sources"</span><span class="tEl">></span><span class="tI">
</span><span class="tEl"><xs:annotation</span><span class="tEl">></span><span class="tI">
</span><span class="tEl"><xs:documentation</span><span class="tAN"> xml:lang=</span><span class="tAV">"en"</span><span class="tEl">></span><span class="tT" style="white-space:normal">XML Root element. A description of what software provider and organization are sending this XML information. Many sources can be grouped together into one XML file.</span><span class="tEl"></xs:documentation></span><span class="tI">
</span><span class="tEl"></xs:annotation></span><span class="tI">
</span><span class="tEl"></xs:element></span></pre></td>
</tr>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</td>
<td class="rt_lineRight"></td>
</tr>
<tr>
<td class="rt_cornerBottomLeft"></td>
<td class="rt_lineBottom"></td>
<td class="rt_cornerBottomRight"></td>
</tr>
</table>
<div class="footer">
<hr />
<div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX"><</span>o<span class="redX">X</span>ygen<span class="redX">/></span></span></a><sup>®</sup> XML Editor.
</div>
</div><script type="text/javascript">
<!--
// The namespace is the selected option in the TOC combo.
// Floats the toolbar.
var globalControls = getElementObject("global_controls");
if(globalControls != null){
var browser=navigator.appName;
var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
var IE6 = false;
if ((browser=="Microsoft Internet Explorer") && (version < 7)){
IE6 = true;
}
//alert (IE6 + " |V| " + version);
if(IE6){
// On IE 6 the 'fixed' property is not supported. We must use javascript.
globalControls.style.position='absolute';
// The global controls will do not exist in the TOC frame, when chunking.
findAndFloat("global_controls", 225, 30);
} else {
globalControls.style.position='fixed';
}
globalControls.style.right='0';
}
//--></script></body>
</html>