Information Architecture in the Helix Era. maandag 23 januari 2017

Size: px
Start display at page:

Download "Information Architecture in the Helix Era. maandag 23 januari 2017"

Transcription

1 Information Architecture in the Helix Era maandag 23 januari 2017

2 About Me Erwin Rijss Technology since 2015 Before Consultant, Trainer, Evangalist, Product Owner, Technical

3 About Macaw ~ 250 people Schiphol-Rijk Focus on Microsoft & Sitecore Full-service Operations, Interactive, Analytics, Integration, Strategy

4 Goals What are gonna do?

5 Goals The Helix Architecture Principles and the Habitat example implementation was food for thought We analyzed the Habitat implementation and looked how it mapped to the ideas we have We recognized that a good Information Architecture is key for a re-usable framework based on Helix principles We adapt all the good things and mix them with our ideas We like to share these ideas with you today

6 Helix architecture Quick review of the responsibillities

7 Foundation, Feature & Project

8 Template types Interface template Defines an interface for solution logic to work against, for example by defining the fields that are used by a module s logic or by simply being a template in the template inheritance hierarchy of an item. Can also be referred to as a base template. Page type template Makes up the pages of the website. Derives from interface templates and has a presentation layout. Datasource template Items from this template are referenced by renderings as a datasource. Derives from interface templates but has no associated layout. Settings template Used for lookup items for fields or to hold fields to configure the business logic in modules. Folder templates These templates are used for the folder items that make up the scaffolding of the content structure.

9 Template types Template Type Can have a page layout? Exists is which layers Interface template No Feature or Foundation Page type template Yes Project Datasource template No Project Settings template No Feature or Foundation Folder templates No All

10 Anatomy of a project What do we mark as the root items of our project

11 Configuration and Settings Helix says "We differentiate Configuration from Settings in that Settings are aimed at the user roles (editor, administrator) and Configuration is aimed at the developer or IT system administrator roles." We need a structured setup for settings that apply to a certain scope We will attach that to the site structure

12

13 Project Structure <Project/tenants> - Contains project settings <Central Repository> - container for shared content between sites (both page and datasource) <Metadata Repository> - container for supporting content, e.g. lookuplists, dictionaries, project-wide settings <Site> - Contain site settings <Home> - Root item for the site <Local Repository> - container for local datasource items

14 Project/Tenant A Project has one or multiple sites A Project can have project repositories Page templates are scoped on a project All sites have the same contenttypes Datasource templates are scoped on a project Layouts are scoped on a project Renderings are scoped on a project Sites use the same HTML output for renderings, can differ by theme

15 Settings Module (Foundation) ISettings Basetemplate: Standard Template _SettingsProject Basetemplates: Standard Template, ISettings _SettingsRepository Basetemplates: Standard Template, ISettings _SettingsSite Basetemplates: Standard Template, ISettings

16

17 Feature and project settings Feature and project settings are custom datatemplate that inherit from ISettings _SettingsSiteCookieMessage _SettingsSiteLocalDatasourceLocations _SettingsProjectCountryNavigationRoot

18 What is different with Helix "Interface templates are prefixed with an underscore (_) to signify that they are interface templates and cannot be instantiated as items." We create one more level of abstraction The Feature/Module interface template is prefixed with an "I" and is empty All fields (other interface templates) that can apply within the feature/module are prefixed with a underscore (_) We use a naming convention

19 Naming Convention All templates inherit from Standard Template Feature has Empty Interface Template: IFeaturename All Feature Functions / Feature Data Fields start with underscore _FeaturenameFieldname or _FeaturenameFunction Why do we do this? To check if a feature applies we can validate the "interface template": IFeaturename To check which functions/fields apply we can look for the implemented/inherited: _FeaturenameFieldnames

20 Pages, Assets, Content, Media

21 Pages vs Assets Pages Has layout, an url, Appears in search results, Experience editor Assets (Datasources) No layout, no url, never appears in search results, used as datasource for renderings IPage IAsset

22 Content Feature Every page has a title, and can have an abstract and an image Assets can have title and image Title appears above the page Abstract can be used in Lists, SEO, Open Graph, Navigation, etc. Image can be used in Lists, Open Graph, Navigation, etc. Or as fall-back for more specific implementations (later more)

23 IContent _ContentTitle (Template) Main Properties (Template Section) ContentTitle (Template Field) _ContentAbstract _ContentImage Main Properties (Template Section) ContentImage (Template Field) Source => Media Library Root

