Concept - first iteration DAM 2.0 & CMIS

Size: px
Start display at page:

Download "Concept - first iteration DAM 2.0 & CMIS"

Transcription

1 Concept - first iteration DAM 2.0 & CMIS CAUTION: this page simply describes the ideas and discussion of the first iteration of the DAM 2.0 & CMIS implementation effort. Some things are still up to date - others have been changed completely. Introduction Goals Scope Infrastructure setup Implementation plan Topics DAM API improvements Provider registry Renditions JCR provider improvements CMIS provider CMIS server module DAM module reorganization DAM API refactoring proposal UI framework improvements Link API improvements STK improvements Additional tasks Notes Appendix - Proposed API Appendix - Current API and implementation Introduction The objective is to have a CMIS integration for our DAM module, both for exposing the DAM over CMIS and for connecting to a CMIS server. Goals As a user I can browse assets on a CMIS server in the Assets app. As an editor I can use assets from a CMIS server in my pages by selecting them in a dialog. As an administrator I can configure one or more CMIS providers in the DAM. UPDATE As of January 22nd were shifting focus from the assets app onto the choose dialog. This is driven by the realization that browsing a read only

2 external server is of questionable use. It's more relevant to have different sources to pick from in the choose dialog. It will still be necessary to build this UI, at least for providers with a folders and files layout, using our standard components that we use for content apps. Also, in order for renditions and linking to use properly we will need to have proper providers. They will just not be accessible from the Assets app. Scope Write operations on a remote CMIS server is out of scope. Note that this contradicts using the Assets app on top of the DAM API only and tying the CMIS server to the DAM API rather than the DAM workspace. (UPDATE: both of these are out scope now). Infrastructure setup We have a Sharepoint installation to test with. 7c2fe0a2a67721bcd Alfresco has a test server that we can use for testing. Implementation plan Imaging module that can work on images from the dam. Updated DAM API with new support for: folders provider registry provider capabilities (implementation option TBD) CMIS provider that supports listing folders and reading assets. Out of scope is: a. b. Versioning Activation models User mapping A mechanism for serving assets from any provider, similar to what the URI2Repository mapping for DAM does now. Extension to the Link api that supports linking to assets. Updated RichTextField that can use and save references to assets from any asset provider. Updated STKAssetRenderer that doesn't rely on JCR and uses new imaging module (see above). CMIS server module that uses the DAM workspace. For the App we see a plan in two steps: We develop a prototype, a separate app that uses only the DAM API. It will use a custom provider and have custom actions all based on the DAM API. We evaluate the prototype and decide to either merge the prototype into the Assets app and use the DAM API also for everything that is currently done directly on the JCR. or we merge in the prototype as a provider specific view, enhancing the assets app with this functionality. Topics

3 DAM API improvements We need a number of improvements to the DAM API to make it capable of supporting the needs of the Assets app and the CMIS server. Folder support The DAM API needs to have a concept for folders to make the assets navigable. Folders do not have metadata and cannot be linked to (href links, referencing them is supported) nor do they have renditions. We will introduce a new interface in the API called AssetFolder and a number of additional methods related to folders, primarily on the AssetProvider interface. AssetElement AssetFolder AssetProvider AssetElement.getName() AssetElement.getIdentifier() AssetElement.getPath() AssetElement.getAssetProviderIdentifier() AssetElement.getParent() AssetElement.getDepth() AssetElement.isFolder() AssetElement.isAsset() AssetElement.getLastModified() (might not make sense on folders) AssetFolder.getChildren() AssetProvider.getRootFolder() AssetProvider.getFolderForPath(String abspath) AssetProvider.getFolderForId(String abspath) AssetProvider.getAssetElementForPath(String abspath) AssetProvider.getAssetElementForId(String id) Modification operations Currently we only have support for reading assets. We need to expand the API to allow for: creating a folder deleting a folder renaming folder moving a folder creating an asset deleting an asset duplicating an asset renaming an asset setting metadata on an asset Should we have operations for copying and moving between providers? Capabilities discovery Not all providers will have the same feature set. We need a mechanism in which users of the API can test for certain capabilities. Option 1 An enum of capabilities were a provider either supports or doesn't support a certain one. The provider has two methods, one for getting all the supported capabilities and one for testing if it has a certain one. Example: provider.hascapability(capabilities.versioning) Option 2 A dedicated type returned by the provider with query methods for each capability. The advantage being that it can have methods return boolean, integers or enums where a set of responses make sense. Such as NONE, SOME, ALL. Example: provider.getcapabilities().isversioningsupported() Option 3

