AUTHORING EXPERIENCES

Slides:



Advertisements
Similar presentations
WEB DESIGN TABLES, PAGE LAYOUT AND FORMS. Page Layout Page Layout is an important part of web design Why do you think your page layout is important?
Advertisements

KompoZer. This is what KompoZer will look like with a blank document open. As you can see, there are a lot of icons for beginning users. But don't be.
A Short Tutorial for Dandelion Confluence. In Confluence, you can do more than working with your collaborators on editing documents... Our system allows.
Web publishing training Introduction to the Tera text Web Content Management System (CMS) Learning Objective: Basic knowledge and skills required to publish.
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 10: GUI HTML Editors.
Introducing new web content management tools for Priority...
1 SharePoint 2013 Catalog Sites Brian Culver Build a SharePoint 2013 Search Driven Application.
1 of 6 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2007 Microsoft Corporation.
By Patricia Galien Make sure you are in slide show. Start the presentation by clicking the arrow below.
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 10: GUI HTML Editors © 2007 Prosoft Learning Corporation All rights reserved ITD 110 Web.
Our Focus is YOU! Getting Started with Resume Generator Plus If you are a first time Resume Generator Plus user: you will begin by going to the Employment.
A detailed guide on how to set-up your printing storefront. Please Note: Storefronts are compatible with all browsers, however for optimal use of the admin.
Chapter 9 Collecting Data with Forms. A form on a web page consists of form objects such as text boxes or radio buttons into which users type information.
IT Introduction to Website Development Welcome!
CMS I – BASIC WEB EDITING INTRODUCTION TO THE CMS Presented By: Rodneikka Scott, MS – Implementation Project Manager Lila Elliott, MA – Manager Client.
EQUELLA Product Strategy and Development
Jadu Training Documents & Homepages. A little about Jadu Jadu (Sanskrit). Pronounced: Jar-doo Jadu is a website content management system (CMS) Jadu is.
Microsoft ® Official Course Developing a Publishing Site for Web Content Microsoft SharePoint 2013 SharePoint Practice.
January 2006Colby College ITS Setting Up Course Pages.
IPDF toolkit – brought to you by PwC How to use this Interactive PDF (iPDF) template This template is part of a self-service iPDF toolkit. Use this to.
: Information Retrieval อาจารย์ ธีภากรณ์ นฤมาณนลิณี
Web Content And Customer Relationship Management Solution. Transforming web sites into a customer-focused, revenue generating channel with less stress.
 Open the course to add an online class  Click on Add a Page (left side)  Type in a name  Click on Create  Click on the Content Tab  Click on Add.
CrownPeak Integrations
ADVANCED HOSTING Adrian Newby, CTO.
Getting Started with Dreamweaver
Web Services University Communications
Patrick Desbrow, CIO & VP of Engineering October 29, 2014
PARTNER SUMMIT 2014 CrownPeak Customer Success and Product Teams
Patrick Desbrow, CIO & VP of Engineering October 29, 2014
DYNAMIC CONTENT DELIVERY
What is New with the Website?
Dreamweaver – Setting up a Site and Page Layouts
Fahd Shaaban, Director of Professional Services
Internet Made Easy! Make sure all your information is always up to date and instantly available to all your clients.
Overview Blogs and wikis are two Web 2.0 tools that allow users to publish content online Blogs function as online journals Wikis are collections of searchable,
CMS I – BASIC WEB EDITING INTRODUCTION TO THE CMS
How to use.
BIM 360 Glue Migration to BIM 360 Account Administration (HQ)
Getting Started 27-September-2012
Fahd Shaaban, Director Of Professional Services
IMPORTING & EXPORTING DATA
All Partners Access Network
LMEvents SharePoint Portal How-to Guide
Discover the New SharePoint Content Publishing Experiences
Tim Griffiths, Sales Engineer October 28, 2014
Paul Taylor, Solutions Architect October 29, 2014
Jadu Training Documents & Homepages.
Communicate and Collaborate Wikis
Webinar – New KStutor Overview 25th October 2013
WebCenter Mobile Features
An Introduction to Using
Read all about it Microsoft SharePoint News
Getting Started and working with Pearson myautomotivelab
Introduction of FrontPage
Rocketing into End-User Training
Practical guide to build Modern Intranet sites with SharePoint Communication Sites Asish Padhy.
Learn how to make SharePoint Accessible and Inclusive
Part 2 Setting up a web server the easy way
Getting Started with Dreamweaver
Overview Blogs and wikis are two Web 2.0 tools that allow users to publish content online Blogs function as online journals Wikis are collections of searchable,
SharePoint 2019 Overview and Use SPFx Extensions
Make a free wiki as easily as a
5. Setting up Alerts.
Inside a PMI Online Course
SharePoint Foundation 2010
Workshop 02 How to manage Faculties Websites using CMS
INSTRUCTOR NOTES/LINKS
PROGRAM 17:30 Registrering, mat, drikke og mingling  18:15 Hands-on introduksjon til modulen EPiImage [Alexander Haneng, Making Waves AS]  19:00 Pause 
Presentation transcript:

