Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section
titleExample

The following example shows the definition of the main space. It defines the name, the description and the about message (used in the wizard dialog).

Code Block
languagexml
titleAdd-on Descriptor Example
<?xml version='1.0'?>

<space
  xmlns="http://smartics.de/xsd/projectdoc/space/1"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  id="main">
  <resource-bundle>
    <l7n><l10n>
      <name>Threat Model</name>
      <description>
        Threat analysis for a service.
      </description>
      <about>
        Document security issues of a service in form of a threat model.
      </about>
    </l7n>l10n>
    <l7n<l10n locale="de">
      <name>Bedrohungsmodell</name>
      <description>
        Bedrohungsanalyse für einen Service.
      </description>
      <about>
        Dokumentieren Sie Sicherheitsbelange eines Services in Form eines
        Bedrohungsmodells.
      </about>
    </l7n>l10n>
  </resource-bundle>
</space>
Tip Box

The

System Link
filespace-doc.html
system-typesite
checktrue
labelSpace XSD
defines the structure of this file.

...