4 Use a key-value based approach that is extendable to allow for querying for properties not explicitly defined in the api. i.e new providers exposing capabilities that have not been defined before-hand. This should not use enums. Example: Boolean.valueOf(provider.hasCapability(Capabilities.VERSIONING)) Querying We currently have an AssetFilter class with basic properties for searching for specific assets. It contains a string that's used as an addition to the where clause. This will obviously not work for other providers, Maybe we could use a criteria like api. We could allow for passing the extra where clause in multiple languages, where JCR-SQL2 would be one and CMIS would be another. Other topics Paths must be strictly validated to not allow bypassing security by adding in. or.. references. Deleted nodes need special attention, we might need to make this part of the api. Provider registry There is currently no way to configure providers. The registry is hard coded to have only the JCR provider. Option 1 - Observed Manager An observed manager that looks for asset providers under each module node. Option 2 - DAM module config node (DECIDED) We use the config node in the dam module. This has the benefit of making ordering easier. Additionally We should make it possible to configure which media types are contained on a certain provider. Renditions Renditions are provided by implementations of the AssetRenderer registry. Every media type is tied to a particular renderer. There is currently two renderers, JcrAssetRenderer that simply generates a link starting with /dam, no resizing or other image operations are supported. The other is STKAssetRenderer which is described in the section on STK improvements. We need to have renderers that are provider independent. JCR provider improvements JcrAsset opens an input stream always, whether its used or not. It is likely not closed properly. JcrAsset should not act like a DTO, it should delegate back operations to the provider for operations such as opening the input stream. Assets app The assets app works directly on the JCR never going through the DAM API. As we add more providers this has to change to make it operate on remote data. Option 1 - Using DAM API only Expand the DAM API enough to make it support the entire feature set of the Assets app.

5 This includes activation and dealing with deleted nodes. We would basically need to write new actions that call into the jcr asset provider where it does the same thing as the current actions. Option 2 - Provider specific views (DECIDED) Allow the app to have custom views per provider allowing for an optimized user interface. The JCR view would be identical to what we have now, accessing the JCR directly. For CMIS we would have a new view that would use the DAM API only. It would be usable against all providers with similar functionality as CMIS. Providers such as Flickr and youtube which don't have traditional files-and-folder would have very customized views. We must also update the choose dialog and give it custom views. Optional Introduce uses/subtabs in Asset detail view/dialog ( UI Concept) Introduce metadate in Asset detail view/dialog ( UI Concept) Add metadata extractor logic based on the uploaded MediaType Add MediaType previews Video Sound Documents Add MediaType Editor (like image editor) Video --> select and create cover/thumbnail image DamUploadFile Use Asset Use transformer Create a vaadinimage component that perform the bridge between Asset's and the Imaging module. This mockup shows what we're aiming for. Note the tabs for each media type and the source selectors beneath within each tab.

6 CMIS provider The CMIS provider should be able to communicate with a CMIS server using both the web service and the atom binding. It should be possible to specify a path within the remote repository to use as root path. There's a number of things we need to decide on here: Versioning If we decide to support versioning we need to define this in the DAM API and add the appropriate methods of Activation list versions get version create version restore version Should we support a model where a customer has a public and an author cmis repository and wants to use activation to transfer from one to the other? We would want to prevent activation of a page if its using an asset in CMIS that hasn't been activated. The activation status must be a available on the asset. We've identified four models where activation comes in: same server for authoring and public same server, flag that makes public, magnolia should flag (flag is just an example, it could be a complicated mechanism) different servers, magnolia should copy different servers, servers copy, magnolia invokes the server to copy (basically same as model 2) Authentication and authorization There's two options here, we could decide to support both or support just option 1 to begin with. Option 1 - Use a single user on the CMIS server for all Magnolia users (DECIDED) Option 2 - Mapping users in Magnolia to CMIS server users Renditions mapping users requires some kind of sso otherwise we'd need to store passwords for the other end in Magnolia configured per cmis provider anonymous must have access commonly used for thumbnails we could take advantage of this for thumbnails however it should not be used as our renditions that need to work independently of provider we could though use our renditions for as cmis renditions returned with the cmis server module Mapping metadata CMIS supports properties on documents and custom properties. TODO can we support the full dublin core this way? Querying CMIS has its own query syntax. How we can map onto this in the DAM API? Session management session reuse, can it be reused between threads? use same session for request, i.e. thread local, is there an advantage to this? do we need to limit the number of connections executing at the same time? globally for all users must investigate the parallelism and thread safety of the api

7 Caching key folder listings per path and user (see above) Requirements M5 CMIS client module may access a CMIS server in order to read documents. The server has to be easily configurable CMIS Client module has to implement the AssetProvider interface. CMIS server module Two options here, either we expose the DAM JCR as we did for the DMS in 4.5, or we expose the DAM API and every provider. Option 1 - Expose DAM workspace (DECIDED) Essentially the same as the 4.5 compatible module but fitted for the DAM workspace instead. Option 2 - Expose arbitrary DAM provider Every provider in DAM is exposed as a CMIS repository. All functionality that we want support needs to be available on the DAM API. Out of scope Versioning Mapping our renditions to CMIS renditions Current state The current CMIS module is now able to access DAM repository. Create/Read Folders Create/Read Assets A direct access to the DAM repository is currently performed. New Implementation step will involved the usage of Assets Provider to expose Assets. Implementation is pushed under: Workbench CMIS client url: DAM module reorganization Proposal: dam-api dam-jcr dam-app dam-templating DAM API refactoring proposal TODO greg