24 Media Library Convention The introduction of the Image field with one possible value for Source challenges you directly to think about Media Library structure in multi-project, multi-site scenario Because source is set on feature/foundation level, it can not be overruled at project or site level Therefor: Structure of Media Libary as shown Access in Item Selectors (DropTree, TreeListEx, Image, etc.) is restricted based on security Media Libary Documents Project Acronym 1 Project Acronym n Images Project Acronym 1 Project Acronym n Videos Project Acronym 1 Project Acronym n

25 Images in a multi-tenant / multi-site environment Same image can be used on various places in presentation Aspect ratio and width and/or height are (often) defined from interaction design Extend image request with Aspect ratio width, Aspect ratio height and desired width (or height) of the image Image.png?arw=4&arh=3&w=200 Find out if Image has cropping values for requested aspect ratio. If not, center crop the image for the given aspect ratio Resize the image to the desired width

26 Add cropping parameters for multiple ratios

27 By selecting an area from the image

28 First Page Type template

29 First Page Type template

30 Feature Navigation Menu and Simple Link Lists that bring me somewhere

31

32 INavigation _NavigationTitle (Template) Navigation Properties (Template Section) NavigationTitle (Template Field) _NavigationLink _NavigationBehaviour _NavigationIcon _NavigationImage

33 Project implementation Country Navigation Country Navigation Folder IAsset, _NavigationTitle, _NavigationBehaviour Country Navigation Item IAsset, _NavigationTitle, _NavigationBehaviour, _NavigationLink

34 INavigationComponent _NavigationComponentTitle (Template) Navigation Component Properties (Template Section) NavigationComponentTitle (Template Field) _NavigationComponentRootFolder _NavigationComponentDepth _NavigationComponentIncludeRoot

35 Project implementation As Datasource IAsset, _NavigationComponentTitle, _NavigationComponentRootFolder, _NavigationComponentDepth, _NavigationComponentIncludeRoot

36 Project implementation As Site Settings _SettingSiteCountryNavigation Site Settings Navigation - Country Navigation CountryNavigationTitle CountryNavigationRootFolder

37 Code implementation Project Controller Rendering for collecting parameters (Title, Root, etc.), especially for the Settings variant Feature Get items based on parameters and additional business logic (more on that later) Create output (Optional: default output)

38 Is this according to Helix No, Helix, as in the example implementation Habitat, creates mark-up in the feature layer We think that HTML belongs to the project layer, except for some default presentation Same mark-up is re-usable for all sites within a project Theming can be used for alternative styling A different project has different mark-up, but if default is enough, this is no additional work

39 Project Implementation Main Navigation Extend Page Type templates with _NavigationTitle _NavigationBehaviour Main Navigation Rendering "knows" that: It should start at the Home Item That the Root Item should be included That the depth is 2, 3, 4,,?

40 Navigation Feature Business logic If IPage and NavigationTitle is Empty, use ContentTitle If IPage and NavigationImage is Empty, use ContentImage If IPage then NavigationLink is url of the page

41 Sortorder of Template Sections Ordering the sections in page templates

42 Ow crap!

43 A solution Create a "User Interaction Design" Use SortOrder on TemplateSection Items to add appropriate numbers Keep fingers crossed But. Main Properties e.g. Title, Abstract Image Contenttype specific sections Main Content sections Related Content sections Common Sections, e.g. Seo, Open Graph, Navigation, etc

44 There is a pipeline for that getcontenteditorfields Pipeline This pipeline retrieves the fields for the Content Editor and does a lot of sorting based on Sitecores own rules At the end of the pipeline a new processor is inserted, which Checks if the ISortSectionsOnBaseTemplateOrder template is inherited Gets the order of the base templates of the current template Collects the reverse order of the sections of the basetemplates Let the sections bubble up

45 Section order without ISortSectionsOnBaseTemplateOrder

46 Add ISortSectionsOnBaseTemplateOrder

47 Desired Order of Sections

48 Granularity of Features

49 How small or big is a feature Habitat feature News has: Templates with News Title, News Summary, News Date, News Image and News Body Renderings for News Lists and News Teasers Assume a new feature Event, which according to this structure, has: Templates with Event Title, Event Summary, Event Dates, etc. Renderings for Event Lists and Event Teasers Which means that: Creating a combined list of News and Events is only possible through Search Logic for Teasers is maybe written twice Start- and enddates (Schedule) can be re-used in any other Page or Asset that needs a start- and enddate, like a Training or Course Etc.

50 More granularity Event has a Schedule properties (start- and enddate) Content (including news) has Publication properties (publication data, author) Offices and Departments have Address properties (location- and mailaddress) Offices, Departments, Persons have Contact properties (phone, fax, , websites, social links) Etc. All these properties are used to assemble the Page templates and Asset (datasource) templates

