Creating a MultiEdit Template

Size: px
Start display at page:

Download "Creating a MultiEdit Template"

Transcription

1 The MultiEdit editor allows form-controlled editing for XML and other structured content. Administrators can create forms-based templates that present users with an easy-to-follow guide for adding content to a structured layout. Templates can include both style-free form fields and WYSIWYG content editing areas. MultiEdit is also valuable as it ensures that the same node structure is used for every document. MultiEdit can be set up to show only the forms-based editor rather than an editable region with the WYSIWYG toolbar. It can also be configured so that both editors are available However, it is not advised that a MultiEdit region is also editable via the standard editor. Instead, there may be a combination of form-type elements and standard editable regions on a given page. The form template can be designed so that only a specific type of information can be added. For example, content types include text area, radio button, Asset Chooser, check box, drop-down selection box, or image inserter. MultiEdit tags are a special form of OmniUpdate tag that allows a user to edit multiple content regions at one time on a page. A page can have standard tags or a MultiEdit tag, or a combination of both. MultiEdit tags are surrounded by OmniUpdate editable region tags with the button attribute set to hide. Button attribute controls whether the user is presented the edit button in the preview screen or not. Setting the button="hide" will make the region only editable via MultiEdit. In some cases, the XSL is set to handle the MultiEdit fields individually, and the styling is actually controlled by the XSL. This is actually preferred as it allows one file to be updated and affect all files using it. In these cases, the ability to have a combination of editable region areas and MultiEdit fields on a given page may be hindered. Page 1 of 10

2 When the form is saved, the data is transformed to a desired and predefined layout and with the appropriate styling applied. Page 2 of 10

3 To create a MultiEdit PCF, a traditional Editor tag is replaced with a MultiEdit tag for each of the elements that should be included in the form. These tags can be formatted for different types of data input, including text, text areas, assets, radio button, checkbox, and dropdown selections, as well as an image file chooser. When the user attempts to edit the page, he/ she will use the orange MultiEdit button at the top of the page instead of an edit button traditionally found near the content to be edited. This will open the MultiEdit form instead of opening the full WYSIWYG Editor in which traditional pages are edited. For a complete list of the attributes available with a MultiEdit tag, see: Page Tagging Reference. Page 3 of 10

4 Example of a Multi-Edit Content Area <content> <faculty-image> <div style="float:right;fontsize:10px;padding:5px;margin:5px;"> <div class="portfolio-img"> <!-- com.omniupdate.div label="photo" group="everyone" button="hide" --><!-- com.omniupdate.multiedit type="image" prompt="photo" alt="choose a photo." path="/" lockout="no" --> <img width="320" height="180" title="" alt="" src="/_resources/images/sample/portfolio1.jpg"/> <!-- /com.omniupdate.div --> <span class="portfolio-overlay" style="float:right;font-size:10px;padding:5px;margin:5px;height: 180px;left: 325px;top: 4px;"> </span> <br /> </div> <br /> </div> </faculty-image> <desig> <h3><!-- com.omniupdate.div label="name" group="everyone" button="hide" --><!-- com.omniupdate.multiedit type="text" prompt="name" alt="enter your name." -->Richard Higgins, Ph.D<!-- /com.omniupdate.div -->, <i><!-- com.omniupdate.div label="title" group="everyone" button="hide" --><!-- com.omniupdate.multiedit type="text" prompt="title" alt="enter your title." -->Professor of Data Intelligence<!-- / com.omniupdate.div --></i></h3> </desig> <b><!-- com.omniupdate.div label="education" group="everyone" button="hide" --><!-- com.omniupdate.multiedit type="text" prompt="education" alt="enter your education information." -->Arizona State University, Ph.D., Computer Science<!-- /com.omniupdate.div --></ b><br /> <h4>biography</h4> <bio><!-- com.omniupdate.div label="biography" group="everyone" button="hide" --><!-- com.omniupdate.multiedit type="textarea" prompt="biography" alt="enter a short biography." rows="15" editor="yes" --><p>director for the Gallena Center for Distance Education. Dr. Harris is also the Director of <strong>biology Technology</strong> at Gallena University. Prior to these positions, Dr. Harris taught chemistry at Arizona State for over 10 years. Before coming to Gallena, He has been the Associate Manager for the Gallena Link-to Learn Initiative and has served as the director or codirector of numerous grant projects related to technology.</p><!-- / com.omniupdate.div --></bio> </content> Page 4 of 10

