Slide 1

Slide 1 text

Content-driven Applications creative webprojects. powered by Neos & Flow

Slide 2

Slide 2 text

Christopher Hlubek CEO / Head of Development team member since 2008

Slide 3

Slide 3 text

Christopher Hlubek CEO / Head of Development team member since 2008 e.g. Content Editing, Content Rendering, TypoScript/Eel/ FlowQuery, Content Cache, Content Dimensions

Slide 4

Slide 4 text

Website or Webapp?

Slide 5

Slide 5 text

Website

Slide 6

Slide 6 text

Website

Slide 7

Slide 7 text

Website

Slide 8

Slide 8 text

Website Server / Client / Ajax

Slide 9

Slide 9 text

Website Server / Client / Ajax

Slide 10

Slide 10 text

Website

Slide 11

Slide 11 text

Website

Slide 12

Slide 12 text

Website?

Slide 13

Slide 13 text

Website?

Slide 14

Slide 14 text

Website???

Slide 15

Slide 15 text

Turning a website to an app with Neos

Slide 16

Slide 16 text

Content Nodes Level 0

Slide 17

Slide 17 text

Product List Node Type

Slide 18

Slide 18 text

Product Node Type

Slide 19

Slide 19 text

Product List Node Type Configuration 'Demo.ContentApps:Product.List':
 superTypes: ['TYPO3.Neos:Content']
 childNodes:
 'products':
 type: 'TYPO3.Neos:ContentCollection'
 constraints:
 nodeTypes:
 'Demo.ContentApps:Product': TRUE
 '*': FALSE
 ui:
 label: 'Product List'
 icon: 'icon-asterisk'
 inlineEditable: true
 Demo.ContentApp/Configuration/NodeTypes.yaml

Slide 20

Slide 20 text

Product List Node Type Template 


 {products -> f:format.raw()}


 Demo.ContentApp/Resources/Private/Templates/NodeTypes/Product.List.html

Slide 21

Slide 21 text

