Project

General

Profile

« Previous | Next » 

Revision 58641

deleted doc folder for cleanup

View differences:

modules/dnet-openaire-schema/trunk/schema/1.0/doc/oaf-1_0_xsd.html
1
<!DOCTYPE html
2
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
   <head>
5
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
      <title>Schema documentation for oaf-1.0.xsd</title>
7
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
8
         <!--
9
        var propertiesBoxes= new Array('properties_oaf-1.0.xsd', 
10
				'properties_entity');
11
var sourceBoxes= new Array('source_entity');
12
var instanceBoxes= new Array('instance_entity');
13
var diagramBoxes= new Array('diagram_entity');
14
var annotationBoxes= new Array('annotations_oaf-1.0.xsd');
15
var modelBoxes= new Array('model_entity');
16

  
17
      
18
        var button_prefix = 'button_';
19
        
20
        /**
21
        * Returns an element in the current HTML document.
22
        *
23
        * @param elementID Identifier of HTML element
24
        * @return               HTML element object
25
        */
26
        function getElementObject(elementID) {
27
            var elemObj = null;
28
            if (document.getElementById) {
29
                elemObj = document.getElementById(elementID);
30
            }
31
            return elemObj;
32
        }
33
        
34
        /**
35
        * Switches the state of a collapseable box, e.g.
36
        * if it's opened, it'll be closed, and vice versa.
37
        *
38
        * @param boxID Identifier of box
39
        */
40
        function switchState(boxID) {
41
            var boxObj = getElementObject(boxID);
42
            var buttonObj = getElementObject(button_prefix + boxID);
43
            if (boxObj == null || buttonObj == null) {
44
                // Box or button not found
45
            } else if (boxObj.style.display == "none") {
46
                // Box is closed, so open it
47
                openBox(boxObj, buttonObj);
48
            } else if (boxObj.style.display == "block") {
49
                // Box is opened, so close it
50
                closeBox(boxObj, buttonObj);
51
            }
52
        }
53
        
54
        /**
55
        * Opens a collapseable box.
56
        *
57
        * @param boxObj       Collapseable box
58
        * @param buttonObj Button controlling box
59
        */
60
        function openBox(boxObj, buttonObj) {
61
            if (boxObj == null || buttonObj == null) {
62
                // Box or button not found
63
            } else {
64
                // Change 'display' CSS property of box
65
                boxObj.style.display = "block";
66
                
67
                // Change text of button
68
                if (boxObj.style.display == "block") {
69
                    buttonObj.src = "img/btM.gif";
70
                }
71
            }
72
        }
73
        
74
        /**
75
        * Closes a collapseable box.
76
        *
77
        * @param boxObj       Collapseable box
78
        * @param buttonObj Button controlling box
79
        */
80
        function closeBox(boxObj, buttonObj) {
81
            if (boxObj == null || buttonObj == null) {
82
                // Box or button not found
83
            } else {
84
                // Change 'display' CSS property of box
85
                boxObj.style.display = "none";
86
                
87
                // Change text of button
88
                if (boxObj.style.display == "none") {
89
                    buttonObj.src = "img/btP.gif";
90
                }
91
            }
92
        }
93
    
94
       function switchStateForAll(buttonObj, boxList) {
95
            if (buttonObj == null) {
96
                // button not found
97
            } else if (buttonObj.value == "+") {
98
                // Expand all
99
                expandAll(boxList);
100
                buttonObj.value = "-";
101
            } else if (buttonObj.value == "-") {
102
                // Collapse all
103
                collapseAll(boxList);
104
                buttonObj.value = "+";
105
            }
106
        }
107
        
108
        /**
109
        * Closes all boxes in a given list.
110
        *
111
        * @param boxList Array of box IDs
112
        */
113
        function collapseAll(boxList) {
114
            var idx;
115
            for (idx = 0; idx < boxList.length; idx++) {
116
                var boxObj = getElementObject(boxList[idx]);
117
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
118
                closeBox(boxObj, buttonObj);
119
            }
120
        }
121
            
122
        /**
123
        * Open all boxes in a given list.
124
        *
125
        * @param boxList Array of box IDs
126
        */
127
        function expandAll(boxList) {
128
            var idx;
129
            for (idx = 0; idx < boxList.length; idx++) {
130
                var boxObj = getElementObject(boxList[idx]);
131
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
132
                openBox(boxObj, buttonObj);
133
            }
134
        }
135
        
136
        /**
137
         * Update the message presented in the title of the html page.
138
         * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'"
139
         * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'"
140
         * - If no split we always present: "Documentation for 'MainSchema.xsd'"
141
         */
142
        function updatePageTitle(message) {
143
            top.document.title = message;
144
        }
145
        
146
          
147
                    
148
         /**
149
          * Finds an HTML element by its ID and makes it floatable over the normal content.
150
          *
151
          * @param x_displacement The difference in pixels to the right side of the window from 
152
          *           the left side of the element.
153
          * @param y_displacement The difference in pixels to the right side of the window from 
154
          *           the top of the element.          
155
          */
156
         function findAndFloat(id, x_displacement, y_displacement){
157

  
158
            var element = getElementObject(id);            
159
            
160
            window[id + "_obj"] = element;
161
            
162
            if(document.layers) {
163
               element.style = element;
164
            }
165
            
166
            element.current_y = y_displacement;      
167
            element.first_time = true;
168
         
169
            element.floatElement = function(){
170
               // It may be closed by an user action.
171
                
172
               // Target X and Y coordinates.
173
               var x, y;
174
               
175
               var myWidth = 0, myHeight = 0;
176
               if( typeof( window.innerWidth ) == 'number' ) {
177
                  //Non-IE
178
                  myWidth = window.innerWidth;
179
                  myHeight = window.innerHeight;
180
               } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
181
                  //IE 6+ in 'standards compliant mode'
182
                  myWidth = document.documentElement.clientWidth;
183
                  myHeight = document.documentElement.clientHeight;
184
               } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
185
                  //IE 4 compatible
186
                  myWidth = document.body.clientWidth;
187
                  myHeight = document.body.clientHeight;
188
               }
189
               
190
               
191
               x = myWidth - x_displacement;
192
               
193
               var ns = (navigator.appName.indexOf("Netscape") != -1);               
194
               y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? 
195
                  document.documentElement.scrollTop : document.body.scrollTop;               
196
               y = y + y_displacement;               
197
               
198
               // The current y is the current coordinate of the floating element.
199
               // This should be at the limit the y target coordinate.
200
               this.current_y += (y - this.current_y)/1.25;
201
               
202
               // Add the pixels constant after the values
203
               // and move the element.
204
               var px = document.layers ? "" : "px";
205
               this.style.left =  x + px;
206
               this.style.top =  this.current_y + px;
207
                              
208
               setTimeout(this.id + "_obj.floatElement()", 100);
209
            }
210
            
211
            element.floatElement();
212
            return element;
213
          }
214

  
215
         /**
216
          * Finds an HTML element by its ID and makes it floatable over the normal content.
217
          *
218
          * @param x_displacement The difference in pixels to the right side of the window from 
219
          *           the left side of the element.
220
          * @param y_displacement The difference in pixels to the right side of the window from 
221
          *           the top of the element.          
222
          */
223
         function selectTOCGroupBy(id, isChunked, indexFileLocation, indexFileNamespace, indexFileComponent){
224

  
225
            if (!isChunked) {
226
             var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type');
227
             // Make all the tabs invisible.
228
               for (i = 0; i < 3; i++){
229
                  var tab = getElementObject(selectIds[i]);
230
                  tab.style.display = 'none';
231
               }
232
               var selTab = getElementObject(id);
233
               selTab.style.display = 'block';
234
            } else {
235
             if (id == 'toc_group_by_namespace') {
236
               parent.indexFrame.location = indexFileNamespace;
237
             } else  if (id == 'toc_group_by_location') {
238
               parent.indexFrame.location = indexFileLocation;
239
             } else  if (id == 'toc_group_by_component_type') {
240
              parent.indexFrame.location = indexFileComponent;
241
             }
242
            }
243
         }
244
          
245

  
246
    
247
                    //--></script></head>
248
   <body>
249
      <div id="global_controls" class="globalControls" style="position:absolute;right:0;">
250
         <table class="rt">
251
            <tr>
252
               <td class="rt_cornerTopLeft"></td>
253
               <td class="rt_lineTop"></td>
254
               <td class="rt_cornerTopRight"></td>
255
            </tr>
256
            <tr>
257
               <td class="rt_lineLeft"></td>
258
               <td class="rt_content">
259
                  <h3>Showing:</h3>
260
                  <table>
261
                     <tr>
