forked from mercyblitz/jsr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc.html
531 lines (527 loc) · 26.9 KB
/
c.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>JNLP File Document Type Definition</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<hr>
<h1>C JNLP File Document Type Definition</h1>
<hr>
<p> </p>
<p>The following contains an annotated XML Document Type Definition (DTD) for
the the JNLP file.</p>
<h2>C.1 DOCTYPE</h2>
<blockquote>
<p><code><!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc//DTD
JNLP Descriptor 6.0//EN"></code></p>
</blockquote>
<h2>C.2 DTD</h2>
<blockquote>
<p><code><!--<br>
The root element for the JNLP file.<br>
--></code></p>
<p><code><strong><!ELEMENT jnlp (information+, security?, update?, resources*, (application-desc
| applet-desc | component-desc | installer-desc))></strong></code></p>
<p><code><!--<br>
The spec attribute of the jnlp element specifies what versions of the JNLP
specification a particular JNLP file works with. The default value is "1.0+".<br>
--></code></p>
<p><code><strong><!ATTLIST jnlp spec CDATA #IMPLIED</strong></code>></p>
<p><code><!--<br>
The version attribute of the jnlp element specifies the version of the application
being launched, as well as the version of the JNLP file itself.<br>
--></code></p>
<p><code><strong><!ATTLIST jnlp version CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
The codebase attribute of the jnlp element specifies the codebase for the
application. This is also used as the base URL for all relative URLs in href
attributes.<br>
--></code></p>
<p><code><strong><!ATTLIST jnlp codebase CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
The href attribute of the jnlp element contains the location of the JNLP file
as a URL.<br>
--></code></p>
<p><code><strong><!ATTLIST jnlp href CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
The information element contains various descriptive information about the
application being launched.<br>
--></code></p>
<p><code><strong><!ELEMENT information (title?, vendor?, homepage?, description*,
icon*,offline-allowed?, shortcut?, association?, related-content*)></strong></code></p>
<p><code><!-- <br>
The os attribute of the information element specifies for which operating
system this element should be considered. <br>
--> </code></p>
<p><code><strong><!ATTLIST information os CDATA #IMPLIED> </strong></code></p>
<p><code><!-- <br>
The arch attribute of the information element specifies for what architecure
this element should be considered. <br>
--> </code></p>
<p><code><strong><!ATTLIST information arch CDATA #IMPLIED> </strong></code></p>
<p><code><!-- <br>
The platform attribute of the information element specifies for what platform
this element should be considered. <br>
--> </code></p>
<p><code><strong><!ATTLIST information platform CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
The locale attribute of the information element specifies the locale for which
this information element should be used.<br>
--></code></p>
<p><code><strong><!ATTLIST information locale CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
The title element contains the name of the application.<br>
--></code></p>
<p><code><strong><!ELEMENT title (#PCDATA)></strong></code></p>
<p><code><!--<br>
The vendor element contains the name of the vendor.<br>
--></code></p>
<p><strong><code><!ELEMENT vendor (#PCDATA)></code></strong></p>
<p><code><!--<br>
The homepage element contains a href to the homepage for the application.<br>
--></code></p>
<p><code><strong><!ELEMENT homepage EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The href attribute of the homepage element specifies the URL
for the homepage.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST homepage href CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The description element contains a description of the application.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT description (#PCDATA)></strong></code></p>
<p><code><!--<br>
</code><code>The kind attribute for the description element indicates the
use of a description element. The values are: i) one-line, for a one-line
description, ii) short, for a one paragraph description, and iii) tooltip,
for a tool-tip description. Longer descriptions should be put on a separate
web page and referred to using the homepage element.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST description kind (one-line | short | tooltip)
#IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The icon element describes an image for an application.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT icon EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The href attribute of an icon contains a URL to a location on
the web containing an image file for an icon. <br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST icon href CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The version attribute of an icon contains a string describing
the version of the image that is requested.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST icon version CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The width attribute of the icon element describes the width of
the icon in pixels.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST icon width CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The height attribute of the icon element describes the height
of the icon in pixels.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST icon height CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The kind attribute of the icon element describes the use of the
icon.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST icon kind CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The depth attribute of the icon element describes the color depth
of the image in bits-per-pixel. Common values will be 8, 16, or 24.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST icon depth CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The size attribute of an icon element indicates the size of an
icon file in bytes.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST icon size CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The offline-allowed element indicates if the application can
be launched offline. Default value (i.e., if the element is not specified)
is online.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT offline-allowed EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The security element describes the security requirements of the
application.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT security (all-permissions?, j2ee-application-client-permissions?)></strong></code></p>
<p><code><!--<br>
</code><code>The all-permissions element indicates that the application needs
full access the the local system and network.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT all-permissions EMPTY> </strong></code></p>
<p><code><!--<br>
</code><code>The j2ee-application-client-permissions element indicates that
the application needs the set of permissions defined for a J2EE application
client.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT j2ee-application-client-permissions EMPTY>
</strong></code></p>
<p><code><!--<br>
</code><code>The update element contains the applications preference for
application update.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT update></strong></code></p>
<p><code><!--<br>
</code><code>The check attribute of the update element indicates the applications
preference for when to check for updates.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST update check (always | timeout | background) "timeout"></strong></code></p>
<p><code><!--<br>
</code><code>The policy attribute of the update element indicates the applications
preference for what to do when updates are available.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST update policy (always | prompt-update | prompt-run) "always"></strong></code></p>
<p><code><!--<br>
</code><code>The resources element contains an ordered set of resources that
constitutes an application.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT resources (java | j2se | jar | nativelib |
extension | property | package)*></strong></code></p>
<p><code><!--<br>
</code><code>The os attribute of the resources element specifies for which
operating system this element should be considered.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST resources os CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The arch attribute of the resources element specifies for what
platform this element should be considered.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST resources arch CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The locale attribute of the resources element specifies for which
locales this element should be considered.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST resources locale CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The java element describes a supported JRE version and an optional
resources element to be used by the particular JRE.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT java (resources*)></strong></code></p>
<p><code><!--<br>
</code><code>The version attribute of the java element describes the versions
of the JRE that this application is supported on.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST java version CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The href attribute of the java element specifies the location
where the JRE should be downloaded from.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST java href CDATA #IMPLIED></strong></code></p> <p><code><!--<br>
</code><code>The initial-heap-size attribute of the java element specifies
the initial size of the object heap.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST java initial-heap-size CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The max-heap-size attribute of the java element specifies the
preferred maximum size of the object heap.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST java max-heap-size CDATA #IMPLIED></strong></code></p>
<p><code><!-- <br>
The java-vm-args attribute of the java element specifies a preferred set of
virtual machine arguments to use when launching java. <br>
--> </code></p>
<p><code><strong><!ATTLIST java java-vm-args CDATA #IMPLIED</strong></code><strong>></strong></p>
<p><code><!--<br>
</code><code>The j2se element describes a supported JRE version and an optional
resources element to be used by the particular JRE.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT j2se (resources*)></strong></code></p>
<p><code><!--<br>
</code><code>The version attribute of the j2se element describes the versions
of the JRE that this application is supported on.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST j2se version CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The href attribute of the j2se element specifies the location
where the JRE should be downloaded from.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST j2se href CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The initial-heap-size attribute of the j2se element specifies
the initial size of the object heap.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST j2se initial-heap-size CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The max-heap-size attribute of the j2se element specifies the
preferred maximum size of the object heap.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST j2se max-heap-size CDATA #IMPLIED></strong></code></p>
<p><code><!-- <br>
The java-vm-args attribute of the j2se element specifies a preferred set of
virtual machine arguments to use when launching java. <br>
--> </code></p>
<p><code><strong><!ATTLIST j2se java-vm-args CDATA #IMPLIED</strong></code><strong>></strong></p>
<p><code><!--<br>
</code><code>The jar element describes a jar file resource.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT jar EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The href attribute of the jar element contains the location of
a jar file as a URL.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST jar href CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The version attribute of a jar element describes the version
of a particular JAR file that is requested.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST jar version CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The main attribute of a jar element indicates whether this element
contains the main class.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST jar main (true|false) "false"></strong></code></p>
<p><code><!--<br>
</code><code>The download attribute of a jar element indicates if this element
must be downloaded before an application is launched (eager), or not (lazy).<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST jar download (eager | lazy) "eager"></strong></code></p>
<p><code><!--<br>
</code><code>The size attribute of a jar element indicates the size of a JAR
file in bytes.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST jar size CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The part attribute of a jar element describes the name of the
group it belongs too.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST jar part CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The nativelib element describes a resource containing native
files.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT nativelib EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The href attribute of a nativelib element contains the location
of a nativelib file as a URL.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST nativelib href CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The version attribute of a nativelib element describes the version
of a particular nativelib file that is requested.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST nativelib version CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The download attribute of a nativelib element indicates if this
element must be downloaded before an application is launched (eager), or not
(lazy).<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST nativelib download (eager | lazy) "eager"></strong></code></p>
<p><code><!--<br>
</code><code>The size attribute of a nativelib element indicates the size
of a nativelib file in bytes.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST nativelib size CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The part attribute of a nativelib element describes the name
of the part it belongs to.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST nativelib part CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The extension element describes an extension that is required
in order to run the application.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT extension (ext-download*)></strong></code></p>
<p><code><!--<br>
</code><code>The version attribute of an extension element specifies the version
of the extension requested.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST extension version CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The name attribute of an extension element specifies the name
of the extension.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST extension name CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The href attribute of an extension element specifies the location
of the extension.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST extension href CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The ext-download element defines how parts of the extension are
downloaded.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT ext-download EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The ext-part attribute of an ext-download element describes the
name of a part in the extension.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST ext-download ext-part CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The download attribute of an ext-download element describes if
the resource may be lazily downloaded.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST ext-download download (lazy|eager) "eager"></strong></code></p>
<p><code><!--<br>
</code><code>The part attribute of an ext-download element describes the name
of the part it belongs to in the current JNLP file.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST ext-download part CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The property element describes a name/value pair that is available
to the launched application as a system property.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT property EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The name attribute of the property element describes the name
of a system property.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST property name CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The value element describes the value of a system property.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST property value CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The package element defines a relationship between a Java package
or class name and a part.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT package EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The name attribute of the package element describes the name
of a package or class.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST package name CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The part attribute of the package element describes the part
that contains the specified package or class.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST package part CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The recursive attribute of the package element indicates if all
sub-packages of this particular package is also included.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST package recursive (true|false) "false"></strong></code></p>
<p><code><!--<br>
</code><code>The application-desc element describes how to launch a Java-based
application. It contains information about the main class and arguments.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT application-desc (argument*)></strong></code></p>
<p><code><!--<br>
</code><code>The main-class attribute of the application-desc element describes
the main class of an application.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST application-desc main-class CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The argument elements describe the ordered set of arguments to
an application. These arguments will be passed into the main method of the
application's main class.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT argument (#PCDATA)></strong></code></p>
<p><code><!--<br>
</code><code>The applet-desc element describes how to launch a Java Technology-based
Applet. It contains information about, e.g., the main class, size, and parameters.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT applet-desc (param*)></strong></code></p>
<p><code><!--<br>
</code><code>The documentbase attribute of the applet-desc element describes
the documentbase for the applet as a URL.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST applet-desc documentbase CDATA #IMPLIED></strong></code></p>
<p><code><!--<br>
</code><code>The main-class attribute of the applet-desc element describes
the name of the main Applet class.</code></p>
<p><code>--></code></p>
<p><code><strong><!ATTLIST applet-desc main-class CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The name attribute of the applet-desc element describes the name
of the Applet.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST applet-desc name CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The width attribute of the applet-desc element describes the
width of the Applet in pixels.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST applet-desc width CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The height attribute of the applet-desc element describes the
height of the Applet in pixels.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST applet-desc height CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The param element describes a parameter to an Applet.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT param EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The name attribute of the param element describes the name of
a parameter.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST param name CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The value attribute of the param element describes the value
of a parameter.</code></p>
<p><code>--></code></p>
<p><code><strong><!ATTLIST param value CDATA #REQUIRED></strong></code></p>
<p><code><!--<br>
</code><code>The component-desc element specifies a component extension.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT component-desc EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The installer-desc element specifies an installer extension.<br>
</code><code>--></code></p>
<p><code><strong><!ELEMENT installer-desc EMPTY></strong></code></p>
<p><code><!--<br>
</code><code>The main-class attribute of the installer-desc element describes
the main class for the installer/uninstaller.<br>
</code><code>--></code></p>
<p><code><strong><!ATTLIST installer-desc main-class CDATA #IMPLIED></strong></code></p>
<p><code><!-- <br>
The shortcut element describes an application's preferences for desktop integration.
<br>
--> </code></p>
<p><code><strong><!ELEMENT shortcut (desktop? menu?)> </strong></code></p>
<p><code><!-- <br>
The online attribute of the shortcut element describes an application's preferences
launching shortcuts online or offline <br>
--> </code></p>
<p><code><strong><!ATTLIST shortcut online (true | false) "true"></strong>
</code></p>
<p><code><!-- <br>
The desktop element indicates that a shortcut on the desktop is desired. <br>
--> </code></p>
<p><code><strong><!ELEMENT desktop EMPTY></strong> </code></p>
<p><code><!-- <br>
The menu element indicates that a shortcut in a menu is desired. <br>
--> </code></p>
<p><code><strong><!ELEMENT menu EMPTY> </strong></code></p>
<p><code><!-- <br>
The submenu attribute of the menu element indicates where in the menu a shortcut
is desired. <br>
--> </code></p>
<p><code><strong><!ATTLIST menu submenu CDATA #IMPLIED></strong></code></p>
<p><code><!-- <br>
The association element describes an application's preferences for desktop
associations. <br>
--> </code></p>
<p><code><strong><!ELEMENT association (description?, icon?)></strong>
</code></p>
<p><code><!-- <br>
The extensions attribute of the association element indicates a list of extensions
to associate. <br>
--> </code></p>
<p><code><strong><!ATTLIST association extensions CDATA #REQUIRED> </strong></code></p>
<p><code><!-- <br>
The mime-type attribute of the association element indicates a mime-types
to associate. <br>
--> </code></p>
<p><code><strong><!ATTLIST association mime-type CDATA #REQUIRED></strong></code></p>
<p><code><!-- <br>
The related-content element described additional content that may be integrated
with the application. <br>
--> </code></p>
<p><code><strong><!ELEMENT related-content (title?, description?, icon?)></strong>
</code></p>
<p><code><!-- <br>
The href attribute of the related-content element contains a URL to a location
on the web containing additional related content for the application. <br>
--> </code></p>
<p><code><strong><!ATTLIST related-content href CDATA #REQUIRED></strong></code><br>
</p>
<p> </p>
</blockquote>
</body>
</html>