8 UI framework improvements The rich text field stores references to assets it links to. It must be able to support linking to asset from any provider. It is currently hard wired to work only for JCR assets. TODO research this Link API improvements Update / Review the core Link API. This API has to be able to handle Asset's composite keys. See the section on UI improvements. STK improvements STKAssetRenderer uses imaging to resize, crop and transform images. Imaging is tied to the JCR and can't be used for assets from other providers. We need to redesign this. Additional tasks Upgrade to latest Apache Chemistry Test with Adobe Drive Notes Links M5 DAM API 4.5 CMIS Server Module CMIS Worbench Logging configuration

9 org.apache.chemistry.opencmis.binding.spi.type=webservices org.apache.chemistry.opencmis.binding.webservices.repositoryservice= /localhost:8080/magnolia-bundled-webapp/.magnolia/cmisws11/repositoryservi ce?wsdl org.apache.chemistry.opencmis.binding.webservices.navigationservice= /localhost:8080/magnolia-bundled-webapp/.magnolia/cmisws11/navigationservi ce?wsdl org.apache.chemistry.opencmis.binding.webservices.objectservice= alhost:8080/magnolia-bundled-webapp/.magnolia/cmisws11/objectservice?wsdl org.apache.chemistry.opencmis.binding.webservices.versioningservice= /localhost:8080/magnolia-bundled-webapp/.magnolia/cmisws11/versioningservi ce?wsdl org.apache.chemistry.opencmis.binding.webservices.discoveryservice= localhost:8080/magnolia-bundled-webapp/.magnolia/cmisws11/discoveryservice?wsdl org.apache.chemistry.opencmis.binding.webservices.multifilingservice=http: //localhost:8080/magnolia-bundled-webapp/.magnolia/cmisws11/multifilingser vice?wsdl org.apache.chemistry.opencmis.binding.webservices.relationshipservice=http ://localhost:8080/magnolia-bundled-webapp/.magnolia/cmisws11/relationships ervice?wsdl org.apache.chemistry.opencmis.binding.webservices.aclservice= ost:8080/magnolia-bundled-webapp/.magnolia/cmisws11/aclservice?wsdl org.apache.chemistry.opencmis.binding.webservices.policyservice= alhost:8080/magnolia-bundled-webapp/.magnolia/cmisws11/policyservice?wsdl org.apache.chemistry.opencmis.user=superuser org.apache.chemistry.opencmis.password=superuser org.apache.chemistry.opencmis.binding.compression=true Appendix - Proposed API

10 Appendix - Current API and implementation

11

CMIS CONNECTOR MODULE DOCUMENTATION DIGITAL EXPERIENCE MANAGER 7.2

CMIS CONNECTOR MODULE DOCUMENTATION DIGITAL EXPERIENCE MANAGER 7.2 CMIS CONNECTOR MODULE DOCUMENTATION SUMMARY 1 OVERVIEW... 4 1.1 About CMIS... 4 1.2 About this module... 4 1.3 Module features... 5 1.4 Implementation notes... 6 2 CONFIGURATION... 6 2.1 Installation...

More information

Driving Interoperability with CMIS

Driving Interoperability with CMIS A guide to understanding the impact of the draft Content Management Interoperability Specification (CMIS) on content management repositories This white paper also includes developer resources for creating

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6 Content Author's Reference and Cookbook Rev. 080627 Sitecore CMS 6 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents Chapter

More information

Benefits and Challenges There are many challenges to implementing a multi-tenant environment. These include:

Benefits and Challenges There are many challenges to implementing a multi-tenant environment. These include: Multitenancy and Concurrent Development in AEM Ian Reasor, Technical Architect, Adobe Partner Experience Tim Donovan, Technical Architect, Adobe Partner Experience Opkar Gill, Technical Architect, Adobe

More information

Teiid Designer User Guide 7.5.0

Teiid Designer User Guide 7.5.0 Teiid Designer User Guide 1 7.5.0 1. Introduction... 1 1.1. What is Teiid Designer?... 1 1.2. Why Use Teiid Designer?... 2 1.3. Metadata Overview... 2 1.3.1. What is Metadata... 2 1.3.2. Editing Metadata

More information

ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE

ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE 2015 Adobe Systems Incorporated. All rights reserved. Technical Note: Adobe Experience Manager DAM Connector for Adobe Drive CC

More information

Client Configuration Cookbook

Client Configuration Cookbook Sitecore CMS 6.4 or later Client Configuration Cookbook Rev: 2013-10-01 Sitecore CMS 6.4 or later Client Configuration Cookbook Features, Tips and Techniques for CMS Architects and Developers Table of

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.1.0 Table of Contents About this Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

Rights Cloud Connector Package Quick Install Guide

Rights Cloud Connector Package Quick Install Guide Rights Cloud Connector Package Quick Install Guide Feb 12, 2018 Version 2.0 SCOPE OF THE DOCUMENT This document illustrates the steps for installation and configuration of the FADEL s AEM Asset Rights

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6 SP1 User Guide P/N 300 005 253 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

Product Release Notes Alderstone cmt 2.0

Product Release Notes Alderstone cmt 2.0 Alderstone cmt product release notes Product Release Notes Alderstone cmt 2.0 Alderstone Consulting is a technology company headquartered in the UK and established in 2008. A BMC Technology Alliance Premier