262
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, annotationBoxes);" class="control" /></span><span class="globalControlName">Annotations</span></td>
263
                     </tr>
264
                     <tr>
265
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, diagramBoxes);" class="control" /></span><span class="globalControlName">Diagrams</span></td>
266
                     </tr>
267
                     <tr>
268
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, instanceBoxes);" class="control" /></span><span class="globalControlName">Instances</span></td>
269
                     </tr>
270
                     <tr>
271
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, modelBoxes);" class="control" /></span><span class="globalControlName">Model </span></td>
272
                     </tr>
273
                     <tr>
274
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, propertiesBoxes);" class="control" /></span><span class="globalControlName">Properties </span></td>
275
                     </tr>
276
                     <tr>
277
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, sourceBoxes);" class="control" /></span><span class="globalControlName">Source</span></td>
278
                     </tr>
279
                  </table>
280
                  <div align="right"><span><input type="button" onclick="getElementObject('global_controls').style.display = 'none';" value="Close" /></span></div>
281
               </td>
282
               <td class="rt_lineRight"></td>
283
            </tr>
284
            <tr>
285
               <td class="rt_cornerBottomLeft"></td>
286
               <td class="rt_lineBottom"></td>
287
               <td class="rt_cornerBottomRight"></td>
288
            </tr>
289
         </table>
290
      </div><a id="oaf-1.0.xsd"></a><div class="componentTitle">Main schema <span class="qname">oaf-1.0.xsd</span></div>
291
      <table class="rt">
292
         <tr>
293
            <td class="rt_cornerTopLeft"></td>
294
            <td class="rt_lineTop"></td>
295
            <td class="rt_cornerTopRight"></td>
296
         </tr>
297
         <tr>
298
            <td class="rt_lineLeft"></td>
299
            <td class="rt_content">
300
               <table class="component">
301
                  <tbody>
302
                     <tr>
303
                        <td class="firstColumn"><b>Namespace</b></td>
304
                        <td>http://namespace.openaire.eu/oaf</td>
305
                     </tr>
306
                     <tr>
307
                        <td class="firstColumn">
308
                           <div class="floatLeft"><b>Annotations</b></div>
309
                           <div class="floatRight"><input id="button_annotations_oaf-1.0.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_oaf-1.0.xsd');" class="control" /></div>
310
                        </td>
311
                        <td>
312
                           <div id="annotations_oaf-1.0.xsd" style="display:block">
313
                              <div class="annotation">
314
                                 <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">
315
                                    <tr>
316
                                       <td width="100%"><pre><span class="tT">This schema describes the XML serialization of the OpenAIRE Research Graph. </span><span class="tI">
317
</span><span class="tT">For an overview of the model, please check the OpenAIRE Research Graph Data Model at https://doi.org/10.5281/zenodo.2643199</span></pre></td>
318
                                    </tr>
319
                                 </table>
320
                              </div>
321
                           </div>
322
                        </td>
323
                     </tr>
324
                     <tr>
325
                        <td class="firstColumn">
326
                           <div class="floatLeft"><b>Properties</b></div>
327
                           <div class="floatRight"><input id="button_properties_oaf-1.0.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_oaf-1.0.xsd');" class="control" /></div>
328
                        </td>
329
                        <td>
330
                           <div id="properties_oaf-1.0.xsd" style="display:block">
331
                              <table class="propertiesTable">
332
                                 <tr>
333
                                    <td class="firstColumn" style="white-space: nowrap;">attribute form default</td>
334
                                    <td><b>unqualified</b></td>
335
                                 </tr>
336
                                 <tr>
337
                                    <td class="firstColumn" style="white-space: nowrap;">element form default</td>
338
                                    <td><b>qualified</b></td>
339
                                 </tr>
340
                              </table>
341
                           </div>
342
                        </td>
343
                     </tr>
344
                     <tr>
345
                        <td class="firstColumn"><b>Schema location</b></td>
346
                        <td>https://www.openaire.eu/schema/1.0/oaf-1.0.xsd</td>
347
                     </tr>
348
                  </tbody>
349
               </table>
350
            </td>
351
            <td class="rt_lineRight"></td>
352
         </tr>
353
         <tr>
354
            <td class="rt_cornerBottomLeft"></td>
355
            <td class="rt_lineBottom"></td>
356
            <td class="rt_cornerBottomRight"></td>
357
         </tr>
358
      </table><a id="entity"></a><div class="componentTitle">Element <span class="qname">entity</span></div>
359
      <table class="rt">
360
         <tr>
361
            <td class="rt_cornerTopLeft"></td>
362
            <td class="rt_lineTop"></td>
363
            <td class="rt_cornerTopRight"></td>
364
         </tr>
365
         <tr>
366
            <td class="rt_lineLeft"></td>
367
            <td class="rt_content">
368
               <table class="component">
369
                  <tbody>
370
                     <tr>
371
                        <td class="firstColumn"><b>Namespace</b></td>
372
                        <td>http://namespace.openaire.eu/oaf</td>
373
                     </tr>
374
                     <tr>
375
                        <td class="firstColumn">
376
                           <div class="floatLeft"><b>Diagram</b></div>
377
                           <div class="floatRight"><input id="button_diagram_entity" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_entity');" class="control" /></div>
378
                        </td>
379
                        <td class="diagram">
380
                           <div id="diagram_entity" style="display:block"><img alt="Diagram" border="0" src="img/oaf-1_0_xsd_Element_entity.jpeg" usemap="#oaf-1_0_xsd_Element_entity" /><map name="oaf-1_0_xsd_Element_entity" id="oaf-1_0_xsd_Element_entity">
381
                                 <area alt="oaf-result-1_0_xsd.tmp#result" href="oaf-result-1_0_xsd.html#result" coords="231,2,293,26" />
382
                                 <area alt="oaf-org-1_0_xsd.tmp#organization" href="oaf-org-1_0_xsd.html#organization" coords="231,36,330,60" />
383
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource" href="oaf-datasource-1_0_xsd.html#datasource" coords="231,70,322,94" />
384
                                 <area alt="oaf-project-1_0_xsd.tmp#project" href="oaf-project-1_0_xsd.html#project" coords="231,104,300,128" /></map></div>
385
                        </td>
386
                     </tr>
387
                     <tr>
388
                        <td class="firstColumn">
389
                           <div class="floatLeft"><b>Properties</b></div>
390
                           <div class="floatRight"><input id="button_properties_entity" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_entity');" class="control" /></div>
391
                        </td>
392
                        <td>
393
                           <div id="properties_entity" style="display:block">
394
                              <table class="propertiesTable">
395
                                 <tr>
396
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
397
                                    <td><b>complex</b></td>
398
                                 </tr>
399
                              </table>
400
                           </div>
401
                        </td>
402
                     </tr>
403
                     <tr>
404
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_entity" type="image" src="img/btM.gif" value="-" onclick="switchState('model_entity');" class="control" /></div>
405
                        </td>
406
                        <td>
407
                           <div id="model_entity" style="display:block">(<b><a href="oaf-result-1_0_xsd.html#result" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result</a></b> | <b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> | <b><a href="oaf-project-1_0_xsd.html#project" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project</a></b>)
408
                           </div>
409
                        </td>
410
                     </tr>
411
                     <tr>
412
                        <td class="firstColumn"><b>Children</b></td>
413
                        <td><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b>, <b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b>, <b><a href="oaf-project-1_0_xsd.html#project" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project</a></b>, <b><a href="oaf-result-1_0_xsd.html#result" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result</a></b></td>
414
                     </tr>
415
                     <tr>
416
                        <td class="firstColumn">
417
                           <div class="floatLeft"><b>Instance</b></div>
418
                           <div class="floatRight"><input id="button_instance_entity" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_entity');" class="control" /></div>
419
                        </td>
420
                        <td>
421
                           <div id="instance_entity" style="display:block">
422
                              <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">
423
                                 <tr>
424
                                    <td width="100%"><pre><span class="tEl">&lt;entity</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"http://namespace.openaire.eu/oaf"</span><span class="tEl">&gt;</span><span class="tI">
425
  </span><span class="tEl">&lt;result</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/result&gt;</span><span class="tI">
426
  </span><span class="tEl">&lt;organization</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/organization&gt;</span><span class="tI">
427
  </span><span class="tEl">&lt;datasource</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/datasource&gt;</span><span class="tI">
428
  </span><span class="tEl">&lt;project</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/project&gt;</span><span class="tI">
429
</span><span class="tEl">&lt;/entity&gt;</span></pre></td>
430
                                 </tr>
431
                              </table>
432
                           </div>
433
                        </td>
434
                     </tr>
435
                     <tr>
436
                        <td class="firstColumn">
437
                           <div class="floatLeft"><b>Source</b></div>