5 Adding MultiEdit Tags For the tutorial, a page has been configured with a couple of MultiEdit fields already in place. This tutorial will guide through the process of converting a current standard editable region to MultiEdit tags. Note: The PCF that will be used is using the commented OmniUpdate tags since the XSL to which it is pointing is still configured for the commented tags rather than the individual nodes. Start by previewing the new-multiedit.pcf file that is within the /workshop-page-templating directory. Then click Edit and observe the two edit buttons: MultiEdit and a standard editable region. The image, and title are within the MultiEdit fields, while the rest of the content can be edited in the WYSIWYG Editor. Page 5 of 10

6 Current MultiEdit Fields Current Editable Region Configuration Edit the page using the Source Editor. Ensure that the code, especially the highlighted portion, appears as identified here: Page 6 of 10

7 <?xml version="1.0" encoding="utf-8"?> <?pcf-stylesheet path="/_resources/xsl/default.xsl" extension="html" title="web"?> <?pcf-stylesheet path="/_resources/xsl/fac_profile.xsl" extension="xml" title="xml"?> <?pcf-stylesheet path="/_resources/xsl/page2pdf.xsl" extension="pdf" alternate="yes" title="pdf"?> <!DOCTYPE document SYSTEM " standard.dtd"> <document> <config> <parameter name="pagetype" type="select" group="everyone" prompt="page Type" alt="please choose an appropriate page type"> <option value="article" selected="false">article</ option> <option value="content" selected="true">content</ option> <option value="onecolumn" selected="false">one Column</ option> </parameter> <!-- ouc:properties --> <parameter name="image_teaser" type="select" group="everyone" prompt="article Image" alt="do you want to display the article with an image teaser "> <option value="true" selected="true">yes</option> <option value="false" selected="false">no</option> </parameter> <parameter name="article_image" type="filechooser" group="everyone" prompt="article Image" alt="please choose a suitable image for the article" path="/">/img/gallena_images/ gossling_hall_horizontal.jpg</parameter> <parameter name="article_desc" type="text" group="everyone" prompt="article Description" alt="please enter a suitable article heading">gallena University Named to the President s Higher Education Community Service Honor Roll </parameter> <parameter name="author" type="text" group="everyone" prompt="article Author" alt="please enter an article author name">michael Monina</parameter> <parameter name="keywords" prompt="keywords" type="checkbox" alt="pick select the appropriate keywords for the page"> <option value="gallena" selected="true">gallena</option> <option value="gu" selected="true">gu</option> <option value="gallena University" selected="false">gallena University</option> <option value="why Choose Gallena" selected="true">why Choose Gallena</option> Page 7 of 10 <option value="undergraduate"

8 It is possible that this may appear differently if at some point this page was updated. To create the MultiEdit fields and see the expected styling, make sure that, at a minimum, the node structure matches. The available attributes for MultiEdit are similar to those of variables and parameters. The three required or, in the case of alt, strongly suggested fields are displayed below. For a complete list of attributes see the Support site, and navigate to Development > Page Tagging > Page Tagging Reference. Attribute Name Syntax Message Description type type="text " Required. Defines the type of field. Can be: text, textarea, image, radio, checkbox, select, asset The attributes may be used in conjunction with other attributes. For instance, textarea may be used with editor to allow for a mini-wysiwyg Editor to be used. prompt prompt= " Education " alt alt="enter the name of the school you attended." Required. Provides a label for the user, defining the field. Provides instructional text to the user. To update the current editable region and convert the nodes into MultiEdit fields: 1. Remove the current div tag with label="content" and its corresponding editor tag. 2. Wrap the education field in a div tag with the label="education" and a MultiEdit tag with type="text". (See the code example for all attribute information.) Be sure to put the div and MultiEdit tags within the <strong> tags. 3. Wrap the biography field in a div tag with the label="biography" and a MultiEdit tag with type="textarea". Be sure to put the div and MultiEdit tags within the <bio> tags. 4. Wrap the publications field in a div tag with the label="publications" and a MultiEdit tag with type="textarea". Be sure to put the div and MultiEdit tags after the <h4> tags. The button should be hidden for each of the div tags. Page 8 of 10

