Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/devtools/client/responsive/utils/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 3 kB image not shown  

Quelle  JNLP-6.0.dtd

  Sprache: XML
 

<!--

    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.

-->

<!--

<!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc//DTD JNLP Descriptor 6.0//EN" "http://java.sun.com/dtd/JNLP-6.0.dtd">

-->


<!--
The root element for the JNLP file.
-->


<!ELEMENT jnlp (information+, security?, update?, resources*,
 (application-desc | applet-desc | component-desc | installer-desc))>

<!--
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+".
-->


<!ATTLIST jnlp spec CDATA #IMPLIED>

<!--
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.
-->


<!ATTLIST jnlp version CDATA #IMPLIED>

<!--
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.
-->


<!ATTLIST jnlp codebase CDATA #IMPLIED>

<!--
The href attribute of the jnlp element contains the location of the JNLP
file as a URL.
-->


<!ATTLIST jnlp href CDATA #IMPLIED>

<!--
The information element contains various descriptive information about the 
application being launched.
-->


<!ELEMENT information (title, vendor, homepage?, description*, icon*,
 offline-allowed?, shortcut?, association*, related-content*)>

<!--
The os attribute of the information element specifies for which operating 
system this element should be considered.
-->


<!ATTLIST information os CDATA #IMPLIED>

<!--
The arch attribute of the information element specifies for what architecure 
this element should be considered.
-->


<!ATTLIST information arch CDATA #IMPLIED>

<!--
The platform attribute of the information element specifies for what 
platform this element should be considered.
-->


<!ATTLIST information platform CDATA #IMPLIED>

<!--
The locale attribute of the information element specifies the locale for 
which this information element should be used.
-->


<!ATTLIST information locale CDATA #IMPLIED>

<!--
The title element contains the name of the application.
-->