438
                           <div class="floatRight"><input id="button_source_entity" type="image" src="img/btM.gif" value="-" onclick="switchState('source_entity');" class="control" /></div>
439
                        </td>
440
                        <td>
441
                           <div id="source_entity" style="display:block">
442
                              <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">
443
                                 <tr>
444
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"entity"</span><span class="tEl">&gt;</span><span class="tI">
445
  </span><span class="tEl">&lt;xs:complexType</span><span class="tEl">&gt;</span><span class="tI">
446
    </span><span class="tEl">&lt;xs:sequence</span><span class="tEl">&gt;</span><span class="tI">
447
      </span><span class="tEl">&lt;xs:choice</span><span class="tEl">&gt;</span><span class="tI">
448
        </span><span class="tEl">&lt;xs:element</span><span class="tAN"> ref=</span><span class="tAV">"result"</span><span class="tEl">/&gt;</span><span class="tI">
449
        </span><span class="tEl">&lt;xs:element</span><span class="tAN"> ref=</span><span class="tAV">"organization"</span><span class="tEl">/&gt;</span><span class="tI">
450
        </span><span class="tEl">&lt;xs:element</span><span class="tAN"> ref=</span><span class="tAV">"datasource"</span><span class="tEl">/&gt;</span><span class="tI">
451
        </span><span class="tEl">&lt;xs:element</span><span class="tAN"> ref=</span><span class="tAV">"project"</span><span class="tEl">/&gt;</span><span class="tI">
452
      </span><span class="tEl">&lt;/xs:choice&gt;</span><span class="tI">
453
    </span><span class="tEl">&lt;/xs:sequence&gt;</span><span class="tI">
454
  </span><span class="tEl">&lt;/xs:complexType&gt;</span><span class="tI">
455
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
456
                                 </tr>
457
                              </table>
458
                           </div>
459
                        </td>
460
                     </tr>
461
                     <tr>
462
                        <td class="firstColumn"><b>Schema location</b></td>
463
                        <td>https://www.openaire.eu/schema/1.0/oaf-1.0.xsd</td>
464
                     </tr>
465
                  </tbody>
466
               </table>
467
            </td>
468
            <td class="rt_lineRight"></td>
469
         </tr>
470
         <tr>
471
            <td class="rt_cornerBottomLeft"></td>
472
            <td class="rt_lineBottom"></td>
473
            <td class="rt_cornerBottomRight"></td>
474
         </tr>
475
      </table>
476
      <div class="footer">
477
         <hr />
478
         <div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX">&lt;</span>o<span class="redX">X</span>ygen<span class="redX">/&gt;</span></span></a><sup>®</sup> XML Editor.
479
         </div>
480
      </div><script type="text/javascript">
481
         <!--
482
                     // The namespace is the selected option in the TOC combo.
483
                    
484
                     // Floats the toolbar.
485
                     var globalControls = getElementObject("global_controls"); 
486
                     
487
                     if(globalControls != null){
488
	                     var browser=navigator.appName;
489
						 var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
490
						 
491
						 var IE6 = false;
492
						 if ((browser=="Microsoft Internet Explorer") && (version < 7)){
493
						 	IE6 = true;
494
						 }
495
	
496
	                     //alert (IE6 + " |V| " + version);
497
	                     
498
	                     if(IE6){
499
	                     	// On IE 6 the 'fixed' property is not supported. We must use javascript. 
500
	                         globalControls.style.position='absolute';                         
501
	                         // The global controls will do not exist in the TOC frame, when chunking.
502
	                         findAndFloat("global_controls", 225, 30);    
503
	                     } else {
504
	                      	  globalControls.style.position='fixed';                     	
505
	                     }
506
	                     
507
	                     globalControls.style.right='0';                       
508
                     }
509
                //--></script></body>
510
</html>
modules/dnet-openaire-schema/trunk/schema/1.0/doc/oaf-1.0.html
1

  
2
<!DOCTYPE html
3
  PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
4
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Schema documentation for oaf-1.0.xsd</title><link rel="stylesheet" href="docHtml.css" type="text/css" /></head><frameset cols="20%, 80%"><frame name="indexFrame" src="oaf-1.0.indexList.html" /><frame name="mainFrame" src="oaf-1_0_xsd.html" /></frameset></html>
modules/dnet-openaire-schema/trunk/schema/1.0/doc/oaf-1.0.indexListcomp.html
1
<!DOCTYPE html
2
  PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
   <head>
5
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
      <title>Schema documentation for </title>
7
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
8
         <!--
9
        
10
      
11
        var button_prefix = 'button_';
12
        
13
        /**
14
        * Returns an element in the current HTML document.
15
        *
16
        * @param elementID Identifier of HTML element
17
        * @return               HTML element object
18
        */
19
        function getElementObject(elementID) {
20
            var elemObj = null;
21
            if (document.getElementById) {
22
                elemObj = document.getElementById(elementID);
23
            }
24
            return elemObj;
25
        }
26
        
27
        /**
28
        * Switches the state of a collapseable box, e.g.
29
        * if it's opened, it'll be closed, and vice versa.
30
        *
31
        * @param boxID Identifier of box
32
        */
33
        function switchState(boxID) {
34
            var boxObj = getElementObject(boxID);
35
            var buttonObj = getElementObject(button_prefix + boxID);
36
            if (boxObj == null || buttonObj == null) {
37
                // Box or button not found
38
            } else if (boxObj.style.display == "none") {
39
                // Box is closed, so open it
40
                openBox(boxObj, buttonObj);
41
            } else if (boxObj.style.display == "block") {
42
                // Box is opened, so close it
43
                closeBox(boxObj, buttonObj);
44
            }
45
        }
46
        
47
        /**
48
        * Opens a collapseable box.
49
        *
50
        * @param boxObj       Collapseable box
51
        * @param buttonObj Button controlling box
52
        */
53
        function openBox(boxObj, buttonObj) {
54
            if (boxObj == null || buttonObj == null) {
55
                // Box or button not found
56
            } else {
57
                // Change 'display' CSS property of box
58
                boxObj.style.display = "block";
59
                
60
                // Change text of button
61
                if (boxObj.style.display == "block") {
62
                    buttonObj.src = "img/btM.gif";
63
                }
64
            }
65
        }
66
        
67
        /**
68
        * Closes a collapseable box.
69
        *
70
        * @param boxObj       Collapseable box
71
        * @param buttonObj Button controlling box
72
        */
73
        function closeBox(boxObj, buttonObj) {
74
            if (boxObj == null || buttonObj == null) {
75
                // Box or button not found
76
            } else {
77
                // Change 'display' CSS property of box
78
                boxObj.style.display = "none";
79
                
80
                // Change text of button
81
                if (boxObj.style.display == "none") {
82
                    buttonObj.src = "img/btP.gif";
83
                }
84
            }
85
        }
86
    
87
       function switchStateForAll(buttonObj, boxList) {
88
            if (buttonObj == null) {
89
                // button not found
90
            } else if (buttonObj.value == "+") {
91
                // Expand all
92
                expandAll(boxList);
93
                buttonObj.value = "-";
94
            } else if (buttonObj.value == "-") {
95
                // Collapse all
96
                collapseAll(boxList);
97
                buttonObj.value = "+";
98
            }
99
        }
100
        
101
        /**
102
        * Closes all boxes in a given list.
103
        *
104
        * @param boxList Array of box IDs
105
        */
106
        function collapseAll(boxList) {
107
            var idx;
108
            for (idx = 0; idx < boxList.length; idx++) {
109
                var boxObj = getElementObject(boxList[idx]);
110
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
111
                closeBox(boxObj, buttonObj);
112
            }
113
        }
114
            
115
        /**
116
        * Open all boxes in a given list.
117
        *
118
        * @param boxList Array of box IDs
119
        */
120
        function expandAll(boxList) {
121
            var idx;
122
            for (idx = 0; idx < boxList.length; idx++) {
123
                var boxObj = getElementObject(boxList[idx]);
124
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
125
                openBox(boxObj, buttonObj);
126
            }
127
        }
128
        
129
        /**
130
         * Update the message presented in the title of the html page.
131
         * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'"
132
         * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'"
133
         * - If no split we always present: "Documentation for 'MainSchema.xsd'"
134
         */
135
        function updatePageTitle(message) {
136
            top.document.title = message;
137
        }
138
        
139
          
140
                    
141
         /**
142
          * Finds an HTML element by its ID and makes it floatable over the normal content.
143
          *
144
          * @param x_displacement The difference in pixels to the right side of the window from 
145
          *           the left side of the element.
146
          * @param y_displacement The difference in pixels to the right side of the window from 
147
          *           the top of the element.          
148
          */