9 <faculty-image> <div style="float:right;font-size:10px;padding:5px;margin:5px;"> <div class="portfolio-img"> <!-- ouc:div label="photo" group="everyone" button="hide" --> <!-- ouc:multiedit type="image" prompt="photo" alt="choose a photo." path="/" lockout="no" --> <img width="320" height="180" title="" alt="" src="/_resources/images/ sample/portfolio1.jpg"/> <!-- /ouc:div --> <span class="portfolio-overlay" style="float:right;fontsize:10px;padding:5px;margin:5px;height: 180px;left: 325px;top: 4px;"> </span> <br /> </div> <br /> </div> </faculty-image> <desig> <h3> <!-- ouc:div label="name" group="everyone" button="hide" --> <!-- ouc:multiedit type="text" prompt="name" alt="enter your name." --> Carol Clements <!-- /ouc:div -->, <i> <!-- ouc:div label="title" group="everyone" button="hide" --> <!-- ouc:multiedit type="text" prompt="title" alt="enter your title." --> Professor of Marketing and Public Relations <!-- /ouc:div --> </i></h3> </desig> <strong> <!-- ouc:div label="education" group="everyone" button="hide" --> <!-- ouc:multiedit type="text" prompt="education" alt="enter your education information." --> Arizona State University, Ph.D., Chemistry <!-- /ouc:div --> </strong><br /> <h4>biography</h4> <bio> <!-- ouc:div label="biography" group="everyone" button="hide" --> <!-- ouc:multiedit type="textarea" prompt="biography" alt="enter a short biography." rows="15" editor="yes" --> <p>director for the Gallena Center for Distance Education. Dr. Harris is also the Director of <strong>biology Technology</strong> at Gallena University. Prior to these positions, Dr. Harris taught chemistry at Arizona State for over 10 years. Before coming to Gallena, He has been the Associate Manager for the Gallena Page 9 of 10 Link-to Learn Initiative and has served as the director or co-director of

10 Save the changes, and click Edit. Notice that the editable region button is gone. Click on the MultiEdit button. The fields have been added there. The page can now be edited with MultiEdit. Page 10 of 10

Page Tagging Reference Guide For Editable Regions

Page Tagging Reference Guide For Editable Regions Page Tagging Reference Guide For Editable Regions omniupdate.com Table of Contents Page Tagging for Editable Regions... 3 Tag Syntax... 3 Properties > Parameters... 3 Title/Meta Tags... 3 PCF Parameters...

More information

Page Tagging Reference

Page Tagging Reference Page Tagging Reference Overview This page includes a reference for the OU Campus comment tags as well as the OUC node style XML, and the attributes and values that can be used with each. For more information

More information

Creating New Templates

Creating New Templates OmniUpdate User Training Conference 2015 Activity Guide OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362605 80489428

More information

Understanding Page Template Components. Brandon Scheirman Instructional Designer, OmniUpdate

Understanding Page Template Components. Brandon Scheirman Instructional Designer, OmniUpdate Understanding Page Template Components Brandon Scheirman Instructional Designer, OmniUpdate Where do PCFs come from??.pcf .PCF Agenda Implementation Process Terminology used in Template Development Hands-on

More information

Dynamic Indexing with XSL

Dynamic Indexing with XSL In content is generally displayed in a static format. This means that the content entered never changes unless it is updated manually. When a page is transformed, the data entered on the page is visible.

More information

TCF Reference. OU Campus TCF Reference Page 1 of 35

TCF Reference. OU Campus TCF Reference Page 1 of 35 TCF Reference The TCF reference page includes the syntax for and examples of the elements, attributes, and attribute values used by template control files. These include the following: Include Variable

More information

Creating the Initial PCF

Creating the Initial PCF Overview When creating new page templates, it is very common to begin creation from an HTML page. The HTML page contains the full structure of the content, as well as the data. Deconstructing the HTML

More information

Other Editing. OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012

Other Editing. OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012 Other Editing v10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428 (fax) www.omniupdate.com Copyright

More information

Properties Tags Overview

Properties Tags Overview Properties Tags Overview Overview Page properties can be used for managing nearly any page characteristic, including metadata, parameters, and configuration properties. Page properties allow for dynamic

More information

XSL and OU Campus. OmniUpdate User Training Conference OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012

XSL and OU Campus. OmniUpdate User Training Conference OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012 XSL and OU Campus OmniUpdate User Training Conference 2015 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428

More information

Asset Management. for OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012

Asset Management. for OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012 Asset Management for v10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428 (fax) www.omniupdate.com

More information

JustEdit. Overview. Path Status Bar

JustEdit. Overview. Path Status Bar JustEdit Overview JustEdit is a new way to edit content in OU Campus that allows users to edit pages without leaving the "Preview" view of the content. Editing a page using JustEdit works the same as using

More information

Creating Editable Regions & WYSIWYG Styling