51 Address and Contact Feature

52 Project Implementation Office Asset

53 Project Implemenation Office Asset

54 Project Implementation Experience Editor

55 Project implementation Use of Custom Experience Buttons

56 Feature implementation Custom Experience Buttons

57 Metadata Lists (not yet implemented) How to deal with metadata in multi-tenant environment

58 Addres as Lookup Name Value List (Custom)

59 Source and lookupitems

60 What if? In a new project, completely targetted on The Netherlands, the list should contain: Street Housenumber Housenumber addition Postcode City Remember: for item selectors (DropTree, Treelist, Image, etc.) we use Security and Access Rights Source is set on feature level. Can this be overriden on project level?

61 Yes (we think) Use the getlookupsourceitems pipeline Analogy with the Local Datasources from Habitat

62 getlookupsourceitems Pipeline works for: Droplink Droplist Grouped Droplink Grouped Droplist Multilist Checkbox List Name Lookup Value List Lookup Name Value List (custom control)

63 Summary

64 So.. We adapt most of the Helix architecture and use the best from Habitat We use a more granular approach of our feature definitions We like to delegate presentation to the Project layer We are always evaluating and improving Thanks!

65 Beechavenue 140 / 1119PR Schiphol-Rijk / / info@macaw.nl /

Data Definition Reference

Data Definition Reference Sitecore CMS 6.4-6.5 Data Definition Reference Rev. 2012-10-19 Sitecore CMS 6.4 6.5 Data Definition Reference A Conceptual Overview for CMS Administrators, Architects, and Developers Table of Contents

More information

Data Definition Reference

Data Definition Reference Sitecore CMS 7.0 or later Data Definition Reference Rev. 2017-01-17 Sitecore CMS 7.0 or later Data Definition Reference A Conceptual Overview for CMS Administrators, Architects, and Developers Table of

More information

Reusing and Sharing Data

Reusing and Sharing Data Sitecore CMS 6.4 Reusing and Sharing Data Rev: 2013-09-13 Sitecore CMS 6.4 Reusing and Sharing Data Tips and Techniques for Developers Table of Contents Chapter 1 Reusing and Sharing Data... 3 1.1 Sharing

More information

Reusing and Sharing Data

Reusing and Sharing Data Sitecore CMS 7.0 Reusing and Sharing Data Rev: 2013-09-13 Sitecore CMS 7.0 Reusing and Sharing Data Tips and Techniques for Developers Table of Contents Chapter 1 Reusing and Sharing Data... 3 1.1 Sharing

More information

Field Suite Instructional Guide

Field Suite Instructional Guide Field Suite Instructional Guide 10-11-2012 Prepared by: Tim Braga VERSION 1.0 Contents Contents... 2 Basic Usage... 3 Adding and Removing Selected Items... 3 Tooltips... 3 Edit Item Modal... 4 Go to Item...

More information

2013, Active Commerce 1

2013, Active Commerce 1 2013, Active Commerce 1 2013, Active Commerce 2 Active Commerce User Guide Terminology / Interface Login Adding Media to the Media Library Uploading an Item to the Media Library Editing the Media Meta

More information

Tealium Sitecore Tag Management Module Specification. Module Version

Tealium Sitecore Tag Management Module Specification. Module Version Tealium Sitecore Tag Management Module Specification Module Version 1.0.2.0 Contents 1.0 Overview... 3 1.1 Module Description... 3 1.2 Compatibility... 3 2.0 Installation... 3 2.1 Module Contents... 3

More information

CQ Campaigns Top-10 components

CQ Campaigns Top-10 components CQ Campaigns Top-10 components Femke van Dongen, Bram van Bergen, Angela Heemskerk, Enes Kirimi Digital Services CQ 5.6 December 5 th 2016 Top-10 components Link to: Component Library Component code abbreviations

More information

Explorer View document libraries, 165 form library, 183

Explorer View document libraries, 165 form library, 183 Index A Actions section Add Listing link, 18 Add News link, 29 Add Person link, 20 Advanced Search Link, 41 Change Location link, 19 Change Settings link, 13 Create Subarea link, 13 Edit Page link, 21

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

Article Library App Guide

Article Library App Guide Article Library App Guide Blackboard Web Community Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and

More information

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

More information

C_TBI30_74

C_TBI30_74 C_TBI30_74 Passing Score: 800 Time Limit: 0 min Exam A QUESTION 1 Where can you save workbooks created with SAP BusinessObjects Analysis, edition for Microsoft Office? (Choose two) A. In an Analysis iview

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

IBM Mobile Portal Accelerator Enablement