149
         function findAndFloat(id, x_displacement, y_displacement){
150

  
151
            var element = getElementObject(id);            
152
            
153
            window[id + "_obj"] = element;
154
            
155
            if(document.layers) {
156
               element.style = element;
157
            }
158
            
159
            element.current_y = y_displacement;      
160
            element.first_time = true;
161
         
162
            element.floatElement = function(){
163
               // It may be closed by an user action.
164
                
165
               // Target X and Y coordinates.
166
               var x, y;
167
               
168
               var myWidth = 0, myHeight = 0;
169
               if( typeof( window.innerWidth ) == 'number' ) {
170
                  //Non-IE
171
                  myWidth = window.innerWidth;
172
                  myHeight = window.innerHeight;
173
               } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
174
                  //IE 6+ in 'standards compliant mode'
175
                  myWidth = document.documentElement.clientWidth;
176
                  myHeight = document.documentElement.clientHeight;
177
               } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
178
                  //IE 4 compatible
179
                  myWidth = document.body.clientWidth;
180
                  myHeight = document.body.clientHeight;
181
               }
182
               
183
               
184
               x = myWidth - x_displacement;
185
               
186
               var ns = (navigator.appName.indexOf("Netscape") != -1);               
187
               y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? 
188
                  document.documentElement.scrollTop : document.body.scrollTop;               
189
               y = y + y_displacement;               
190
               
191
               // The current y is the current coordinate of the floating element.
192
               // This should be at the limit the y target coordinate.
193
               this.current_y += (y - this.current_y)/1.25;
194
               
195
               // Add the pixels constant after the values
196
               // and move the element.
197
               var px = document.layers ? "" : "px";
198
               this.style.left =  x + px;
199
               this.style.top =  this.current_y + px;
200
                              
201
               setTimeout(this.id + "_obj.floatElement()", 100);
202
            }
203
            
204
            element.floatElement();
205
            return element;
206
          }
207

  
208
         /**
209
          * Finds an HTML element by its ID and makes it floatable over the normal content.
210
          *
211
          * @param x_displacement The difference in pixels to the right side of the window from 
212
          *           the left side of the element.
213
          * @param y_displacement The difference in pixels to the right side of the window from 
214
          *           the top of the element.          
215
          */
216
         function selectTOCGroupBy(id, isChunked, indexFileLocation, indexFileNamespace, indexFileComponent){
217

  
218
            if (!isChunked) {
219
             var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type');
220
             // Make all the tabs invisible.
221
               for (i = 0; i < 3; i++){
222
                  var tab = getElementObject(selectIds[i]);
223
                  tab.style.display = 'none';
224
               }
225
               var selTab = getElementObject(id);
226
               selTab.style.display = 'block';
227
            } else {
228
             if (id == 'toc_group_by_namespace') {
229
               parent.indexFrame.location = indexFileNamespace;
230
             } else  if (id == 'toc_group_by_location') {
231
               parent.indexFrame.location = indexFileLocation;
232
             } else  if (id == 'toc_group_by_component_type') {
233
              parent.indexFrame.location = indexFileComponent;
234
             }
235
            }
236
         }
237
          
238

  
239
    
240
                        //--></script></head>
241
   <body>
242
      <h2><a id="INDEX">Table of Contents</a></h2>
243
      <p><a href="oaf-1.0.indexList.html">Components</a><span> | </span><a href="schHierarchy.html">Resource Hierarchy</a></p>
244
      <hr />
245
      <div class="toc">
246
         <form action="none">
247
            <div><span> Group by: <select id="selectTOC" onchange="selectTOCGroupBy(this.options[this.selectedIndex].value, true, 'oaf-1.0.indexList.html', 'oaf-1.0.indexListns.html', 'oaf-1.0.indexListcomp.html');">
248
                     <option value="toc_group_by_namespace">Namespace</option>
249
                     <option value="toc_group_by_location">Location</option>
250
                     <option value="toc_group_by_component_type" selected="selected">Component Type</option></select></span></div>
251
         </form>
252
         <div class="level1" id="toc_group_by_component_type" style="display:block">
253
            <div>
254
               <div class="horizontalLayout">
255
                  <table class="rt">
256
                     <tr>
257
                        <td class="rt_cornerTopLeft"></td>
258
                        <td class="rt_lineTop"></td>
259
                        <td class="rt_cornerTopRight"></td>
260
                     </tr>
261
                     <tr>
262
                        <td class="rt_lineLeft"></td>
263
                        <td class="rt_content">
264
                           <table class="componentGroup">
265
                              <tbody>
266
                                 <tr>
267
                                    <td class="componentGroup"><input id="button_Main_schema" type="image" value="-" src="img/btM.gif" onclick="switchState('Main_schema');" class="control" /></td>
268
                                    <td class="componentGroup">
269
                                       <div class="componentGroupTitle">Main Schema</div>
270
                                    </td>
271
                                 </tr>
272
                                 <tr>
273
                                    <td class="componentGroup"></td>
274
                                    <td class="componentGroup">
275
                                       <div id="Main_schema" class="componentGroup" style="display:block">
276
                                          <div><b><a href="oaf-1_0_xsd.html#oaf-1.0.xsd" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-1.0.xsd')">oaf-1.0.xsd</a></b></div>
277
                                       </div>
278
                                    </td>
279
                                 </tr>
280
                              </tbody>
281
                           </table>
282
                        </td>
283
                        <td class="rt_lineRight"></td>
284
                     </tr>
285
                     <tr>
286
                        <td class="rt_cornerBottomLeft"></td>
287
                        <td class="rt_lineBottom"></td>
288
                        <td class="rt_cornerBottomRight"></td>
289
                     </tr>
290
                  </table>
291
               </div>
292
               <div class="horizontalLayout">
293
                  <table class="rt">
294
                     <tr>
295
                        <td class="rt_cornerTopLeft"></td>
296
                        <td class="rt_lineTop"></td>
297
                        <td class="rt_cornerTopRight"></td>
298
                     </tr>
299
                     <tr>
300
                        <td class="rt_lineLeft"></td>
301
                        <td class="rt_content">
302
                           <table class="componentGroup">
303
                              <tbody>
304
                                 <tr>
305
                                    <td class="componentGroup"><input id="button_Included_schema" type="image" value="-" src="img/btM.gif" onclick="switchState('Included_schema');" class="control" /></td>
306
                                    <td class="componentGroup">
307
                                       <div class="componentGroupTitle">Included Schemas</div>
308
                                    </td>
309
                                 </tr>
310
                                 <tr>
311
                                    <td class="componentGroup"></td>
312
                                    <td class="componentGroup">
313
                                       <div id="Included_schema" class="componentGroup" style="display:block">
314
                                          <div><b><a href="oaf-common-1_0_xsd.html#oaf-common-1.0.xsd" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">oaf-common-1.0.xsd</a></b></div>
315
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#oaf-datasource-1.0.xsd" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">oaf-datasource-1.0.xsd</a></b></div>
316
                                          <div><b><a href="oaf-org-1_0_xsd.html#oaf-org-1.0.xsd" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">oaf-org-1.0.xsd</a></b></div>
317
                                          <div><b><a href="oaf-project-1_0_xsd.html#oaf-project-1.0.xsd" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">oaf-project-1.0.xsd</a></b></div>
318
                                          <div><b><a href="oaf-result-1_0_xsd.html#oaf-result-1.0.xsd" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">oaf-result-1.0.xsd</a></b></div>
319
                                       </div>
320
                                    </td>
321
                                 </tr>
322
                              </tbody>
323
                           </table>
324
                        </td>
325
                        <td class="rt_lineRight"></td>
326
                     </tr>
327
                     <tr>
328
                        <td class="rt_cornerBottomLeft"></td>
329
                        <td class="rt_lineBottom"></td>
330
                        <td class="rt_cornerBottomRight"></td>
331
                     </tr>
332
                  </table>
333
               </div>
334
               <div class="horizontalLayout">
335
                  <table class="rt">
336
                     <tr>
337
                        <td class="rt_cornerTopLeft"></td>
338
                        <td class="rt_lineTop"></td>
339
                        <td class="rt_cornerTopRight"></td>
340
                     </tr>
341
                     <tr>
342
                        <td class="rt_lineLeft"></td>
343
                        <td class="rt_content">
344
                           <table class="componentGroup">
345
                              <tbody>
346
                                 <tr>
347
                                    <td class="componentGroup"><input id="button_Element" type="image" value="-" src="img/btM.gif" onclick="switchState('Element');" class="control" /></td>
348
                                    <td class="componentGroup">
349
                                       <div class="componentGroupTitle">Elements</div>
350
                                    </td>
351
                                 </tr>