Creating Editable Regions & WYSIWYG Styling Now that the initial PCF has been created, the file needs to be updated so that it can be edited. To do this, editable regions are created using custom code. Additionally, the regions can be styled so

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support Web Services Service Delivery & Support UNIVERSITY OF TASMANIA UTAS CMS Easy Edit Suite Workshop V3 Web Service, Service Delivery & Support UWCMS Easy Edit Suite Workshop: v3 Contents What is Easy Edit

More information

QRG: Using the WYSIWYG Editor

QRG: Using the WYSIWYG Editor WYSIWYG Editor QRG: Using the WYSIWYG Editor WYSIWYG stands for What You See Is What You Get. The WYSIWYG Editor is the reason you don t need to be an IT Programmer to write content for your web page.

More information

Website Editor. User Guide - Table of Contents. Overview. Use Case(s) Accessing the Tool. Editor Tools. Quick Tab Toolbar. Menu Bar.

Website Editor. User Guide - Table of Contents. Overview. Use Case(s) Accessing the Tool. Editor Tools. Quick Tab Toolbar. Menu Bar. 2016 - Fall Edition Website Editor User Guide - Table of Contents Overview Use Case(s) Accessing the Tool Editor Tools Quick Tab Toolbar Menu Bar Adding Content Inserting Content Inserting Images Styling

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

Access & Workflow. Short Version. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012

Access & Workflow. Short Version. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012 Access & Workflow Short Version OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428 (fax) www.omniupdate.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

Dreamweaver: Web Forms

Dreamweaver: Web Forms Dreamweaver: Web Forms Introduction Web forms allow your users to type information into form fields on a web page and send it to you. Dreamweaver makes it easy to create them. This workshop is a follow-up

More information

JustEdit. Overview. Differences Between JustEdit Toolbar and WYSIWYG Toolbar

JustEdit. Overview. Differences Between JustEdit Toolbar and WYSIWYG Toolbar JustEdit Overview JustEdit is a new way to edit content in OU Campus that allows users to edit pages without leaving the "Preview" view of the content. Editing a page using JustEdit works the same as using

More information

Using this tutorial, you will create a Web page for a fictional foundation. The tutorial is divided into the following parts:

Using this tutorial, you will create a Web page for a fictional foundation. The tutorial is divided into the following parts: Extend Tutorial Copyright Copyright 2005 ACS Technologies Group, Inc. All rights reserved. Reproduction of any part of this publication by mechanical or electronic means, including facsimile transmission

More information

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

More information

End-User Reference Guide Troy University OU Campus Version 10

End-User Reference Guide Troy University OU Campus Version 10 End-User Reference Guide Troy University OU Campus Version 10 omniupdate.com Table of Contents Table of Contents... 2 Introduction... 3 Logging In... 4 Navigating in OU Campus... 6 Dashboard... 6 Content...

More information

Creating Accessible PDFs

Creating Accessible PDFs Creating Accessible PDFs Using Word to Create Accessible PDF Documents This documentation is designed to be a tool for students, faculty and staff. When authoring electronic documents, it is important

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

Enterprise Application Systems

Enterprise Application Systems INFORMATION TECHNOLOGY Enterprise Application Systems Mt. San Antonio College Information Technology 1100 North Grand Avenue Building 23 Walnut, CA 91789 Help Desk 909.274.4357 Contents Accessing OmniUpdate

More information

Joomla 2.5 Flexi Contact Component Configuration

Joomla 2.5 Flexi Contact Component Configuration Joomla 2.5 Flexi Contact Component Configuration Open Source Varsity For the configuration of Flexi Contact component in Joomla 2.5, you have to first login through the administrative panel of Joomla by

More information

Programmazione Web a.a. 2017/2018 HTML5

Programmazione Web a.a. 2017/2018 HTML5 Programmazione Web a.a. 2017/2018 HTML5 PhD Ing.Antonino Raucea antonino.raucea@dieei.unict.it 1 Introduzione HTML HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text

More information

OU Campus - Getting Started

OU Campus - Getting Started OU Campus - Getting Started I. How to Login 1. To edit any page, log in to OU Campus by clicking the Direct Edit link (the Date Stamp at the bottom of the page, underneath the social media icons). 2. Enter

More information

Training. Last Updated: 4/2014. Prepared by: BEVERLY J. SIMS COMPUTER SPECIALIST

Training. Last Updated: 4/2014. Prepared by: BEVERLY J. SIMS COMPUTER SPECIALIST Training Last Updated: 4/2014 Prepared by: BEVERLY J. SIMS COMPUTER SPECIALIST bsims@uaex.edu 501-671-2263 The Division of Agriculture offers its programs to all eligible persons regardless of race, color,

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