More information

IBM Security Access Manager Version January Federation Administration topics IBM

IBM Security Access Manager Version January Federation Administration topics IBM IBM Security Access Manager Version 9.0.2.1 January 2017 Federation Administration topics IBM IBM Security Access Manager Version 9.0.2.1 January 2017 Federation Administration topics IBM ii IBM Security

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.2 Table of Contents About ServiceNow Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

Liferay Digital Experience Platform. New Features Summary

Liferay Digital Experience Platform. New Features Summary Liferay Digital Experience Platform New Features Summary Liferay has redesigned its platform with new functionality in Liferay Digital Experience Platform (DXP). The following is a summary of the key new

More information

ForeScout Extended Module for IBM BigFix

ForeScout Extended Module for IBM BigFix ForeScout Extended Module for IBM BigFix Version 1.0.0 Table of Contents About this Integration... 4 Use Cases... 4 Additional BigFix Documentation... 4 About this Module... 4 Concepts, Components, Considerations...

More information

Infor LN Studio Application Development Guide

Infor LN Studio Application Development Guide Infor LN Studio Application Development Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

EMC Documentum Media WorkSpace

EMC Documentum Media WorkSpace EMC Documentum Media WorkSpace Version 6.5 SP2 User Guide EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com EMC believes the information in this publication is

More information

Web Content Management in SharePoint 2013

Web Content Management in SharePoint 2013 Web Content Management in SharePoint 2013 Agenda Introductions SharePoint Web Content Management Examples 2013 WCM Features Content Authoring Demo Wrap-Up Rob Karimi Account Manager, Envision IT e: rkarimi@envisionit.com

More information

Microsoft Office 2003: Features, Strategies, and Trends

Microsoft Office 2003: Features, Strategies, and Trends Note: This document will be updated periodically, both with new material and with updates to existing materials as circumstances warrant. It will be covering not only things like Office 2003 features,

More information

ADOBE DRIVE 4.2 USER GUIDE

ADOBE DRIVE 4.2 USER GUIDE ADOBE DRIVE 4.2 USER GUIDE 2 2013 Adobe Systems Incorporated. All rights reserved. Adobe Drive 4.2 User Guide Adobe, the Adobe logo, Creative Suite, Illustrator, InCopy, InDesign, and Photoshop are either

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.2 Content Author's Reference and Cookbook Rev. 140225 Sitecore CMS 7.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.0 Content Author's Reference and Cookbook Rev. 130425 Sitecore CMS 7.0 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

Coveo Platform 6.5. Microsoft SharePoint Connector Guide

Coveo Platform 6.5. Microsoft SharePoint Connector Guide Coveo Platform 6.5 Microsoft SharePoint Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Automation for Web Services

Automation for Web Services BEA AquaLogic TM Enterprise Repository (Evaluation Version) Automation for Web Services Table of Contents Overview System Settings Properties for Managing WSDL- and UDDI-Related Assets WSDL/UDDI Import/Export

More information

Archi - ArchiMate Modelling. What s New in Archi 4.x

Archi - ArchiMate Modelling. What s New in Archi 4.x Archi - ArchiMate Modelling What s New in Archi 4.x Important Notice It's always a good idea to make backup copies of your data before installing and using a new version of Archi. Whilst we make every

More information

Adding Pages to an Office SharePoint Server 2007 Search Center Site Ben Curry and Bill English March 23, 2009

Adding Pages to an Office SharePoint Server 2007 Search Center Site Ben Curry and Bill English March 23, 2009 Adding Pages to an Office SharePoint Server 2007 Search Center Site Ben Curry and Bill English March 23, 2009 Copyright 2009, English, Bleeker & Associates, Inc., DBA Mindsharp (www.mindsharp.com). This

More information

A Guide to Quark Publishing Platform 9.5

A Guide to Quark Publishing Platform 9.5 A Guide to Quark Publishing Platform 9.5 CONTENTS Contents Introduction...8 Where we're coming from...8 Conventions in this book...8 About Quark Publishing Platform...10 Platform concepts...11 Platform

More information

How to use the Assets panel

How to use the Assets panel Adobe Dreamweaver Guide How to use the Assets panel You can use the Assets panel in Dreamweaver to manage assets in the current site (Figure 1). The Assets panel displays assets for the site associated

More information

Product Brief DESIGN GALLERY

Product Brief DESIGN GALLERY Product Brief DESIGN GALLERY Release Enhancements List Note: The intention of the below listing is to highlight enhancements that have been added to the product. The below does not list defect fixes that

More information

Mail & Deploy Reference Manual. Version 2.0.5

Mail & Deploy Reference Manual. Version 2.0.5 Mail & Deploy Reference Manual Version 2.0.5 Introduction TABLE OF CONTENTS Introduction... 4 General Introduction... 5 Architecture... 6 Server... 6 Repository... 6 Client... 6 Contact Us... 7 Server...

More information

Jahia Studio JAHIA DOCUMENTION