AUTHORING EXPERIENCES CREATING GREAT AUTHORING EXPERIENCES Denise Duncan, Director Enablement Services October 28, 2014

CREATING GREAT AUTHORING EXPERIENCE - AGENDA Creating Great Authoring Experiences What makes a great experience?  Resources  Your Feedback  Labs & Demos 

What makes a great experience?

creating great authoring experiences - WHAT MAKES A GREAT EXPERIENCE? Content Organization Enable users to easily find, create and edit content based on type and site. Input Configuration Take advantage of various input template fields and best practices. Preview Configure preview to match the published site. This usually only requires a few steps.

creating great authoring experiences - WHAT MAKES A GREAT EXPERIENCE? In Context Editing (ICE) Enable users to edit content from preview by verifying the ICE configuration Models Enable users to create pages, sections, and sites based on site and role

creating great authoring experiences - WHAT MAKES A GREAT EXPERIENCE? Template Performance Make sure templates are configured to perform well for a small or large group of assets.

creating great authoring experiences - WHAT MAKES A GREAT EXPERIENCE? Examples and guidelines are available on Connect Forum open for discussion https://connect.crownpeak.com/human_interaction_guidelines New Powerpoint Template Keynote https://connect.crownpeak.com/developers_and_partners/forums/authoring_experience

Labs & Demos

Follow along Training Instance Hands on instructions https://cms.crownpeak.com/TrainingAndDemos/UI/

Make the content Easy  to Find

Structure automatically generated by Site builder tool - CONTENT ORGANIZATION Demo Structure automatically generated by Site builder tool Provides the most flexibility to add additional sites, sub-domains or sites for device types Site collection: sites related by domain name (i.e. locale, device) or common groupings (microsites, BU) [[SHOW]] Domain: *.domainname.* Package: Configured by Domain [[Show packages]] Provides… Available in [urls] Show folder, Click into US-EN https://cms.crownpeak.com/TrainingAndDemos/UI/ /Demo Site - Folder Structure

Design a Great  Editing Experience

Autocomplete //List used for radio button and list controls HANDS-ON - INPUT CONFIGURATION //List used for radio button and list controls Dictionary<string, string> buttons = new Dictionary<string, string>(); buttons.Add("California", "CA"); buttons.Add("Nevada", "NV"); buttons.Add("Mississippi", "MI"); Input.ShowAutoCompleteBox("Autocomplete", "auto_complete", buttons, 40); Autocomplete /Samples by Type/Input Fields Example/Input Fields Example

Horizontal Panel HANDS-ON - INPUT CONFIGURATION //Horizontal wrap container Input.StartControlPanel("Horizontal Panel"); Input.StartHorizontalWrapContainer(); Input.ShowTextBox("First name", "fname_2"); Input.ShowTextBox("Last name", "lname_2"); Input.ShowTextBox("Telephone", "telephone_4"); Input.EndHorizontalWrapContainer(); Input.EndControlPanel();