IBM Mobile Portal Accelerator Enablement IBM Mobile Portal Accelerator Enablement Hands-on Lab Exercise on XDIME Portlet Development Prepared by Kiran J Rao IBM MPA Development kiran.rao@in.ibm.com Jaye Fitzgerald IBM MPA Development jaye@us.ibm.com

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

Sitecore Experience Accelerator 1.3 Rev: September 13, Sitecore Experience Accelerator 1.3

Sitecore Experience Accelerator 1.3 Rev: September 13, Sitecore Experience Accelerator 1.3 Sitecore Experience Accelerator 1.3 Rev: September 13, 2018 Sitecore Experience Accelerator 1.3 All the official Sitecore documentation. Page 1 of 98 Add, edit, and delete a rendering In the Experience

More information

Bpm online sales. Team Package User Guide

Bpm online sales. Team Package User Guide Bpm online sales Team Package User Guide User guide Contents 1. Bpm online sales overview... 6 2. Bpm online interface... 8 2.1. Bpm'online interface overview... 9 2.2. Bpm online home page... 12 2.3.

More information

Sass. The Future of Stylesheets.

Sass. The Future of Stylesheets. Sass. The Future of Stylesheets. Chris Eppstein Follow me @chriseppstein Architect - Caring.com Creator - Compass Stylesheet Framework Core Contributor - Sass A website for caregivers of the sick and elderly.

More information

Website Design Guide

Website Design Guide Website Design Guide 8/28/2017 Spark Website Design US 2017 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

IEEE Wordpress Theme Documentation

IEEE Wordpress Theme Documentation IEEE Wordpress Theme Documentation Version 1.0.2 2014-05- 16 Table of Contents TABLE OF CONTENTS 2 INITIAL SETUP 3 FRONT PAGE 3 POSTS PAGE 4 CONTACT 5 SITE MAP 6 MENU 7 HOME PAGE 8 PAGE TEMPLATES 10 LEFT

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using SimpleCMS Overview 2 Accessing the CMS 2 Resetting Your Password 2 Pages 3 Managing Files 3 Shortcuts 4 Uploading 4 Page Options 4 Relabel 4 Duplicate 4 Google

More information

Creating and Managing Snippets

Creating and Managing Snippets Creating and Managing Snippets Snippet management and creation is available to Level 9 and 10 admins. Categories are also configured, which are used for sorting snippets when selecting one to place on

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

GroveSite Custom Database Editor 3104 E. Camelback Road #559, Phoenix, AZ Phone: Fax:

GroveSite Custom Database Editor 3104 E. Camelback Road #559, Phoenix, AZ Phone: Fax: GroveSite Custom Database Editor Page 2 of 38 I. DATABASE USE OVERVIEW... 3 II. STEPS TO CREATE A NEW DATABASE TABLE... 3 III. ACCESS THE TABLE EDITOR... 4 IV. ADD A NEW TABLE... 5 V. SET TABLE OPTIONS...

More information

Campaign page templates

Campaign page templates Campaign Page Campaign page templates The campaign page templates have been built for marketing campaigns which require a landing experience that cannot be supported by the Product Detail Page templates

More information

Learning Portal AE: Customization and Configuration in Microsoft Dynamics CRM 2016 Hands-On-Lab

Learning Portal AE: Customization and Configuration in Microsoft Dynamics CRM 2016 Hands-On-Lab 2 Learning Portal 80729AE: Customization and Configuration in Microsoft Dynamics Hands-On-Lab 80729AE: Customization and Configuration in Microsoft Dynamics Table of Contents 80729AE: Customization and

More information

Siteforce Pilot: Best Practices

Siteforce Pilot: Best Practices Siteforce Pilot: Best Practices Getting Started with Siteforce Setup your users as Publishers and Contributors. Siteforce has two distinct types of users First, is your Web Publishers. These are the front

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

Content Templates Catalog (CTC)

Content Templates Catalog (CTC) IBM WebSphere Portal & Lotus Content Management Content Templates Catalog (CTC) August 29 th 2010 The IBM Content Templates Catalog (CTC) provides you with a quick start for using WCM to build up your

More information

Concept - first iteration DAM 2.0 & CMIS

Concept - first iteration DAM 2.0 & CMIS 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

More information

Contents. Xweb User Manual

Contents. Xweb User Manual USER MANUAL Contents 1. Website/Pages/Sections/Items/Elements...2 2. Click & Edit, Mix & Match (Drag & Drop)...3 3. Adding a Section...4 4. Managing Sections...5 5. Adding a Page...8 6. Managing Pages

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365... 3 LICENSE ACTIVATION...

More information

Cascade V8.4 Website Content Management for the Site Manager UMSL