Jahia Studio JAHIA DOCUMENTION JAHIA DOCUMENTION Jahia Studio Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels to truly control time-to-market and

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 SP2 User Guide P/N 300-009-462 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008 2009 EMC Corporation. All

More information

Managing trust relationships with multiple business identity providers (basics) 55091A; 3 Days, Instructor-led

Managing trust relationships with multiple business identity providers (basics) 55091A; 3 Days, Instructor-led Managing trust relationships with multiple business identity providers (basics) 55091A; 3 Days, Instructor-led Course Description Decoupling cloud service from all the complexity maintaining a direct relationship

More information

Designing Pages with Widgets

Designing Pages with Widgets Designing Pages with Widgets You can easily get some of the pages in Clearspace to look the way you want to by using widgets to choose and arrange content. Each widget displays content of a particular

More information

Cumulus 11.0 Release Notes

Cumulus 11.0 Release Notes The Cumulus version 11.0 is a major release with new features and bug fixes that improves all Cumulus products, including Workgroup, Enterprise,, and. With this release, Canto s Cumulus is now more efficient

More information

ER/Studio Enterprise Portal Evaluation Guide. Published: March 6, 2009

ER/Studio Enterprise Portal Evaluation Guide. Published: March 6, 2009 ER/Studio Enterprise Portal 1.0.3 Evaluation Guide Published: March 6, 2009 Contents Introduction to ER/Studio Enterprise Portal 1.0... 3 Session 1: Getting Started with the Enterprise Portal... 4 Session

More information

BEAAquaLogic Enterprise Repository. Automation for Web Services Guide

BEAAquaLogic Enterprise Repository. Automation for Web Services Guide BEAAquaLogic Enterprise Repository Automation for Web Services Guide Version 3.0. RP1 Revised: February, 2008 Table of Contents Overview System Settings Properties for Managing WSDL- and UDDI-Related

More information

Work Smart: Microsoft Office 2010 User Interface

Work Smart: Microsoft Office 2010 User Interface About the Office 2010 User Interface You can use this guide to learn how to use the new features of the Microsoft Office Ribbon. Topics in this guide include: What s New in the Office 2010 User Interface

More information

Using the Horizon vrealize Orchestrator Plug-In

Using the Horizon vrealize Orchestrator Plug-In Using the Horizon vrealize Orchestrator Plug-In VMware Horizon 6 version 6.2.3, VMware Horizon 7 versions 7.0.3 and later Modified on 4 JAN 2018 VMware Horizon 7 7.4 You can find the most up-to-date technical

More information

Lexis for Microsoft Office User Guide

Lexis for Microsoft Office User Guide Lexis for Microsoft Office User Guide Created 01-2018 Copyright 2018 LexisNexis. All rights reserved. Contents About Lexis for Microsoft Office...1 What is Lexis for Microsoft Office?... 1 What's New in

More information

Alfresco Developer Guide

Alfresco Developer Guide Alfresco Developer Guide Customizing Alfresco with actions, web scripts, web forms, workflows, and more Jeff Potts - PUBLISHING - 1 BIRMINGHAM - MUMBAI Preface Chapter 1: The Alfresco Platform 7 Alfresco

More information

Manipulating Database Objects

Manipulating Database Objects Manipulating Database Objects Purpose This tutorial shows you how to manipulate database objects using Oracle Application Express. Time to Complete Approximately 30 minutes. Topics This tutorial covers

More information

Release Notes. PREEvision. Version 6.5 SP11 English

Release Notes. PREEvision. Version 6.5 SP11 English Release Notes PREEvision Version 6.5 SP11 English Imprint Vector Informatik GmbH Ingersheimer Straße 24 70499 Stuttgart, Germany Vector reserves the right to modify any information and/or data in this

More information

Organize and Deliver Digital Assets Using Adobe Experience Manager v6.x Student Workbook

Organize and Deliver Digital Assets Using Adobe Experience Manager v6.x Student Workbook Organize and Deliver Digital Assets Using Adobe Experience Manager v6.x Student Workbook ADOBE DIGITAL LEARNING SERVICES 2016 Adobe Systems Incorporated. All rights reserved. Organize and Deliver Digital

More information

Application Deployment System Guide Version 8.0 October 14, 2013

Application Deployment System Guide Version 8.0 October 14, 2013 Application Deployment System Guide Version 8.0 October 14, 2013 For the most recent version of this document, visit our developer's website. Table of Contents 1 Application Deployment System 4 1.1 System

More information

Nuxeo Server 9.1 Release Notes

