WikiDer > XHTML-Mobilprofil

XHTML Mobile Profile

XHTML-Mobilprofil (XHTML MP) ist a Auszeichnungssprache speziell für mobiles Internet auf Mobiltelefone und PDAs. Die XHTML MP-Spezifikation wird von der Open Mobile Alliance (OMA) gepflegt.

XHTML Mobile Profile besteht aus den Modulen gemäß der Modularisierung von XHTML und ist eine Teilmenge von XHTML 1.1 basierend auf XHTML-Grundlagen. XHTML MP wird normalerweise zusammen mit . verwendet Wireless-CSS (WCSS) und ECMAScript Mobile-Profil (ESMP).

Zusätzlich zu den Modulen von XHTML Basic bietet XHTML MP 1.0 auch Unterstützung für:

  • Formulare (teilweise)
    • Feldsatz und opt Gruppe Stichworte
  • Präsentation (teilweise)
    • b, groß, hr, ich und klein Stichworte
  • Stilvorlagen
    • Stil Element und Stil Attribut

XHTML MP 1.1 bietet auch Unterstützung für Skripte, insbesondere ECMAScript Mobile Profile (ESMP)

XHTML MP 1.2 bietet volle Unterstützung für XHTML-Formulare und Unterstützung für das Objektelement.

Beispiel

Eine XHTML-Mobile-Profilseite könnte wie folgt aussehen:

<?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN"  "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"><html>  <head>    <title>Een XHTML Mobile Profile document</title>  </head>  <body>    <p style="color: red;">Dit is een rode paragraaf.</p>  </body></html>

Es gibt jedoch eine Alternative DTD erhältlich bei Openwave [1], es hat einige Erweiterungen im Vergleich zum normalen XHTML Mobile Profile.

<?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//OPENWAVE//DTD XHTML Mobile 1.0//EN""http://www.openwave.com/dtd/xhtml-mobile10.dtd"><html>  <head>    <title>Een XHTML Mobile Profile document</title>  </head>  <body>    <p style="color: red;"><u>Dit is een rode onderstreepte paragraaf.</u></p>  </body></html>

Externe Links