Cascade V8.4 Website Content Management for the Site Manager UMSL Cascade V8.4 Website Content Management for the Site Manager UMSL Contents Purpose & How to Use This Guide... 5 Getting Started and Logging In... 5 Login... 5 Dashboard... 5 Notifications... 5 Setting

More information

Getting Started with MadCap Flare Part 1: Basic Concepts

Getting Started with MadCap Flare Part 1: Basic Concepts Getting Started with MadCap Flare Part 1: Basic Concepts Who Am I?» Neil Perlin Hyper/Word Services. Internationally recognized content creation and delivery consultant. Helps create efficient, flexible

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

Installation Guide. Sitecore Federated Experience Manager. Installation & Configuration Guide

Installation Guide. Sitecore Federated Experience Manager. Installation & Configuration Guide Sitecore Federated Experience Manager Installation Guide Rev: 23 August 2014 Sitecore Federated Experience Manager Installation Guide Installation & Configuration Guide Table of Contents Chapter 1 Overview...

More information

University of California Hastings College of the Law

University of California Hastings College of the Law University of California Hastings College of the Law Developer Reference 1 P age Table of Contents Overview... 8 Components... 8 Banner Bank... 8 Events Listing... 8 Feature... 8 Filtered News... 9 News

More information

SharePoint 2010 Enterprise Content Management for IT Pros. Mirjam van Olst Macaw

SharePoint 2010 Enterprise Content Management for IT Pros. Mirjam van Olst Macaw SharePoint 2010 Enterprise Content Management for IT Pros Mirjam van Olst Macaw About Mirjam Blog: http://sharepointchick.com Email: mirjam@macaw.nl Twitter: @mirjamvanolst Agenda Managed Metadata Service

More information

Next Generation HMI/SCADA High Performance HMI

Next Generation HMI/SCADA High Performance HMI SESAM 08.09.2016 Next Generation HMI/SCADA High Performance HMI For more information visit us at www.novotek.com Old UI Updated UI New UX User interfaces 1990 Today What s the problem of today? Easy to

More information

Event Scheduling System 4.0 User Guide

Event Scheduling System 4.0 User Guide This document was produced by Voloper Creations Inc. 2000 2009 Voloper Creations Inc. All Rights Reserved Brands or product names are trademarks or registered trademarks of their respective holders. The

More information

Interactive XML Visualization - using XSLT 2.0 on the Browser. Phil Fearon - Saxonica

Interactive XML Visualization - using XSLT 2.0 on the Browser. Phil Fearon - Saxonica Interactive XML Visualization - using XSLT 2.0 on the Browser Phil Fearon - Saxonica Big XML Theme Big data Large scale searching Processing large volumes at high speed Crunching big XML files Open Linked

More information

MS 50547: Microsoft SharePoint 2010 Site Collection and Site Administration Duration: 5 Days Method: Instructor-Led

MS 50547: Microsoft SharePoint 2010 Site Collection and Site Administration Duration: 5 Days Method: Instructor-Led MS 50547: Microsoft SharePoint 2010 Site Collection and Site Administration Duration: 5 Days Method: Instructor-Led Course Description This five-day instructor-led Site Collection and Site Administrator

More information

TECHNICAL BRIEFING PIMCORE TECHNOLOGY BRIEFING DOCUMENT Pimcore s backend system is displayed and navigated as Documents, Assets and Objects that solves the challenges of digital transformation. Pimcore

More information

Act! Marketing Automation

Act! Marketing Automation Act! Marketing Automation A Guide to Getting Started Helping your business grow with marketing automation Act! Marketing Automation Getting Started Guide 2 Contents Page Page 8 Page 10 Page 11 Page 11

More information

Beginner Workshop Activity Guide 2012 User Conference

Beginner Workshop Activity Guide 2012 User Conference Beginner Workshop Activity Guide 2012 User Conference TUESDAY, MARCH 6 2:00PM 5:00 PM Beginner Training Workshop Attendees will learn the end user functions of OU Campus TM. They will learn how to log

More information

Monarch Services Website Quick Guide

Monarch Services Website Quick Guide January 2016 Monarch Services Website Quick Guide www.monarchscc.org Credentials Wordpress Login URL: http://www.monarchscc.org/wp-login Login name :Nancya Password: wcs9na! Hosting Login at dreamhost.com

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

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

Next Generation HMI/SCADA High Performance HMI

Next Generation HMI/SCADA High Performance HMI Dau 06.02.2018 Next Generation HMI/SCADA High Performance HMI For more information visit us at www.novotek.com Old UI Updated UI New UX User interfaces 1990 Today What s the problem of today? Easy to put

