Update repository directory structure.
- Things are rather messy still. I'm trying to get a modular
structure rather than a mirrored structure. In a mirrored structure
it is not possible to reuse the components from different
repositories because unrelated directories structure does exist in
the same directory tree. On the other side, using a modular
structure all components are moved. For example consider the
following examples:
Mirrored
--------
/
|-- Artworks/
| `-- ${COMPONENT}.svgz
|-- Documentation/
| `-- Artworks/
| `-- ${COMPONENT}.docbook
`-- Localization/
`-- Artworks/
`-- ${COMPONENT}-${LANG}.po
Modular
-------
/
`-- Artworks/
|-- ${COMPONENT}.svgz
|-- ${COMPONENT}-docs/
| `-- ${COMPONENT}.docbook
`-- ${COMPONENT}-l10n/
`--${LANG}.po
This is an experiment I'm doing to see how much I could reuse
content in other repositories with a similar structure.