Describes the spaces model. Currently only one space per add-on is supported.

Location
src/main/resources/projectdoc-models/spaces/

The Space XSD defines spaces to create space blueprints.

 

Currently only the main space blueprint can be defined via one space model. The name of the file is required to be main-space.xml.

Example

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

Add-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>
    <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>
    </l10n>
    <l10n locale="de">
      <name>Bedrohungsmodell</name>
      <description>
        Bedrohungsanalyse für einen Service.
      </description>
      <about>
        Dokumentieren Sie Sicherheitsbelange eines Services in Form eines
        Bedrohungsmodells.
      </about>
    </l10n>
  </resource-bundle>
</space>
 

The Space XSD defines the structure of this file.

Resources

More information on projectdoc models:

Add-on Descriptor
Describes add-on level elements of the projectdoc model.
Doctype Descriptor
Describes the doctypes model.