More information

JSN Sun Framework User's Guide

JSN Sun Framework User's Guide JSN Sun Framework User's Guide Getting Started Layout Overview & Key concepts To start with layout configuration, Go to Extension Template JSN_template_default The first tab you see will be the Layout

More information

2007, 2008 FileMaker, Inc. All rights reserved.

2007, 2008 FileMaker, Inc. All rights reserved. Bento User s Guide 2007, 2008 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo are either

More information

Microsoft SharePoint 2010 FOR DUMME5' by Vanessa L. Williams WILEY. Wiley Publishing, Inc.

Microsoft SharePoint 2010 FOR DUMME5' by Vanessa L. Williams WILEY. Wiley Publishing, Inc. Microsoft SharePoint 2010 FOR DUMME5' by Vanessa L. Williams WILEY Wiley Publishing, Inc. Table of Contents» < ««# Introduction... 1 No, Really, What Is SharePoint? 2 Who Should Read This Book 4 How to

More information

Content Authors Guide

Content Authors Guide Sitecore Media Framework 2.1 Brightcove Edition Content Authors Guide Rev: 23 March 2015 Sitecore Media Framework 2.1 Brightcove Edition Content Authors Guide Managing and Using Brightcove Media Table

More information

Web Development IB PRECISION EXAMS

Web Development IB PRECISION EXAMS PRECISION EXAMS Web Development IB EXAM INFORMATION Items 53 Points 73 Prerequisites COMPUTER TECHNOLOGY Grade Level 10-12 Course Length ONE YEAR Career Cluster INFORMATION TECHNOLOGY Performance Standards

More information

How Information Architecture can improve in SharePoint 2013

How Information Architecture can improve in SharePoint 2013 How Information Architecture can improve in SharePoint 2013 Virgil Carroll President High Monkey Consulting About Me From the great State of Alaska Certified Athletic Trainer Masters in Instructional Design

More information

SharePoint SITE OWNER TRAINING

SharePoint SITE OWNER TRAINING SharePoint SITE OWNER TRAINING Contents Customizing Your Site... 3 Editing Links...4 Give the site a new look...5 Changing Title, Description, or Logo...6 Remove the Getting Started Icons...6 Adding Apps

More information

WEBSITE INSTRUCTIONS

WEBSITE INSTRUCTIONS Table of Contents WEBSITE INSTRUCTIONS 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

Configuring Ad hoc Reporting. Version: 16.0

Configuring Ad hoc Reporting. Version: 16.0 Configuring Ad hoc Reporting Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016

RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016 RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016 This document may not be reproduced or redistributed without the permission of the copyright holder. It may not be posted on

More information

Sparqube Lookup Column

Sparqube Lookup Column Sparqube Lookup Column Contents Overview... 2 Features... 3 Setup... 4 Requirements... 4 Installation... 4 Licensing... 4 Configuration... 9 Lookup column types... 9 Adding Sparqube Lookup Classic to SharePoint

More information

Creating an with Constant Contact. A step-by-step guide

Creating an  with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

Marsh & McLennan Companies Connect (eroom) Site Design Guide

Marsh & McLennan Companies Connect (eroom) Site Design Guide Marsh & McLennan Companies A Guide for Connect (eroom) Site Owners and Site Coordinators Client Name: Site Name: Site Owner: Page 1 of 3 (1 February 2011) Using This Workbook This workbook has been designed

More information

The Distributor s Content Management Guide for subzero-wolf.com

The Distributor s Content Management Guide for subzero-wolf.com The Distributor s Content Management Guide for subzero-wolf.com Dear Distributor Partner Portal users, Please use this guide help you find your way around and assist you in editing Showroom detail page

More information

User Guide: Content editing

User Guide: Content editing DIGITAL FACTORY 7.0 User Guide: Content editing Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels to truly control

More information

"Charting the Course to Your Success!" MOC Microsoft SharePoint 2010 Site Collection and Site Administration Course Summary

Charting the Course to Your Success! MOC Microsoft SharePoint 2010 Site Collection and Site Administration Course Summary MOC 50547 Microsoft SharePoint Site Collection and Site Course Summary Description This five-day instructor-led Site Collection and Site Administrator course gives students who have SharePoint Owner permissions

More information

Creating Effective School and PTA Websites. Sam Farnsworth Utah PTA Technology Specialist

Creating Effective School and PTA Websites. Sam Farnsworth Utah PTA Technology Specialist Creating Effective School and PTA Websites Sam Farnsworth Utah PTA Technology Specialist sam@utahpta.org Creating Effective School and PTA Websites Prerequisites: (as listed in class description) HTML

More information