352
                                 <tr>
353
                                    <td class="componentGroup"></td>
354
                                    <td class="componentGroup">
355
                                       <div id="Element" class="componentGroup" style="display:block">
356
                                          <div><b><a href="oaf-common-1_0_xsd.html#categoryType_concept" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">categoryType/concept</a></b></div>
357
                                          <div><b><a href="oaf-result-1_0_xsd.html#citationsType_citation" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">citationsType/citation</a></b></div>
358
                                          <div><b><a href="oaf-result-1_0_xsd.html#citationsType_citationsType_citation_id" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">citationsType/citation/id</a></b></div>
359
                                          <div><b><a href="oaf-result-1_0_xsd.html#citationsType_citationsType_citation_rawText" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">citationsType/citation/rawText</a></b></div>
360
                                          <div><b><a href="oaf-common-1_0_xsd.html#conceptType_concept" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">conceptType/concept</a></b></div>
361
                                          <div><b><a href="oaf-common-1_0_xsd.html#contextType_category" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">contextType/category</a></b></div>
362
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b></div>
363
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/collectedfrom</a></b></div>
364
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_contactemail" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/contactemail</a></b></div>
365
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_datasourcetype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/datasourcetype</a></b></div>
366
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_dateofvalidation" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/dateofvalidation</a></b></div>
367
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_description" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/description</a></b></div>
368
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_englishname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/englishname</a></b></div>
369
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_latitude" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/latitude</a></b></div>
370
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_logourl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/logourl</a></b></div>
371
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_longitude" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/longitude</a></b></div>
372
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_namespaceprefix" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/namespaceprefix</a></b></div>
373
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_officialname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/officialname</a></b></div>
374
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_openairecompatibility" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/openairecompatibility</a></b></div>
375
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_originalId" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/originalId</a></b></div>
376
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_pid" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/pid</a></b></div>
377
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_rels" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/rels</a></b></div>
378
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_subjects" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/subjects</a></b></div>
379
                                          <div><b><a href="oaf-datasource-1_0_xsd.html#datasource_websiteurl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource/websiteurl</a></b></div>
380
                                          <div><b><a href="oaf-1_0_xsd.html#entity" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-1.0.xsd')">entity</a></b></div>
381
                                          <div><b><a href="oaf-common-1_0_xsd.html#externalreferenceType_qualifier" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">externalreferenceType/qualifier</a></b></div>
382
                                          <div><b><a href="oaf-common-1_0_xsd.html#externalreferenceType_refidentifier" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">externalreferenceType/refidentifier</a></b></div>
383
                                          <div><b><a href="oaf-common-1_0_xsd.html#externalreferenceType_sitename" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">externalreferenceType/sitename</a></b></div>
384
                                          <div><b><a href="oaf-common-1_0_xsd.html#externalreferenceType_url" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">externalreferenceType/url</a></b></div>
385
                                          <div><b><a href="oaf-project-1_0_xsd.html#funderType_id" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">funderType/id</a></b></div>
386
                                          <div><b><a href="oaf-project-1_0_xsd.html#funderType_jurisdiction" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">funderType/jurisdiction</a></b></div>
387
                                          <div><b><a href="oaf-project-1_0_xsd.html#funderType_name" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">funderType/name</a></b></div>
388
                                          <div><b><a href="oaf-project-1_0_xsd.html#funderType_shortname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">funderType/shortname</a></b></div>
389
                                          <div><b><a href="oaf-common-1_0_xsd.html#fundingFlatType_funder" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">fundingFlatType/funder</a></b></div>
390
                                          <div><b><a href="oaf-common-1_0_xsd.html#fundingFlatType_funding_level_0" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">fundingFlatType/funding_level_0</a></b></div>
391
                                          <div><b><a href="oaf-common-1_0_xsd.html#fundingFlatType_funding_level_1" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">fundingFlatType/funding_level_1</a></b></div>
392
                                          <div><b><a href="oaf-common-1_0_xsd.html#fundingFlatType_funding_level_2" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">fundingFlatType/funding_level_2</a></b></div>
393
                                          <div><b><a href="oaf-common-1_0_xsd.html#fundingGroup_contracttype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">fundingGroup/contracttype</a></b></div>
394
                                          <div><b><a href="oaf-common-1_0_xsd.html#fundingGroup_funding" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">fundingGroup/funding</a></b></div>
395
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingParentType_funding_level_0" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingParentType/funding_level_0</a></b></div>
396
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingParentType_funding_level_1" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingParentType/funding_level_1</a></b></div>
397
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingTreeType_funder" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingTreeType/funder</a></b></div>
398
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingTreeType_funding_level_0" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingTreeType/funding_level_0</a></b></div>
399
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingTreeType_funding_level_1" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingTreeType/funding_level_1</a></b></div>
400
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingTreeType_funding_level_2" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingTreeType/funding_level_2</a></b></div>
401
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingType_class" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingType/class</a></b></div>
402
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingType_description" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingType/description</a></b></div>
403
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingType_id" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingType/id</a></b></div>
404
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingType_name" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingType/name</a></b></div>
405
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingType_parent" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingType/parent</a></b></div>
406
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_accessright" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/accessright</a></b></div>
407
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/collectedfrom</a></b></div>
408
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_dateofacceptance" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/dateofacceptance</a></b></div>
409
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_distributionlocation" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/distributionlocation</a></b></div>
410
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_hostedby" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/hostedby</a></b></div>
411
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_instancetype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/instancetype</a></b></div>
412
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_license" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/license</a></b></div>
413
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_processingchargeamount" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/processingchargeamount</a></b></div>
414
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_processingchargecurrency" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/processingchargecurrency</a></b></div>
415
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_refereed" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/refereed</a></b></div>
416
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_webresource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/webresource</a></b></div>
417
                                          <div><b><a href="oaf-result-1_0_xsd.html#instancesType_externalreference" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instancesType/externalreference</a></b></div>
418
                                          <div><b><a href="oaf-result-1_0_xsd.html#instancesType_instance" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instancesType/instance</a></b></div>
419
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b></div>
420
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization/collectedfrom</a></b></div>
421
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization_country" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization/country</a></b></div>
422
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization_legalname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization/legalname</a></b></div>
423
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization_legalshortname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization/legalshortname</a></b></div>
424
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization_logourl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization/logourl</a></b></div>
425
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization_originalId" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization/originalId</a></b></div>
426
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization_pid" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization/pid</a></b></div>
427
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization_rels" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization/rels</a></b></div>
428
                                          <div><b><a href="oaf-org-1_0_xsd.html#organization_websiteurl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization/websiteurl</a></b></div>
429
                                          <div><b><a href="oaf-project-1_0_xsd.html#project" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project</a></b></div>
430
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_acronym" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/acronym</a></b></div>
431
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_callidentifier" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/callidentifier</a></b></div>
432
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_code" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/code</a></b></div>
433
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/collectedfrom</a></b></div>
434
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_contactemail" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/contactemail</a></b></div>
435
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_contactfax" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/contactfax</a></b></div>
436
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_contactfullname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/contactfullname</a></b></div>
437
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_contactphone" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/contactphone</a></b></div>
438
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_contracttype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/contracttype</a></b></div>
439
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_duration" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/duration</a></b></div>
440
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_ecarticle29_3" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/ecarticle29_3</a></b></div>
441
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_ecsc39" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/ecsc39</a></b></div>
442
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_enddate" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/enddate</a></b></div>
443
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_fundingtree" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/fundingtree</a></b></div>
444
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_keywords" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/keywords</a></b></div>
445
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_oamandatepublications" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/oamandatepublications</a></b></div>
446
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_originalId" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/originalId</a></b></div>
447
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_pid" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/pid</a></b></div>
448
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_rels" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/rels</a></b></div>
449
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_startdate" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/startdate</a></b></div>
450
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_subjects" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/subjects</a></b></div>
451
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_title" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/title</a></b></div>
452
                                          <div><b><a href="oaf-project-1_0_xsd.html#project_websiteurl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">project/websiteurl</a></b></div>
453
                                          <div><b><a href="oaf-common-1_0_xsd.html#relDataSourceGroup_datasourcetype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relDataSourceGroup/datasourcetype</a></b></div>
454
                                          <div><b><a href="oaf-common-1_0_xsd.html#relDataSourceGroup_officialname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relDataSourceGroup/officialname</a></b></div>
455
                                          <div><b><a href="oaf-common-1_0_xsd.html#relOrganizationGroup_country" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relOrganizationGroup/country</a></b></div>
456
                                          <div><b><a href="oaf-common-1_0_xsd.html#relOrganizationGroup_legalname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relOrganizationGroup/legalname</a></b></div>