List panel HANDS-ON - INPUT CONFIGURATION //Horizontal wrap container Input.StartControlPanel("Horizontal Panel"); Input.ShowMessage("Creates a container that arranges the contained controls horizontally. If the controls can't fit in one row, they wrap to a new row below the first."); Input.StartHorizontalWrapContainer(); Input.ShowTextBox("First name", "fname_2"); Input.ShowTextBox("Last name", "lname_2"); Input.ShowTextBox("Telephone", "telephone_4"); Input.EndHorizontalWrapContainer(); Input.EndControlPanel();

Render CSS and JSS correctly in Preview Main Header - Sub Header Confirm that CSS and JS are editable by adding them to the CMS as assets and linking them to developer templates. Create links in navigation wrappers using ServicesOutput.RenderScriptLink or ServicesOutput.RenderCssLink Test the Preview in CrownPeak Show how this looks broken Preview Configuration Example

ICE and the .Raw method Main Header - Sub Header ICE and .Raw Example In Context Editing (ICE) enables content authors to edit their content from preview mode. ICE is applied automatically to fields using WYSIWYG, text, and image inputs. ICE can be added or disabled manually. For conditionals, .Raw is used to obtain the values you may need. ICE and .Raw Example

Make it easy to Create  Content With Models.

Model exercise available on Connect MODELS We’ll look at an intermediate model configuration, providing content authors with the ability to create a new folder prepopulated with two content assets. We’ll also examine a model configuration that is recursive and includes references to several other model types. Model exercise available on Connect  

Resources

Demos and Documentation RESOURCES Demos and Documentation Code samples are available in the training instance Reference documents and articles available on Connect https://cms.crownpeak.com/TrainingAndDemos/UI/ https://connect.crownpeak.com/conference_2014/agenda/day_one/creating_authoring_experience

New Powerpoint Template RESOURCES Demos and Documentation Examples and guidelines are available on Connect Forum open for discussion https://connect.crownpeak.com/human_interaction_guidelines New Powerpoint Template Keynote https://connect.crownpeak.com/developers_and_partners/forums/authoring_experience

Before we go… Your Feedback 

We are here to hear your ideas and requests. PARTNER SUMMIT - FeedBACK We want your feedback! We are here to hear your ideas and requests. You have our ear - here at the conference, through support, through Connect. We want to open a dialogue that starts here and continues well beyond So please share your feedback cos we are always looking for ways to improve our product. Product improvements come from 3 channels- Product Management Innovations from Customer Success team- And of course Feedback and contributions from Developers like you Through conversation at the conference or by posting on Connect Product Management Customer Success Community Feedback Developers

Twitter Forums on Connect - FeedBACK Template development PARTNER SUMMIT - FeedBACK Twitter @CrownPeak #CrownPeakPartners For ongoing discussions with the CrownPeak community on Template development User & Developer Experience Solutions and Extensions Product features & roadmap Hosting & Publishing Integrations Forums on Connect Twitter hashtag and QR Code <a href="https://twitter.com/intent/tweet?button_hashtag=CrownPeakPartners" class="twitter-hashtag-button" data-related="CrownPeakHelp,CrownPeak">Tweet #CrownPeakPartners</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script> <img src="http://qrfree.kaywa.com/?l=1&s=8& d=https%3A%2F%2Ftwitter.com%2Fintent%2Ftweet%3Fbutton_hashtag%3DCrownPeakPartners" alt="QRCode"/> Forums QR code <img src="http://qrfree.kaywa.com/?l=1&s=8&d=https%3A%2F%2Fconnect.crownpeak.com%2Fdevelopers_and_partners%2Fforums" alt="QRCode"/>

    Access to Customer Success and Product Teams - FeedBACK PARTNER SUMMIT - FeedBACK Access to Customer Success and Product Teams You have access the Product and Customer Success teams to give direct feedback on features and best practices Meet the team during the presentations and Q&A sessions Make suggestions – we are capturing it. Team members are armed with Post-its! Ask questions – We want to start a conversation that last well beyond the summit Any Questions?  MEET THE TEAM  MAKE SUGGESTIONS  ASK QUESTIONS  Partners and Developers

Partners and Developers PARTNER SUMMIT - FeedBACK FEEDBACK?  Partners and Developers

CrownPeak + Web Experience Management  CrownPeak + Web Experience Management