Setting up Staff Page Access and Templates

Setting up Staff Page Access and Templates Setting up Staff Page Access and Templates If you are the individual responsible for adding your staff as users, setting up the SOCS Staff Site sections, and acting as a resource for your staff, this guide

More information

HTML. HTML Evolution

HTML. HTML Evolution Overview stands for HyperText Markup Language. Structured text with explicit markup denoted within < and > delimiters. Not what-you-see-is-what-you-get (WYSIWYG) like MS word. Similar to other text markup

More information

FirmSite Control. Tutorial

FirmSite Control. Tutorial FirmSite Control Tutorial 1 Last Updated June 26, 2007 by Melinda France Contents A. Logging on to the Administrative Control Center... 3 Using the Editor Overview:... 3 Inserting an Image... 7 Inserting

More information

OU Campus Training. Part 2

OU Campus Training. Part 2 OU Campus Training Part 2 Login to OU Campus To get started you need to login to OU Campus. While work on your website just use the page last updated date located in the footer: This will take you to the

More information

Google Map for Magento 2

Google Map for Magento 2 Last update: 2018/03/16 11:06 magento_2:google_map https://amasty.com/docs/doku.php?id=magento_2:google_map For more details see the Google Map extension page. Google Map for Magento 2 Provide customers

More information

An Introduction to Google Blogger

An Introduction to Google Blogger An Introduction to Google Blogger Signing In To sign into Google Apps for Education, 1. Go to http://go.uis.edu/google 2. Select Continue. 3. Select Blogger. Creating a New Blog To create a new blog with

More information

Contributor Session: Handout

Contributor Session: Handout Contributor Session: Handout Log into training room computer Username : See PC label Password: Tr@inWus Log into OU Campus 1. Open Chrome and go to http://www.sc.edu. 2. Open a new tab in the browser and

More information

Getting Started with CSS Sculptor 3

Getting Started with CSS Sculptor 3 Getting Started with CSS Sculptor 3 With CSS Sculptor, you can quickly create a cross-browser compatible layout with custom widths, margins, padding, background images and more. Additionally, you can use

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes Course Title Course Code WEB DESIGNING TECHNOLOGIES DCE311 Lecture : 3 Course Credit Practical : Tutorial : 0 Total : 5 Course Learning Outcomes At end of the course, students will be able to: Understand

More information

Other Templates. Overview. URL Shortener & Redirect Page

Other Templates. Overview. URL Shortener & Redirect Page Other Templates Overview In addition to the standard templates for new page and section creation, the implementation for an institution may include additional templates may be available, including a URL

More information

The SBCC Web Publishing Process The process of creating new web pages or editing existing pages within the OmniUpdate system is straightforward.

The SBCC Web Publishing Process The process of creating new web pages or editing existing pages within the OmniUpdate system is straightforward. Table of Contents Introduction 2 The SBCC Web Publishing Process 2 Staging Server vs. Production Server 2 Roles, Permissions, Levels and Authority 2 Logging In 3 Workflow 3 Dashboard Tab, Content Tab,

More information

Creating Jump Searches

Creating Jump Searches Creating Jump Searches Jump Searches are created in Website Administration, and they are used to create dynamic hyperlinks for ReeceAndNichols.com property search pages. 1. Open your web browser, and go

More information

Summary 4/5. (contains info about the html)

Summary 4/5. (contains info about the html) Summary Tag Info Version Attributes Comment 4/5

More information

Table of Contents. Look for more information at

Table of Contents. Look for more information at OmniUpd ate @ De Anza Qui ck Guide Table of Contents Login... 2 Logout... 2 OmniUpdate Help Center... 2 Editing and Saving a Page... 3 Publishing... 5 View and Revert to Previously Published Page... 5

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Advanced Dreamweaver CS6

Advanced Dreamweaver CS6 Advanced Dreamweaver CS6 Overview This advanced Dreamweaver CS6 training class teaches you to become more efficient with Dreamweaver by taking advantage of Dreamweaver's more advanced features. After this

More information

Advanced Marketing Techniques: Zach Stone, Molly McCormick, Dave Frees, Connie Gray, Karen Martin, and Mischelle Davis

Advanced Marketing Techniques: Zach Stone, Molly McCormick, Dave Frees, Connie Gray, Karen Martin, and Mischelle Davis Advanced Marketing Techniques: Zach Stone, Molly McCormick, Dave Frees, Connie Gray, Karen Martin, and Mischelle Davis You have access to some incredible tools, and Zach, Connie, Molly, Karen, Dave, and