457
                                          <div><b><a href="oaf-common-1_0_xsd.html#relOrganizationGroup_legalshortname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relOrganizationGroup/legalshortname</a></b></div>
458
                                          <div><b><a href="oaf-common-1_0_xsd.html#relProjectGroup_acronym" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relProjectGroup/acronym</a></b></div>
459
                                          <div><b><a href="oaf-common-1_0_xsd.html#relProjectGroup_code" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relProjectGroup/code</a></b></div>
460
                                          <div><b><a href="oaf-common-1_0_xsd.html#relResultGroup_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relResultGroup/collectedfrom</a></b></div>
461
                                          <div><b><a href="oaf-common-1_0_xsd.html#relResultGroup_dateofacceptance" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relResultGroup/dateofacceptance</a></b></div>
462
                                          <div><b><a href="oaf-common-1_0_xsd.html#relResultGroup_pid" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relResultGroup/pid</a></b></div>
463
                                          <div><b><a href="oaf-common-1_0_xsd.html#relResultGroup_publisher" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relResultGroup/publisher</a></b></div>
464
                                          <div><b><a href="oaf-common-1_0_xsd.html#relResultGroup_resulttype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relResultGroup/resulttype</a></b></div>
465
                                          <div><b><a href="oaf-common-1_0_xsd.html#relResultGroup_similarity" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relResultGroup/similarity</a></b></div>
466
                                          <div><b><a href="oaf-common-1_0_xsd.html#relResultGroup_type" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relResultGroup/type</a></b></div>
467
                                          <div><b><a href="oaf-common-1_0_xsd.html#relResultGroup_url" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relResultGroup/url</a></b></div>
468
                                          <div><b><a href="oaf-common-1_0_xsd.html#relType_title" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relType/title</a></b></div>
469
                                          <div><b><a href="oaf-common-1_0_xsd.html#relType_to" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relType/to</a></b></div>
470
                                          <div><b><a href="oaf-common-1_0_xsd.html#relType_websiteurl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relType/websiteurl</a></b></div>
471
                                          <div><b><a href="oaf-common-1_0_xsd.html#relsType_rel" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relsType/rel</a></b></div>
472
                                          <div><b><a href="oaf-result-1_0_xsd.html#result" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result</a></b></div>
473
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_bestaccessright" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/bestaccessright</a></b></div>
474
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_citations" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/citations</a></b></div>
475
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/collectedfrom</a></b></div>
476
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_context" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/context</a></b></div>
477
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_contributor" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/contributor</a></b></div>
478
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_country" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/country</a></b></div>
479
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_coverage" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/coverage</a></b></div>
480
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_creator" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/creator</a></b></div>
481
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_dateofacceptance" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/dateofacceptance</a></b></div>
482
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_description" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/description</a></b></div>
483
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_device" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/device</a></b></div>
484
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_embargoenddate" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/embargoenddate</a></b></div>
485
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_format" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/format</a></b></div>
486
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_instances" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/instances</a></b></div>
487
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_journal" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/journal</a></b></div>
488
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_language" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/language</a></b></div>
489
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_lastmetadataupdate" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/lastmetadataupdate</a></b></div>
490
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_metadataversionnumber" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/metadataversionnumber</a></b></div>
491
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_originalId" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/originalId</a></b></div>
492
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_pid" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/pid</a></b></div>
493
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_publisher" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/publisher</a></b></div>
494
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_relevantdate" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/relevantdate</a></b></div>
495
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_rels" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/rels</a></b></div>
496
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_resourcetype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/resourcetype</a></b></div>
497
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_resulttype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/resulttype</a></b></div>
498
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_size" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/size</a></b></div>
499
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_source" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/source</a></b></div>
500
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_subject" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/subject</a></b></div>
501
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_title" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/title</a></b></div>
502
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_version" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/version</a></b></div>
503
                                          <div><b><a href="oaf-result-1_0_xsd.html#webresourceType_url" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">webresourceType/url</a></b></div>
504
                                       </div>
505
                                    </td>
506
                                 </tr>
507
                              </tbody>
508
                           </table>
509
                        </td>
510
                        <td class="rt_lineRight"></td>
511
                     </tr>
512
                     <tr>
513
                        <td class="rt_cornerBottomLeft"></td>
514
                        <td class="rt_lineBottom"></td>
515
                        <td class="rt_cornerBottomRight"></td>
516
                     </tr>
517
                  </table>
518
               </div>
519
               <div class="horizontalLayout">
520
                  <table class="rt">
521
                     <tr>
522
                        <td class="rt_cornerTopLeft"></td>
523
                        <td class="rt_lineTop"></td>
524
                        <td class="rt_cornerTopRight"></td>
525
                     </tr>
526
                     <tr>
527
                        <td class="rt_lineLeft"></td>
528
                        <td class="rt_content">
529
                           <table class="componentGroup">
530
                              <tbody>
531
                                 <tr>
532
                                    <td class="componentGroup"><input id="button_Complex_Type" type="image" value="-" src="img/btM.gif" onclick="switchState('Complex_Type');" class="control" /></td>
533
                                    <td class="componentGroup">
534
                                       <div class="componentGroupTitle">Complex Types</div>
535
                                    </td>
536
                                 </tr>
537
                                 <tr>
538
                                    <td class="componentGroup"></td>
539
                                    <td class="componentGroup">
540
                                       <div id="Complex_Type" class="componentGroup" style="display:block">
541
                                          <div><b><a href="oaf-common-1_0_xsd.html#categoryType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">categoryType</a></b></div>
542
                                          <div><b><a href="oaf-result-1_0_xsd.html#citationsType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">citationsType</a></b></div>
543
                                          <div><b><a href="oaf-common-1_0_xsd.html#conceptType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">conceptType</a></b></div>
544
                                          <div><b><a href="oaf-common-1_0_xsd.html#contextType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">contextType</a></b></div>
545
                                          <div><b><a href="oaf-common-1_0_xsd.html#dataInfoType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">dataInfoType</a></b></div>
546
                                          <div><b><a href="oaf-common-1_0_xsd.html#externalreferenceType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">externalreferenceType</a></b></div>
547
                                          <div><b><a href="oaf-common-1_0_xsd.html#fieldType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">fieldType</a></b></div>
548
                                          <div><b><a href="oaf-common-1_0_xsd.html#funderFlatType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">funderFlatType</a></b></div>
549
                                          <div><b><a href="oaf-project-1_0_xsd.html#funderType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">funderType</a></b></div>
550
                                          <div><b><a href="oaf-common-1_0_xsd.html#fundingFlatType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">fundingFlatType</a></b></div>
551
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingParentType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingParentType</a></b></div>
552
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingTreeType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingTreeType</a></b></div>
553
                                          <div><b><a href="oaf-project-1_0_xsd.html#fundingType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-1.0.xsd')">fundingType</a></b></div>
554
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType</a></b></div>
555
                                          <div><b><a href="oaf-result-1_0_xsd.html#instancesType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instancesType</a></b></div>
556
                                          <div><b><a href="oaf-result-1_0_xsd.html#journalType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">journalType</a></b></div>
557
                                          <div><b><a href="oaf-common-1_0_xsd.html#labeledIdElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">labeledIdElementType</a></b></div>
558
                                          <div><b><a href="oaf-common-1_0_xsd.html#namedFundingLevel" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">namedFundingLevel</a></b></div>
559
                                          <div><b><a href="oaf-common-1_0_xsd.html#namedIdElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">namedIdElementType</a></b></div>
560
                                          <div><b><a href="oaf-common-1_0_xsd.html#qualifierType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">qualifierType</a></b></div>
561
                                          <div><b><a href="oaf-common-1_0_xsd.html#relToType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relToType</a></b></div>
562
                                          <div><b><a href="oaf-common-1_0_xsd.html#relType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relType</a></b></div>
563
                                          <div><b><a href="oaf-common-1_0_xsd.html#relsType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relsType</a></b></div>
564
                                          <div><b><a href="oaf-common-1_0_xsd.html#structuredPropertyElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">structuredPropertyElementType</a></b></div>
565
                                          <div><b><a href="oaf-result-1_0_xsd.html#webresourceType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">webresourceType</a></b></div>
566
                                       </div>
567
                                    </td>
568
                                 </tr>
569
                              </tbody>
570
                           </table>
571
                        </td>
572
                        <td class="rt_lineRight"></td>
573
                     </tr>
574
                     <tr>
575
                        <td class="rt_cornerBottomLeft"></td>
576
                        <td class="rt_lineBottom"></td>
577
                        <td class="rt_cornerBottomRight"></td>
578
                     </tr>