<!ELEMENT title (#PCDATA)>

<!--
The vendor element contains the name of the vendor.
-->


<!ELEMENT vendor (#PCDATA)>

<!--
The homepage element contains a href to the homepage for the application.
-->


<!ELEMENT homepage EMPTY>

<!--
The href attribute of the homepage element specifies the URL for the homepage.
-->


<!ATTLIST homepage href CDATA #REQUIRED>

<!--
The description element contains a description of the application.
-->


<!ELEMENT description (#PCDATA)>

<!--
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.
-->


<!ATTLIST description kind (one-line | short | tooltip) #IMPLIED>

<!--
The icon element describes an image for an application.
-->


<!ELEMENT icon EMPTY>

<!--
The href attribute of an icon contains a URL to a location on the web 
containing an image file for an icon.
-->


<!ATTLIST icon href CDATA #REQUIRED>

<!--
The version attribute of an icon contains a string describing the version of 
the image that is requested.
-->


<!ATTLIST icon version CDATA #IMPLIED>

<!--
The width attribute of the icon element describes the width of the icon 
in pixels.
-->


<!ATTLIST icon width CDATA #IMPLIED>

<!--
The height attribute of the icon element describes the height of the icon 
in pixels.
-->


<!ATTLIST icon height CDATA #IMPLIED>

<!--
The kind attribute of the icon element describes the use of the icon.
-->


<!ATTLIST icon kind CDATA #IMPLIED>

<!--
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.
-->


<!ATTLIST icon depth CDATA #IMPLIED>

<!--
The size attribute of an icon element indicates the size of an icon file 
in bytes.
-->


<!ATTLIST icon size CDATA #IMPLIED>

<!--
The offline-allowed element indicates if the application can be launched 
offline. Default value (i.e., if the element is not specified) is online.
-->


<!ELEMENT offline-allowed EMPTY>

<!--
The security element describes the security requirements of the application.
-->


<!ELEMENT security (all-permissions?, j2ee-application-client-permissions?)>

<!--
The all-permissions element indicates that the application needs full access 
the the local system and network.
-->


<!ELEMENT all-permissions EMPTY>

<!--
The j2ee-application-client-permissions element indicates that the application 
needs the set of permissions defined for a J2EE application client.
-->


<!ELEMENT j2ee-application-client-permissions EMPTY>

<!--
The update element contains the applications preference for application update.
-->


<!ELEMENT update EMPTY>

<!--
The check attribute of the update element indicates the applications 
preference for when to check for updates.
-->


<!ATTLIST update check (always | timeout | background) "timeout">

<!--
The policy attribute of the update element indicates the applications 
preference for what to do when updates are available.
-->


<!ATTLIST update policy (always | prompt-update | prompt-run) "always">

<!--
The resources element contains an ordered set of resources that 
constitutes an application.
-->


<!ELEMENT resources (java | j2se | jar | nativelib | extension | 
 property | package)*>

<!--
The os attribute of the resources element specifies for which operating 
system this element should be considered.
-->


<!ATTLIST resources os CDATA #IMPLIED>

<!--
The arch attribute of the resources element specifies for what platform this 
element should be considered.
-->


<!ATTLIST resources arch CDATA #IMPLIED>

<!--
The locale attribute of the resources element specifies for which locales 
this element should be considered.
-->


<!ATTLIST resources locale CDATA #IMPLIED>

<!--
The java element describes a supported JRE version and an optional resources 
element to be used by the particular JRE.
-->


<!ELEMENT java (resources*)>

<!--
The version attribute of the java element describes the versions of the JRE 
that this application is supported on.
-->


<!ATTLIST java version CDATA #REQUIRED>

<!--
The href attribute of the java element specifies the location where the JRE 
should be downloaded from.
-->


<!ATTLIST java href CDATA #IMPLIED>

<!--
The initial-heap-size attribute of the java element specifies the initial 
size of the object heap.
-->


<!ATTLIST java initial-heap-size CDATA #IMPLIED>

<!--
The max-heap-size attribute of the java element specifies the preferred 
maximum size of the object heap.
-->


<!ATTLIST java max-heap-size CDATA #IMPLIED>

<!--
The java-vm-args attribute of the java element specifies a preferred set of 
virtual machine arguments to use when launching java.
-->


<!ATTLIST java java-vm-args CDATA #IMPLIED>

<!--
The j2se element describes a supported JRE version and an optional resources 
element to be used by the particular JRE.
-->


<!ELEMENT j2se (resources*)>

<!--
The version attribute of the j2se element describes the versions of the JRE 
that this application is supported on.
-->


<!ATTLIST j2se version CDATA #REQUIRED>

<!--
The href attribute of the j2se element specifies the location where the JRE 
should be downloaded from.
-->


<!ATTLIST j2se href CDATA #IMPLIED>

<!--
The initial-heap-size attribute of the j2se element specifies the initial 
size of the object heap.
-->


<!ATTLIST j2se initial-heap-size CDATA #IMPLIED>

<!--
The max-heap-size attribute of the j2se element specifies the preferred 
maximum size of the object heap.
-->


<!ATTLIST j2se max-heap-size CDATA #IMPLIED>

<!--
The java-vm-args attribute of the j2se element specifies a preferred set of 
virtual machine arguments to use when launching java.
-->

<!ATTLIST j2se java-vm-args CDATA #IMPLIED>

<!--
The jar element describes 
-->


<ELEMENT jar>

<!--
The href attribute of the jar element contains the location of a jar file 
as a URL.
-->


<!ATTLIST jar href CDATA #REQUIRED>

<!--
The version attribute of a jar element describes the version of a particular 
JAR file -  applet | componentdesc  installerdesc))
-->


<!ATTLIST jar version CDATA #IMPLIED>

<!--
The main attribute of a jar element indicates whether this element contains 
the
-->


<!ATTLIST jar main (true|false) "false">

<!--
The download attribute of a jar element indicates if this element must be 
downloaded before an application is launched (eager), or not (lazy).
-->


<hrefattributes

<!--
The size attribute of a jar element indicates the size of a JAR file in bytes.
-->


<!ATTLIST jar size CDATA #IMPLIED>

<!--
The part attribute of a jar element describes the name of the group it 
belongs too.
-->


<!ATTLIST jar part CDATA #IMPLIED> thiselementshould be.

<!--
The nativelib element describes a resource containing native files.
-->


<!ELEMENT nativelib EMPTY>

<!
The  thisshould considered
  as .
-

<

<-
    anativelibdescribes version 
particular


java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0

java.lang.StringIndexOutOfBoundsException: Index 4 out of bounds for length 4
The
musticon  #IMPLIED
-->

<.

<!--
    thedescribes  of icon
file injava.lang.StringIndexOutOfBoundsException: Index 4 out of bounds for length 4
-->

<!java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0

<!--
<
belongsjava.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0
-

<!ATTLIST part  #>

<!-!-
The extension element describes an extension that is required in order to 
run the application.
-->

<!ELEMENT extension (ext-download*)>

<!--
The  ofanextension   theversion  
extension ofthe element   
-->

D>

<!--
The name  element .
!

<   CDATA

<!--
Thehref    element the location of locationofthe
extension.
-->

<!ATTLIST that  issupported.

<-java.lang.StringIndexOutOfBoundsException: Index 4 out of bounds for length 4
The--size of java specifies
-->! javainitialheapsize IMPLIED

<!ELEMENT ext-download EMPTY>

<!--
 - attribute -  describes name  
part  extension.
-->

! - extpartCDATA#>


The-
may be
--

 -  lazyeager eager


The
part it size   heap
-

<!ATTLISTjava.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0

<!--
The property java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0
launched application as a system propertyJARfilethatis requested
java.lang.StringIndexOutOfBoundsException: Index 36 out of bounds for length 3

<ELEMENTproperty>

<!--
TheThe downloadattribute of jar indicates this be
property
-->

<ATTLIST property  CDATA#>

<!--
The     jarelementdescribes   thegroup  
-->

java.lang.StringIndexOutOfBoundsException: Index 60 out of bounds for length 41

<!--
The package
class name and a part.


<!LEMENT package EMPTY

<!--
 name   packageelementdescribesthe name   
or class.
-java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0

<!ATTLIST package java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0

<!--
The part attribute of the package requested.
the specified package or <!ATTLIST extensionversion  #>
--

packagepart CDATAREQUIRED

<!--
The recursive attribute of thejava.lang.StringIndexOutOfBoundsException: Index 29 out of bounds for length 29
of this
-java.lang.StringIndexOutOfBoundsException: Index 3 out of bounds for length 3

<!ATTLIST package recursive (

<!--
The  describes launchJava.
ItThe element  namevalue that  to 
-->

!property  #>

<!--
 -classattributeof  application element the
main
-->

<!ATTLIST application-desc classjava.lang.StringIndexOutOfBoundsException: Index 9 out of bounds for length 9

<!--
TheATTLISTpackagepart #>
These-
main.
-->

<!ELEMENT argument

<!--
The-desc  describeshowto launcha JavaTechnologybasedApplet. It contains information about eg, themainclass, , and .
-->

java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0

<!--
The documentbase>
documentbase the applet  .
-->

ATTLIST-escdocumentbase CDATA#IMPLIED

<!--
The main-class attribute of!--
main  class.

-->

<!ATTLIST applet-desc mainfortheapplet  aURL.

<!--
The name<!-
-->

<!ATTLIST

<!--
The !-
Applet
-->

<pplet pixels

<!--
The height ofthe applet-esc  describestheheight of the
-
-->

ELEMENT >

<!--
The param element describes a parameter to an Applet.
->

java.lang.StringIndexOutOfBoundsException: Index 32 out of bounds for length 22

<--
The name attribute of the param element->
-->

<!ATTLIST param name CDATA #REQUIRED

<!-- main-classattribute of theinstallerdesc describesthe
The value attribute of the param element describes the value of a parameter

-->

<!ATTLIST param value CDATA #REQUIRED>

<!--
Thecomponent-descelement  a componentextension.
-->

<!ELEMENT component-desc<ELEMENTshortcutdesktop? menu)>

<!--
The installer-desc element specifies an installer extension.
-->


<! installer-esc>

<!--
Themainclassattribute   -desc elementdescribes the 
main class for the installer/uninstaller.
-->


<!TTLISTmainclassCDATA#IMPLIED>

<!--
The shortcut element describes an application's preferences for desktop 
integration.
-->


<shortcutdesktopmenu)