CM Live Deal Documentation

CM Live Deal Documentation CM Live Deal Documentation Release 1.3.0-beta CMExtension January 27, 2015 Contents 1 Overview 3 1.1 Technical Requirements......................................... 3 1.2 Features..................................................

More information

Technical Intro Part 1

Technical Intro Part 1 Technical Intro Part 1 Learn how to create, manage, and publish content with users and groups Hannon Hill Corporation 950 East Paces Ferry Rd Suite 2440, 24 th Floor Atlanta, GA 30326 Tel: 800.407.3540

More information

WEBSITE INSTRUCTIONS. Table of Contents

WEBSITE INSTRUCTIONS. Table of Contents WEBSITE INSTRUCTIONS Table of Contents 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

SharePoint 2010 Tutorial

SharePoint 2010 Tutorial SharePoint 2010 Tutorial TABLE OF CONTENTS Introduction... 1 Basic Navigation... 2 Navigation Buttons & Bars... 3 Ribbon... 4 Library Ribbon... 6 Recycle Bin... 7 Permission Levels & Groups... 8 Create

More information

ENGL 103 Eportfolio Instructions Table of Contents Create Portfolio Shell and Select Template Edit Pages

ENGL 103 Eportfolio Instructions Table of Contents Create Portfolio Shell and Select Template Edit Pages ENGL 103 Eportfolio Instructions Table of Contents Create Portfolio Shell and Select Template Edit Pages Home Analysis Writing with Sources Best Piece of Writing Longitudinal Reflection Adding Artifacts

More information

Presentation Component Reference

Presentation Component Reference Sitecore CMS 6.1 Presentation Component Reference Rev. 090630 Sitecore CMS 6.1 Presentation Component Reference A Conceptual Overview for CMS Administrators, Architects, and Developers Table of Contents

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

WORKGROUP MANAGER S GUIDE

WORKGROUP MANAGER S GUIDE 1 Portal Framework v4.12: Workgroup Manager s Guide EMPLOYEE PORTAL WORKGROUP MANAGER S GUIDE Page 1 2 Portal Framework v4.12: Workgroup Manager s Guide Table of Contents FAQs... 4 Q: I added an assistant

More information

T T USER GUIDE. 1. Website/Pages/Stripes/Items/Elements Click & Edit, Mix & Match (Drag & Drop) Adding a Stripe Managing Stripes...

T T USER GUIDE. 1. Website/Pages/Stripes/Items/Elements Click & Edit, Mix & Match (Drag & Drop) Adding a Stripe Managing Stripes... T T T Contents USER GUIDE 1. Website/Pages/Stripes/Items/Elements... 2. Click & Edit, Mix & Match (Drag & Drop)... 3. Adding a Stripe... 4. Managing Stripes... 5. Adding a Page... 6. Managing Pages and

More information

Creating Dynamic Forms with Adobe LiveCycle Designer

Creating Dynamic Forms with Adobe LiveCycle Designer Creating Dynamic Forms with Adobe LiveCycle Designer J.P. Terry Contents Foreword... xi Introduction... xiii CHAPTER 1 The Basics...1 What is LiveCycle Designer?... 1 A Tool for Creating Interactive and

More information

ADOBE Dreamweaver CS3 Basics

ADOBE Dreamweaver CS3 Basics ADOBE Dreamweaver CS3 Basics IT Center Training Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu This page intentionally left blank 2 8/16/2011 Contents Before you start with Dreamweaver....

More information

Joomla Website User Guide

Joomla Website User Guide Joomla Website User Guide www.ardengemcsu.nhs.uk Table of Contents Introduction... 3 Editing pages... 4 Styling content... 5 Hyperlinks... 6 Inserting an image... 7 DOCman... 11 Glossary of terms... 14

More information

DATASTREAM CHART STUDIO GETTING STARTED

DATASTREAM CHART STUDIO GETTING STARTED DATASTREAM DATASTREAM CHART STUDIO GETTING STARTED Thomson Reuters Training Quick and easy access to Technical Analysis charts and data is essential in today s fast moving markets. The Datastream Chart

More information

Kaldeera Advanced Forms 2009 User s guide

Kaldeera Advanced Forms 2009 User s guide Kaldeera Advanced Forms 2009 User s guide Index Kaldeera Advanced Forms... 4 Features... 5 Using Kaldeera Advanced Forms... 6 Accessing settings page... 6 Enabling or disabling Kaldeera Advanced Forms

More information

Vetstreet Web Builder Editor Tool User Guide v2.1. Web Builder. User Guide v2.1