More information

Web publishing training pack Level 3 Forms

Web publishing training pack Level 3 Forms Web publishing training pack Level 3 Forms Learning objective: Forms for submitting data - create and manage forms where data is saved in the Web Publishing System (e.g. questionnaire, registration, feedback).

More information

Administrative Training Mura CMS Version 5.6

Administrative Training Mura CMS Version 5.6 Administrative Training Mura CMS Version 5.6 Published: March 9, 2012 Table of Contents Mura CMS Overview! 6 Dashboard!... 6 Site Manager!... 6 Drafts!... 6 Components!... 6 Categories!... 6 Content Collections:

More information

Building Mash Ups With Visio Services

Building Mash Ups With Visio Services Building Mash Ups With Visio Services Table of Contents Building mash ups with Visio Services... 1 Exercise 1 Using ECMAScript with Visio Services... 2 Exercise 2 Working with Overlays and Highlights...

More information

End-User Reference Guide El Camino College Compton Center

End-User Reference Guide El Camino College Compton Center End-User Reference Guide El Camino College Compton Center OU Campus Version 10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA

More information

Adobe Dreamweaver CS6 Digital Classroom

Adobe Dreamweaver CS6 Digital Classroom Adobe Dreamweaver CS6 Digital Classroom Osborn, J ISBN-13: 9781118124093 Table of Contents Starting Up About Dreamweaver Digital Classroom 1 Prerequisites 1 System requirements 1 Starting Adobe Dreamweaver

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

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager How to define model elements simply? In Sparx Systems Enterprise Architect, use the document-based Specification Manager to create elements

More information

CMS Training. Web Address for Training Common Tasks in the CMS Guide

CMS Training. Web Address for Training  Common Tasks in the CMS Guide CMS Training Web Address for Training http://mirror.frostburg.edu/training Common Tasks in the CMS Guide 1 Getting Help Quick Test Script Documentation that takes you quickly through a set of common tasks.

More information

Scope Monthly. Guide to updating and maintaining the Scope Monthly Website. Last Updated: Table of Contents

Scope Monthly. Guide to updating and maintaining the Scope Monthly Website. Last Updated: Table of Contents 1 Scope Monthly Guide to updating and maintaining the Scope Monthly Website. Last Updated: 2016.06.13 Table of Contents Creating a new monthly issue. Editing a monthly issue. Editing issue date Editing

More information

Using Dreamweaver To Edit the Campus Template Version MX

Using Dreamweaver To Edit the Campus Template Version MX Using Dreamweaver To Edit the Campus Template Version MX Tennessee Tech University Clement Hall 215 Dreamweaver is an HTML (Hypertext Markup Language) editor that allows you to create HTML pages. This

More information

Broken Pages. Overview

Broken Pages. Overview Broken Pages Overview Authority Level: All user levels. Level 9 and Level 10 administrators will see all broken pages in the report. User levels 0 through 8 will only see broken pages to which they have

More information

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA PRESENCE RadEditor Guide SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Contents... 2 Introduction... 3 What is RadEditor?... 3 RadEditor

More information

Sections vs. Pages... 3 Adding Images & PDFs... 4 Assets & Snippets... 5 RSS Feeds & News Items... 6 Directory Pages... 6 Help & Resources...

Sections vs. Pages... 3 Adding Images & PDFs... 4 Assets & Snippets... 5 RSS Feeds & News Items... 6 Directory Pages... 6 Help & Resources... 1 2 OUCampus Training Guide Spring 2017 INDEX: Logging In... 1 Checking pages in/out... 1 OUCampus Interface... 2 Editing pages in the WYSIWYG... 2 Toolbars & Tools... 2 Sections vs. Pages... 3 Adding

More information

Contact: Systems Alliance, Inc. Executive Plaza III McCormick Road, Suite 1203 Hunt Valley, Maryland Phone: / 877.

Contact: Systems Alliance, Inc. Executive Plaza III McCormick Road, Suite 1203 Hunt Valley, Maryland Phone: / 877. Contact: Systems Alliance, Inc. Executive Plaza III 11350 McCormick Road, Suite 1203 Hunt Valley, Maryland 21031 Phone: 410.584.0595 / 877.SYSALLI Fax: 410.584.0594 http://www.systemsalliance.com http://www.siteexecutive.com

More information

Creating Web Pages Using HTML

Creating Web Pages Using HTML Creating Web Pages Using HTML HTML Commands Commands are called tags Each tag is surrounded by Some tags need ending tags containing / Tags are not case sensitive, but for future compatibility, use