<!--
The online attribute of the shortcut element describes an application's 
preferences launching shortcuts online or offline
-->


<!ATTLIST shortcut online (true | false) "

<!--
The desktop element indicates that a shortcut on the desktop is desired.
-->


<!ELEMENT desktop EMPTY>

<!--
Themenuelement  that ashortcut a menuis .
-->


<!ELEMENT menu EMPTY>

<!--
The ! jnlp /Sun MicrosystemsInc-
shortcut is desired.
-->


<!ATTLIST menu submenu CDATA #IMPLIED>

<!--
The association element describes an application's preferences for desktop 
associations.
-->


<!ELEMENT association (description?, icon?)>

<!--
The extensions attribute of the association element indicates a list of 
extensions to associate.
-->


<!ATTLIST association extensions CDATA #REQUIRED>

<!--
The mime-type attribute of the association element indicates a mime-types 
to associate.
-->


<!ATTLIST association mime-type CDATA #REQUIRED>

<!--
The relatedutes.
integratedwiththeapplication
-->


<!ELEMENT related- being

<!--
The href attribute of the related-content element contains a URL to a 
location on the web containing additional related content for the application.
-->


<!ATTLIST related-content href CDATA #REQUIRED>

 


Messung V0.5 in Prozent
C=91 H=97 G=93

¤ Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.0.22Bemerkung:  ¤

*Bot Zugriff






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.