Nuxeo Server 9.1 Release Notes Home (/) > Developer Documentation Center (/nxdoc/) > Nuxeo Server (/nxdoc/nuxeo-server/) > Nuxeo Server 9.1 Release Notes Nuxeo Server 9.1 Release Notes Updated: April 21, 2017 (https://github.com/nuxeo/doc.nuxeo.com-platform-spaces

More information

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide Adobe Document Cloud esign Services for Salesforce Version 17 Installation and Customization Guide 2015 Adobe Systems Incorporated. All rights reserved. Last Updated: August 28, 2015 Table of Contents

More information

Florian Müller Jay Brown Jeff Potts. FOREWORDS BY Richard J. Howarth John Newton MANNING.

Florian Müller Jay Brown Jeff Potts. FOREWORDS BY Richard J. Howarth John Newton MANNING. Florian Müller Jay Brown Jeff Potts FOREWORDS BY Richard J. Howarth John Newton MANNING CMIS and Apache Chemistry in Action CMIS and Apache Chemistry in Action FLORIAN MÜLLER JAY BROWN JEFF POTTS MANNING

More information

Using the Horizon vcenter Orchestrator Plug-In. VMware Horizon 6 6.0

Using the Horizon vcenter Orchestrator Plug-In. VMware Horizon 6 6.0 Using the Horizon vcenter Orchestrator Plug-In VMware Horizon 6 6.0 You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The VMware Web site also

More information

SharePoint Online for Power Users

SharePoint Online for Power Users Introduction This course is designed to bring users up to speed with working with SharePoint as a Power User. The course introduces and the Office 365 ecosystem and teaches basics such as navigating the

More information

bridge essential skills

bridge essential skills bridge essential skills Gain a working knowledge of Bridge. Understand how to change the contents and appearance or the workspace. Learn how to use Mini Bridge to access assets inside Photoshop Download,

More information

Start editing and publishing content right away.

Start editing and publishing content right away. This essential quickstart guide addresses the most commonly used features in Jahia Digital Factory. Jahia Digital Factory 7 Ultra Quickstart Start editing and publishing content right away. You will learn

More information

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner ADF Code Corner 005. How-to bind custom declarative components to ADF Abstract: Declarative components are reusable UI components that are declarative composites of existing ADF Faces Rich Client components.

More information

DITAworks Guide for Authors

DITAworks Guide for Authors DITAworks Guide for Authors instinctools GmbH, Sophienstr. 17, D - 70178 Stuttgart Phone: +49 711 99338590, E-mail: contact@instinctools.com, www.instinctools.com, www.ditaworks.com Copyright 2009 * instinctools

More information

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Content 1 INTRODUCTION... 4 1.1 Page-based systems versus item-based systems 4 1.2 Browser support 5

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

What's New in Sitecore CMS 6.4

What's New in Sitecore CMS 6.4 Sitecore CMS 6.4 What's New in Sitecore CMS 6.4 Rev: 2010-12-02 Sitecore CMS 6.4 What's New in Sitecore CMS 6.4 This document describes the new features and changes introduced in Sitecore CMS 6.4 Table

More information

APACHE SLING & FRIENDS TECH MEETUP BERLIN, SEPTEMBER APACHE JACKRABBIT: BASIC CONCEPTS Christian Riemath, Igor Sechyn

APACHE SLING & FRIENDS TECH MEETUP BERLIN, SEPTEMBER APACHE JACKRABBIT: BASIC CONCEPTS Christian Riemath, Igor Sechyn APACHE SLING & FRIENDS TECH MEETUP BERLIN, 26-28 SEPTEMBER 2012 APACHE JACKRABBIT: BASIC CONCEPTS Christian Riemath, Igor Sechyn About the speakers Igor Sechyn Senior CMS Developer Christian Riemath Senior

More information

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills Discovering Computers & Microsoft Office 2010 Office 2010 and Windows 7: Essential Concepts and Skills Objectives Perform basic mouse operations Start Windows and log on to the computer Identify the objects

More information

Web Publisher User Guide

Web Publisher User Guide Web Publisher User Guide Version 5.3 SP4 December 2006 Copyright 1994-2006 EMC Corporation. All rights reserved. Table of Contents Preface... 15 Chapter 1 Introduction... 17 What is Web Publisher?... 17

More information

Service Manager. Ops Console On-Premise User Guide

Service Manager. Ops Console On-Premise User Guide Service Manager powered by HEAT Ops Console On-Premise User Guide 2017.2.1 Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc. and its affiliates

More information

CONFIGURING SAFE V4.0 IN THE IBM COLLABORATIVE LIFECYCLE MANAGEMENT

CONFIGURING SAFE V4.0 IN THE IBM COLLABORATIVE LIFECYCLE MANAGEMENT CONFIGURING SAFE V4.0 IN THE IBM COLLABORATIVE LIFECYCLE MANAGEMENT Abstract In this document, we provide step-by-step guidance to configure support for the SAFe V4.0 methodology in CLM tooling. Amy Silberbauer

More information

User Guide Zend Studio for Eclipse V6.1

User Guide Zend Studio for Eclipse V6.1 User Guide Zend Studio for Eclipse V6.1 By Zend Technologies, Inc. www.zend.com Disclaimer The information in this help is subject to change without notice and does not represent a commitment on the part

More information

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHART WEB PART... 4 Task 1 Add the Chart Web Part to the page... 4 Task 2

More information

Modern Requirements4TFS 2018 Update 1 Release Notes

Modern Requirements4TFS 2018 Update 1 Release Notes Modern Requirements4TFS 2018 Update 1 Release Notes Modern Requirements 6/22/2018 Table of Contents 1. INTRODUCTION... 3 2. SYSTEM REQUIREMENTS... 3 3. APPLICATION SETUP... 3 GENERAL... 4 1. FEATURES...

More information

ControlPoint. for Office 365. User Guide VERSION 7.6. August 06,

ControlPoint. for Office 365. User Guide VERSION 7.6. August 06, ControlPoint for Office 365 User Guide VERSION 7.6 August 06, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2018 All rights reserved. No part or section of

More information

Avid Interplay Production Web Services Version 2.0

Avid Interplay Production Web Services Version 2.0 Avid Interplay Production Web Services Version 2.0 www.avid.com Table of Contents Overview... 1 Interplay Production Web Services Functionality... 2 Asset Management... 2 Workflow Enhancement... 3 Infrastructure...

More information

Client Configuration Cookbook

Client Configuration Cookbook Sitecore CMS 6.2 Client Configuration Cookbook Rev: 2009-10-20 Sitecore CMS 6.2 Client Configuration Cookbook Features, Tips and Techniques for CMS Architects and Developers Table of Contents Chapter 1

More information

News in RSA-RTE CP1

News in RSA-RTE CP1 IBM Software Group News in RSA-RTE 8.5.1 CP1 Mattias Mohlin, April 2013 2013 IBM Corporation Build A C++ External Library TC can now generate the make file to use for building the library from a CDT project

More information

APEX Times Ten Berichte. Tuning DB-Browser Datenmodellierung Schema Copy & Compare Data Grids. Extension Exchange.

APEX Times Ten Berichte. Tuning DB-Browser Datenmodellierung Schema Copy & Compare Data Grids. Extension Exchange. Oracle SQL Developer 3.0 Data Mining Debugging Code Snippets DBA-Navigator APEX Times Ten Berichte Unit Tests Migration Workbench Versionskontrolle Extension Exchange Tuning DB-Browser

More information

Repstor affinity. M-Files Connector Overview

Repstor affinity. M-Files Connector Overview Repstor affinity M-Files Connector Overview Document Version 1 01/02/2018 Contents 1 Introduction... 3 2 Installing the M-Files Connector... 3 3 M-Files Dynamic Views within Outlook... 3 3.1 Connecting

More information

Using the JSON Iterator

Using the JSON Iterator Using the JSON Iterator This topic describes how to process a JSON document, which contains multiple records. A JSON document will be split into sub-documents using the JSON Iterator, and then each sub-document

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

ForeScout Extended Module for IBM BigFix

ForeScout Extended Module for IBM BigFix Version 1.1 Table of Contents About BigFix Integration... 4 Use Cases... 4 Additional BigFix Documentation... 4 About this Module... 4 About Support for Dual Stack Environments... 5 Concepts, Components,

More information

Episerver CMS. Editor User Guide

Episerver CMS. Editor User Guide Episerver CMS Editor User Guide Episerver CMS Editor User Guide 17-6 Release date 2017-12-04 Table of Contents 3 Table of contents Table of contents 3 Introduction 11 Features, licenses and releases 11

More information

Message Server Change Log

Message Server Change Log Message Server Change Log MESSAGE SERVER 12.5 DECEMBER 2016 1. Possibility to configure a default template for messages created via the API; 2. Possibility to show article geo location in the PC/TV Players;

More information

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework BlackBerry Developer Summit A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework Page 2 of 21 Table of Contents 1. Workbook Scope... 4 2. Compatibility... 4 3. Source code download

More information

DocAve 6 Administrator

DocAve 6 Administrator DocAve 6 Administrator User Guide Service Pack 4, Cumulative Update 3 Revision P Issued September 2014 Table of Contents About DocAve Administrator for SharePoint... 7 Complementary Products... 7 Submitting

More information

Management Reports Centre. User Guide. Emmanuel Amekuedi

Management Reports Centre. User Guide. Emmanuel Amekuedi Management Reports Centre User Guide Emmanuel Amekuedi Table of Contents Introduction... 3 Overview... 3 Key features... 4 Authentication methods... 4 System requirements... 5 Deployment options... 5 Getting

More information

At the shell prompt, enter idlde

At the shell prompt, enter idlde IDL Workbench Quick Reference The IDL Workbench is IDL s graphical user interface and integrated development environment. The IDL Workbench is based on the Eclipse framework; if you are already familiar

More information

EMC Documentum My Documentum Desktop (Windows)

EMC Documentum My Documentum Desktop (Windows) EMC Documentum My Documentum Desktop (Windows) Version 7.2 User Guide EMC Corporation Corporate Headquarters: Hopkinton, MA 017489103 15084351000 www.emc.com Legal Notice Copyright 2003 2015 EMC Corporation.

More information

SharePoint Online Power User

SharePoint Online Power User Course 55215A: SharePoint Online Power User - Course details Course Outline Module 1: An Introduction to SharePoint Online Let s get started with SharePoint online by letting you know about its fantastic

More information

Shortcake. Bridging the gap between WordPress developers and content creators. Brian DeConinck. NC State University. Office of Information Technology

Shortcake. Bridging the gap between WordPress developers and content creators. Brian DeConinck. NC State University. Office of Information Technology Shortcake Bridging the gap between WordPress developers and content creators Brian DeConinck NC State University Office of Information Technology The Problem The "Gap" User Expectations & Developer Resources

More information

Table of Contents Chapter 1: Migrating NIMS to OMS... 3 Index... 17

Table of Contents Chapter 1: Migrating NIMS to OMS... 3 Index... 17 Migrating from NIMS to OMS 17.3.2.0 User Guide 7 Dec 2017 Table of Contents Chapter 1: Migrating NIMS to OMS... 3 Before migrating to OMS... 3 Purpose of this migration guide...3 Name changes from NIMS

More information

New in Designer 2.3. Contents. Highlights. Presets, Duplicate, API. pharoscontrols.com

New in Designer 2.3. Contents. Highlights. Presets, Duplicate, API. pharoscontrols.com Presets, Duplicate, API Contents Welcome to Pharos Designer 2.3, which introduces great new workflow and integration features. We've also fixed some bugs. This document contains the following items: Highlights

More information

Oracle Eloqua s User Guide

Oracle Eloqua  s User Guide http://docs.oracle.com Oracle Eloqua Emails User Guide 2018 Oracle Corporation. All rights reserved 11-Jan-2018 Contents 1 Emails Overview 6 2 Examples of emails 7 3 Creating emails 19 4 Email authoring

More information

From: Sudarshan N Raghavan (770)

From: Sudarshan N Raghavan (770) Spectrum Software, Inc. 11445 Johns Creek Pkwy. Suite 300 Duluth, GA 30097 www.spectrumscm.com Subject: SpectrumSCM Plugin for the Eclipse Platform Original Issue Date: February 2 nd, 2005 Latest Update

More information

Episerver CMS. Editor User Guide

Episerver CMS. Editor User Guide Episerver CMS Editor User Guide Episerver CMS Editor User Guide 17-2 Release date 2017-03-13 Table of Contents 3 Table of contents Table of contents 3 Introduction 11 Features, licenses and releases 11

More information

Using Jive and SharePoint Together

Using Jive and SharePoint Together Using Jive and SharePoint Together Contents 2 Contents Using Jive and SharePoint Together... 3 Viewing SharePoint Content in Jive...3 Using Recent Activity Widgets... 3 Using SharePoint Sites Widgets...

More information

Visualizing Venice Historic Environment Record (Geospatial Database)

Visualizing Venice Historic Environment Record (Geospatial Database) Visualizing Venice Historic Environment Record (Geospatial Database) Table of Contents Introduction... 2 Getting Started opening the sources interface... 3 Searching for a Record... 4 Adding a New Source

More information

Release Notes. PREEvision. Version 6.5 SP14 English

Release Notes. PREEvision. Version 6.5 SP14 English Release Notes PREEvision Version 6.5 SP14 English Imprint Vector Informatik GmbH Ingersheimer Straße 24 70499 Stuttgart, Germany Vector reserves the right to modify any information and/or data in this

More information

8.0 Help for End Users About Jive for SharePoint System Requirements Using Jive for SharePoint... 6

8.0 Help for End Users About Jive for SharePoint System Requirements Using Jive for SharePoint... 6 for SharePoint 2010/2013 Contents 2 Contents 8.0 Help for End Users... 3 About Jive for SharePoint... 4 System Requirements... 5 Using Jive for SharePoint... 6 Overview of Jive for SharePoint... 6 Accessing

More information

Contents. Managing Places...3. Contents 2

Contents. Managing Places...3. Contents 2 Managing Places Contents 2 Contents Managing Places...3 Creating a Site Structure...3 Managing Spaces...4 Designing Space Hierarchies... 5 Changing the Name of the Root Space...5 Space Creation Options...

More information

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) You can find the most up-to-date technical documentation

