<userConfig-setTexts>

Definition:

<!ENTITY % cm.userConfig-setTexts "
  (dictitem+)
">
<!ELEMENT userConfig-setTexts %cm.userConfig-setTexts;>
<!ATTLIST userConfig-setTexts 
  login CDATA #IMPLIED
>

Aufgabe: Ersetzt den Inhalt von Benutzerkonfigurationselementen.

Bedeutung der Attribute:

  • login: das Login eines Benutzers.

Zusatzinformationen: Ein Konfigurationselement kann als Inhalt entweder Unterelemente oder einen Zeichenkettenwert enthalten, nicht jedoch beides. Daher werden alle Unterelemente eines Konfigurationselements gelöscht, wenn dessen Inhalt mit setTexts gesetzt wird.

Rückgabewert bei Erfolg: keiner.

Erforderliche Rechte: Der authentifizierte Benutzer muss ein Superuser sein.

Beispiel:

<cm-request...>
  <userConfig-setTexts>
    <dictitem>
      <key>dateOutputFormatName</key>
      <value>europeanDate</value>
    </dictitem>
    <dictitem>
      <key>dateTimeOutputFormatName</key>
      <value>europeanShortDateTime</value>
    </dictitem>
  </userConfig-setTexts>
</cm-request>

<cm-response...>
  <cm-code numeric="0" phrase="ok"/>
</cm-response>