Product List TypoScript prototype(Demo.ContentApps:Product.List) {
 products = ContentCollection {
 nodePath = 'products'
 }
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

Product Node Type Configuration 'Demo.ContentApps:Product':
 superTypes: ['TYPO3.Neos:Content']
 childNodes:
 'teaserimages':
 type: 'TYPO3.Neos:ContentCollection'
 constraints:
 nodeTypes:
 'TYPO3.Neos.NodeTypes:Image': TRUE
 '*': FALSE
 ui:
 label: 'Product'
 icon: 'icon-asterisk'
 inspector:
 groups:
 'general':
 label: 'Properties for product'
 position: 10
 properties:
 'title':
 type: string
 ui:
 label: 'Title'
 inlineEditable: true
 aloha:
 placeholder: 'Insert title'
 'image':
 type: 'TYPO3\Media\Domain\Model\ImageInterface'
 ui:
 label: 'Image'
 reloadIfChanged: TRUE
 inspector:
 group: 'general'
 'size':
 type: integer
 ui:
 label: 'Size'
 reloadIfChanged: TRUE
 inspector:
 group: 'general' Demo.ContentApp/Configuration/NodeTypes.yaml

Slide 24

Slide 24 text

Product Node Type Template {namespace neos=TYPO3\Neos\ViewHelpers}


 {imageTag -> f:format.raw()}
 ...

 {teaserimages -> f:format.raw()}


{neos:contentElement.editable(property: 'title')}

Size: {size}m
Demo.ContentApp/Resources/Private/Templates/NodeTypes/Product.html

Slide 25

Slide 25 text

Product TypoScript prototype(Demo.ContentApps:Product) {
 teaserimages = ContentCollection {
 attributes.class = 'row'
 nodePath = 'teaserimages'
 
 prototype(TYPO3.Neos.NodeTypes:Image) {
 attributes.class = 'col-md-3'
 maximumWidth = 80
 maximumHeight = 80
 }
 }
 imageTag = ImageTag {
 maximumWidth = 400
 maximumHeight = 400
 asset = ${q(node).property('image')}
 }
 popoverImageUri = ImageUri {
 maximumWidth = 1200
 maximumHeight = 800
 asset = ${q(node).property('image')}
 }
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2

Slide 26

Slide 26 text

No content

Slide 27

Slide 27 text

No content

Slide 28

Slide 28 text

No content

Slide 29

Slide 29 text

No content

Slide 30

Slide 30 text

Client-side Filter

Slide 31

Slide 31 text

Done.

Slide 32

Slide 32 text

Product details?

Slide 33

Slide 33 text

Document Nodes Level 1

Slide 34

Slide 34 text

Product Node Type Configuration 'Demo.ContentApps:Product':
 superTypes: ['TYPO3.Neos:Document']
 ... Demo.ContentApp/Configuration/NodeTypes.yaml

Slide 35

Slide 35 text

Product Node Type Configuration 'Demo.ContentApps:Product':
 superTypes: ['TYPO3.Neos:Document']
 ... Demo.ContentApp/Configuration/NodeTypes.yaml

Slide 36

Slide 36 text

Product List Node Type Configuration 'Demo.ContentApps:Product.List':
 superTypes: ['TYPO3.Neos:Content']
 ui:
 label: 'Product List'
 icon: 'icon-asterisk'
 inlineEditable: true
 Demo.ContentApp/Configuration/NodeTypes.yaml

Slide 37

Slide 37 text

Product List TypoScript prototype(Demo.ContentApps:Product.List) {
 products = TYPO3.TypoScript:Collection {
 collection = ${q(site).find('[instanceof Demo.ContentApps:Product]')}
 itemName = 'node'
 itemRenderer = Demo.ContentApps:Product.Teaser
 }
 
 @cache {
 mode = 'cached'
 entryTags {
 1 = ${Caching.nodeTypeTag('Demo.ContentApps:Product')}
 }
 }
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2

Slide 38

Slide 38 text

Product List TypoScript prototype(Demo.ContentApps:Product.List) {
 products = TYPO3.TypoScript:Collection {
 collection = ${q(site).find('[instanceof Demo.ContentApps:Product]')}
 itemName = 'node'
 itemRenderer = Demo.ContentApps:Product.Teaser
 }
 
 @cache {
 mode = 'cached'
 entryTags {
 1 = ${Caching.nodeTypeTag('Demo.ContentApps:Product')}
 }
 }
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2

Slide 39

Slide 39 text

Product TypoScript prototype(PrimaryContent) {
 product {
 condition = ${q(node).is('[instanceof Demo.ContentApps:Product]')}
 renderer = Demo.ContentApps:Product
 }
 }
 
 prototype(Demo.ContentApps:Product) < prototype(TYPO3.Neos:Content) {
 teaserimages = ContentCollection {
 attributes.class = 'row'
 nodePath = 'teaserimages'
 
 prototype(TYPO3.Neos.NodeTypes:Image) {
 attributes.class = 'col-md-3'
 maximumWidth = 200
 maximumHeight = 200
 }
 }
 imageTag = ImageTag {
 maximumWidth = 800
 maximumHeight = 600
 asset = ${q(node).property('image')}
 }
 popoverImageUri = ImageUri {
 maximumWidth = 1200
 maximumHeight = 800
 asset = ${q(node).property('image')}
 }
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2

Slide 40

Slide 40 text

Product TypoScript prototype(PrimaryContent) {
 product {
 condition = ${q(node).is('[instanceof Demo.ContentApps:Product]')}
 renderer = Demo.ContentApps:Product
 }
 }
 
 prototype(Demo.ContentApps:Product) < prototype(TYPO3.Neos:Content) {
 teaserimages = ContentCollection {
 attributes.class = 'row'
 nodePath = 'teaserimages'
 
 prototype(TYPO3.Neos.NodeTypes:Image) {
 attributes.class = 'col-md-3'
 maximumWidth = 200
 maximumHeight = 200
 }
 }
 imageTag = ImageTag {
 maximumWidth = 800
 maximumHeight = 600
 asset = ${q(node).property('image')}
 }
 popoverImageUri = ImageUri {
 maximumWidth = 1200
 maximumHeight = 800
 asset = ${q(node).property('image')}
 }
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2

Slide 41

Slide 41 text

Product TypoScript prototype(PrimaryContent) {
 product {
 condition = ${q(node).is('[instanceof Demo.ContentApps:Product]')}
 renderer = Demo.ContentApps:Product
 }
 }
 
 prototype(Demo.ContentApps:Product) < prototype(TYPO3.Neos:Content) {
 teaserimages = ContentCollection {
 attributes.class = 'row'
 nodePath = 'teaserimages'
 
 prototype(TYPO3.Neos.NodeTypes:Image) {
 attributes.class = 'col-md-3'
 maximumWidth = 200
 maximumHeight = 200
 }
 }
 imageTag = ImageTag {
 maximumWidth = 800
 maximumHeight = 600
 asset = ${q(node).property('image')}
 }
 popoverImageUri = ImageUri {
 maximumWidth = 1200
 maximumHeight = 800
 asset = ${q(node).property('image')}
 }
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2

Slide 42

Slide 42 text

Product Teaser TypoScript 
 prototype(Demo.ContentApps:Product.Teaser) < prototype(Demo.ContentApps:Product) {
 templatePath = 'resource://Demo.ContentApps/Private/Templates/NodeTypes/ Product.Teaser.html'
 
 imageTag = ImageTag {
 maximumWidth = 400
 maximumHeight = 400
 }
 
 teaserimages {
 prototype(TYPO3.Neos.NodeTypes:Image) {
 maximumWidth = 80
 maximumHeight = 80
 }
 }
 }
 Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2

Slide 43

Slide 43 text

No content

Slide 44

Slide 44 text

No content

Slide 45

Slide 45 text

No content

Slide 46

Slide 46 text

TypoScript your App Level 2

Slide 47

Slide 47 text

Content Repository TypoScript Expression Language FlowQuery Neos Fluid Flow Custom Packages …

Slide 48

Slide 48 text

Content Repository TypoScript Expression Language FlowQuery Neos Fluid Flow Custom Packages … TypoScript

Slide 49

Slide 49 text

TypoScript = View Integration

Slide 50

Slide 50 text

Elasticsearch Integration

Slide 51

Slide 51 text

Searching and Filtering Nodes 
 ${Search.query(site).nodeType('Demo.ContentApps:Product').exactMatch('feature', feature).execute()}

Slide 52

Slide 52 text

Rendering content depending on the request (e.g. query parameters)

Slide 53

Slide 53 text

Output multiple formats (XML, JSON, …) prototype(TYPO3.Neos.Seo:XmlSitemap) < prototype(TYPO3.TypoScript:Http.Message) {
 doctype = ''
 httpResponseHead.headers.Content-Type = 'text/xml'
 
 body = Menu {
 root = ${site}
 entryLevel = 0
 maximumLevels = 999
 renderHiddenInIndex = TRUE
 templatePath = 'resource://TYPO3.Neos.Seo/Private/Templates/Page/XmlSiteMap.xml'
 startingPoint = ${site}
 
 @cache.entryTags.1 = ${'DescendantOf_' + this.startingPoint.identifier}
 }
 }
 
 root.xmlSitemap {
 condition = ${request.format == 'xml.sitemap'}
 type = 'TYPO3.Neos.Seo:XmlSitemap'
 }

Slide 54

Slide 54 text

Extensible via TypoScript objects FlowQuery operations Eel helpers

Slide 55

Slide 55 text

Pure TypoScript?

Slide 56

Slide 56 text

Example: Product builder

Slide 57

Slide 57 text

Requirements

Slide 58

Slide 58 text

Requirements Display steps

Slide 59

Slide 59 text

Requirements Display steps Form fields with selection

Slide 60

Slide 60 text

Requirements Display steps Form fields with selection Pricing

Slide 61

Slide 61 text

Requirements Display steps Form fields with selection Pricing Definition of dependencies

Slide 62

Slide 62 text

Requirements Display steps Form fields with selection Pricing Definition of dependencies Images / text for information

Slide 63

Slide 63 text

Requirements Display steps Form fields with selection Pricing Definition of dependencies Images / text for information

Slide 64

Slide 64 text

Product Builder Node Types

Slide 65

Slide 65 text

Product Step Builder Node Types

Slide 66

Slide 66 text

Product Step Builder Node Types Step in the build

Slide 67

Slide 67 text

Product Step Builder Node Types Element Step in the build

Slide 68

Slide 68 text

Product Step Builder Node Types Element Step in the build Form field (different types)

Slide 69

Slide 69 text

Product Step Builder Node Types Element Option Step in the build Form field (different types)

Slide 70

Slide 70 text

Product Step Builder Node Types Element Option Step in the build Form field (different types) Selectable option

Slide 71

Slide 71 text

Variant 1: JavaScript App

Slide 72

Slide 72 text

Exposing the data

Slide 73

Slide 73 text

Exposing the data Content Rendering JSON

Slide 74

Slide 74 text

Exposing the data Content Rendering JSON Controller in Flow Package

Slide 75

Slide 75 text

Implementation of selection

Slide 76

Slide 76 text

Implementation of selection Controller for persistence

Slide 77

Slide 77 text

Implementation of selection Controller for persistence Calculation of pricing / rules in JS

Slide 78

Slide 78 text

Variant 2: Server-side flow

Slide 79

Slide 79 text

Plugins Level 3

Slide 80

Slide 80 text

Content Repository TypoScript Expression Language FlowQuery Neos Fluid Flow Custom Packages …

Slide 81

Slide 81 text

Content Repository TypoScript Expression Language FlowQuery Neos Fluid Flow Custom Packages … TypoScript

Slide 82

Slide 82 text

Content Repository TypoScript Expression Language FlowQuery Neos Fluid Flow Custom Packages … Custom Packages TypoScript

Slide 83

Slide 83 text

Integration of any Controller

Slide 84

Slide 84 text

Build Plugin prototype(Demo.ContentApps:Product) < prototype(TYPO3.Neos:Content) {
 buildPlugin = Plugin {
 package = 'Demo.ContentApps'
 controller = 'Build'
 action = 'index'
 }
 ...
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2

Slide 85

Slide 85 text

Build Plugin prototype(Demo.ContentApps:Product) < prototype(TYPO3.Neos:Content) {
 buildPlugin = Plugin {
 package = 'Demo.ContentApps'
 controller = 'Build'
 action = 'index'
 }
 ...
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Product.ts2 Easy!

Slide 86

Slide 86 text

Build Controller class BuildController extends \TYPO3\Flow\Mvc\Controller\ActionController {
 
 protected $defaultViewObjectName = 'Demo\ContentApps\View\PluginTypoScriptView';
 
 /**
 * Display a start page for the product
 */
 public function indexAction() {
 /** @var NodeInterface $node */
 $node = $this->request->getInternalArgument('__node');
 
 if (!$node->getNodeType()->isOfType('Demo.ContentApps:Product')) {
 throw new InvalidNodeException(sprintf('Build plugin needs node of type "Demo.ContentApps:Product", got "%s"', $node->getNodeType()->getName()), 1432633804);
 }
 
 $this->view->assign('node', $node);
 } ... } Demo\ContentApps\Controller\BuildController

Slide 87

Slide 87 text

Build Controller class BuildController extends \TYPO3\Flow\Mvc\Controller\ActionController {
 
 protected $defaultViewObjectName = 'Demo\ContentApps\View\PluginTypoScriptView';
 
 /**
 * Display a start page for the product
 */
 public function indexAction() {
 /** @var NodeInterface $node */
 $node = $this->request->getInternalArgument('__node');
 
 if (!$node->getNodeType()->isOfType('Demo.ContentApps:Product')) {
 throw new InvalidNodeException(sprintf('Build plugin needs node of type "Demo.ContentApps:Product", got "%s"', $node->getNodeType()->getName()), 1432633804);
 }
 
 $this->view->assign('node', $node);
 } ... } Demo\ContentApps\Controller\BuildController Plugin uses TypoScript for view Currently custom code needed

Slide 88

Slide 88 text

Build Controller class BuildController extends \TYPO3\Flow\Mvc\Controller\ActionController {
 
 protected $defaultViewObjectName = 'Demo\ContentApps\View\PluginTypoScriptView';
 
 /**
 * Display a start page for the product
 */
 public function indexAction() {
 /** @var NodeInterface $node */
 $node = $this->request->getInternalArgument('__node');
 
 if (!$node->getNodeType()->isOfType('Demo.ContentApps:Product')) {
 throw new InvalidNodeException(sprintf('Build plugin needs node of type "Demo.ContentApps:Product", got "%s"', $node->getNodeType()->getName()), 1432633804);
 }
 
 $this->view->assign('node', $node);
 } ... } Demo\ContentApps\Controller\BuildController Pass values via TypoScript to the plugin controller Plugin uses TypoScript for view Currently custom code needed

Slide 89

Slide 89 text

Build Controller class BuildController extends \TYPO3\Flow\Mvc\Controller\ActionController {
 ...
 
 /**
 * @param NodeInterface $step
 * @param array $selections An array from element identifier to option identifier
 */
 public function selectAction(NodeInterface $step, array $selections = array()) {
 /** @var NodeInterface $node */
 $node = $this->request->getInternalArgument('__node');
 
 foreach ($selections as $elementIdentifier => $optionIdentifiers) {
 $element = $node->getContext()->getNodeByIdentifier($elementIdentifier);
 if (!is_array($optionIdentifiers)) {
 $optionIdentifiers = array($optionIdentifiers);
 }
 $optionNodes = array_map(function($optionIdentifier) use ($node) {return $node->getContext()->getNodeByIdentifier($optionIdentifier);}, $optionIdentifiers);
 $this->build->addSelection($step, $element, $optionNodes);
 }
 
 $fq = new \TYPO3\Eel\FlowQuery\FlowQuery(array($step));
 $nextStep = $fq->next('[instanceof Demo.ContentApps:Step]')->get(0);
 
 if ($nextStep === NULL) {
 $this->forward('finish');
 } else {
 $this->forward('step', NULL, NULL, array('step' => $nextStep));
 }
 } } Demo\ContentApps\Controller\BuildController

Slide 90

Slide 90 text

Build Controller class BuildController extends \TYPO3\Flow\Mvc\Controller\ActionController {
 ...
 
 /**
 * @param NodeInterface $step
 * @param array $selections An array from element identifier to option identifier
 */
 public function selectAction(NodeInterface $step, array $selections = array()) {
 /** @var NodeInterface $node */
 $node = $this->request->getInternalArgument('__node');
 
 foreach ($selections as $elementIdentifier => $optionIdentifiers) {
 $element = $node->getContext()->getNodeByIdentifier($elementIdentifier);
 if (!is_array($optionIdentifiers)) {
 $optionIdentifiers = array($optionIdentifiers);
 }
 $optionNodes = array_map(function($optionIdentifier) use ($node) {return $node->getContext()->getNodeByIdentifier($optionIdentifier);}, $optionIdentifiers);
 $this->build->addSelection($step, $element, $optionNodes);
 }
 
 $fq = new \TYPO3\Eel\FlowQuery\FlowQuery(array($step));
 $nextStep = $fq->next('[instanceof Demo.ContentApps:Step]')->get(0);
 
 if ($nextStep === NULL) {
 $this->forward('finish');
 } else {
 $this->forward('step', NULL, NULL, array('step' => $nextStep));
 }
 } } Demo\ContentApps\Controller\BuildController Node as argument

Slide 91

Slide 91 text

Build Controller class BuildController extends \TYPO3\Flow\Mvc\Controller\ActionController {
 ...
 
 /**
 * @param NodeInterface $step
 * @param array $selections An array from element identifier to option identifier
 */
 public function selectAction(NodeInterface $step, array $selections = array()) {
 /** @var NodeInterface $node */
 $node = $this->request->getInternalArgument('__node');
 
 foreach ($selections as $elementIdentifier => $optionIdentifiers) {
 $element = $node->getContext()->getNodeByIdentifier($elementIdentifier);
 if (!is_array($optionIdentifiers)) {
 $optionIdentifiers = array($optionIdentifiers);
 }
 $optionNodes = array_map(function($optionIdentifier) use ($node) {return $node->getContext()->getNodeByIdentifier($optionIdentifier);}, $optionIdentifiers);
 $this->build->addSelection($step, $element, $optionNodes);
 }
 
 $fq = new \TYPO3\Eel\FlowQuery\FlowQuery(array($step));
 $nextStep = $fq->next('[instanceof Demo.ContentApps:Step]')->get(0);
 
 if ($nextStep === NULL) {
 $this->forward('finish');
 } else {
 $this->forward('step', NULL, NULL, array('step' => $nextStep));
 }
 } } Demo\ContentApps\Controller\BuildController Node as argument Can use session

Slide 92

Slide 92 text

Build Controller class BuildController extends \TYPO3\Flow\Mvc\Controller\ActionController {
 ...
 
 /**
 * @param NodeInterface $step
 * @param array $selections An array from element identifier to option identifier
 */
 public function selectAction(NodeInterface $step, array $selections = array()) {
 /** @var NodeInterface $node */
 $node = $this->request->getInternalArgument('__node');
 
 foreach ($selections as $elementIdentifier => $optionIdentifiers) {
 $element = $node->getContext()->getNodeByIdentifier($elementIdentifier);
 if (!is_array($optionIdentifiers)) {
 $optionIdentifiers = array($optionIdentifiers);
 }
 $optionNodes = array_map(function($optionIdentifier) use ($node) {return $node->getContext()->getNodeByIdentifier($optionIdentifier);}, $optionIdentifiers);
 $this->build->addSelection($step, $element, $optionNodes);
 }
 
 $fq = new \TYPO3\Eel\FlowQuery\FlowQuery(array($step));
 $nextStep = $fq->next('[instanceof Demo.ContentApps:Step]')->get(0);
 
 if ($nextStep === NULL) {
 $this->forward('finish');
 } else {
 $this->forward('step', NULL, NULL, array('step' => $nextStep));
 }
 } } Demo\ContentApps\Controller\BuildController Node as argument FlowQuery in PHP Can use session

Slide 93

Slide 93 text

Plugin TypoScript View plugins.Build.index = TYPO3.TypoScript:Template {
 templatePath = 'resource://Demo.ContentApps/Private/Templates/Build/Index.html'
 
 node = ${node}
 firstStep = ${q(node).children('[instanceof Demo.ContentApps:Step]').first().get(0)}
 
 customerInformation = TYPO3.Neos:ContentCollection {
 nodePath = 'customerinformation'
 }
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Plugin.ts2

Slide 94

Slide 94 text

Plugin TypoScript View plugins.Build.index = TYPO3.TypoScript:Template {
 templatePath = 'resource://Demo.ContentApps/Private/Templates/Build/Index.html'
 
 node = ${node}
 firstStep = ${q(node).children('[instanceof Demo.ContentApps:Step]').first().get(0)}
 
 customerInformation = TYPO3.Neos:ContentCollection {
 nodePath = 'customerinformation'
 }
 } Demo.ContentApp/Resources/Private/TypoScript/NodeTypes/Plugin.ts2 Rendering of content out of the plugin!

Slide 95

Slide 95 text

?

Slide 96

Slide 96 text

Neos Frontend Rendering

Slide 97

Slide 97 text

Neos Frontend Rendering Neos TypoScript View

Slide 98

Slide 98 text

Neos Frontend Rendering Neos TypoScript View Build Plugin Controller

Slide 99

Slide 99 text

Neos Frontend Rendering Neos TypoScript View Build Plugin Controller Plugin TypoScript View

Slide 100

Slide 100 text

Neos Frontend Rendering Neos TypoScript View Build Plugin Controller Plugin TypoScript View Neos Content Rendering

Slide 101

Slide 101 text

Neos Frontend Rendering Neos TypoScript View Build Plugin Controller Plugin TypoScript View Neos Content Rendering Plugin Template

Slide 102

Slide 102 text

Content-driven Apps

Slide 103

Slide 103 text

Small amount of code

Slide 104

Slide 104 text

Content drives logic

Slide 105

Slide 105 text

Mixture of data and content

Slide 106

Slide 106 text

Benefits of the Content Repository

Slide 107

Slide 107 text

Benefits of the Content Repository Workspaces

Slide 108

Slide 108 text

Benefits of the Content Repository Workspaces Dimensions

Slide 109

Slide 109 text

Benefits of the Content Repository Workspaces Dimensions Light-weight schema

Slide 110

Slide 110 text

Integration of entities is possible

Slide 111

Slide 111 text

Questions? creative webprojects. Christopher Hlubek @hlubek

Slide 112

Slide 112 text

Thank you. Christopher Hlubek @hlubek creative webprojects.