More information

Using Jive and SharePoint Together

Using Jive and SharePoint Together Using Jive and SharePoint Together Contents Using Jive and SharePoint Together... 3 Viewing SharePoint Content in Jive... 3 Using Recent Activity Widgets... 3 Using SharePoint Sites Widgets... 4 Using

More information

Service Manager. Database Configuration Guide

Service Manager. Database Configuration Guide Service Manager powered by HEAT Database Configuration Guide 2017.2.1 Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc. and its affiliates

More information

Océ Posterizer Pro Designer. POP into retail. User manual Application guide

Océ Posterizer Pro Designer. POP into retail. User manual Application guide - Océ Posterizer Pro Designer POP into retail o User manual Application guide Copyright copyright-2010 Océ All rights reserved. No part of this work may be reproduced, copied, adapted, or transmitted in

More information

Technical Deep Dive. IBM Watson Content Hub UI & APIs

Technical Deep Dive. IBM Watson Content Hub UI & APIs Technical Deep Dive IBM Watson Content Hub UI & APIs WCH Terms A glimpse at the UI... Search Content Types Image Profiles Content Items Taxonomies Assets 4 Important terms to know Content Model Content

More information

Electrical Wire Routing

Electrical Wire Routing Electrical Wire Routing Page 1 Overview Conventions What's New? Getting Started Accessing the Workbench Creating the Bundle Selecting Systems with External Data Routing Wires from External Data User Tasks

More information