Vetstreet Web Builder Editor Tool User Guide v2.1. Web Builder. User Guide v2.1 Web Builder User Guide v2.1 Contact your Account Manager at (888) 799-8387 or email support@vetstreet.com with questions. Page 1 Index... 1 The Editor Tool... 7 Forgot Your Username or Password?... 7 How

More information

CUPA-HR Chapters: WordPress Reference Guide

CUPA-HR Chapters: WordPress Reference Guide CUPA-HR Chapters: WordPress Reference Guide Table of Contents How to Log In to WordPress... 1 How to Create a Page in WordPress... 2 Editing a Page in WordPress... 5 Adding Links in WordPress... 6 Adding

More information

HarePoint Business Cards

HarePoint Business Cards HarePoint Business Cards For SharePoint Server 2010, SharePoint Foundation 2010, Microsoft Office SharePoint Server 2007 and Microsoft Windows SharePoint Services 3.0. Product version 0.3 January 26, 2012

More information

INFORMZ USER GUIDE: The Asset Manager

INFORMZ USER GUIDE: The Asset Manager INFORMZ USER GUIDE: The Asset Manager Version 1.0 January 29, 2014 ABOUT THIS GUIDE This guide provides an overview of the Asset Manager used by Informz. This guide covers the Asset Manager s basic functionality

More information

Interreg Alpine Space

Interreg Alpine Space Interreg Alpine Space Website management manual for projects as of 18 September 2017 1 Table of Contents Note... 3 Basics... 3 Log in... 3 Welcome screen... 4 Navigation... 5 Documents and navigation structure...

More information

How to use WordPress to create a website STEP-BY-STEP INSTRUCTIONS

How to use WordPress to create a website STEP-BY-STEP INSTRUCTIONS How to use WordPress to create a website STEP-BY-STEP INSTRUCTIONS STEP 1:Preparing your WordPress site Go to the Dashboard for your new site Select Appearance > Themes. Make sure you have Activated the

More information

CMS Pages. Overview. The top menu- The side page menu-

CMS Pages. Overview. The top menu- The side page menu- CMS Pages Overview The Django CMS consists of a tree like hierarchy of pages that can be easily published, reordered, and edited. The order and depth of the page structure in the CMS directly effects the

More information

Lionbridge Connector for Sitecore. User Guide

Lionbridge Connector for Sitecore. User Guide Lionbridge Connector for Sitecore User Guide Version 4.0.2 March 28, 2018 Copyright Copyright 2018 Lionbridge Technologies, Inc. All rights reserved. Lionbridge and the Lionbridge logotype are registered

More information

All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the

All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the complete URL of the linked document, including the domain

More information

Sitecore Experience Editor Enchancements

Sitecore Experience Editor Enchancements Sitecore Experience Editor Enchancements Enhancements can be made to the Sitecore Experience Editor (formerly known as the Page Editor) to allow authors to more easily edit and manipulate content. Giving

More information

AvePoint Cloud Governance. Release Notes

AvePoint Cloud Governance. Release Notes AvePoint Cloud Governance Release Notes January 2018 New Features and Improvements AvePoint Cloud Governance now includes a My Groups report, which shows users a list of Office 365 groups they own or are

More information

CaseComplete Roadmap

CaseComplete Roadmap CaseComplete Roadmap Copyright 2004-2014 Serlio Software Development Corporation Contents Get started... 1 Create a project... 1 Set the vision and scope... 1 Brainstorm for primary actors and their goals...

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

HHH Instructional Computing Fall

HHH Instructional Computing Fall Quick Start Guide for School Web Lockers Teacher log-on is the same as for Infinite Campus Student log-on is the same initial log on to the network except no school year is required before their user name

More information

SITE DESIGN & ADVANCED WEB PART FEATURES...

SITE DESIGN & ADVANCED WEB PART FEATURES... Overview OVERVIEW... 2 SITE DESIGN & ADVANCED WEB PART FEATURES... 4 SITE HIERARCHY... 4 Planning Your Site Hierarchy & Content... 4 Content Building Tools... 5 Pages vs Sites... 6 Creating Pages... 6

More information

Cascade User Guide. Introduction. Key System Features. User Interface

Cascade User Guide. Introduction. Key System Features. User Interface Cascade User Guide Introduction Key System Features User Interface Menus and Moving Through the System Files and Pages Working with Existing Pages File Action Menu Version Control Deleting files Restoring

More information

Quark XML Author October 2017 Update for Platform with Business Documents

Quark XML Author October 2017 Update for Platform with Business Documents Quark XML Author 05 - October 07 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository...3 Creating a new document from

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Designer/Player 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 3 Who should read this manual... 3 What s included in this manual... 3 Symbols

More information