More information

COMS 359: Interactive Media

COMS 359: Interactive Media COMS 359: Interactive Media Agenda Project #3 Review Forms (con t) CGI Validation Design Preview Project #3 report Who is your client? What is the project? Project Three action= http://...cgi method=

More information

Adobe Dreamweaver CS4

Adobe Dreamweaver CS4 Adobe Dreamweaver CS4 About Dreamweaver Whether creating simple blog pages complex web sites, Dreamweaver provides users with a powerful set of web-design tools necessary f the task. Its userfriendly interface

More information

Centricity 2.0 Section Editor Help Card

Centricity 2.0 Section Editor Help Card Centricity 2.0 Section Editor Help Card Accessing Section Workspace In order to edit your section, you must first be assigned Section Editor privileges. This is done by the Director of your Site, Subsite,

More information

EPiServer Content Editor s Guide

EPiServer Content Editor s Guide EPiServer Content Editor s Guide Contents Getting Started with EPiServer... 19 Logging In... 19 Navigating from the Global Menu... 19 Generic Functions, Toolbar and Panes... 20 Generic Functions... 20

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

Adding Pages. Adding pages to your website is simple and powerful! In just a few minutes you can create a page that: Highlights a special event

Adding Pages. Adding pages to your website is simple and powerful! In just a few minutes you can create a page that: Highlights a special event A STEP-BY-STEP A STEP-BY-STEP GUIDE GUIDE TO TO UPDATING ADDING PAGES NAVIGATION ACADEMY Adding Pages Adding pages to your website is simple and powerful! In just a few minutes you can create a page that:

More information

TEACHER PAGES USER MANUAL CHAPTER 6 SHARPSCHOOL. For more information, please visit: Chapter 6 Teacher Pages

TEACHER PAGES USER MANUAL CHAPTER 6 SHARPSCHOOL. For more information, please visit:  Chapter 6 Teacher Pages SHARPSCHOOL USER MANUAL CHAPTER 6 TEACHER PAGES For more information, please visit: www.customernet.sharpschool.com 0 TABLE OF CONTENTS 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. INTRODUCTION... 1 I. TEACHER PAGE

More information

The main differences with other open source reporting solutions such as JasperReports or mondrian are:

The main differences with other open source reporting solutions such as JasperReports or mondrian are: WYSIWYG Reporting Including Introduction: Content at a glance. Create A New Report: Steps to start the creation of a new report. Manage Data Blocks: Add, edit or remove data blocks in a report. General

More information

Oracle Eloqua s User Guide

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

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Advanced HTML Scripting WebGUI Users Conference

Advanced HTML Scripting WebGUI Users Conference Advanced HTML Scripting 2004 WebGUI Users Conference XHTML where did that x come from? XHTML =? Extensible Hypertext Markup Language Combination of HTML and XML More strict than HTML Things to Remember

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents The Specification Manager 3 Specification Manager - Overview

More information

Comic Life. Creating Photo Comics. Classroom Course Manual

Comic Life. Creating Photo Comics. Classroom Course Manual Comic Life Creating Photo Comics Classroom Course Manual Written, designed, and produced by: DoIT Software Training for Students Last Updated 1/14/2017 About Software Training for Students Software Training

More information

Inserting an irite text editor to your to your DataAssist insert and update pages

Inserting an irite text editor to your to your DataAssist insert and update pages Inserting an irite text editor to your to your DataAssist insert and update pages This How To shows you how to add an irite text editor onto your DataAssist Insert or Update pages. Providing advanced text

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

Web Publishing Basics I

Web Publishing Basics I Web Publishing Basics I Jeff Pankin Information Services and Technology Contents Course Objectives... 2 Creating a Web Page with HTML... 3 What is Dreamweaver?... 3 What is HTML?... 3 What are the basic

More information

Mavo Create: A WYSIWYG Editor for Mavo. Francesca Rose Cicileo

Mavo Create: A WYSIWYG Editor for Mavo. Francesca Rose Cicileo Mavo Create: A WYSIWYG Editor for Mavo by Francesca Rose Cicileo Submitted to the Department of Electrical Engineering and Computer Science in partial fulfillment of the requirements for the degree of

More information

Designing the Home Page and Creating Additional Pages

Designing the Home Page and Creating Additional Pages Designing the Home Page and Creating Additional Pages Creating a Webpage Template In Notepad++, create a basic HTML webpage with html documentation, head, title, and body starting and ending tags. From

More information

