4,050 bytes added
, 20:20, 11 May 2020
'''First Appearance:''' It appears in the [[design document]] at the beginning of the game.
A Content Management System is mostly used for the very specific task of managing content.
{| class="wikitable"
! style="background-color:#ffcc67;" | Feature
! style="background-color:#ffcc67;" | Description
! style="background-color:#ffcc67;" | Dependencies
! style="background-color:#ffcc67;" | Unlock Year
|-
| File Management
|
|
|
|-
| Visualization tools
|
|
|
|-
| WYSIWYG
| What You See Is What You Get.
| [[2D Editor]]: Pixel manipulation
| 1992
|-
| Community
| The internet needs more comment sections.
|
| 1992
|-
| Widgets
| Also known as social media buttons.
|
| 1992
|-
| Themes
|
| [[2D Editor]]: Pixel manipulation
[[CMS]]: WYSIWYG
| 1992
|-
| GUI
| Graphical User Interface.
| [[2D Editor]]: Pixel manipulation
|
|-
| Bank integration
|
|
|
|-
| Document generation
| Invoices for everyone.
| [[CMS]]: GUI
|
|-
| Statistics
|
| [[CMS]]: GUI
|
|-
| User hierarchy
|
|
|
|-
| Work delegation
| Alternatively, run around the office screaming tasks at people.
| [[CMS]]: User hierarchy
|
|-
| Synchronization
| Or send floppy disk around once in a while.
|
|
|}
'''Raw Source'''
<pre>
<source lang="xml">
<Software Name="CMS">
<Name>CMS</Name>
<Description>A Content Management System is mostly used for the very specific task of managing content</Description>
<Features>
<Feature Name="File management">
<Name>File management</Name>
</Feature>
<Feature Name="Visualization tools">
<Name>Visualization tools</Name>
</Feature>
<Feature Name="WYSIWYG">
<Name>WYSIWYG</Name>
<Description>What You See Is probably What You Get</Description>
</Feature>
<Feature Name="Community">
<Name>Community</Name>
<Description>The internet needs more comment sections</Description>
</Feature>
<Feature Name="Widgets">
<Name>Widgets</Name>
<Description>Also known as social media buttons</Description>
</Feature>
<Feature Name="Themes">
<Name>Themes</Name>
</Feature>
<Feature Name="GUI">
<Name>GUI</Name>
<Description>Graphical User Interface</Description>
</Feature>
<Feature Name="Bank integration">
<Name>Bank integration</Name>
</Feature>
<Feature Name="Document generation">
<Name>Document generation</Name>
<Description>Invoices for everyone</Description>
</Feature>
<Feature Name="Statistics">
<Name>Statistics</Name>
</Feature>
<Feature Name="User hierarchy">
<Name>User hierarchy</Name>
</Feature>
<Feature Name="Work delegation">
<Name>Work delegation</Name>
<Description>Alternatively, run around the office screaming tasks at people</Description>
</Feature>
<Feature Name="Synchronization">
<Name>Synchronization</Name>
<Description>Or send floppy disk around once in a while</Description>
</Feature>
</Features>
<Categories>
<Category Name="Web Publishing">
<Name>Web Publishing</Name>
<Description>To avoid forcing bloggers to do backend webprograming</Description>
</Category>
<Category Name="Financial">
<Name>Financial</Name>
<Description>Help businesses keep track of their money</Description>
</Category>
<Category Name="Workflow">
<Name>Workflow</Name>
<Description>The virtual whiteboard</Description>
</Category>
</Categories>
</Software>
</source>
</pre>