579
                  </table>
580
               </div>
581
               <div class="horizontalLayout">
582
                  <table class="rt">
583
                     <tr>
584
                        <td class="rt_cornerTopLeft"></td>
585
                        <td class="rt_lineTop"></td>
586
                        <td class="rt_cornerTopRight"></td>
587
                     </tr>
588
                     <tr>
589
                        <td class="rt_lineLeft"></td>
590
                        <td class="rt_content">
591
                           <table class="componentGroup">
592
                              <tbody>
593
                                 <tr>
594
                                    <td class="componentGroup"><input id="button_Simple_Type" type="image" value="-" src="img/btM.gif" onclick="switchState('Simple_Type');" class="control" /></td>
595
                                    <td class="componentGroup">
596
                                       <div class="componentGroupTitle">Simple Types</div>
597
                                    </td>
598
                                 </tr>
599
                                 <tr>
600
                                    <td class="componentGroup"></td>
601
                                    <td class="componentGroup">
602
                                       <div id="Simple_Type" class="componentGroup" style="display:block">
603
                                          <div><b><a href="oaf-common-1_0_xsd.html#boolOrEmptyType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">boolOrEmptyType</a></b></div>
604
                                          <div><b><a href="oaf-common-1_0_xsd.html#emptyType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">emptyType</a></b></div>
605
                                          <div><b><a href="oaf-common-1_0_xsd.html#stringOrEmptyType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">stringOrEmptyType</a></b></div>
606
                                       </div>
607
                                    </td>
608
                                 </tr>
609
                              </tbody>
610
                           </table>
611
                        </td>
612
                        <td class="rt_lineRight"></td>
613
                     </tr>
614
                     <tr>
615
                        <td class="rt_cornerBottomLeft"></td>
616
                        <td class="rt_lineBottom"></td>
617
                        <td class="rt_cornerBottomRight"></td>
618
                     </tr>
619
                  </table>
620
               </div>
621
               <div class="horizontalLayout">
622
                  <table class="rt">
623
                     <tr>
624
                        <td class="rt_cornerTopLeft"></td>
625
                        <td class="rt_lineTop"></td>
626
                        <td class="rt_cornerTopRight"></td>
627
                     </tr>
628
                     <tr>
629
                        <td class="rt_lineLeft"></td>
630
                        <td class="rt_content">
631
                           <table class="componentGroup">
632
                              <tbody>
633
                                 <tr>
634
                                    <td class="componentGroup"><input id="button_Attribute" type="image" value="-" src="img/btM.gif" onclick="switchState('Attribute');" class="control" /></td>
635
                                    <td class="componentGroup">
636
                                       <div class="componentGroupTitle">Attributes</div>
637
                                    </td>
638
                                 </tr>
639
                                 <tr>
640
                                    <td class="componentGroup"></td>
641
                                    <td class="componentGroup">
642
                                       <div id="Attribute" class="componentGroup" style="display:block">
643
                                          <div><b><a href="oaf-result-1_0_xsd.html#citationsType_provenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">citationsType/@provenance</a></b></div>
644
                                          <div><b><a href="oaf-result-1_0_xsd.html#citationsType_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">citationsType/@trust</a></b></div>
645
                                          <div><b><a href="oaf-result-1_0_xsd.html#citationsType_citationsType_citation_citationsType_citationsType_citation_id_confidenceLevel" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">citationsType/citation/id/@confidenceLevel</a></b></div>
646
                                          <div><b><a href="oaf-result-1_0_xsd.html#citationsType_citationsType_citation_citationsType_citationsType_citation_id_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">citationsType/citation/id/@type</a></b></div>
647
                                          <div><b><a href="oaf-result-1_0_xsd.html#citationsType_citationsType_citation_citationsType_citationsType_citation_id_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">citationsType/citation/id/@value</a></b></div>
648
                                          <div><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">dataInfoAttributeGroup/@inferenceprovenance</a></b></div>
649
                                          <div><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">dataInfoAttributeGroup/@inferred</a></b></div>
650
                                          <div><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">dataInfoAttributeGroup/@trust</a></b></div>
651
                                          <div><b><a href="oaf-common-1_0_xsd.html#funderFlatType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">funderFlatType/@id</a></b></div>
652
                                          <div><b><a href="oaf-common-1_0_xsd.html#funderFlatType_jurisdiction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">funderFlatType/@jurisdiction</a></b></div>
653
                                          <div><b><a href="oaf-common-1_0_xsd.html#funderFlatType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">funderFlatType/@name</a></b></div>
654
                                          <div><b><a href="oaf-common-1_0_xsd.html#funderFlatType_shortname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">funderFlatType/@shortname</a></b></div>
655
                                          <div><b><a href="oaf-result-1_0_xsd.html#instanceType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">instanceType/@id</a></b></div>
656
                                          <div><b><a href="oaf-result-1_0_xsd.html#journalType_eissn" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">journalType/@eissn</a></b></div>
657
                                          <div><b><a href="oaf-result-1_0_xsd.html#journalType_ep" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">journalType/@ep</a></b></div>
658
                                          <div><b><a href="oaf-result-1_0_xsd.html#journalType_iss" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">journalType/@iss</a></b></div>
659
                                          <div><b><a href="oaf-result-1_0_xsd.html#journalType_issn" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">journalType/@issn</a></b></div>
660
                                          <div><b><a href="oaf-result-1_0_xsd.html#journalType_lissn" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">journalType/@lissn</a></b></div>
661
                                          <div><b><a href="oaf-result-1_0_xsd.html#journalType_sp" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">journalType/@sp</a></b></div>
662
                                          <div><b><a href="oaf-result-1_0_xsd.html#journalType_vol" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">journalType/@vol</a></b></div>
663
                                          <div><b><a href="oaf-common-1_0_xsd.html#labeledIdElementType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">labeledIdElementType/@id</a></b></div>
664
                                          <div><b><a href="oaf-common-1_0_xsd.html#labeledIdElementType_label" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">labeledIdElementType/@label</a></b></div>
665
                                          <div><b><a href="oaf-common-1_0_xsd.html#namedFundingLevel_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">namedFundingLevel/@name</a></b></div>
666
                                          <div><b><a href="oaf-common-1_0_xsd.html#namedIdElementType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">namedIdElementType/@id</a></b></div>
667
                                          <div><b><a href="oaf-common-1_0_xsd.html#namedIdElementType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">namedIdElementType/@name</a></b></div>
668
                                          <div><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">qualifierAttributeGroup/@classid</a></b></div>
669
                                          <div><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">qualifierAttributeGroup/@classname</a></b></div>
670
                                          <div><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">qualifierAttributeGroup/@schemeid</a></b></div>
671
                                          <div><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">qualifierAttributeGroup/@schemename</a></b></div>
672
                                          <div><b><a href="oaf-common-1_0_xsd.html#relToType_class" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relToType/@class</a></b></div>
673
                                          <div><b><a href="oaf-common-1_0_xsd.html#relToType_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relToType/@type</a></b></div>
674
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_result_creator_ORCID" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/creator/@ORCID</a></b></div>
675
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_result_creator_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/creator/@name</a></b></div>
676
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_result_creator_rank" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/creator/@rank</a></b></div>
677
                                          <div><b><a href="oaf-result-1_0_xsd.html#result_result_creator_surname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-1.0.xsd')">result/creator/@surname</a></b></div>
678
                                       </div>
679
                                    </td>
680
                                 </tr>
681
                              </tbody>
682
                           </table>
683
                        </td>
684
                        <td class="rt_lineRight"></td>
685
                     </tr>
686
                     <tr>
687
                        <td class="rt_cornerBottomLeft"></td>
688
                        <td class="rt_lineBottom"></td>
689
                        <td class="rt_cornerBottomRight"></td>
690
                     </tr>
691
                  </table>
692
               </div>
693
               <div class="horizontalLayout">
694
                  <table class="rt">
695
                     <tr>
696
                        <td class="rt_cornerTopLeft"></td>
697
                        <td class="rt_lineTop"></td>
698
                        <td class="rt_cornerTopRight"></td>
699
                     </tr>
700
                     <tr>
701
                        <td class="rt_lineLeft"></td>
702
                        <td class="rt_content">
703
                           <table class="componentGroup">
704
                              <tbody>
705
                                 <tr>
706
                                    <td class="componentGroup"><input id="button_Element_Group" type="image" value="-" src="img/btM.gif" onclick="switchState('Element_Group');" class="control" /></td>
707
                                    <td class="componentGroup">
708
                                       <div class="componentGroupTitle">Element Groups</div>
709
                                    </td>
710
                                 </tr>
711
                                 <tr>
712
                                    <td class="componentGroup"></td>