HTML Forms. By Jaroslav Mohapl

HTML Forms. By Jaroslav Mohapl HTML Forms By Jaroslav Mohapl Abstract How to write an HTML form, create control buttons, a text input and a text area. How to input data from a list of items, a drop down list, and a list box. Simply

More information

Web Publishing Intermediate 2

Web Publishing Intermediate 2 Web Publishing Intermediate 2 Building a Three Column Site with divs and float Jeff Pankin Information Services and Technology Table of Contents Course Objectives... 2 The CIG Web Site... 3 Using the Div

More information

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson reserved. 0-13-185603-0 HTML HELLO WORLD! Document

More information

Faculty Web Editing. Wharton County Junior College Employee Training Manual

Faculty Web Editing. Wharton County Junior College Employee Training Manual 2015 Wharton County Junior College Employee Training Manual Faculty Web Editing 15 Faculty Web sites are maintained through Omni Updates Campus Content Management Systems as of January 2013. Please address

More information

ACADEMIC TECHNOLOGY SUPPORT Advanced OU Campus: 2014 Template Asset Image Gallery using Photoshop

ACADEMIC TECHNOLOGY SUPPORT Advanced OU Campus: 2014 Template Asset Image Gallery using Photoshop ACADEMIC TECHNOLOGY SUPPORT Advanced OU Campus: 2014 Template Asset Image Gallery using Photoshop ats@etsu.edu 439-8611 ATS Website Table of Contents: Select a Gallery Type... 1 Select and Resize Images...

More information

UVM Web Template BIO Manual for BioBuilder updated

UVM Web Template BIO Manual for BioBuilder updated UVM Web Template BIO Manual for BioBuilder updated 3-5-12 1. The BioBuilder site works only in Internet Explorer! 2. After navigating to the BioBuilder homepage (https://comis.med.uvm.edu/peoplemanagement),

More information

Note: Manual pages must be maintained by a designated web publisher.

Note: Manual pages must be maintained by a designated web publisher. How to create manual contact pages Manual contact pages If a filtered list is not possible (i.e. the results cannot be filtered using HRonline parameters) a manual Contact us page can be developed in the

More information

Insert/Edit Image. Overview

Insert/Edit Image. Overview Overview The tool is available on the default toolbar for the WYSIWYG Editor. The Images Gadget may also be used to drop an image on a page and will automatically spawn the Insert/Edit Image modal. Classic

More information

What is OU Campus? Log into OU Campus

What is OU Campus? Log into OU Campus OU Campus v10 Content Providers User Guide This document is designed to provide (level 5) Content Providers with basic information needed to do most tasks. Those needing additional information are encouraged

More information

1. Please, please, please look at the style sheets job aid that I sent to you some time ago in conjunction with this document.

1. Please, please, please look at the style sheets job aid that I sent to you some time ago in conjunction with this document. 1. Please, please, please look at the style sheets job aid that I sent to you some time ago in conjunction with this document. 2. W3Schools has a lovely html tutorial here (it s worth the time): http://www.w3schools.com/html/default.asp

More information

Table of Contents. MySource Matrix Content Types Manual

Table of Contents. MySource Matrix Content Types Manual Table of Contents Chapter 1 Introduction... 5 Chapter 2 WYSIWYG Editor... 6 Replace Text... 6 Select Snippet Keyword... 7 Insert Table and Table Properties... 8 Editing the Table...10 Editing a Cell...12

More information

Joomla! Advanced Content Editing January 11, 2018

Joomla! Advanced Content Editing January 11, 2018 Joomla! Advanced Content Editing January 11, 2018 Instructor for this Workshop Web Development School of Arts and Sciences TABLE OF CONTENTS Welcome... 3 What is Joomla?... 3 Joomla Administrator Overview

More information

Web Community Manager 2.18 Release Notes

Web Community Manager 2.18 Release Notes New or Changed Functionality or User Experience Update to Google Custom Search In order to support updates from Google regarding Site Search, clients who have not previously entered a Google Account ID

More information

Web Publishing with HTML

Web Publishing with HTML Web Publishing with HTML MSc Induction Tutorials Athena Eftychiou PhD Student Department of Computing 1 Objectives Provide a foundation on Web Publishing by introducing basic notations and techniques like

More information

Multiple Custom Forms

Multiple Custom Forms Multiple Custom Forms for Magento 2 Extension for Magento 2 User Guide Table of contents 1. Module Features 2. Module Configuration 3. Manage Forms 4. Add Field 4.1. Text Field 4.2. Text Area 4.3. Drop

More information