713
                                    <td class="componentGroup">
714
                                       <div id="Element_Group" class="componentGroup" style="display:block">
715
                                          <div><b><a href="oaf-common-1_0_xsd.html#fundingGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">fundingGroup</a></b></div>
716
                                          <div><b><a href="oaf-common-1_0_xsd.html#relDataSourceGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relDataSourceGroup</a></b></div>
717
                                          <div><b><a href="oaf-common-1_0_xsd.html#relOrganizationGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relOrganizationGroup</a></b></div>
718
                                          <div><b><a href="oaf-common-1_0_xsd.html#relProjectGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relProjectGroup</a></b></div>
719
                                          <div><b><a href="oaf-common-1_0_xsd.html#relResultGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relResultGroup</a></b></div>
720
                                       </div>
721
                                    </td>
722
                                 </tr>
723
                              </tbody>
724
                           </table>
725
                        </td>
726
                        <td class="rt_lineRight"></td>
727
                     </tr>
728
                     <tr>
729
                        <td class="rt_cornerBottomLeft"></td>
730
                        <td class="rt_lineBottom"></td>
731
                        <td class="rt_cornerBottomRight"></td>
732
                     </tr>
733
                  </table>
734
               </div>
735
               <div class="horizontalLayout">
736
                  <table class="rt">
737
                     <tr>
738
                        <td class="rt_cornerTopLeft"></td>
739
                        <td class="rt_lineTop"></td>
740
                        <td class="rt_cornerTopRight"></td>
741
                     </tr>
742
                     <tr>
743
                        <td class="rt_lineLeft"></td>
744
                        <td class="rt_content">
745
                           <table class="componentGroup">
746
                              <tbody>
747
                                 <tr>
748
                                    <td class="componentGroup"><input id="button_Attribute_Group" type="image" value="-" src="img/btM.gif" onclick="switchState('Attribute_Group');" class="control" /></td>
749
                                    <td class="componentGroup">
750
                                       <div class="componentGroupTitle">Attribute Groups</div>
751
                                    </td>
752
                                 </tr>
753
                                 <tr>
754
                                    <td class="componentGroup"></td>
755
                                    <td class="componentGroup">
756
                                       <div id="Attribute_Group" class="componentGroup" style="display:block">
757
                                          <div><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">dataInfoAttributeGroup</a></b></div>
758
                                          <div><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">qualifierAttributeGroup</a></b></div>
759
                                       </div>
760
                                    </td>
761
                                 </tr>
762
                              </tbody>
763
                           </table>
764
                        </td>
765
                        <td class="rt_lineRight"></td>
766
                     </tr>
767
                     <tr>
768
                        <td class="rt_cornerBottomLeft"></td>
769
                        <td class="rt_lineBottom"></td>
770
                        <td class="rt_cornerBottomRight"></td>
771
                     </tr>
772
                  </table>
773
               </div>
774
               <div style="clear:left"></div>
775
            </div>
776
         </div>
777
      </div>
778
      <div class="footer">
779
         <hr />
780
         <div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX">&lt;</span>o<span class="redX">X</span>ygen<span class="redX">/&gt;</span></span></a><sup>®</sup> XML Editor.
781
         </div>
782
      </div>
783
   </body>
784
</html>
modules/dnet-openaire-schema/trunk/schema/1.0/doc/oaf-1.0.indexList.html
1
<!DOCTYPE html
2
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
   <head>
5
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
      <title>Schema documentation for </title>
7
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
8
         <!--
9
        
10
      
11
        var button_prefix = 'button_';
12
        
13
        /**
14
        * Returns an element in the current HTML document.
15
        *
16
        * @param elementID Identifier of HTML element
17
        * @return               HTML element object
18
        */
19
        function getElementObject(elementID) {
20
            var elemObj = null;
21
            if (document.getElementById) {
22
                elemObj = document.getElementById(elementID);
23
            }
24
            return elemObj;
25
        }
26
        
27
        /**
28
        * Switches the state of a collapseable box, e.g.
29
        * if it's opened, it'll be closed, and vice versa.
30
        *
31
        * @param boxID Identifier of box
32
        */
33
        function switchState(boxID) {
34
            var boxObj = getElementObject(boxID);
35
            var buttonObj = getElementObject(button_prefix + boxID);
36
            if (boxObj == null || buttonObj == null) {
37
                // Box or button not found
38
            } else if (boxObj.style.display == "none") {
39
                // Box is closed, so open it
40
                openBox(boxObj, buttonObj);
41
            } else if (boxObj.style.display == "block") {
42
                // Box is opened, so close it
43
                closeBox(boxObj, buttonObj);
44
            }
45
        }
46
        
47
        /**
48
        * Opens a collapseable box.
49
        *
50
        * @param boxObj       Collapseable box
51
        * @param buttonObj Button controlling box
52
        */
53
        function openBox(boxObj, buttonObj) {
54
            if (boxObj == null || buttonObj == null) {
55
                // Box or button not found
56
            } else {
57
                // Change 'display' CSS property of box
58
                boxObj.style.display = "block";
59
                
60
                // Change text of button
61
                if (boxObj.style.display == "block") {
62
                    buttonObj.src = "img/btM.gif";
63
                }
64
            }
65
        }
66
        
67
        /**
68
        * Closes a collapseable box.
69
        *
70
        * @param boxObj       Collapseable box
71
        * @param buttonObj Button controlling box
72
        */
73
        function closeBox(boxObj, buttonObj) {
74
            if (boxObj == null || buttonObj == null) {
75
                // Box or button not found
76
            } else {
77
                // Change 'display' CSS property of box
78
                boxObj.style.display = "none";
79
                
80
                // Change text of button
81
                if (boxObj.style.display == "none") {
82
                    buttonObj.src = "img/btP.gif";
83
                }
84
            }
85
        }
86
    
87
       function switchStateForAll(buttonObj, boxList) {
88
            if (buttonObj == null) {
89
                // button not found
90
            } else if (buttonObj.value == "+") {
91
                // Expand all
92
                expandAll(boxList);
93
                buttonObj.value = "-";
94
            } else if (buttonObj.value == "-") {
95
                // Collapse all
96
                collapseAll(boxList);
97
                buttonObj.value = "+";
98
            }
99
        }
100
        
101
        /**
102
        * Closes all boxes in a given list.
103
        *
104
        * @param boxList Array of box IDs
105
        */
106
        function collapseAll(boxList) {
107
            var idx;
108
            for (idx = 0; idx < boxList.length; idx++) {
109
                var boxObj = getElementObject(boxList[idx]);
110
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
111
                closeBox(boxObj, buttonObj);
112
            }
113
        }
114
            
115
        /**
116
        * Open all boxes in a given list.
117
        *
118
        * @param boxList Array of box IDs
119
        */
120
        function expandAll(boxList) {
121
            var idx;
122
            for (idx = 0; idx < boxList.length; idx++) {
123
                var boxObj = getElementObject(boxList[idx]);
124
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
125
                openBox(boxObj, buttonObj);
126
            }
127
        }
128
        
129
        /**
130
         * Update the message presented in the title of the html page.
131
         * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'"
132
         * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'"
133
         * - If no split we always present: "Documentation for 'MainSchema.xsd'"
134
         */
135
        function updatePageTitle(message) {
136
            top.document.title = message;
137
        }
138
        
139
          
140
                    
141
         /**
142
          * Finds an HTML element by its ID and makes it floatable over the normal content.
143
          *
144
          * @param x_displacement The difference in pixels to the right side of the window from 
145
          *           the left side of the element.
146
          * @param y_displacement The difference in pixels to the right side of the window from 
147
          *           the top of the element.          
148
          */
149
         function findAndFloat(id, x_displacement, y_displacement){
150

  
151
            var element = getElementObject(id);            
152
            
153
            window[id + "_obj"] = element;
154
            
155
            if(document.layers) {
156
               element.style = element;
157
            }
158
            
159
            element.current_y = y_displacement;      
160
            element.first_time = true;
161
         
162
            element.floatElement = function(){
163
               // It may be closed by an user action.
164
                
165
               // Target X and Y coordinates.
166
               var x, y;
167
               
168
               var myWidth = 0, myHeight = 0;
169
               if( typeof( window.innerWidth ) == 'number' ) {
170
                  //Non-IE
171
                  myWidth = window.innerWidth;
172
                  myHeight = window.innerHeight;
173
               } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
174
                  //IE 6+ in 'standards compliant mode'
175
                  myWidth = document.documentElement.clientWidth;
176
                  myHeight = document.documentElement.clientHeight;
177
               } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
178
                  //IE 4 compatible
179
                  myWidth = document.body.clientWidth;
180
                  myHeight = document.body.clientHeight;
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff